ETH Price: $3,088.25 (-3.76%)
Gas: 7 Gwei

Token

ALSD (ALSD)
 

Overview

Max Total Supply

2,500,000 ALSD

Holders

165

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,999.000000000007314109 ALSD

Value
$0.00
0xa69c7d711ad1d87a422cc4df2a43e8c6a25c03be
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ALSD

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 10 : ALSD.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IUniswapV2Factory.sol";

/*
 * Website: alacritylsd.com
 * X/Twitter: x.com/alacritylsd
 * Telegram: t.me/alacritylsd
 */

/*
 * Alacrity is a dynamic LSD liquidity and USDL trading platform.
 * We aim to unlock substantial returns for LSD holders, minimize liquidity costs,
 * and support LSD-related protocols. Our guide outlines ALSD's vision to revolutionize
 * the LSD and DeFi ecosystems through unique liquidity strategies and an innovative USDL
 * trading platform.
 */

contract ALSD is ERC20, ERC20Burnable, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping(address => bool) public automatedMarketMakerPairs;

    uint256 public constant MAX_SUPPLY = 10_000_000 * 10 ** 18;

    uint256 public sellFee = 20;
    address public feesWallet;
    uint256 public maxWallet;
    mapping(address => bool) private isExcludedFromFees;

    address public factoryAddress;
    bool public factoryAddressSet = false;

    modifier onlyFactory() {
        require(
            msg.sender == factoryAddress,
            "Only the Staking Pool Factory can call this function"
        );
        _;
    }

    function setFactoryAddress(address _factoryAddress) external onlyOwner {
        require(!factoryAddressSet, "Factory address has already been set");
        factoryAddress = _factoryAddress;
        factoryAddressSet = true;
    }

    constructor(
        address _feesWallet,
        address _treasuryWallet,
        address _airdropWallet,
        address _teamWallet
    ) ERC20("ALSD", "ALSD") {
        feesWallet = _feesWallet;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        automatedMarketMakerPairs[address(uniswapV2Pair)] = true;

        maxWallet = 2_000 * 1e18; // 2%

        isExcludedFromFees[owner()] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[_treasuryWallet] = true;
        isExcludedFromFees[_airdropWallet] = true;
        isExcludedFromFees[_teamWallet] = true;
        isExcludedFromFees[feesWallet] = true;
        isExcludedFromFees[address(_uniswapV2Router)] = true;
        isExcludedFromFees[address(uniswapV2Pair)] = true;

        _mint(owner(), 100_000 * 10 ** 18);
        _mint(_treasuryWallet, 800_000 * 10 ** 18);
        _mint(_airdropWallet, 1_100_000 * 10 ** 18);
        _mint(_teamWallet, 300_000 * 10 ** 18);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        bool isSelling = automatedMarketMakerPairs[to];

        bool takeFee = true;
        uint256 fees = 0;

        if (isExcludedFromFees[from]) {
            takeFee = false;
        }

        if (sellFee == 0) {
            takeFee = false;
        }

        if (!isExcludedFromFees[to]) {
            require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
        }

        if (isSelling && takeFee) {
            fees = (amount * (sellFee)) / 100;
            if (fees > 0) {
                super._transfer(from, feesWallet, fees);
            }

            amount -= fees;
        }

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

    function mintIncentiveLiquidity(
        uint256 amount
    ) external onlyFactory returns (bool) {
        require(
            totalSupply() + amount <= MAX_SUPPLY,
            "Exceeded maximum supply"
        );
        _mint(factoryAddress, amount);
        return true;
    }

    function setFeesWallet(address _address) external onlyOwner {
        feesWallet = _address;
    }

    function updateSellFees(uint256 _fee) external onlyOwner {
        require(_fee <= 20, "Must keep sell fee at 20% or less");
        sellFee = _fee;
    }

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

    function excludeFromFees(
        address account,
        bool excluded
    ) external onlyOwner {
        isExcludedFromFees[account] = excluded;
    }

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

        automatedMarketMakerPairs[pair] = value;
    }
}

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

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

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

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

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

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

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

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

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

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

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

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

