ETH Price: $2,587.65 (-2.13%)

Token

FarmBot (FARM)
 

Overview

Max Total Supply

100,000,000 FARM

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
212,682.798764766976228751 FARM

Value
$0.00
0xcb8e739c251ae2f6a6de72be4fa698fb302b93e1
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:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 6 : Token.sol
/**
    FarmBot
    Experience seamless and lightning-fast trading with our free-to-use bot.
    
    Website: farmbot.pro
    App: app.farmbot.pro
    Twitter: twitter.com/FarmBotPro
    Telegram: t.me/FarmBotPro
**/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';

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 Token is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

    uint256 public maxTxAmountForBuySell;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public swapEnabled = true;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTxAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor(string memory _tokenName, string memory _tokenSymbol, uint256 _totalSupply) ERC20(_tokenName, _tokenSymbol) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

        uint256 _buyRevShareFee = 0;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 4;

        uint256 _sellRevShareFee = 0;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 4;

        maxTxAmountForBuySell = (_totalSupply * 2) / 100; // 2%
        maxWallet = (_totalSupply * 2) / 100; // 2%
        swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05%

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

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

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

        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
        require(newAmount >= (totalSupply() * 1) / 100000, 'Swap amount cannot be lower than 0.001% total supply.');
        require(newAmount <= (totalSupply() * 5) / 1000, 'Swap amount cannot be higher than 0.5% total supply.');
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTransactionAmount(uint256 newNum) external onlyOwner {
        require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, 'Cannot set maxTxAmountForBuySell lower than 0.5%');
        maxTxAmountForBuySell = newNum * (10 ** 18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= ((totalSupply() * 20) / 1000) / 1e18, 'Cannot set maxWallet lower than 2.0%');
        maxWallet = newNum * (10 ** 18);
    }

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

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

    function updateBuyFees(uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee) external onlyOwner {
        require((_revShareFee + _liquidityFee + _teamFee) <= 5, 'Buy fees must be <= 5.');
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
    }

    function updateSellFees(uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee) external onlyOwner {
        require((_revShareFee + _liquidityFee + _teamFee) <= 5, 'Sell fees must be <= 5.');
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
    }

    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 updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit RevShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit TeamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[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');
        require(!blacklisted[from], 'Sender blacklisted');
        require(!blacklisted[to], 'Receiver blacklisted');

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

        if (limitsInEffect) {
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTxAmount[to]) {
                    require(amount <= maxTxAmountForBuySell, 'Buy transfer amount exceeds the maxTxAmountForBuySell.');
                    require(amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded');
                }
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTxAmount[from]) {
                    require(amount <= maxTxAmountForBuySell, 'Sell transfer amount exceeds the maxTxAmountForBuySell.');
                } else if (!_isExcludedMaxTxAmount[from]) {
                    require(_isExcludedMaxTxAmount[to] || 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]) {
            swapping = true;

            swapBackTokensForETH();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        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) {
                // sell tax is at 5%.
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                // buy tax is at 5%.
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBackTokensForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForRevShare + tokensForTeam;
        bool success;

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForTeam = (ethBalance * tokensForTeam) / totalTokensToSwap - (tokensForLiquidity / 2);

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}('');

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }

        (success, ) = address(revShareWallet).call{value: address(this).balance}('');
    }

    function withdrawStuckNativeToken() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckTokens(address _token, address _to) external onlyOwner {
        require(_token != address(0), '_token address cannot be 0');
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}('');
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklisting() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklistAddress(address _addr) public onlyOwner {
        require(!blacklistRenounced, 'Team has revoked blacklist rights');
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, 'Team has revoked blacklist rights');
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : 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 4 of 6 : 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 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 6 : 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": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"RevShareWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeAddressFromMaxTransaction","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":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmountForBuySell","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":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklisting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff19166101011790553480156200002157600080fd5b5060405162003773380380620037738339810160408190526200004491620006a9565b82826003620000548382620007aa565b506004620000638282620007aa565b505050620000806200007a6200037260201b60201c565b62000376565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000a2816001620003c8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000113919062000876565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000161573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000187919062000876565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fb919062000876565b6001600160a01b031660a081905262000216906001620003c8565b60a05162000226906001620003fd565b60006001600482828260646200023e896002620008be565b6200024a9190620008de565b60085560646200025c896002620008be565b620002689190620008de565b600a556127106200027b896005620008be565b620002879190620008de565b600955600e869055600f859055601084905583620002a6868862000901565b620002b2919062000901565b600d5560128390556013829055601481905580620002d1838562000901565b620002dd919062000901565b601155620002ff620002f76005546001600160a01b031690565b600162000451565b6200030c30600162000451565b6200031b61dead600162000451565b6200033a620003326005546001600160a01b031690565b6001620003c8565b62000347306001620003c8565b6200035661dead6001620003c8565b620003623389620004ba565b5050505050505050505062000917565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003d262000581565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200045b62000581565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200052a919062000901565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200050d565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200060c57600080fd5b81516001600160401b0380821115620006295762000629620005e4565b604051601f8301601f19908116603f01168101908282118183101715620006545762000654620005e4565b816040528381526020925086838588010111156200067157600080fd5b600091505b8382101562000695578582018301518183018401529082019062000676565b600093810190920192909252949350505050565b600080600060608486031215620006bf57600080fd5b83516001600160401b0380821115620006d757600080fd5b620006e587838801620005fa565b94506020860151915080821115620006fc57600080fd5b506200070b86828701620005fa565b925050604084015190509250925092565b600181811c908216806200073157607f821691505b6020821081036200075257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005df57600081815260208120601f850160051c81016020861015620007815750805b601f850160051c820191505b81811015620007a2578281556001016200078d565b505050505050565b81516001600160401b03811115620007c657620007c6620005e4565b620007de81620007d784546200071c565b8462000758565b602080601f831160018114620008165760008415620007fd5750858301515b600019600386901b1c1916600185901b178555620007a2565b600085815260208120601f198616915b82811015620008475788860151825594840194600190910190840162000826565b5085821015620008665787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200088957600080fd5b81516001600160a01b0381168114620008a157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008d857620008d8620008a8565b92915050565b600082620008fc57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008d857620008d8620008a8565b60805160a051612e056200096e600039600081816105ae01528181610f8001526115b3015260008181610422015281816127ad01528181612866015281816128bb01528181612935015261295c0152612e056000f3fe6080604052600436106103855760003560e01c80637cb332bb116101d1578063c18bc19511610102578063eae82567116100a0578063f63743421161006f578063f637434214610a54578063f8b45b0514610a6a578063fde83a3414610a80578063fe575a8714610a9657600080fd5b8063eae8256714610a09578063f11a24d314610a1e578063f2fde38b14610a34578063f3290d75146109d357600080fd5b8063d85ba063116100dc578063d85ba06314610977578063dd62ed3e1461098d578063e19b2823146109d3578063e2f45605146109f357600080fd5b8063c18bc19514610921578063d257b34f14610941578063d729715f1461096157600080fd5b8063a457c2d71161016f578063adee28ff11610149578063adee28ff14610891578063b62496f5146108b1578063c0246668146108e1578063c17b5b8c1461090157600080fd5b8063a457c2d714610831578063a9059cbb14610851578063aa4980231461087157600080fd5b8063924de9b7116101ab578063924de9b7146107c657806395d89b41146107e65780639a7a23d6146107fb5780639c2e4ac61461081b57600080fd5b80637cb332bb146107685780638095d564146107885780638da5cb5b146107a857600080fd5b806339509351116102b65780636a486a8e11610254578063751039fc11610223578063751039fc146106f357806375e3661e14610708578063782c4e99146107285780637ca8448a1461074857600080fd5b80636a486a8e146106735780636ddd17131461068957806370a08231146106a8578063715018a6146106de57600080fd5b80634a62bb65116102905780634a62bb65146105d05780634fbee193146105ea578063563912bd14610623578063599270441461065357600080fd5b8063395093511461055c5780633dc599ff1461057c57806349bd5a5e1461059c57600080fd5b80631a8145bb1161032357806324b9f3c1116102fd57806324b9f3c1146104f457806325b86edf1461050a578063313ce5671461052a57806331e0f7211461054657600080fd5b80631a8145bb146104a95780631f8e32e3146104bf57806323b872dd146104d457600080fd5b80631694505e1161035f5780631694505e14610410578063181330ac1461045c57806318160ddd1461047e57806319eab0421461049357600080fd5b806306fdde0314610391578063095ea7b3146103bc578063156c2f35146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610acf565b6040516103b39190612a4d565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612ab0565b610b61565b60405190151581526020016103b3565b3480156103f857600080fd5b50610402600e5481565b6040519081526020016103b3565b34801561041c57600080fd5b506104447f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b34801561046857600080fd5b5061047c610477366004612aea565b610b7b565b005b34801561048a57600080fd5b50600254610402565b34801561049f57600080fd5b5061040260125481565b3480156104b557600080fd5b5061040260165481565b3480156104cb57600080fd5b5061047c610bae565b3480156104e057600080fd5b506103dc6104ef366004612b23565b610bc9565b34801561050057600080fd5b5061040260155481565b34801561051657600080fd5b5061047c610525366004612b64565b610bed565b34801561053657600080fd5b50604051601281526020016103b3565b34801561055257600080fd5b5061040260085481565b34801561056857600080fd5b506103dc610577366004612ab0565b610d38565b34801561058857600080fd5b50600b546103dc9062010000900460ff1681565b3480156105a857600080fd5b506104447f000000000000000000000000000000000000000000000000000000000000000081565b3480156105dc57600080fd5b50600b546103dc9060ff1681565b3480156105f657600080fd5b506103dc610605366004612b92565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561062f57600080fd5b506103dc61063e366004612b92565b60196020526000908152604090205460ff1681565b34801561065f57600080fd5b50600754610444906001600160a01b031681565b34801561067f57600080fd5b5061040260115481565b34801561069557600080fd5b50600b546103dc90610100900460ff1681565b3480156106b457600080fd5b506104026106c3366004612b92565b6001600160a01b031660009081526020819052604090205490565b3480156106ea57600080fd5b5061047c610d77565b3480156106ff57600080fd5b506103dc610d8b565b34801561071457600080fd5b5061047c610723366004612b92565b610da5565b34801561073457600080fd5b50600654610444906001600160a01b031681565b34801561075457600080fd5b5061047c610763366004612b92565b610dce565b34801561077457600080fd5b5061047c610783366004612b92565b610e3a565b34801561079457600080fd5b5061047c6107a3366004612bb6565b610eac565b3480156107b457600080fd5b506005546001600160a01b0316610444565b3480156107d257600080fd5b5061047c6107e1366004612be2565b610f45565b3480156107f257600080fd5b506103a6610f67565b34801561080757600080fd5b5061047c610816366004612aea565b610f76565b34801561082757600080fd5b5061040260105481565b34801561083d57600080fd5b506103dc61084c366004612ab0565b61102f565b34801561085d57600080fd5b506103dc61086c366004612ab0565b6110d9565b34801561087d57600080fd5b5061047c61088c366004612bff565b6110e7565b34801561089d57600080fd5b5061047c6108ac366004612b92565b6111b0565b3480156108bd57600080fd5b506103dc6108cc366004612b92565b601a6020526000908152604090205460ff1681565b3480156108ed57600080fd5b5061047c6108fc366004612aea565b611222565b34801561090d57600080fd5b5061047c61091c366004612bb6565b611289565b34801561092d57600080fd5b5061047c61093c366004612bff565b611322565b34801561094d57600080fd5b506103dc61095c366004612bff565b6113ea565b34801561096d57600080fd5b5061040260145481565b34801561098357600080fd5b50610402600d5481565b34801561099957600080fd5b506104026109a8366004612b64565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109df57600080fd5b5061047c6109ee366004612b92565b61152a565b3480156109ff57600080fd5b5061040260095481565b348015610a1557600080fd5b5061047c6116a6565b348015610a2a57600080fd5b50610402600f5481565b348015610a4057600080fd5b5061047c610a4f366004612b92565b6117a8565b348015610a6057600080fd5b5061040260135481565b348015610a7657600080fd5b50610402600a5481565b348015610a8c57600080fd5b5061040260175481565b348015610aa257600080fd5b506103dc610ab1366004612b92565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610ade90612c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90612c18565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b600033610b6f818585611838565b60019150505b92915050565b610b83611990565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610bb6611990565b600b805462ff0000191662010000179055565b600033610bd78582856119ea565b610be2858585611a76565b506001949350505050565b610bf5611990565b6001600160a01b038216610c505760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190612c52565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190612c6b565b50505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610b6f9082908690610d72908790612c9e565b611838565b610d7f611990565b610d89600061227e565b565b6000610d95611990565b50600b805460ff19169055600190565b610dad611990565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b610dd6611990565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e23576040519150601f19603f3d011682016040523d82523d6000602084013e610e28565b606091505b5050905080610e3657600080fd5b5050565b610e42611990565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309590600090a36007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610eb4611990565b600581610ec18486612c9e565b610ecb9190612c9e565b1115610f195760405162461bcd60e51b815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610c47565b600e839055600f829055601081905580610f338385612c9e565b610f3d9190612c9e565b600d55505050565b610f4d611990565b600b80549115156101000261ff0019909216919091179055565b606060048054610ade90612c18565b610f7e611990565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110255760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c47565b610e3682826122dd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c47565b610be28286868403611838565b600033610b6f818585611a76565b6110ef611990565b670de0b6b3a76400006103e861110460025490565b61110f906005612cb1565b6111199190612cc8565b6111239190612cc8565b8110156111985760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d61785478416d6f756e74466f7242757953656c6c60448201527f206c6f776572207468616e20302e3525000000000000000000000000000000006064820152608401610c47565b6111aa81670de0b6b3a7640000612cb1565b60085550565b6111b8611990565b6006546040516001600160a01b03918216918316907fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f90600090a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61122a611990565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611291611990565b60058161129e8486612c9e565b6112a89190612c9e565b11156112f65760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c47565b601283905560138290556014819055806113108385612c9e565b61131a9190612c9e565b601155505050565b61132a611990565b670de0b6b3a76400006103e861133f60025490565b61134a906014612cb1565b6113549190612cc8565b61135e9190612cc8565b8110156113d25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f322e3025000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6113e481670de0b6b3a7640000612cb1565b600a5550565b60006113f4611990565b620186a061140160025490565b61140c906001612cb1565b6114169190612cc8565b82101561148b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c47565b6103e861149760025490565b6114a2906005612cb1565b6114ac9190612cc8565b8211156115215760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c47565b50600955600190565b611532611990565b600b5462010000900460ff16156115b15760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610c47565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561161057506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6116825760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6116ae611990565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156116ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117109190612c52565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190612c6b565b5060405133904780156108fc02916000818181858888f19350505050158015610e36573d6000803e3d6000fd5b6117b0611990565b6001600160a01b03811661182c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c47565b6118358161227e565b50565b6001600160a01b0383166118b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03821661192f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c47565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d325781811015611a695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c47565b610d328484848403611838565b6001600160a01b038316611ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c47565b6001600160a01b038216611b3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c47565b6001600160a01b0383166000908152600c602052604090205460ff1615611ba55760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610c47565b6001600160a01b0382166000908152600c602052604090205460ff1615611c0e5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610c47565b80600003611c2757611c2283836000612331565b505050565b600b5460ff1615611f50576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b15611f50576001600160a01b0383166000908152601a602052604090205460ff168015611ce557506001600160a01b03821660009081526019602052604090205460ff16155b15611ddb57600854811115611d625760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785478416d6f756e74466f7242757953656c6c2e000000000000000000006064820152608401610c47565b600a546001600160a01b038316600090815260208190526040902054611d889083612c9e565b1115611dd65760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c47565b611f50565b6001600160a01b0382166000908152601a602052604090205460ff168015611e1c57506001600160a01b03831660009081526019602052604090205460ff16155b15611e9957600854811115611dd65760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785478416d6f756e74466f7242757953656c6c2e0000000000000000006064820152608401610c47565b6001600160a01b03831660009081526019602052604090205460ff16611f50576001600160a01b03821660009081526019602052604090205460ff1680611f045750600a546001600160a01b038316600090815260208190526040902054611f019083612c9e565b11155b611f505760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c47565b3060009081526020819052604090205460095481108015908190611f7b5750600b54610100900460ff165b8015611f915750600554600160a01b900460ff16155b8015611fb657506001600160a01b0385166000908152601a602052604090205460ff16155b8015611fdb57506001600160a01b03851660009081526018602052604090205460ff16155b801561200057506001600160a01b03841660009081526018602052604090205460ff16155b1561202e576005805460ff60a01b1916600160a01b1790556120206124ec565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061207c57506001600160a01b03851660009081526018602052604090205460ff165b15612085575060005b6000811561226a576001600160a01b0386166000908152601a602052604090205460ff1680156120b757506000601154115b1561216f576064601154866120cc9190612cb1565b6120d69190612cc8565b9050601154601354826120e99190612cb1565b6120f39190612cc8565b601660008282546121049190612c9e565b90915550506011546014546121199083612cb1565b6121239190612cc8565b601760008282546121349190612c9e565b90915550506011546012546121499083612cb1565b6121539190612cc8565b601560008282546121649190612c9e565b9091555061224c9050565b6001600160a01b0387166000908152601a602052604090205460ff16801561219957506000600d54115b1561224c576064600d54866121ae9190612cb1565b6121b89190612cc8565b9050600d54600f54826121cb9190612cb1565b6121d59190612cc8565b601660008282546121e69190612c9e565b9091555050600d546010546121fb9083612cb1565b6122059190612cc8565b601760008282546122169190612c9e565b9091555050600d54600e5461222b9083612cb1565b6122359190612cc8565b601560008282546122469190612c9e565b90915550505b801561225d5761225d873083612331565b6122678186612cea565b94505b612275878787612331565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c47565b6001600160a01b0382166123f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c47565b6001600160a01b038316600090815260208190526040902054818110156124865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d32565b30600090815260208190526040812054905060006017546015546016546125139190612c9e565b61251d9190612c9e565b9050600082158061252c575081155b1561253657505050565b600954612544906014612cb1565b83111561255c57600954612559906014612cb1565b92505b60006002836016548661256f9190612cb1565b6125799190612cc8565b6125839190612cc8565b905060006125918286612cea565b90504761259d82612756565b60006125a98247612cea565b9050600060026016546125bc9190612cc8565b6125c69088612cea565b6015546125d39084612cb1565b6125dd9190612cc8565b9050600060026016546125f09190612cc8565b88601754856125ff9190612cb1565b6126099190612cc8565b6126139190612cea565b90506000816126228486612cea565b61262c9190612cea565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612689576040519150601f19603f3d011682016040523d82523d6000602084013e61268e565b606091505b509098505086158015906126a25750600081115b156126f5576126b1878261292f565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612742576040519150601f19603f3d011682016040523d82523d6000602084013e612747565b606091505b50505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278b5761278b612cfd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061282d9190612d13565b8160018151811061284057612840612cfd565b60200260200101906001600160a01b031690816001600160a01b03168152505061288b307f000000000000000000000000000000000000000000000000000000000000000084611838565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906128f9908590600090869030904290600401612d30565b600060405180830381600087803b15801561291357600080fd5b505af1158015612927573d6000803e3d6000fd5b505050505050565b61295a307f000000000000000000000000000000000000000000000000000000000000000084611838565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806129a16005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a469190612da1565b5050505050565b600060208083528351808285015260005b81811015612a7a57858101830151858201604001528201612a5e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183557600080fd5b60008060408385031215612ac357600080fd5b8235612ace81612a9b565b946020939093013593505050565b801515811461183557600080fd5b60008060408385031215612afd57600080fd5b8235612b0881612a9b565b91506020830135612b1881612adc565b809150509250929050565b600080600060608486031215612b3857600080fd5b8335612b4381612a9b565b92506020840135612b5381612a9b565b929592945050506040919091013590565b60008060408385031215612b7757600080fd5b8235612b8281612a9b565b91506020830135612b1881612a9b565b600060208284031215612ba457600080fd5b8135612baf81612a9b565b9392505050565b600080600060608486031215612bcb57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612bf457600080fd5b8135612baf81612adc565b600060208284031215612c1157600080fd5b5035919050565b600181811c90821680612c2c57607f821691505b602082108103612c4c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612c6457600080fd5b5051919050565b600060208284031215612c7d57600080fd5b8151612baf81612adc565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7557610b75612c88565b8082028115828204841417610b7557610b75612c88565b600082612ce557634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610b7557610b75612c88565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d2557600080fd5b8151612baf81612a9b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d805784516001600160a01b031683529383019391830191600101612d5b565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612db657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dbbe084d60fc3220a878929f927e8f98b02f678e1eded88b6458f654670da08264736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000000000000000000000000074661726d426f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044641524d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637cb332bb116101d1578063c18bc19511610102578063eae82567116100a0578063f63743421161006f578063f637434214610a54578063f8b45b0514610a6a578063fde83a3414610a80578063fe575a8714610a9657600080fd5b8063eae8256714610a09578063f11a24d314610a1e578063f2fde38b14610a34578063f3290d75146109d357600080fd5b8063d85ba063116100dc578063d85ba06314610977578063dd62ed3e1461098d578063e19b2823146109d3578063e2f45605146109f357600080fd5b8063c18bc19514610921578063d257b34f14610941578063d729715f1461096157600080fd5b8063a457c2d71161016f578063adee28ff11610149578063adee28ff14610891578063b62496f5146108b1578063c0246668146108e1578063c17b5b8c1461090157600080fd5b8063a457c2d714610831578063a9059cbb14610851578063aa4980231461087157600080fd5b8063924de9b7116101ab578063924de9b7146107c657806395d89b41146107e65780639a7a23d6146107fb5780639c2e4ac61461081b57600080fd5b80637cb332bb146107685780638095d564146107885780638da5cb5b146107a857600080fd5b806339509351116102b65780636a486a8e11610254578063751039fc11610223578063751039fc146106f357806375e3661e14610708578063782c4e99146107285780637ca8448a1461074857600080fd5b80636a486a8e146106735780636ddd17131461068957806370a08231146106a8578063715018a6146106de57600080fd5b80634a62bb65116102905780634a62bb65146105d05780634fbee193146105ea578063563912bd14610623578063599270441461065357600080fd5b8063395093511461055c5780633dc599ff1461057c57806349bd5a5e1461059c57600080fd5b80631a8145bb1161032357806324b9f3c1116102fd57806324b9f3c1146104f457806325b86edf1461050a578063313ce5671461052a57806331e0f7211461054657600080fd5b80631a8145bb146104a95780631f8e32e3146104bf57806323b872dd146104d457600080fd5b80631694505e1161035f5780631694505e14610410578063181330ac1461045c57806318160ddd1461047e57806319eab0421461049357600080fd5b806306fdde0314610391578063095ea7b3146103bc578063156c2f35146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610acf565b6040516103b39190612a4d565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612ab0565b610b61565b60405190151581526020016103b3565b3480156103f857600080fd5b50610402600e5481565b6040519081526020016103b3565b34801561041c57600080fd5b506104447f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b34801561046857600080fd5b5061047c610477366004612aea565b610b7b565b005b34801561048a57600080fd5b50600254610402565b34801561049f57600080fd5b5061040260125481565b3480156104b557600080fd5b5061040260165481565b3480156104cb57600080fd5b5061047c610bae565b3480156104e057600080fd5b506103dc6104ef366004612b23565b610bc9565b34801561050057600080fd5b5061040260155481565b34801561051657600080fd5b5061047c610525366004612b64565b610bed565b34801561053657600080fd5b50604051601281526020016103b3565b34801561055257600080fd5b5061040260085481565b34801561056857600080fd5b506103dc610577366004612ab0565b610d38565b34801561058857600080fd5b50600b546103dc9062010000900460ff1681565b3480156105a857600080fd5b506104447f000000000000000000000000bfa08ea3acfe126c4997e589ba69defd67d79be181565b3480156105dc57600080fd5b50600b546103dc9060ff1681565b3480156105f657600080fd5b506103dc610605366004612b92565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561062f57600080fd5b506103dc61063e366004612b92565b60196020526000908152604090205460ff1681565b34801561065f57600080fd5b50600754610444906001600160a01b031681565b34801561067f57600080fd5b5061040260115481565b34801561069557600080fd5b50600b546103dc90610100900460ff1681565b3480156106b457600080fd5b506104026106c3366004612b92565b6001600160a01b031660009081526020819052604090205490565b3480156106ea57600080fd5b5061047c610d77565b3480156106ff57600080fd5b506103dc610d8b565b34801561071457600080fd5b5061047c610723366004612b92565b610da5565b34801561073457600080fd5b50600654610444906001600160a01b031681565b34801561075457600080fd5b5061047c610763366004612b92565b610dce565b34801561077457600080fd5b5061047c610783366004612b92565b610e3a565b34801561079457600080fd5b5061047c6107a3366004612bb6565b610eac565b3480156107b457600080fd5b506005546001600160a01b0316610444565b3480156107d257600080fd5b5061047c6107e1366004612be2565b610f45565b3480156107f257600080fd5b506103a6610f67565b34801561080757600080fd5b5061047c610816366004612aea565b610f76565b34801561082757600080fd5b5061040260105481565b34801561083d57600080fd5b506103dc61084c366004612ab0565b61102f565b34801561085d57600080fd5b506103dc61086c366004612ab0565b6110d9565b34801561087d57600080fd5b5061047c61088c366004612bff565b6110e7565b34801561089d57600080fd5b5061047c6108ac366004612b92565b6111b0565b3480156108bd57600080fd5b506103dc6108cc366004612b92565b601a6020526000908152604090205460ff1681565b3480156108ed57600080fd5b5061047c6108fc366004612aea565b611222565b34801561090d57600080fd5b5061047c61091c366004612bb6565b611289565b34801561092d57600080fd5b5061047c61093c366004612bff565b611322565b34801561094d57600080fd5b506103dc61095c366004612bff565b6113ea565b34801561096d57600080fd5b5061040260145481565b34801561098357600080fd5b50610402600d5481565b34801561099957600080fd5b506104026109a8366004612b64565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109df57600080fd5b5061047c6109ee366004612b92565b61152a565b3480156109ff57600080fd5b5061040260095481565b348015610a1557600080fd5b5061047c6116a6565b348015610a2a57600080fd5b50610402600f5481565b348015610a4057600080fd5b5061047c610a4f366004612b92565b6117a8565b348015610a6057600080fd5b5061040260135481565b348015610a7657600080fd5b50610402600a5481565b348015610a8c57600080fd5b5061040260175481565b348015610aa257600080fd5b506103dc610ab1366004612b92565b6001600160a01b03166000908152600c602052604090205460ff1690565b606060038054610ade90612c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0a90612c18565b8015610b575780601f10610b2c57610100808354040283529160200191610b57565b820191906000526020600020905b815481529060010190602001808311610b3a57829003601f168201915b5050505050905090565b600033610b6f818585611838565b60019150505b92915050565b610b83611990565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b610bb6611990565b600b805462ff0000191662010000179055565b600033610bd78582856119ea565b610be2858585611a76565b506001949350505050565b610bf5611990565b6001600160a01b038216610c505760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610c97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbb9190612c52565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190612c6b565b50505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610b6f9082908690610d72908790612c9e565b611838565b610d7f611990565b610d89600061227e565b565b6000610d95611990565b50600b805460ff19169055600190565b610dad611990565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b610dd6611990565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e23576040519150601f19603f3d011682016040523d82523d6000602084013e610e28565b606091505b5050905080610e3657600080fd5b5050565b610e42611990565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce811309590600090a36007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610eb4611990565b600581610ec18486612c9e565b610ecb9190612c9e565b1115610f195760405162461bcd60e51b815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610c47565b600e839055600f829055601081905580610f338385612c9e565b610f3d9190612c9e565b600d55505050565b610f4d611990565b600b80549115156101000261ff0019909216919091179055565b606060048054610ade90612c18565b610f7e611990565b7f000000000000000000000000bfa08ea3acfe126c4997e589ba69defd67d79be16001600160a01b0316826001600160a01b0316036110255760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c47565b610e3682826122dd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110cc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610c47565b610be28286868403611838565b600033610b6f818585611a76565b6110ef611990565b670de0b6b3a76400006103e861110460025490565b61110f906005612cb1565b6111199190612cc8565b6111239190612cc8565b8110156111985760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d61785478416d6f756e74466f7242757953656c6c60448201527f206c6f776572207468616e20302e3525000000000000000000000000000000006064820152608401610c47565b6111aa81670de0b6b3a7640000612cb1565b60085550565b6111b8611990565b6006546040516001600160a01b03918216918316907fcb24b9cc1975a8c5afd1fcc8deca22156b8f357af3485db1f9382b3c584d671f90600090a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61122a611990565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611291611990565b60058161129e8486612c9e565b6112a89190612c9e565b11156112f65760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c47565b601283905560138290556014819055806113108385612c9e565b61131a9190612c9e565b601155505050565b61132a611990565b670de0b6b3a76400006103e861133f60025490565b61134a906014612cb1565b6113549190612cc8565b61135e9190612cc8565b8110156113d25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f322e3025000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6113e481670de0b6b3a7640000612cb1565b600a5550565b60006113f4611990565b620186a061140160025490565b61140c906001612cb1565b6114169190612cc8565b82101561148b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610c47565b6103e861149760025490565b6114a2906005612cb1565b6114ac9190612cc8565b8211156115215760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610c47565b50600955600190565b611532611990565b600b5462010000900460ff16156115b15760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610c47565b7f000000000000000000000000bfa08ea3acfe126c4997e589ba69defd67d79be16001600160a01b0316816001600160a01b03161415801561161057506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b6116825760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6116ae611990565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa1580156116ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117109190612c52565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015611757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177b9190612c6b565b5060405133904780156108fc02916000818181858888f19350505050158015610e36573d6000803e3d6000fd5b6117b0611990565b6001600160a01b03811661182c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c47565b6118358161227e565b50565b6001600160a01b0383166118b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03821661192f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c47565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d325781811015611a695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c47565b610d328484848403611838565b6001600160a01b038316611ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c47565b6001600160a01b038216611b3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c47565b6001600160a01b0383166000908152600c602052604090205460ff1615611ba55760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610c47565b6001600160a01b0382166000908152600c602052604090205460ff1615611c0e5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610c47565b80600003611c2757611c2283836000612331565b505050565b600b5460ff1615611f50576005546001600160a01b03848116911614801590611c5e57506005546001600160a01b03838116911614155b8015611c7257506001600160a01b03821615155b8015611c8957506001600160a01b03821661dead14155b8015611c9f5750600554600160a01b900460ff16155b15611f50576001600160a01b0383166000908152601a602052604090205460ff168015611ce557506001600160a01b03821660009081526019602052604090205460ff16155b15611ddb57600854811115611d625760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785478416d6f756e74466f7242757953656c6c2e000000000000000000006064820152608401610c47565b600a546001600160a01b038316600090815260208190526040902054611d889083612c9e565b1115611dd65760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c47565b611f50565b6001600160a01b0382166000908152601a602052604090205460ff168015611e1c57506001600160a01b03831660009081526019602052604090205460ff16155b15611e9957600854811115611dd65760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785478416d6f756e74466f7242757953656c6c2e0000000000000000006064820152608401610c47565b6001600160a01b03831660009081526019602052604090205460ff16611f50576001600160a01b03821660009081526019602052604090205460ff1680611f045750600a546001600160a01b038316600090815260208190526040902054611f019083612c9e565b11155b611f505760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610c47565b3060009081526020819052604090205460095481108015908190611f7b5750600b54610100900460ff165b8015611f915750600554600160a01b900460ff16155b8015611fb657506001600160a01b0385166000908152601a602052604090205460ff16155b8015611fdb57506001600160a01b03851660009081526018602052604090205460ff16155b801561200057506001600160a01b03841660009081526018602052604090205460ff16155b1561202e576005805460ff60a01b1916600160a01b1790556120206124ec565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061207c57506001600160a01b03851660009081526018602052604090205460ff165b15612085575060005b6000811561226a576001600160a01b0386166000908152601a602052604090205460ff1680156120b757506000601154115b1561216f576064601154866120cc9190612cb1565b6120d69190612cc8565b9050601154601354826120e99190612cb1565b6120f39190612cc8565b601660008282546121049190612c9e565b90915550506011546014546121199083612cb1565b6121239190612cc8565b601760008282546121349190612c9e565b90915550506011546012546121499083612cb1565b6121539190612cc8565b601560008282546121649190612c9e565b9091555061224c9050565b6001600160a01b0387166000908152601a602052604090205460ff16801561219957506000600d54115b1561224c576064600d54866121ae9190612cb1565b6121b89190612cc8565b9050600d54600f54826121cb9190612cb1565b6121d59190612cc8565b601660008282546121e69190612c9e565b9091555050600d546010546121fb9083612cb1565b6122059190612cc8565b601760008282546122169190612c9e565b9091555050600d54600e5461222b9083612cb1565b6122359190612cc8565b601560008282546122469190612c9e565b90915550505b801561225d5761225d873083612331565b6122678186612cea565b94505b612275878787612331565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c47565b6001600160a01b0382166123f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c47565b6001600160a01b038316600090815260208190526040902054818110156124865760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c47565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d32565b30600090815260208190526040812054905060006017546015546016546125139190612c9e565b61251d9190612c9e565b9050600082158061252c575081155b1561253657505050565b600954612544906014612cb1565b83111561255c57600954612559906014612cb1565b92505b60006002836016548661256f9190612cb1565b6125799190612cc8565b6125839190612cc8565b905060006125918286612cea565b90504761259d82612756565b60006125a98247612cea565b9050600060026016546125bc9190612cc8565b6125c69088612cea565b6015546125d39084612cb1565b6125dd9190612cc8565b9050600060026016546125f09190612cc8565b88601754856125ff9190612cb1565b6126099190612cc8565b6126139190612cea565b90506000816126228486612cea565b61262c9190612cea565b60006016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612689576040519150601f19603f3d011682016040523d82523d6000602084013e61268e565b606091505b509098505086158015906126a25750600081115b156126f5576126b1878261292f565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612742576040519150601f19603f3d011682016040523d82523d6000602084013e612747565b606091505b50505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278b5761278b612cfd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612809573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061282d9190612d13565b8160018151811061284057612840612cfd565b60200260200101906001600160a01b031690816001600160a01b03168152505061288b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611838565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906128f9908590600090869030904290600401612d30565b600060405180830381600087803b15801561291357600080fd5b505af1158015612927573d6000803e3d6000fd5b505050505050565b61295a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611838565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806129a16005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a469190612da1565b5050505050565b600060208083528351808285015260005b81811015612a7a57858101830151858201604001528201612a5e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461183557600080fd5b60008060408385031215612ac357600080fd5b8235612ace81612a9b565b946020939093013593505050565b801515811461183557600080fd5b60008060408385031215612afd57600080fd5b8235612b0881612a9b565b91506020830135612b1881612adc565b809150509250929050565b600080600060608486031215612b3857600080fd5b8335612b4381612a9b565b92506020840135612b5381612a9b565b929592945050506040919091013590565b60008060408385031215612b7757600080fd5b8235612b8281612a9b565b91506020830135612b1881612a9b565b600060208284031215612ba457600080fd5b8135612baf81612a9b565b9392505050565b600080600060608486031215612bcb57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612bf457600080fd5b8135612baf81612adc565b600060208284031215612c1157600080fd5b5035919050565b600181811c90821680612c2c57607f821691505b602082108103612c4c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612c6457600080fd5b5051919050565b600060208284031215612c7d57600080fd5b8151612baf81612adc565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7557610b75612c88565b8082028115828204841417610b7557610b75612c88565b600082612ce557634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610b7557610b75612c88565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d2557600080fd5b8151612baf81612a9b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d805784516001600160a01b031683529383019391830191600101612d5b565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612db657600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dbbe084d60fc3220a878929f927e8f98b02f678e1eded88b6458f654670da08264736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000000000000000000000000074661726d426f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044641524d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): FarmBot
Arg [1] : _tokenSymbol (string): FARM
Arg [2] : _totalSupply (uint256): 100000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4661726d426f7400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4641524d00000000000000000000000000000000000000000000000000000000


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.