ETH Price: $3,642.88 (+0.81%)
 

Overview

Max Total Supply

777,000,000 C12

Holders

661 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
222 C12

Value
$0.00
0x74ab15749d6c9561db3c6dc0a2cf69e8fe5a50b0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Carbon12 - the crypto for social impact, is a secure, transparent token designed to make a big difference with small transactions. C12 allows users to make real change on a global scale through our DAO-controlled social impact program that funds 12 areas of focus to establish abundant life for all.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
C12

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : C12.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";


contract C12 is Context, IERC20, Ownable {

    using SafeMath for uint256;

    string private constant _name = "Carbon 12";
    string private constant _symbol = "C12";
    uint8 private constant _decimals = 18;

    uint256 private buyLiquidityFee = 30;
    uint256 private buyRewardFee = 0;
    uint256 private buyGrowthFund = 20;
    uint256 private buyBurnFee = 0;

    uint256 private sellLiquidityFee = 20;
    uint256 private sellRewardFee = 30;
    uint256 private sellGrowthFund = 0;
    uint256 private sellBurnFee = 0;

    uint256 public totalBuy;
    uint256 public totalSell;

    uint256 private constant feeDenominator = 1000;

    address public GrowthFundWallet = 0xBE6ea4D57E095c53822d3F6319C0Af673811a51b;
    address public RewardWallet = 0x91Ff8A403724998e6CF78Ff9F468C11A8D9d8907;
    address public liquidityWallet;

    address private constant deadWallet = 0x000000000000000000000000000000000000dEaD;
    address private constant ZeroWallet = 0x0000000000000000000000000000000000000000;

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

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) public isWalletLimitExempt;
    mapping (address => bool) public isTxLimitExempt;
    
    uint256 public _totalSupply = 777_000_000 * (10 ** _decimals);
    uint256 public swapTokensAtAmount = 10000 * (10 ** _decimals);

    uint256 public _maxTxAmount = _totalSupply.mul(10).div(feeDenominator);     //10%
    uint256 public _walletMax = _totalSupply.mul(10).div(feeDenominator);    //10%

    bool public _autoSwapBack = true;
    bool public EnableTransactionLimit = false;
    bool public checkWalletLimit = false;
  
    address public pair;
    
    IUniswapV2Pair public pairContract;
    IUniswapV2Router02 public router;

    bool inSwap = false;

    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0));
        _;
    }

    constructor() {

        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 

        pair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );

        _allowances[address(this)][address(router)] = ~uint256(0);

        pairContract = IUniswapV2Pair(pair);
        automatedMarketMakerPairs[pair] = true;
        
        liquidityWallet = address(msg.sender);
        
        isWalletLimitExempt[address(msg.sender)] = true;
        isWalletLimitExempt[pair] = true;
        isWalletLimitExempt[address(this)] = true;

        _isExcludedFromFees[address(msg.sender)] = true;
        _isExcludedFromFees[address(this)] = true;

        isTxLimitExempt[address(msg.sender)] = true;
        isTxLimitExempt[address(this)] = true;
            
        totalBuy = buyLiquidityFee.add(buyRewardFee).add(buyGrowthFund).add(buyBurnFee);
        totalSell = sellLiquidityFee.add(sellRewardFee).add(sellGrowthFund).add(sellBurnFee);

        _balances[address(msg.sender)] = _totalSupply;
        emit Transfer(address(0x0), address(msg.sender), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
   
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function getCirculatingSupply() public view returns (uint256) {
        return
            _totalSupply.sub(_balances[deadWallet]).sub(_balances[ZeroWallet]);
    }

    function isNotInSwap() external view returns (bool) {
        return !inSwap;
    }

    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

    function checkFeeExempt(address _addr) external view returns (bool) {
        return _isExcludedFromFees[_addr];
    }

// ---------------------------------------------------------------------------- //

    function transfer(address to, uint256 value)
        external
        validRecipient(to)
        override
        returns (bool)
    {
        _transferFrom(msg.sender, to, value);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external validRecipient(to) override returns (bool) {
        
        if (_allowances[from][msg.sender] != ~uint256(0)) {
            _allowances[from][msg.sender] = _allowances[from][
                msg.sender
            ].sub(value, "Insufficient Allowance");
        }
        _transferFrom(from, to, value);
        return true;
    }

    function _basicTransfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount);
        return true;
    }

    function _transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {

        if(!isTxLimitExempt[sender] && !isTxLimitExempt[recipient] && EnableTransactionLimit) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        if (inSwap) {
            return _basicTransfer(sender, recipient, amount);
        }

        if (shouldSwapBack()) {
            swapBack();
        }
        
        _balances[sender] = _balances[sender].sub(amount);
        
        uint256 AmountReceived = shouldTakeFee(sender, recipient)
            ? takeFee(sender, recipient, amount)
            : amount;

        if(checkWalletLimit && !isWalletLimitExempt[recipient]) {
            require(balanceOf(recipient).add(AmountReceived) <= _walletMax);
        }

        _balances[recipient] = _balances[recipient].add(AmountReceived);

        emit Transfer(sender,recipient,AmountReceived);
        return true;
    }

    function takeFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal  returns (uint256) {

        uint256 feeAmount;
       
        unchecked {
        
            if(automatedMarketMakerPairs[sender]){
                feeAmount = amount.mul(totalBuy).div(feeDenominator);
            }
            else if(automatedMarketMakerPairs[recipient]){
                feeAmount = amount.mul(totalSell).div(feeDenominator);
            }

            if(feeAmount > 0) {
                _balances[address(this)] = _balances[address(this)].add(feeAmount);
                emit Transfer(sender, address(this), feeAmount);
            }

            return amount.sub(feeAmount);
        }
        
    }

    function swapBack() internal swapping {
        
        uint contractBalance = balanceOf(address(this));
        uint totalShares = totalBuy.add(totalSell);

        if(contractBalance == 0 || totalShares == 0) return;

        uint _liquidityShare = buyLiquidityFee.add(sellLiquidityFee);
        uint _RewardShare = buyRewardFee.add(sellRewardFee); 
        // uint _GrowthShare = buyGrowthFund.add(sellGrowthFund);     
        uint _BurnShare = buyBurnFee.add(sellBurnFee);

        if (_BurnShare > 0) {
            uint tokenForBurn = contractBalance.mul(_BurnShare).div(totalShares);
            sendTokenWithoutFee(address(this),address(deadWallet),tokenForBurn);
            contractBalance = contractBalance.sub(tokenForBurn);
            totalShares = totalShares.sub(_BurnShare);
        }

        uint256 tokensForLP = contractBalance.mul(_liquidityShare).div(totalShares).div(2);
        uint256 tokensForSwap = contractBalance.sub(tokensForLP);

        uint256 initialBalance = address(this).balance;
        swapTokensForEth(tokensForSwap,address(this));
        uint256 amountReceived = address(this).balance.sub(initialBalance);

        uint256 totalETHFee = totalShares.sub(_liquidityShare.div(2));
        
        uint256 amountETHLiquidity = amountReceived.mul(_liquidityShare).div(totalETHFee).div(2);
        uint256 amountETHReward = amountReceived.mul(_RewardShare).div(totalETHFee);
        uint256 amountETHGrowth = amountReceived.sub(amountETHLiquidity).sub(amountETHReward);

        if(amountETHReward > 0) {
            payable(RewardWallet).transfer(amountETHReward);
        }
        if(amountETHGrowth > 0) {
            payable(GrowthFundWallet).transfer(amountETHGrowth);
        }
        if(amountETHLiquidity > 0) {
            addLiquidity(tokensForLP,amountETHLiquidity);
        }

    }

    function sendTokenWithoutFee(address _sender, address _recipient, uint256 _amount) private {
        _balances[_sender] = _balances[_sender].sub(_amount);
        _balances[_recipient] = _balances[_recipient].add(_amount);
        emit Transfer(_sender, _recipient, _amount);
    }

    function shouldTakeFee(address from, address to)
        internal
        view
        returns (bool)
    {
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){
            return false;
        }        
        else{
            return (automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]);
        }
    }

    function shouldSwapBack() internal view returns (bool) {

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        return
            _autoSwapBack && 
            !inSwap && 
            canSwap &&
            !automatedMarketMakerPairs[msg.sender];
    }