import "./IUniswapV2Router01.sol";

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_feesWallet","type":"address"},{"internalType":"address","name":"_treasuryWallet","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"}],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factoryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factoryAddressSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintIncentiveLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_factoryAddress","type":"address"}],"name":"setFactoryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526014600755600b805460ff60a01b191690553480156200002357600080fd5b5060405162001d3238038062001d328339810160408190526200004691620004d8565b604080518082018252600480825263105314d160e21b6020808401829052845180860190955291845290830152906003620000828382620005d9565b506004620000918282620005d9565b505050620000ae620000a86200039a60201b60201c565b6200039e565b600880546001600160a01b0319166001600160a01b038616179055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001469190620006a5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba9190620006a5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620006a5565b6001600160a01b031660a08190526000908152600660205260408120805460ff19166001908117909155686c6b935b8bbd40000060095590600a906200027c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600a9093528183208054851660019081179091558882168452828420805486168217905587821684528284208054861682179055868216845282842080548616821790556008548216845282842080548616821790558582168452828420805486168217905560a0519091168352912080549092161790556200034d6200033c6005546001600160a01b031690565b69152d02c7e14af6800000620003f0565b620003638469a968163f0a57b4000000620003f0565b620003798369e8ef1e96ae3897800000620003f0565b6200038f82693f870857a3e0e3800000620003f0565b5050505050620006f2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200044b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200045f9190620006ca565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b0381168114620004d357600080fd5b919050565b60008060008060808587031215620004ef57600080fd5b620004fa85620004bb565b93506200050a60208601620004bb565b92506200051a60408601620004bb565b91506200052a60608601620004bb565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056057607f821691505b6020821081036200058157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004b657600081815260208120601f850160051c81016020861015620005b05750805b601f850160051c820191505b81811015620005d157828155600101620005bc565b505050505050565b81516001600160401b03811115620005f557620005f562000535565b6200060d816200060684546200054b565b8462000587565b602080601f8311600181146200064557600084156200062c5750858301515b600019600386901b1c1916600185901b178555620005d1565b600085815260208120601f198616915b82811015620006765788860151825594840194600190910190840162000655565b5085821015620006955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006b857600080fd5b620006c382620004bb565b9392505050565b80820180821115620006ec57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516116136200071f6000396000818161032b01526108410152600061024f01526116136000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806379cc67901161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610465578063eba4c3331461049e578063f2fde38b146104b1578063f8b45b05146104c457600080fd5b8063a9059cbb14610409578063b62496f51461041c578063c02466681461043f578063c18bc1951461045257600080fd5b806395d89b41116100de57806395d89b41146103c8578063966dae0e146103d05780639a7a23d6146103e3578063a457c2d7146103f657600080fd5b806379cc67901461037e5780637e44d2cc1461039157806383c17c55146103a45780638da5cb5b146103b757600080fd5b806332cb6b0c1161018757806343d4f92b1161015657806343d4f92b1461031357806349bd5a5e1461032657806370a082311461034d578063715018a61461037657600080fd5b806332cb6b0c146102c6578063353cf8be146102d857806339509351146102eb57806342966c68146102fe57600080fd5b806318160ddd116101c357806318160ddd1461028957806323b872dd1461029b5780632b14ca56146102ae578063313ce567146102b757600080fd5b806306fdde03146101f5578063095ea7b31461021357806313801fdc146102365780631694505e1461024a575b600080fd5b6101fd6104cd565b60405161020a91906113b9565b60405180910390f35b61022661022136600461141e565b61055f565b604051901515815260200161020a565b600b5461022690600160a01b900460ff1681565b6102717f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161020a565b6002545b60405190815260200161020a565b6102266102a9366004611448565b610579565b61028d60075481565b6040516012815260200161020a565b61028d6a084595161401484a00000081565b6102266102e6366004611484565b61059d565b6102266102f936600461141e565b6106b2565b61031161030c366004611484565b6106f1565b005b61031161032136600461149d565b6106fe565b6102717f000000000000000000000000000000000000000000000000000000000000000081565b61028d61035b36600461149d565b6001600160a01b031660009081526020819052604090205490565b610311610735565b61031161038c36600461141e565b610749565b600854610271906001600160a01b031681565b6103116103b236600461149d565b610762565b6005546001600160a01b0316610271565b6101fd610828565b600b54610271906001600160a01b031681565b6103116103f13660046114bf565b610837565b61022661040436600461141e565b610911565b61022661041736600461141e565b6109bb565b61022661042a36600461149d565b60066020526000908152604090205460ff1681565b61031161044d3660046114bf565b6109c9565b610311610460366004611484565b6109fc565b61028d6104733660046114fb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103116104ac366004611484565b610ac4565b6103116104bf36600461149d565b610b2c565b61028d60095481565b6060600380546104dc9061152e565b80601f01602080910402602001604051908101604052809291908181526020018280546105089061152e565b80156105555780601f1061052a57610100808354040283529160200191610555565b820191906000526020600020905b81548152906001019060200180831161053857829003601f168201915b5050505050905090565b60003361056d818585610bb9565b60019150505b92915050565b600033610587858285610d11565b610592858585610da3565b506001949350505050565b600b546000906001600160a01b031633146106255760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865205374616b696e6720506f6f6c20466163746f727920636160448201527f6e2063616c6c20746869732066756e6374696f6e00000000000000000000000060648201526084015b60405180910390fd5b6a084595161401484a0000008261063b60025490565b610645919061157e565b11156106935760405162461bcd60e51b815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c79000000000000000000604482015260640161061c565b600b546106a9906001600160a01b031683610f07565b5060015b919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061056d90829086906106ec90879061157e565b610bb9565b6106fb3382610fc6565b50565b610706611113565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61073d611113565b610747600061116d565b565b610754823383610d11565b61075e8282610fc6565b5050565b61076a611113565b600b54600160a01b900460ff16156107e95760405162461bcd60e51b8152602060048201526024808201527f466163746f727920616464726573732068617320616c7265616479206265656e60448201527f2073657400000000000000000000000000000000000000000000000000000000606482015260840161061c565b600b80547fffffffffffffffffffffff000000000000000000000000000000000000000000166001600160a01b0390921691909117600160a01b179055565b6060600480546104dc9061152e565b61083f611113565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036108e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161061c565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161061c565b6105928286868403610bb9565b60003361056d818585610da3565b6109d1611113565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610a04611113565b670de0b6b3a76400006109c4610a1960025490565b610a2490600a611591565b610a2e91906115a8565b610a3891906115a8565b811015610aac5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f322e352500000000000000000000000000000000000000000000000000000000606482015260840161061c565b610abe81670de0b6b3a7640000611591565b60095550565b610acc611113565b6014811115610b275760405162461bcd60e51b815260206004820152602160248201527f4d757374206b6565702073656c6c2066656520617420323025206f72206c65736044820152607360f81b606482015260840161061c565b600755565b610b34611113565b6001600160a01b038116610bb05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161061c565b6106fb8161116d565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b038216610cb05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d9d5781811015610d905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161061c565b610d9d8484848403610bb9565b50505050565b80600003610dbc57610db7838360006111cc565b505050565b6001600160a01b038083166000908152600660209081526040808320549387168352600a90915281205460ff92831692600192911615610dfb57600091505b600754600003610e0a57600091505b6001600160a01b0385166000908152600a602052604090205460ff16610e9e576009546001600160a01b038616600090815260208190526040902054610e50908661157e565b1115610e9e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161061c565b828015610ea85750815b15610ef457606460075485610ebd9190611591565b610ec791906115a8565b90508015610ee757600854610ee79087906001600160a01b0316836111cc565b610ef181856115ca565b93505b610eff8686866111cc565b505050505050565b6001600160a01b038216610f5d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161061c565b8060026000828254610f6f919061157e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166110265760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161061c565b6001600160a01b038216600090815260208190526040902054818110156110b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161061c565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0382166112c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b038316600090815260208190526040902054818110156113535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d9d565b600060208083528351808285015260005b818110156113e6578581018301518582016040015282016113ca565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106ad57600080fd5b6000806040838503121561143157600080fd5b61143a83611407565b946020939093013593505050565b60008060006060848603121561145d57600080fd5b61146684611407565b925061147460208501611407565b9150604084013590509250925092565b60006020828403121561149657600080fd5b5035919050565b6000602082840312156114af57600080fd5b6114b882611407565b9392505050565b600080604083850312156114d257600080fd5b6114db83611407565b9150602083013580151581146114f057600080fd5b809150509250929050565b6000806040838503121561150e57600080fd5b61151783611407565b915061152560208401611407565b90509250929050565b600181811c9082168061154257607f821691505b60208210810361156257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561057357610573611568565b808202811582820484141761057357610573611568565b6000826115c557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105735761057361156856fea2646970667358221220675b9a4aeeb2e890401bd8c70458c67f38123bb7401c13b7f82f7a1d99f4d66c64736f6c63430008130033000000000000000000000000fcd65730d64630e00c63ae02bbd4fba80181cd4d000000000000000000000000b258f36dabed80ee075e4179e54797a75bf708ae0000000000000000000000009525fc2ed47a56b665ea3b80de46b4c3f8bcc92a00000000000000000000000038a22af9cdd2848e98f99989510eaf833bf91eca

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806379cc67901161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e14610465578063eba4c3331461049e578063f2fde38b146104b1578063f8b45b05146104c457600080fd5b8063a9059cbb14610409578063b62496f51461041c578063c02466681461043f578063c18bc1951461045257600080fd5b806395d89b41116100de57806395d89b41146103c8578063966dae0e146103d05780639a7a23d6146103e3578063a457c2d7146103f657600080fd5b806379cc67901461037e5780637e44d2cc1461039157806383c17c55146103a45780638da5cb5b146103b757600080fd5b806332cb6b0c1161018757806343d4f92b1161015657806343d4f92b1461031357806349bd5a5e1461032657806370a082311461034d578063715018a61461037657600080fd5b806332cb6b0c146102c6578063353cf8be146102d857806339509351146102eb57806342966c68146102fe57600080fd5b806318160ddd116101c357806318160ddd1461028957806323b872dd1461029b5780632b14ca56146102ae578063313ce567146102b757600080fd5b806306fdde03146101f5578063095ea7b31461021357806313801fdc146102365780631694505e1461024a575b600080fd5b6101fd6104cd565b60405161020a91906113b9565b60405180910390f35b61022661022136600461141e565b61055f565b604051901515815260200161020a565b600b5461022690600160a01b900460ff1681565b6102717f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161020a565b6002545b60405190815260200161020a565b6102266102a9366004611448565b610579565b61028d60075481565b6040516012815260200161020a565b61028d6a084595161401484a00000081565b6102266102e6366004611484565b61059d565b6102266102f936600461141e565b6106b2565b61031161030c366004611484565b6106f1565b005b61031161032136600461149d565b6106fe565b6102717f0000000000000000000000009cdf3a77edb3782ba259b7c2bef674637c0243d181565b61028d61035b36600461149d565b6001600160a01b031660009081526020819052604090205490565b610311610735565b61031161038c36600461141e565b610749565b600854610271906001600160a01b031681565b6103116103b236600461149d565b610762565b6005546001600160a01b0316610271565b6101fd610828565b600b54610271906001600160a01b031681565b6103116103f13660046114bf565b610837565b61022661040436600461141e565b610911565b61022661041736600461141e565b6109bb565b61022661042a36600461149d565b60066020526000908152604090205460ff1681565b61031161044d3660046114bf565b6109c9565b610311610460366004611484565b6109fc565b61028d6104733660046114fb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103116104ac366004611484565b610ac4565b6103116104bf36600461149d565b610b2c565b61028d60095481565b6060600380546104dc9061152e565b80601f01602080910402602001604051908101604052809291908181526020018280546105089061152e565b80156105555780601f1061052a57610100808354040283529160200191610555565b820191906000526020600020905b81548152906001019060200180831161053857829003601f168201915b5050505050905090565b60003361056d818585610bb9565b60019150505b92915050565b600033610587858285610d11565b610592858585610da3565b506001949350505050565b600b546000906001600160a01b031633146106255760405162461bcd60e51b815260206004820152603460248201527f4f6e6c7920746865205374616b696e6720506f6f6c20466163746f727920636160448201527f6e2063616c6c20746869732066756e6374696f6e00000000000000000000000060648201526084015b60405180910390fd5b6a084595161401484a0000008261063b60025490565b610645919061157e565b11156106935760405162461bcd60e51b815260206004820152601760248201527f4578636565646564206d6178696d756d20737570706c79000000000000000000604482015260640161061c565b600b546106a9906001600160a01b031683610f07565b5060015b919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061056d90829086906106ec90879061157e565b610bb9565b6106fb3382610fc6565b50565b610706611113565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61073d611113565b610747600061116d565b565b610754823383610d11565b61075e8282610fc6565b5050565b61076a611113565b600b54600160a01b900460ff16156107e95760405162461bcd60e51b8152602060048201526024808201527f466163746f727920616464726573732068617320616c7265616479206265656e60448201527f2073657400000000000000000000000000000000000000000000000000000000606482015260840161061c565b600b80547fffffffffffffffffffffff000000000000000000000000000000000000000000166001600160a01b0390921691909117600160a01b179055565b6060600480546104dc9061152e565b61083f611113565b7f0000000000000000000000009cdf3a77edb3782ba259b7c2bef674637c0243d16001600160a01b0316826001600160a01b0316036108e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161061c565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161061c565b6105928286868403610bb9565b60003361056d818585610da3565b6109d1611113565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610a04611113565b670de0b6b3a76400006109c4610a1960025490565b610a2490600a611591565b610a2e91906115a8565b610a3891906115a8565b811015610aac5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f322e352500000000000000000000000000000000000000000000000000000000606482015260840161061c565b610abe81670de0b6b3a7640000611591565b60095550565b610acc611113565b6014811115610b275760405162461bcd60e51b815260206004820152602160248201527f4d757374206b6565702073656c6c2066656520617420323025206f72206c65736044820152607360f81b606482015260840161061c565b600755565b610b34611113565b6001600160a01b038116610bb05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161061c565b6106fb8161116d565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b038216610cb05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d9d5781811015610d905760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161061c565b610d9d8484848403610bb9565b50505050565b80600003610dbc57610db7838360006111cc565b505050565b6001600160a01b038083166000908152600660209081526040808320549387168352600a90915281205460ff92831692600192911615610dfb57600091505b600754600003610e0a57600091505b6001600160a01b0385166000908152600a602052604090205460ff16610e9e576009546001600160a01b038616600090815260208190526040902054610e50908661157e565b1115610e9e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161061c565b828015610ea85750815b15610ef457606460075485610ebd9190611591565b610ec791906115a8565b90508015610ee757600854610ee79087906001600160a01b0316836111cc565b610ef181856115ca565b93505b610eff8686866111cc565b505050505050565b6001600160a01b038216610f5d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161061c565b8060026000828254610f6f919061157e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166110265760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161061c565b6001600160a01b038216600090815260208190526040902054818110156110b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161061c565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b0382166112c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b038316600090815260208190526040902054818110156113535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161061c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d9d565b600060208083528351808285015260005b818110156113e6578581018301518582016040015282016113ca565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146106ad57600080fd5b6000806040838503121561143157600080fd5b61143a83611407565b946020939093013593505050565b60008060006060848603121561145d57600080fd5b61146684611407565b925061147460208501611407565b9150604084013590509250925092565b60006020828403121561149657600080fd5b5035919050565b6000602082840312156114af57600080fd5b6114b882611407565b9392505050565b600080604083850312156114d257600080fd5b6114db83611407565b9150602083013580151581146114f057600080fd5b809150509250929050565b6000806040838503121561150e57600080fd5b61151783611407565b915061152560208401611407565b90509250929050565b600181811c9082168061154257607f821691505b60208210810361156257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561057357610573611568565b808202811582820484141761057357610573611568565b6000826115c557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105735761057361156856fea2646970667358221220675b9a4aeeb2e890401bd8c70458c67f38123bb7401c13b7f82f7a1d99f4d66c64736f6c63430008130033

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

000000000000000000000000fcd65730d64630e00c63ae02bbd4fba80181cd4d000000000000000000000000b258f36dabed80ee075e4179e54797a75bf708ae0000000000000000000000009525fc2ed47a56b665ea3b80de46b4c3f8bcc92a00000000000000000000000038a22af9cdd2848e98f99989510eaf833bf91eca

-----Decoded View---------------
Arg [0] : _feesWallet (address): 0xFCd65730D64630E00c63AE02BbD4fbA80181Cd4d
Arg [1] : _treasuryWallet (address): 0xB258f36DabED80Ee075e4179E54797a75bF708AE
Arg [2] : _airdropWallet (address): 0x9525FC2Ed47A56b665ea3B80DE46B4c3F8bCC92a
Arg [3] : _teamWallet (address): 0x38a22aF9CdD2848e98F99989510eAF833Bf91ECA

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000fcd65730d64630e00c63ae02bbd4fba80181cd4d
Arg [1] : 000000000000000000000000b258f36dabed80ee075e4179e54797a75bf708ae
Arg [2] : 0000000000000000000000009525fc2ed47a56b665ea3b80de46b4c3f8bcc92a
Arg [3] : 00000000000000000000000038a22af9cdd2848e98f99989510eaf833bf91eca


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.