// ---------------------------------------------------------------------------- //

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        uint256 oldValue = _allowances[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowances[msg.sender][spender] = 0;
        } else {
            _allowances[msg.sender][spender] = oldValue.sub(
                subtractedValue
            );
        }
        emit Approval(
            msg.sender,
            spender,
            _allowances[msg.sender][spender]
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _allowances[msg.sender][spender] = _allowances[msg.sender][
            spender
        ].add(addedValue);
        emit Approval(
            msg.sender,
            spender,
            _allowances[msg.sender][spender]
        );
        return true;
    }

    function approve(address spender, uint256 value)
        external
        override
        returns (bool)
    {
        _approve(msg.sender,spender,value);
        return true;
    }

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

    function setBuyFee(
            uint _newLp,
            uint _newReward,
            uint _newGrowth,
            uint _newBurn
        ) public onlyOwner {
        buyLiquidityFee = _newLp;
        buyRewardFee = _newReward;
        buyGrowthFund = _newGrowth;
        buyBurnFee = _newBurn;
        totalBuy = buyLiquidityFee.add(buyRewardFee).add(buyGrowthFund).add(buyBurnFee);
    }

    function setSellFee(
            uint _newLp,
            uint _newReward,
            uint _newGrowth,
            uint _newBurn
        ) public onlyOwner {
        sellLiquidityFee = _newLp;
        sellRewardFee = _newReward;
        sellGrowthFund = _newGrowth;
        sellBurnFee = _newBurn;
        totalSell = sellLiquidityFee.add(sellRewardFee).add(sellGrowthFund).add(sellBurnFee);
    }

    function setMaxWalletLimit(uint _percent) public onlyOwner {
        _maxTxAmount = _totalSupply.mul(_percent).div(feeDenominator); 
    }

    function setMaxTxLimit(uint _percent) public onlyOwner {
        _walletMax = _totalSupply.mul(_percent).div(feeDenominator); 
    }

    function enableDisableTxLimit(bool _status) public onlyOwner {
        EnableTransactionLimit = _status;
    }

    function enableDisableWalletLimit(bool _status) public onlyOwner {
        checkWalletLimit = _status;
    }

    function clearStuckBalance(address _receiver) external onlyOwner {
        uint256 balance = address(this).balance;
        (bool os,) = payable(_receiver).call{value: balance}("");
        if(os){}
    }

    function rescueToken(address tokenAddress,address _receiver, uint256 tokens) external onlyOwner returns (bool success){
        return IERC20(tokenAddress).transfer(_receiver, tokens);
    }

    function setGrowthWallet(address _newWallet) public onlyOwner {
        GrowthFundWallet = _newWallet;
    }

    function setLiquidityWallet(address _newWallet) public onlyOwner {
        liquidityWallet = _newWallet;
    }

    function setRewardWallet(address _newWallet) public onlyOwner {
        RewardWallet = _newWallet;
    }

    function manualSync() external onlyOwner {
        IUniswapV2Pair(pairContract).sync();
    }

    function setLP(address _address) external onlyOwner {
        pairContract = IUniswapV2Pair(_address);
    }

    function setAutomaticPairMarket(address _addr,bool _status) public onlyOwner {
        if(_status) {
            require(!automatedMarketMakerPairs[_addr],"Pair Already Set!!");
        }
        automatedMarketMakerPairs[_addr] = _status;
        isWalletLimitExempt[_addr] = true;
    }

    function setWhitelistFee(address _addr,bool _status) external onlyOwner {
        require(_isExcludedFromFees[_addr] != _status, "Error: Not changed");
        _isExcludedFromFees[_addr] = _status;
    }

    function setMinSwapAmount(uint _value) external onlyOwner {
        swapTokensAtAmount = _value;
    }

    function setAutoSwapBack(bool _flag) external onlyOwner {
        if(_flag) {
            _autoSwapBack = _flag;
        } else {
            _autoSwapBack = _flag;
        }
    }

    function addLiquidity(uint256 tokenAmount, uint256 EthAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);
        // add the liquidity
        router.addLiquidityETH{value: EthAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            liquidityWallet,
            block.timestamp
        );

    }

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

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

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

    }

    receive() external payable {}

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : IUniswapV2Factory.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

File 9 of 11 : IUniswapV2Pair.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

interface IUniswapV2Pair {
    event Sync(uint112 reserve0, uint112 reserve1);
    function sync() external;
}

File 10 of 11 : IUniswapV2Router01.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

File 11 of 11 : IUniswapV2Router02.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "./IUniswapV2Router01.sol";

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EnableTransactionLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GrowthFundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_autoSwapBack","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"checkFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enableDisableTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enableDisableWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isNotInSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"rescueToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setAutoSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setAutomaticPairMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLp","type":"uint256"},{"internalType":"uint256","name":"_newReward","type":"uint256"},{"internalType":"uint256","name":"_newGrowth","type":"uint256"},{"internalType":"uint256","name":"_newBurn","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setGrowthWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMinSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setRewardWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLp","type":"uint256"},{"internalType":"uint256","name":"_newReward","type":"uint256"},{"internalType":"uint256","name":"_newGrowth","type":"uint256"},{"internalType":"uint256","name":"_newBurn","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistFee","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[],"name":"totalBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSell","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":"value","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":"value","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"},{"stateMutability":"payable","type":"receive"}]

6080604052601e6001819055600060028190556014600381905560048290556005556006919091556007819055600855600b80546001600160a01b031990811673be6ea4d57e095c53822d3f6319c0af673811a51b17909155600c80549091167391ff8a403724998e6cf78ff9f468c11a8d9d8907179055620000856012600a62000664565b6200009590632e50144062000675565b601455620000a66012600a62000664565b620000b49061271062000675565b601555620000ef6103e8620000db600a601454620004ce60201b6200123e1790919060201c565b620004e560201b6200124a1790919060201c565b601655620001166103e8620000db600a601454620004ce60201b6200123e1790919060201c565b6017556018805462ffffff19166001179055601a805460ff60a01b191690553480156200014257600080fd5b506200014e33620004f3565b601a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620001ae57600080fd5b505afa158015620001c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e9919062000697565b6001600160a01b031663c9c65396601a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024657600080fd5b505afa1580156200025b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000281919062000697565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381600087803b158015620002c957600080fd5b505af1158015620002de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000304919062000697565b601880546301000000600160b81b03191663010000006001600160a01b039384168102919091178255306000818152600e60209081526040808320601a5488168452825280832060001990558554601980549187900489166001600160a01b03199283168117909155845260118352818420805460ff199081166001908117909255600d8054339416841790558286526012855283862080548216831790559754969096049097168352808320805487168617905583835280832080548716861790558683526010825280832080548716861790558383528083208054871686179055958252601381528582208054861685179055918152939093208054909216811790915560045460035460025492546200044894929362000434938492919062000543811b6200125617901c565b6200054360201b620012561790919060201c565b6009819055506200047a60085462000434600754620004346006546005546200054360201b620012561790919060201c565b600a55601454336000818152600f6020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000707565b6000620004dc828462000675565b90505b92915050565b6000620004dc8284620006c9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620004dc8284620006ec565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005a85781600019048211156200058c576200058c62000551565b808516156200059a57918102915b93841c93908002906200056c565b509250929050565b600082620005c157506001620004df565b81620005d057506000620004df565b8160018114620005e95760028114620005f45762000614565b6001915050620004df565b60ff84111562000608576200060862000551565b50506001821b620004df565b5060208310610133831016604e8410600b841016171562000639575081810a620004df565b62000645838362000567565b80600019048211156200065c576200065c62000551565b029392505050565b6000620004dc60ff841683620005b0565b600081600019048311821515161562000692576200069262000551565b500290565b600060208284031215620006aa57600080fd5b81516001600160a01b0381168114620006c257600080fd5b9392505050565b600082620006e757634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000702576200070262000551565b500190565b61219e80620007176000396000f3fe6080604052600436106103025760003560e01c80637d1db4a511610190578063c867d60b116100dc578063e2f4560511610095578063ea8b2c441161006f578063ea8b2c4414610989578063f2fde38b146109a9578063f872858a146109c9578063f887ea40146109e957600080fd5b8063e2f4560514610933578063e5711e8b14610949578063e653da081461096957600080fd5b8063c867d60b1461082e578063d43997901461085e578063d469801614610897578063dd62ed3e146108b7578063dde04b95146108fd578063e0202f871461091d57600080fd5b80638da5cb5b11610149578063a8aa1b3111610123578063a8aa1b31146107a1578063a9059cbb146107c8578063b1c09b2a146107e8578063b62496f5146107fe57600080fd5b80638da5cb5b1461073757806395d89b4114610755578063a457c2d71461078157600080fd5b80637d1db4a51461067c578063807c2d9c1461069257806383b4ac68146106a857806385261485146106c85780638b42507f146106e75780638c5a133d1461071757600080fd5b8063395093511161024f57806364f5a5bb11610208578063715018a6116101e2578063715018a614610612578063728d41c914610627578063753d02a114610647578063764d72bf1461065c57600080fd5b806364f5a5bb146105a257806370a08231146105c257806370ee7395146105f857600080fd5b806339509351146104ec5780633eaaf86b1461050c5780634bc6dd18146105225780634d709adf146105425780635958621e146105625780636140a51e1461058257600080fd5b80632563ae83116102bc5780632f34d282116102965780632f34d28214610470578063313ce56714610490578063320d4534146104ac578063361ca077146104cc57600080fd5b80632563ae831461041b578063296f0a0c1461043b5780632b112e491461045b57600080fd5b8062aed52b1461030e57806306fdde0314610330578063095ea7b3146103745780630e36cf2e146103a457806318160ddd146103dc57806323b872dd146103fb57600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e610329366004611e37565b610a09565b005b34801561033c57600080fd5b5060408051808201909152600981526821b0b93137b710189960b91b60208201525b60405161036b9190611e54565b60405180910390f35b34801561038057600080fd5b5061039461038f366004611ea9565b610a33565b604051901515815260200161036b565b3480156103b057600080fd5b50600b546103c4906001600160a01b031681565b6040516001600160a01b03909116815260200161036b565b3480156103e857600080fd5b506014545b60405190815260200161036b565b34801561040757600080fd5b50610394610416366004611ed5565b610a4a565b34801561042757600080fd5b5061032e610436366004611f24565b610b24565b34801561044757600080fd5b5061032e610456366004611e37565b610b48565b34801561046757600080fd5b506103ed610b72565b34801561047c57600080fd5b5061032e61048b366004611e37565b610be3565b34801561049c57600080fd5b506040516012815260200161036b565b3480156104b857600080fd5b5061032e6104c7366004611f41565b610c0d565b3480156104d857600080fd5b50600c546103c4906001600160a01b031681565b3480156104f857600080fd5b50610394610507366004611ea9565b610c1a565b34801561051857600080fd5b506103ed60145481565b34801561052e57600080fd5b5061032e61053d366004611f24565b610cab565b34801561054e57600080fd5b506019546103c4906001600160a01b031681565b34801561056e57600080fd5b5061032e61057d366004611e37565b610cde565b34801561058e57600080fd5b5061032e61059d366004611f24565b610d08565b3480156105ae57600080fd5b5061032e6105bd366004611f41565b610d2a565b3480156105ce57600080fd5b506103ed6105dd366004611e37565b6001600160a01b03166000908152600f602052604090205490565b34801561060457600080fd5b506018546103949060ff1681565b34801561061e57600080fd5b5061032e610d59565b34801561063357600080fd5b5061032e610642366004611f41565b610d6d565b34801561065357600080fd5b5061032e610d96565b34801561066857600080fd5b5061032e610677366004611e37565b610e08565b34801561068857600080fd5b506103ed60165481565b34801561069e57600080fd5b506103ed60175481565b3480156106b457600080fd5b50601a54600160a01b900460ff1615610394565b3480156106d457600080fd5b5060185461039490610100900460ff1681565b3480156106f357600080fd5b50610394610702366004611e37565b60136020526000908152604090205460ff1681565b34801561072357600080fd5b5061032e610732366004611f5a565b610e6a565b34801561074357600080fd5b506000546001600160a01b03166103c4565b34801561076157600080fd5b5060408051808201909152600381526221989960e91b602082015261035e565b34801561078d57600080fd5b5061039461079c366004611ea9565b610ea5565b3480156107ad57600080fd5b506018546103c490630100000090046001600160a01b031681565b3480156107d457600080fd5b506103946107e3366004611ea9565b610f8c565b3480156107f457600080fd5b506103ed60095481565b34801561080a57600080fd5b50610394610819366004611e37565b60116020526000908152604090205460ff1681565b34801561083a57600080fd5b50610394610849366004611e37565b60126020526000908152604090205460ff1681565b34801561086a57600080fd5b50610394610879366004611e37565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156108a357600080fd5b50600d546103c4906001600160a01b031681565b3480156108c357600080fd5b506103ed6108d2366004611f8c565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561090957600080fd5b5061032e610918366004611fc5565b610fb8565b34801561092957600080fd5b506103ed600a5481565b34801561093f57600080fd5b506103ed60155481565b34801561095557600080fd5b50610394610964366004611ed5565b611054565b34801561097557600080fd5b5061032e610984366004611f5a565b6110ea565b34801561099557600080fd5b5061032e6109a4366004611fc5565b61111f565b3480156109b557600080fd5b5061032e6109c4366004611e37565b6111c8565b3480156109d557600080fd5b506018546103949062010000900460ff1681565b3480156109f557600080fd5b50601a546103c4906001600160a01b031681565b610a11611262565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a403384846112bc565b5060015b92915050565b6000826001600160a01b038116610a6057600080fd5b6001600160a01b0385166000908152600e6020908152604080832033845290915290205460001914610b0d576040805180820182526016815275496e73756666696369656e7420416c6c6f77616e636560501b6020808301919091526001600160a01b0388166000908152600e82528381203382529091529190912054610ae89185906113e1565b6001600160a01b0386166000908152600e602090815260408083203384529091529020555b610b1885858561140d565b50600195945050505050565b610b2c611262565b60188054911515620100000262ff000019909216919091179055565b610b50611262565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600f6020527ff4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec3755461dead60009081527f99629f56119585bf27511b6b7d295dffb54757453fcc3dabcf51d92028301f10546014549192610bde929091610bd89190611655565b90611655565b905090565b610beb611262565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b610c15611262565b601555565b336000908152600e602090815260408083206001600160a01b0386168452909152812054610c489083611256565b336000818152600e602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350600192915050565b610cb3611262565b8015610ccc576018805482151560ff1990911617905550565b6018805460ff19168215151790555b50565b610ce6611262565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610d10611262565b601880549115156101000261ff0019909216919091179055565b610d32611262565b610d536103e8610d4d8360145461123e90919063ffffffff16565b9061124a565b60175550565b610d61611262565b610d6b6000611661565b565b610d75611262565b610d906103e8610d4d8360145461123e90919063ffffffff16565b60165550565b610d9e611262565b601960009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b50505050565b610e10611262565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b505050505050565b610e72611262565b6001849055600283905560038290556004819055610e9c81610e9684818888611256565b90611256565b60095550505050565b336000908152600e602090815260408083206001600160a01b0386168452909152812054808310610ef957336000908152600e602090815260408083206001600160a01b0388168452909152812055610f28565b610f038184611655565b336000908152600e602090815260408083206001600160a01b03891684529091529020555b336000818152600e602090815260408083206001600160a01b038916808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b6000826001600160a01b038116610fa257600080fd5b610fad33858561140d565b506001949350505050565b610fc0611262565b6001600160a01b03821660009081526010602052604090205460ff16151581151514156110295760405162461bcd60e51b8152602060048201526012602482015271115c9c9bdc8e88139bdd0818da185b99d95960721b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b600061105e611262565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820184905285169063a9059cbb90604401602060405180830381600087803b1580156110a857600080fd5b505af11580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e09190611ff3565b90505b9392505050565b6110f2611262565b600584905560068390556007829055600881905561111681610e9684818888611256565b600a5550505050565b611127611262565b801561118b576001600160a01b03821660009081526011602052604090205460ff161561118b5760405162461bcd60e51b81526020600482015260126024820152715061697220416c726561647920536574212160701b6044820152606401611020565b6001600160a01b039091166000908152601160209081526040808320805494151560ff199586161790556012909152902080549091166001179055565b6111d0611262565b6001600160a01b0381166112355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611020565b610cdb81611661565b60006110e38284612026565b60006110e38284612045565b60006110e38284612067565b6000546001600160a01b03163314610d6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611020565b6001600160a01b03831661131e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611020565b6001600160a01b03821661137f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611020565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081848411156114055760405162461bcd60e51b81526004016110209190611e54565b505050900390565b6001600160a01b03831660009081526013602052604081205460ff1615801561144f57506001600160a01b03831660009081526013602052604090205460ff16155b80156114625750601854610100900460ff165b156114ca576016548211156114ca5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401611020565b601a54600160a01b900460ff16156114ee576114e78484846116b1565b90506110e3565b6114f6611726565b1561150357611503611786565b6001600160a01b0384166000908152600f60205260409020546115269083611655565b6001600160a01b0385166000908152600f602052604081209190915561154c85856119ac565b6115565782611561565b611561858585611a3e565b60185490915062010000900460ff16801561159557506001600160a01b03841660009081526012602052604090205460ff16155b156115cb576017546115c082610e96876001600160a01b03166000908152600f602052604090205490565b11156115cb57600080fd5b6001600160a01b0384166000908152600f60205260409020546115ee9082611256565b6001600160a01b038086166000818152600f602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116429085815260200190565b60405180910390a3506001949350505050565b60006110e3828461207f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600f60205260408120546116d49083611655565b6001600160a01b038086166000908152600f602052604080822093909355908516815220546117039083611256565b6001600160a01b0384166000908152600f60205260409020555060019392505050565b306000908152600f6020526040812054601554601854908210159060ff16801561175a5750601a54600160a01b900460ff16155b80156117635750805b801561177f57503360009081526011602052604090205460ff16155b9250505090565b601a805460ff60a01b1916600160a01b179055306000908152600f6020526040812054905060006117c4600a5460095461125690919063ffffffff16565b90508115806117d1575080155b156117dd57505061199d565b60006117f660055460015461125690919063ffffffff16565b9050600061181160065460025461125690919063ffffffff16565b9050600061182c60085460045461125690919063ffffffff16565b9050801561186d57600061184485610d4d888561123e565b90506118533061dead83611b4f565b61185d8682611655565b95506118698583611655565b9450505b60006118806002610d4d87818a8961123e565b9050600061188e8783611655565b90504761189b8230611bf5565b60006118a74783611655565b905060006118c06118b989600261124a565b8a90611655565b905060006118d56002610d4d8481878e61123e565b905060006118e783610d4d868c61123e565b905060006118f982610bd88786611655565b9050811561193d57600c546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561193b573d6000803e3d6000fd5b505b801561197f57600b546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561197d573d6000803e3d6000fd5b505b821561198f5761198f8884611d5f565b505050505050505050505050505b601a805460ff60a01b19169055565b6001600160a01b03821660009081526010602052604081205460ff16806119eb57506001600160a01b03821660009081526010602052604090205460ff165b156119f857506000610a44565b6001600160a01b03831660009081526011602052604090205460ff1680611a3757506001600160a01b03821660009081526011602052604090205460ff165b9050610a44565b6001600160a01b038316600090815260116020526040812054819060ff1615611a8357611a7c6103e8610d4d6009548661123e90919063ffffffff16565b9050611ac2565b6001600160a01b03841660009081526011602052604090205460ff1615611ac257611abf6103e8610d4d600a548661123e90919063ffffffff16565b90505b8015611b3c57306000908152600f6020526040902054611ae29082611256565b306000818152600f6020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611b339085815260200190565b60405180910390a35b611b468382611655565b95945050505050565b6001600160a01b0383166000908152600f6020526040902054611b729082611655565b6001600160a01b038085166000908152600f60205260408082209390935590841681522054611ba19082611256565b6001600160a01b038084166000818152600f602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113d49085815260200190565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c2a57611c2a612096565b6001600160a01b03928316602091820292909201810191909152601a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c7e57600080fd5b505afa158015611c92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb691906120ac565b81600181518110611cc957611cc9612096565b6001600160a01b039283166020918202929092010152601a54611cef91309116856112bc565b601a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d289086906000908690889042906004016120c9565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611d56573d6000803e3d6000fd5b50505050505050565b601a54611d779030906001600160a01b0316846112bc565b601a54600d5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015611de257600080fd5b505af1158015611df6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e1b919061213a565b5050505050565b6001600160a01b0381168114610cdb57600080fd5b600060208284031215611e4957600080fd5b81356110e381611e22565b600060208083528351808285015260005b81811015611e8157858101830151858201604001528201611e65565b81811115611e93576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215611ebc57600080fd5b8235611ec781611e22565b946020939093013593505050565b600080600060608486031215611eea57600080fd5b8335611ef581611e22565b92506020840135611f0581611e22565b929592945050506040919091013590565b8015158114610cdb57600080fd5b600060208284031215611f3657600080fd5b81356110e381611f16565b600060208284031215611f5357600080fd5b5035919050565b60008060008060808587031215611f7057600080fd5b5050823594602084013594506040840135936060013592509050565b60008060408385031215611f9f57600080fd5b8235611faa81611e22565b91506020830135611fba81611e22565b809150509250929050565b60008060408385031215611fd857600080fd5b8235611fe381611e22565b91506020830135611fba81611f16565b60006020828403121561200557600080fd5b81516110e381611f16565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561204057612040612010565b500290565b60008261206257634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561207a5761207a612010565b500190565b60008282101561209157612091612010565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120be57600080fd5b81516110e381611e22565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121195784516001600160a01b0316835293830193918301916001016120f4565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561214f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206c6262bd251e276a9ff9b59a4f632b65c5d3e21cd35ce6fb189ed3780bc3665e64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103025760003560e01c80637d1db4a511610190578063c867d60b116100dc578063e2f4560511610095578063ea8b2c441161006f578063ea8b2c4414610989578063f2fde38b146109a9578063f872858a146109c9578063f887ea40146109e957600080fd5b8063e2f4560514610933578063e5711e8b14610949578063e653da081461096957600080fd5b8063c867d60b1461082e578063d43997901461085e578063d469801614610897578063dd62ed3e146108b7578063dde04b95146108fd578063e0202f871461091d57600080fd5b80638da5cb5b11610149578063a8aa1b3111610123578063a8aa1b31146107a1578063a9059cbb146107c8578063b1c09b2a146107e8578063b62496f5146107fe57600080fd5b80638da5cb5b1461073757806395d89b4114610755578063a457c2d71461078157600080fd5b80637d1db4a51461067c578063807c2d9c1461069257806383b4ac68146106a857806385261485146106c85780638b42507f146106e75780638c5a133d1461071757600080fd5b8063395093511161024f57806364f5a5bb11610208578063715018a6116101e2578063715018a614610612578063728d41c914610627578063753d02a114610647578063764d72bf1461065c57600080fd5b806364f5a5bb146105a257806370a08231146105c257806370ee7395146105f857600080fd5b806339509351146104ec5780633eaaf86b1461050c5780634bc6dd18146105225780634d709adf146105425780635958621e146105625780636140a51e1461058257600080fd5b80632563ae83116102bc5780632f34d282116102965780632f34d28214610470578063313ce56714610490578063320d4534146104ac578063361ca077146104cc57600080fd5b80632563ae831461041b578063296f0a0c1461043b5780632b112e491461045b57600080fd5b8062aed52b1461030e57806306fdde0314610330578063095ea7b3146103745780630e36cf2e146103a457806318160ddd146103dc57806323b872dd146103fb57600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e610329366004611e37565b610a09565b005b34801561033c57600080fd5b5060408051808201909152600981526821b0b93137b710189960b91b60208201525b60405161036b9190611e54565b60405180910390f35b34801561038057600080fd5b5061039461038f366004611ea9565b610a33565b604051901515815260200161036b565b3480156103b057600080fd5b50600b546103c4906001600160a01b031681565b6040516001600160a01b03909116815260200161036b565b3480156103e857600080fd5b506014545b60405190815260200161036b565b34801561040757600080fd5b50610394610416366004611ed5565b610a4a565b34801561042757600080fd5b5061032e610436366004611f24565b610b24565b34801561044757600080fd5b5061032e610456366004611e37565b610b48565b34801561046757600080fd5b506103ed610b72565b34801561047c57600080fd5b5061032e61048b366004611e37565b610be3565b34801561049c57600080fd5b506040516012815260200161036b565b3480156104b857600080fd5b5061032e6104c7366004611f41565b610c0d565b3480156104d857600080fd5b50600c546103c4906001600160a01b031681565b3480156104f857600080fd5b50610394610507366004611ea9565b610c1a565b34801561051857600080fd5b506103ed60145481565b34801561052e57600080fd5b5061032e61053d366004611f24565b610cab565b34801561054e57600080fd5b506019546103c4906001600160a01b031681565b34801561056e57600080fd5b5061032e61057d366004611e37565b610cde565b34801561058e57600080fd5b5061032e61059d366004611f24565b610d08565b3480156105ae57600080fd5b5061032e6105bd366004611f41565b610d2a565b3480156105ce57600080fd5b506103ed6105dd366004611e37565b6001600160a01b03166000908152600f602052604090205490565b34801561060457600080fd5b506018546103949060ff1681565b34801561061e57600080fd5b5061032e610d59565b34801561063357600080fd5b5061032e610642366004611f41565b610d6d565b34801561065357600080fd5b5061032e610d96565b34801561066857600080fd5b5061032e610677366004611e37565b610e08565b34801561068857600080fd5b506103ed60165481565b34801561069e57600080fd5b506103ed60175481565b3480156106b457600080fd5b50601a54600160a01b900460ff1615610394565b3480156106d457600080fd5b5060185461039490610100900460ff1681565b3480156106f357600080fd5b50610394610702366004611e37565b60136020526000908152604090205460ff1681565b34801561072357600080fd5b5061032e610732366004611f5a565b610e6a565b34801561074357600080fd5b506000546001600160a01b03166103c4565b34801561076157600080fd5b5060408051808201909152600381526221989960e91b602082015261035e565b34801561078d57600080fd5b5061039461079c366004611ea9565b610ea5565b3480156107ad57600080fd5b506018546103c490630100000090046001600160a01b031681565b3480156107d457600080fd5b506103946107e3366004611ea9565b610f8c565b3480156107f457600080fd5b506103ed60095481565b34801561080a57600080fd5b50610394610819366004611e37565b60116020526000908152604090205460ff1681565b34801561083a57600080fd5b50610394610849366004611e37565b60126020526000908152604090205460ff1681565b34801561086a57600080fd5b50610394610879366004611e37565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156108a357600080fd5b50600d546103c4906001600160a01b031681565b3480156108c357600080fd5b506103ed6108d2366004611f8c565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561090957600080fd5b5061032e610918366004611fc5565b610fb8565b34801561092957600080fd5b506103ed600a5481565b34801561093f57600080fd5b506103ed60155481565b34801561095557600080fd5b50610394610964366004611ed5565b611054565b34801561097557600080fd5b5061032e610984366004611f5a565b6110ea565b34801561099557600080fd5b5061032e6109a4366004611fc5565b61111f565b3480156109b557600080fd5b5061032e6109c4366004611e37565b6111c8565b3480156109d557600080fd5b506018546103949062010000900460ff1681565b3480156109f557600080fd5b50601a546103c4906001600160a01b031681565b610a11611262565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a403384846112bc565b5060015b92915050565b6000826001600160a01b038116610a6057600080fd5b6001600160a01b0385166000908152600e6020908152604080832033845290915290205460001914610b0d576040805180820182526016815275496e73756666696369656e7420416c6c6f77616e636560501b6020808301919091526001600160a01b0388166000908152600e82528381203382529091529190912054610ae89185906113e1565b6001600160a01b0386166000908152600e602090815260408083203384529091529020555b610b1885858561140d565b50600195945050505050565b610b2c611262565b60188054911515620100000262ff000019909216919091179055565b610b50611262565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600f6020527ff4803e074bd026baaf6ed2e288c9515f68c72fb7216eebdd7cae1718a53ec3755461dead60009081527f99629f56119585bf27511b6b7d295dffb54757453fcc3dabcf51d92028301f10546014549192610bde929091610bd89190611655565b90611655565b905090565b610beb611262565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b610c15611262565b601555565b336000908152600e602090815260408083206001600160a01b0386168452909152812054610c489083611256565b336000818152600e602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350600192915050565b610cb3611262565b8015610ccc576018805482151560ff1990911617905550565b6018805460ff19168215151790555b50565b610ce6611262565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610d10611262565b601880549115156101000261ff0019909216919091179055565b610d32611262565b610d536103e8610d4d8360145461123e90919063ffffffff16565b9061124a565b60175550565b610d61611262565b610d6b6000611661565b565b610d75611262565b610d906103e8610d4d8360145461123e90919063ffffffff16565b60165550565b610d9e611262565b601960009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b50505050565b610e10611262565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610e5d576040519150601f19603f3d011682016040523d82523d6000602084013e610e62565b606091505b505050505050565b610e72611262565b6001849055600283905560038290556004819055610e9c81610e9684818888611256565b90611256565b60095550505050565b336000908152600e602090815260408083206001600160a01b0386168452909152812054808310610ef957336000908152600e602090815260408083206001600160a01b0388168452909152812055610f28565b610f038184611655565b336000908152600e602090815260408083206001600160a01b03891684529091529020555b336000818152600e602090815260408083206001600160a01b038916808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b6000826001600160a01b038116610fa257600080fd5b610fad33858561140d565b506001949350505050565b610fc0611262565b6001600160a01b03821660009081526010602052604090205460ff16151581151514156110295760405162461bcd60e51b8152602060048201526012602482015271115c9c9bdc8e88139bdd0818da185b99d95960721b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b600061105e611262565b60405163a9059cbb60e01b81526001600160a01b0384811660048301526024820184905285169063a9059cbb90604401602060405180830381600087803b1580156110a857600080fd5b505af11580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e09190611ff3565b90505b9392505050565b6110f2611262565b600584905560068390556007829055600881905561111681610e9684818888611256565b600a5550505050565b611127611262565b801561118b576001600160a01b03821660009081526011602052604090205460ff161561118b5760405162461bcd60e51b81526020600482015260126024820152715061697220416c726561647920536574212160701b6044820152606401611020565b6001600160a01b039091166000908152601160209081526040808320805494151560ff199586161790556012909152902080549091166001179055565b6111d0611262565b6001600160a01b0381166112355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611020565b610cdb81611661565b60006110e38284612026565b60006110e38284612045565b60006110e38284612067565b6000546001600160a01b03163314610d6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611020565b6001600160a01b03831661131e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611020565b6001600160a01b03821661137f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611020565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081848411156114055760405162461bcd60e51b81526004016110209190611e54565b505050900390565b6001600160a01b03831660009081526013602052604081205460ff1615801561144f57506001600160a01b03831660009081526013602052604090205460ff16155b80156114625750601854610100900460ff165b156114ca576016548211156114ca5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401611020565b601a54600160a01b900460ff16156114ee576114e78484846116b1565b90506110e3565b6114f6611726565b1561150357611503611786565b6001600160a01b0384166000908152600f60205260409020546115269083611655565b6001600160a01b0385166000908152600f602052604081209190915561154c85856119ac565b6115565782611561565b611561858585611a3e565b60185490915062010000900460ff16801561159557506001600160a01b03841660009081526012602052604090205460ff16155b156115cb576017546115c082610e96876001600160a01b03166000908152600f602052604090205490565b11156115cb57600080fd5b6001600160a01b0384166000908152600f60205260409020546115ee9082611256565b6001600160a01b038086166000818152600f602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116429085815260200190565b60405180910390a3506001949350505050565b60006110e3828461207f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600f60205260408120546116d49083611655565b6001600160a01b038086166000908152600f602052604080822093909355908516815220546117039083611256565b6001600160a01b0384166000908152600f60205260409020555060019392505050565b306000908152600f6020526040812054601554601854908210159060ff16801561175a5750601a54600160a01b900460ff16155b80156117635750805b801561177f57503360009081526011602052604090205460ff16155b9250505090565b601a805460ff60a01b1916600160a01b179055306000908152600f6020526040812054905060006117c4600a5460095461125690919063ffffffff16565b90508115806117d1575080155b156117dd57505061199d565b60006117f660055460015461125690919063ffffffff16565b9050600061181160065460025461125690919063ffffffff16565b9050600061182c60085460045461125690919063ffffffff16565b9050801561186d57600061184485610d4d888561123e565b90506118533061dead83611b4f565b61185d8682611655565b95506118698583611655565b9450505b60006118806002610d4d87818a8961123e565b9050600061188e8783611655565b90504761189b8230611bf5565b60006118a74783611655565b905060006118c06118b989600261124a565b8a90611655565b905060006118d56002610d4d8481878e61123e565b905060006118e783610d4d868c61123e565b905060006118f982610bd88786611655565b9050811561193d57600c546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561193b573d6000803e3d6000fd5b505b801561197f57600b546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561197d573d6000803e3d6000fd5b505b821561198f5761198f8884611d5f565b505050505050505050505050505b601a805460ff60a01b19169055565b6001600160a01b03821660009081526010602052604081205460ff16806119eb57506001600160a01b03821660009081526010602052604090205460ff165b156119f857506000610a44565b6001600160a01b03831660009081526011602052604090205460ff1680611a3757506001600160a01b03821660009081526011602052604090205460ff165b9050610a44565b6001600160a01b038316600090815260116020526040812054819060ff1615611a8357611a7c6103e8610d4d6009548661123e90919063ffffffff16565b9050611ac2565b6001600160a01b03841660009081526011602052604090205460ff1615611ac257611abf6103e8610d4d600a548661123e90919063ffffffff16565b90505b8015611b3c57306000908152600f6020526040902054611ae29082611256565b306000818152600f6020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611b339085815260200190565b60405180910390a35b611b468382611655565b95945050505050565b6001600160a01b0383166000908152600f6020526040902054611b729082611655565b6001600160a01b038085166000908152600f60205260408082209390935590841681522054611ba19082611256565b6001600160a01b038084166000818152600f602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113d49085815260200190565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c2a57611c2a612096565b6001600160a01b03928316602091820292909201810191909152601a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c7e57600080fd5b505afa158015611c92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb691906120ac565b81600181518110611cc957611cc9612096565b6001600160a01b039283166020918202929092010152601a54611cef91309116856112bc565b601a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d289086906000908690889042906004016120c9565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611d56573d6000803e3d6000fd5b50505050505050565b601a54611d779030906001600160a01b0316846112bc565b601a54600d5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015611de257600080fd5b505af1158015611df6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e1b919061213a565b5050505050565b6001600160a01b0381168114610cdb57600080fd5b600060208284031215611e4957600080fd5b81356110e381611e22565b600060208083528351808285015260005b81811015611e8157858101830151858201604001528201611e65565b81811115611e93576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215611ebc57600080fd5b8235611ec781611e22565b946020939093013593505050565b600080600060608486031215611eea57600080fd5b8335611ef581611e22565b92506020840135611f0581611e22565b929592945050506040919091013590565b8015158114610cdb57600080fd5b600060208284031215611f3657600080fd5b81356110e381611f16565b600060208284031215611f5357600080fd5b5035919050565b60008060008060808587031215611f7057600080fd5b5050823594602084013594506040840135936060013592509050565b60008060408385031215611f9f57600080fd5b8235611faa81611e22565b91506020830135611fba81611e22565b809150509250929050565b60008060408385031215611fd857600080fd5b8235611fe381611e22565b91506020830135611fba81611f16565b60006020828403121561200557600080fd5b81516110e381611f16565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561204057612040612010565b500290565b60008261206257634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561207a5761207a612010565b500190565b60008282101561209157612091612010565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120be57600080fd5b81516110e381611e22565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121195784516001600160a01b0316835293830193918301916001016120f4565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561214f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206c6262bd251e276a9ff9b59a4f632b65c5d3e21cd35ce6fb189ed3780bc3665e64736f6c63430008090033

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.