ETH Price: $3,326.70 (-4.07%)

Token

Bomb (BOMB)
 

Overview

Max Total Supply

911,000,000,000 BOMB

Holders

141

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
911,000,000 BOMB

Value
$0.00
0xf7b3e7e00f7b6d0e259ffb82f2d5a130dfd021f1
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:
Bomb

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-22
*/

/**

Website : https://www.bomberc20.xyz/
Telegram : https://t.me/bombcoinportal
Twitter : https://twitter.com/bomberc20

*/


// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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: bomb.sol


pragma solidity ^0.8.17;

contract Bomb is Ownable, ERC20 {
    bool public tradingEnabled;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    uint256 public buyTaxRate;
    uint256 public sellTaxRate;
    address public taxWallet;


    constructor(address _marketingWallet, address _taxWallet, address _cexWallet,  address _airdropWallet) ERC20("Bomb", "BOMB") {

        uint256 totalSupply = 911000000000 * 10**18;
        uint256 supply70Percent = (totalSupply * 70) / 100;
        uint256 supply15Percent = (totalSupply * 15) / 100;
        uint256 supply10Percent = (totalSupply * 10) / 100;
        uint256 supply5Percent = (totalSupply * 5) / 100;

        _mint(msg.sender, supply70Percent);
        _mint(_marketingWallet, supply10Percent);
        _mint(_cexWallet, supply15Percent);
        _mint(_airdropWallet, supply5Percent);

        taxWallet = _taxWallet;

    }

    function setRule(address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function enableTrading() external onlyOwner {
        tradingEnabled = true;
    }

    function setTaxRate(uint256 _buyTaxRate, uint256 _sellTaxRate) external onlyOwner {
        buyTaxRate = _buyTaxRate;
        sellTaxRate = _sellTaxRate;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(tradingEnabled || sender == owner() || recipient == owner(), "Forbid");

        if (tradingEnabled && sender == uniswapV2Pair) {
            require(balanceOf(recipient) + amount <= maxHoldingAmount && balanceOf(recipient) + amount >= minHoldingAmount, "Forbid");
        }

        uint256 taxAmount = 0;
        if (sender == uniswapV2Pair) {
            taxAmount = amount * buyTaxRate / 100;
        } else if (recipient == uniswapV2Pair) {
            taxAmount = amount * sellTaxRate / 100;
        }

        uint256 amountAfterTax = amount - taxAmount;
        super._transfer(sender, recipient, amountAfterTax);
        if (taxAmount > 0) {
            super._transfer(sender, taxWallet, taxAmount);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"address","name":"_cexWallet","type":"address"},{"internalType":"address","name":"_airdropWallet","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTaxRate","type":"uint256"},{"internalType":"uint256","name":"_sellTaxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200147f3803806200147f8339810160408190526200003491620002d2565b604051806040016040528060048152602001632137b6b160e11b815250604051806040016040528060048152602001632127a6a160e11b81525062000088620000826200019460201b60201c565b62000198565b6004620000968382620003d3565b506005620000a58282620003d3565b506c0b7f9989bcb6f858bd980000009150600090506064620000c9836046620004b5565b620000d59190620004d5565b905060006064620000e884600f620004b5565b620000f49190620004d5565b9050600060646200010785600a620004b5565b620001139190620004d5565b90506000606462000126866005620004b5565b620001329190620004d5565b9050620001403385620001e8565b6200014c8983620001e8565b620001588784620001e8565b620001648682620001e8565b5050600c80546001600160a01b0319166001600160a01b039790971696909617909555506200050e945050505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002579190620004f8565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b0381168114620002cd57600080fd5b919050565b60008060008060808587031215620002e957600080fd5b620002f485620002b5565b93506200030460208601620002b5565b92506200031460408601620002b5565b91506200032460608601620002b5565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035a57607f821691505b6020821081036200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b057600081815260208120601f850160051c81016020861015620003aa5750805b601f850160051c820191505b81811015620003cb57828155600101620003b6565b505050505050565b81516001600160401b03811115620003ef57620003ef6200032f565b620004078162000400845462000345565b8462000381565b602080601f8311600181146200043f5760008415620004265750858301515b600019600386901b1c1916600185901b178555620003cb565b600085815260208120601f198616915b8281101562000470578886015182559484019460019091019084016200044f565b50858210156200048f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004cf57620004cf6200049f565b92915050565b600082620004f357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004cf57620004cf6200049f565b610f61806200051e6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80634ada218b116100de5780638a8c523c11610097578063a457c2d711610071578063a457c2d7146102fc578063a9059cbb1461030f578063dd62ed3e14610322578063f2fde38b1461033557600080fd5b80638a8c523c146102db5780638da5cb5b146102e357806395d89b41146102f457600080fd5b80634ada218b14610278578063691f224f146102855780636ac45fbc1461028e57806370a08231146102a1578063715018a6146102ca57806389f9a1d3146102d257600080fd5b80632beb8159116101305780632beb8159146101f05780632dc0562d14610205578063313ce56714610230578063395093511461023f57806342966c681461025257806349bd5a5e1461026557600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b95780631ab99e12146101cb57806323b872dd146101d457806324024efd146101e7575b600080fd5b610180610348565b60405161018d9190610ce9565b60405180910390f35b6101a96101a4366004610d53565b6103da565b604051901515815260200161018d565b6003545b60405190815260200161018d565b6101bd60085481565b6101a96101e2366004610d7d565b6103f4565b6101bd600b5481565b6102036101fe366004610db9565b610418565b005b600c54610218906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6040516012815260200161018d565b6101a961024d366004610d53565b61042b565b610203610260366004610ddb565b61044d565b600954610218906001600160a01b031681565b6006546101a99060ff1681565b6101bd600a5481565b61020361029c366004610df4565b61045a565b6101bd6102af366004610e27565b6001600160a01b031660009081526001602052604090205490565b61020361048b565b6101bd60075481565b61020361049f565b6000546001600160a01b0316610218565b6101806104b6565b6101a961030a366004610d53565b6104c5565b6101a961031d366004610d53565b610545565b6101bd610330366004610e49565b610553565b610203610343366004610e27565b61057e565b60606004805461035790610e7c565b80601f016020809104026020016040519081016040528092919081815260200182805461038390610e7c565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b6000336103e88185856105f4565b60019150505b92915050565b600033610402858285610719565b61040d858585610793565b506001949350505050565b610420610968565b600a91909155600b55565b6000336103e881858561043e8383610553565b6104489190610ecc565b6105f4565b61045733826109c2565b50565b610462610968565b600980546001600160a01b0319166001600160a01b039490941693909317909255600755600855565b610493610968565b61049d6000610aee565b565b6104a7610968565b6006805460ff19166001179055565b60606005805461035790610e7c565b600033816104d38286610553565b9050838110156105385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61040d82868684036105f4565b6000336103e8818585610793565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610586610968565b6001600160a01b0381166105eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b61045781610aee565b6001600160a01b0383166106565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052f565b6001600160a01b0382166106b75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107258484610553565b9050600019811461078d57818110156107805760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052f565b61078d84848484036105f4565b50505050565b60065460ff16806107b157506000546001600160a01b038481169116145b806107c957506000546001600160a01b038381169116145b6107fe5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161052f565b60065460ff16801561081d57506009546001600160a01b038481169116145b156108bd5760075481610845846001600160a01b031660009081526001602052604090205490565b61084f9190610ecc565b1115801561088857506008548161087b846001600160a01b031660009081526001602052604090205490565b6108859190610ecc565b10155b6108bd5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161052f565b6009546000906001600160a01b03908116908516036108f7576064600a54836108e69190610edf565b6108f09190610ef6565b905061092a565b6009546001600160a01b039081169084160361092a576064600b548361091d9190610edf565b6109279190610ef6565b90505b60006109368284610f18565b9050610943858583610b3e565b811561096157600c546109619086906001600160a01b031684610b3e565b5050505050565b6000546001600160a01b0316331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b6001600160a01b038216610a225760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161052f565b6001600160a01b03821660009081526001602052604090205481811015610a965760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161052f565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161070c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610ba25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052f565b6001600160a01b038216610c045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052f565b6001600160a01b03831660009081526001602052604090205481811015610c7c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052f565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cdc9086815260200190565b60405180910390a361078d565b600060208083528351808285015260005b81811015610d1657858101830151858201604001528201610cfa565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4e57600080fd5b919050565b60008060408385031215610d6657600080fd5b610d6f83610d37565b946020939093013593505050565b600080600060608486031215610d9257600080fd5b610d9b84610d37565b9250610da960208501610d37565b9150604084013590509250925092565b60008060408385031215610dcc57600080fd5b50508035926020909101359150565b600060208284031215610ded57600080fd5b5035919050565b600080600060608486031215610e0957600080fd5b610e1284610d37565b95602085013595506040909401359392505050565b600060208284031215610e3957600080fd5b610e4282610d37565b9392505050565b60008060408385031215610e5c57600080fd5b610e6583610d37565b9150610e7360208401610d37565b90509250929050565b600181811c90821680610e9057607f821691505b602082108103610eb057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103ee576103ee610eb6565b80820281158282048414176103ee576103ee610eb6565b600082610f1357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103ee576103ee610eb656fea2646970667358221220ea26d0f89c29837c126860baf3acebd27dc06d6e49d97cbc3a7a69c817a4469664736f6c63430008110033000000000000000000000000d3c8e146530bc650ddbbf93fdb33fe529fb815230000000000000000000000008337a3a6ba09ce729ad18d1ccd19276ffbe42b440000000000000000000000002209be3b0600132172604269e51a247d48028a4b00000000000000000000000030fd3b2441d05c38dd9a9dae40e77125fc43dbb8

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80634ada218b116100de5780638a8c523c11610097578063a457c2d711610071578063a457c2d7146102fc578063a9059cbb1461030f578063dd62ed3e14610322578063f2fde38b1461033557600080fd5b80638a8c523c146102db5780638da5cb5b146102e357806395d89b41146102f457600080fd5b80634ada218b14610278578063691f224f146102855780636ac45fbc1461028e57806370a08231146102a1578063715018a6146102ca57806389f9a1d3146102d257600080fd5b80632beb8159116101305780632beb8159146101f05780632dc0562d14610205578063313ce56714610230578063395093511461023f57806342966c681461025257806349bd5a5e1461026557600080fd5b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b95780631ab99e12146101cb57806323b872dd146101d457806324024efd146101e7575b600080fd5b610180610348565b60405161018d9190610ce9565b60405180910390f35b6101a96101a4366004610d53565b6103da565b604051901515815260200161018d565b6003545b60405190815260200161018d565b6101bd60085481565b6101a96101e2366004610d7d565b6103f4565b6101bd600b5481565b6102036101fe366004610db9565b610418565b005b600c54610218906001600160a01b031681565b6040516001600160a01b03909116815260200161018d565b6040516012815260200161018d565b6101a961024d366004610d53565b61042b565b610203610260366004610ddb565b61044d565b600954610218906001600160a01b031681565b6006546101a99060ff1681565b6101bd600a5481565b61020361029c366004610df4565b61045a565b6101bd6102af366004610e27565b6001600160a01b031660009081526001602052604090205490565b61020361048b565b6101bd60075481565b61020361049f565b6000546001600160a01b0316610218565b6101806104b6565b6101a961030a366004610d53565b6104c5565b6101a961031d366004610d53565b610545565b6101bd610330366004610e49565b610553565b610203610343366004610e27565b61057e565b60606004805461035790610e7c565b80601f016020809104026020016040519081016040528092919081815260200182805461038390610e7c565b80156103d05780601f106103a5576101008083540402835291602001916103d0565b820191906000526020600020905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b6000336103e88185856105f4565b60019150505b92915050565b600033610402858285610719565b61040d858585610793565b506001949350505050565b610420610968565b600a91909155600b55565b6000336103e881858561043e8383610553565b6104489190610ecc565b6105f4565b61045733826109c2565b50565b610462610968565b600980546001600160a01b0319166001600160a01b039490941693909317909255600755600855565b610493610968565b61049d6000610aee565b565b6104a7610968565b6006805460ff19166001179055565b60606005805461035790610e7c565b600033816104d38286610553565b9050838110156105385760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61040d82868684036105f4565b6000336103e8818585610793565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610586610968565b6001600160a01b0381166105eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b61045781610aee565b6001600160a01b0383166106565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052f565b6001600160a01b0382166106b75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107258484610553565b9050600019811461078d57818110156107805760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052f565b61078d84848484036105f4565b50505050565b60065460ff16806107b157506000546001600160a01b038481169116145b806107c957506000546001600160a01b038381169116145b6107fe5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161052f565b60065460ff16801561081d57506009546001600160a01b038481169116145b156108bd5760075481610845846001600160a01b031660009081526001602052604090205490565b61084f9190610ecc565b1115801561088857506008548161087b846001600160a01b031660009081526001602052604090205490565b6108859190610ecc565b10155b6108bd5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161052f565b6009546000906001600160a01b03908116908516036108f7576064600a54836108e69190610edf565b6108f09190610ef6565b905061092a565b6009546001600160a01b039081169084160361092a576064600b548361091d9190610edf565b6109279190610ef6565b90505b60006109368284610f18565b9050610943858583610b3e565b811561096157600c546109619086906001600160a01b031684610b3e565b5050505050565b6000546001600160a01b0316331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b6001600160a01b038216610a225760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161052f565b6001600160a01b03821660009081526001602052604090205481811015610a965760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161052f565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161070c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610ba25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052f565b6001600160a01b038216610c045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052f565b6001600160a01b03831660009081526001602052604090205481811015610c7c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052f565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610cdc9086815260200190565b60405180910390a361078d565b600060208083528351808285015260005b81811015610d1657858101830151858201604001528201610cfa565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4e57600080fd5b919050565b60008060408385031215610d6657600080fd5b610d6f83610d37565b946020939093013593505050565b600080600060608486031215610d9257600080fd5b610d9b84610d37565b9250610da960208501610d37565b9150604084013590509250925092565b60008060408385031215610dcc57600080fd5b50508035926020909101359150565b600060208284031215610ded57600080fd5b5035919050565b600080600060608486031215610e0957600080fd5b610e1284610d37565b95602085013595506040909401359392505050565b600060208284031215610e3957600080fd5b610e4282610d37565b9392505050565b60008060408385031215610e5c57600080fd5b610e6583610d37565b9150610e7360208401610d37565b90509250929050565b600181811c90821680610e9057607f821691505b602082108103610eb057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103ee576103ee610eb6565b80820281158282048414176103ee576103ee610eb6565b600082610f1357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156103ee576103ee610eb656fea2646970667358221220ea26d0f89c29837c126860baf3acebd27dc06d6e49d97cbc3a7a69c817a4469664736f6c63430008110033

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

000000000000000000000000d3c8e146530bc650ddbbf93fdb33fe529fb815230000000000000000000000008337a3a6ba09ce729ad18d1ccd19276ffbe42b440000000000000000000000002209be3b0600132172604269e51a247d48028a4b00000000000000000000000030fd3b2441d05c38dd9a9dae40e77125fc43dbb8

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xd3C8e146530BC650DdBbf93fdb33Fe529fB81523
Arg [1] : _taxWallet (address): 0x8337A3a6ba09CE729aD18D1CCd19276FFbE42b44
Arg [2] : _cexWallet (address): 0x2209bE3B0600132172604269E51a247d48028a4b
Arg [3] : _airdropWallet (address): 0x30fd3b2441d05c38dD9a9DAE40E77125Fc43DBb8

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000d3c8e146530bc650ddbbf93fdb33fe529fb81523
Arg [1] : 0000000000000000000000008337a3a6ba09ce729ad18d1ccd19276ffbe42b44
Arg [2] : 0000000000000000000000002209be3b0600132172604269e51a247d48028a4b
Arg [3] : 00000000000000000000000030fd3b2441d05c38dd9a9dae40e77125fc43dbb8


Deployed Bytecode Sourcemap

20764:2419:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9525:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11876:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11876:201:0;1004:187:1;10645:108:0;10733:12;;10645:108;;;1342:25:1;;;1330:2;1315:18;10645:108:0;1196:177:1;20874:31:0;;;;;;12657:295;;;;;;:::i;:::-;;:::i;20979:26::-;;;;;;22071:162;;;;;;:::i;:::-;;:::i;:::-;;21012:24;;;;;-1:-1:-1;;;;;21012:24:0;;;;;;-1:-1:-1;;;;;2128:32:1;;;2110:51;;2098:2;2083:18;21012:24:0;1964:203:1;10487:93:0;;;10570:2;2314:36:1;;2302:2;2287:18;10487:93:0;2172:184:1;13361:238:0;;;;;;:::i;:::-;;:::i;23099:81::-;;;;;;:::i;:::-;;:::i;20912:28::-;;;;;-1:-1:-1;;;;;20912:28:0;;;20803:26;;;;;;;;;20947:25;;;;;;21714:257;;;;;;:::i;:::-;;:::i;10816:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10917:18:0;10890:7;10917:18;;;:9;:18;;;;;;;10816:127;2951:103;;;:::i;20836:31::-;;;;;;21979:84;;;:::i;2303:87::-;2349:7;2376:6;-1:-1:-1;;;;;2376:6:0;2303:87;;9744:104;;;:::i;14102:436::-;;;;;;:::i;:::-;;:::i;11149:193::-;;;;;;:::i;:::-;;:::i;11405:151::-;;;;;;:::i;:::-;;:::i;3209:201::-;;;;;;:::i;:::-;;:::i;9525:100::-;9579:13;9612:5;9605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9525:100;:::o;11876:201::-;11959:4;934:10;12015:32;934:10;12031:7;12040:6;12015:8;:32::i;:::-;12065:4;12058:11;;;11876:201;;;;;:::o;12657:295::-;12788:4;934:10;12846:38;12862:4;934:10;12877:6;12846:15;:38::i;:::-;12895:27;12905:4;12911:2;12915:6;12895:9;:27::i;:::-;-1:-1:-1;12940:4:0;;12657:295;-1:-1:-1;;;;12657:295:0:o;22071:162::-;2189:13;:11;:13::i;:::-;22164:10:::1;:24:::0;;;;22199:11:::1;:26:::0;22071:162::o;13361:238::-;13449:4;934:10;13505:64;934:10;13521:7;13558:10;13530:25;934:10;13521:7;13530:9;:25::i;:::-;:38;;;;:::i;:::-;13505:8;:64::i;23099:81::-;23148:24;23154:10;23166:5;23148;:24::i;:::-;23099:81;:::o;21714:257::-;2189:13;:11;:13::i;:::-;21839::::1;:30:::0;;-1:-1:-1;;;;;;21839:30:0::1;-1:-1:-1::0;;;;;21839:30:0;;;::::1;::::0;;;::::1;::::0;;;21880:16:::1;:36:::0;21927:16:::1;:36:::0;21714:257::o;2951:103::-;2189:13;:11;:13::i;:::-;3016:30:::1;3043:1;3016:18;:30::i;:::-;2951:103::o:0;21979:84::-;2189:13;:11;:13::i;:::-;22034:14:::1;:21:::0;;-1:-1:-1;;22034:21:0::1;22051:4;22034:21;::::0;;21979:84::o;9744:104::-;9800:13;9833:7;9826:14;;;;;:::i;14102:436::-;14195:4;934:10;14195:4;14278:25;934:10;14295:7;14278:9;:25::i;:::-;14251:52;;14342:15;14322:16;:35;;14314:85;;;;-1:-1:-1;;;14314:85:0;;4178:2:1;14314:85:0;;;4160:21:1;4217:2;4197:18;;;4190:30;4256:34;4236:18;;;4229:62;-1:-1:-1;;;4307:18:1;;;4300:35;4352:19;;14314:85:0;;;;;;;;;14435:60;14444:5;14451:7;14479:15;14460:16;:34;14435:8;:60::i;11149:193::-;11228:4;934:10;11284:28;934:10;11301:2;11305:6;11284:9;:28::i;11405:151::-;-1:-1:-1;;;;;11521:18:0;;;11494:7;11521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11405:151::o;3209:201::-;2189:13;:11;:13::i;:::-;-1:-1:-1;;;;;3298:22:0;::::1;3290:73;;;::::0;-1:-1:-1;;;3290:73:0;;4584:2:1;3290:73:0::1;::::0;::::1;4566:21:1::0;4623:2;4603:18;;;4596:30;4662:34;4642:18;;;4635:62;-1:-1:-1;;;4713:18:1;;;4706:36;4759:19;;3290:73:0::1;4382:402:1::0;3290:73:0::1;3374:28;3393:8;3374:18;:28::i;18129:380::-:0;-1:-1:-1;;;;;18265:19:0;;18257:68;;;;-1:-1:-1;;;18257:68:0;;4991:2:1;18257:68:0;;;4973:21:1;5030:2;5010:18;;;5003:30;5069:34;5049:18;;;5042:62;-1:-1:-1;;;5120:18:1;;;5113:34;5164:19;;18257:68:0;4789:400:1;18257:68:0;-1:-1:-1;;;;;18344:21:0;;18336:68;;;;-1:-1:-1;;;18336:68:0;;5396:2:1;18336:68:0;;;5378:21:1;5435:2;5415:18;;;5408:30;5474:34;5454:18;;;5447:62;-1:-1:-1;;;5525:18:1;;;5518:32;5567:19;;18336:68:0;5194:398:1;18336:68:0;-1:-1:-1;;;;;18417:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18469:32;;1342:25:1;;;18469:32:0;;1315:18:1;18469:32:0;;;;;;;;18129:380;;;:::o;18800:453::-;18935:24;18962:25;18972:5;18979:7;18962:9;:25::i;:::-;18935:52;;-1:-1:-1;;19002:16:0;:37;18998:248;;19084:6;19064:16;:26;;19056:68;;;;-1:-1:-1;;;19056:68:0;;5799:2:1;19056:68:0;;;5781:21:1;5838:2;5818:18;;;5811:30;5877:31;5857:18;;;5850:59;5926:18;;19056:68:0;5597:353:1;19056:68:0;19168:51;19177:5;19184:7;19212:6;19193:16;:25;19168:8;:51::i;:::-;18924:329;18800:453;;;:::o;22241:850::-;22348:14;;;;;:35;;-1:-1:-1;2349:7:0;2376:6;-1:-1:-1;;;;;22366:17:0;;;2376:6;;22366:17;22348:35;:59;;;-1:-1:-1;2349:7:0;2376:6;-1:-1:-1;;;;;22387:20:0;;;2376:6;;22387:20;22348:59;22340:78;;;;-1:-1:-1;;;22340:78:0;;6157:2:1;22340:78:0;;;6139:21:1;6196:1;6176:18;;;6169:29;-1:-1:-1;;;6214:18:1;;;6207:36;6260:18;;22340:78:0;5955:329:1;22340:78:0;22435:14;;;;:41;;;;-1:-1:-1;22463:13:0;;-1:-1:-1;;;;;22453:23:0;;;22463:13;;22453:23;22435:41;22431:195;;;22534:16;;22524:6;22501:20;22511:9;-1:-1:-1;;;;;10917:18:0;10890:7;10917:18;;;:9;:18;;;;;;;10816:127;22501:20;:29;;;;:::i;:::-;:49;;:102;;;;;22587:16;;22577:6;22554:20;22564:9;-1:-1:-1;;;;;10917:18:0;10890:7;10917:18;;;:9;:18;;;;;;;10816:127;22554:20;:29;;;;:::i;:::-;:49;;22501:102;22493:121;;;;-1:-1:-1;;;22493:121:0;;6157:2:1;22493:121:0;;;6139:21:1;6196:1;6176:18;;;6169:29;-1:-1:-1;;;6214:18:1;;;6207:36;6260:18;;22493:121:0;5955:329:1;22493:121:0;22684:13;;22638:17;;-1:-1:-1;;;;;22684:13:0;;;22674:23;;;;22670:196;;22748:3;22735:10;;22726:6;:19;;;;:::i;:::-;:25;;;;:::i;:::-;22714:37;;22670:196;;;22786:13;;-1:-1:-1;;;;;22786:13:0;;;22773:26;;;;22769:97;;22851:3;22837:11;;22828:6;:20;;;;:::i;:::-;:26;;;;:::i;:::-;22816:38;;22769:97;22878:22;22903:18;22912:9;22903:6;:18;:::i;:::-;22878:43;;22932:50;22948:6;22956:9;22967:14;22932:15;:50::i;:::-;22997:13;;22993:91;;23051:9;;23027:45;;23043:6;;-1:-1:-1;;;;;23051:9:0;23062;23027:15;:45::i;:::-;22329:762;;22241:850;;;:::o;2468:132::-;2349:7;2376:6;-1:-1:-1;;;;;2376:6:0;934:10;2532:23;2524:68;;;;-1:-1:-1;;;2524:68:0;;7019:2:1;2524:68:0;;;7001:21:1;;;7038:18;;;7031:30;7097:34;7077:18;;;7070:62;7149:18;;2524:68:0;6817:356:1;17016:675:0;-1:-1:-1;;;;;17100:21:0;;17092:67;;;;-1:-1:-1;;;17092:67:0;;7380:2:1;17092:67:0;;;7362:21:1;7419:2;7399:18;;;7392:30;7458:34;7438:18;;;7431:62;-1:-1:-1;;;7509:18:1;;;7502:31;7550:19;;17092:67:0;7178:397:1;17092:67:0;-1:-1:-1;;;;;17259:18:0;;17234:22;17259:18;;;:9;:18;;;;;;17296:24;;;;17288:71;;;;-1:-1:-1;;;17288:71:0;;7782:2:1;17288:71:0;;;7764:21:1;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;-1:-1:-1;;;7911:18:1;;;7904:32;7953:19;;17288:71:0;7580:398:1;17288:71:0;-1:-1:-1;;;;;17395:18:0;;;;;;:9;:18;;;;;;;;17416:23;;;17395:44;;17534:12;:22;;;;;;;17585:37;1342:25:1;;;17395:18:0;;;17585:37;;1315:18:1;17585:37:0;1196:177:1;3570:191:0;3644:16;3663:6;;-1:-1:-1;;;;;3680:17:0;;;-1:-1:-1;;;;;;3680:17:0;;;;;;3713:40;;3663:6;;;;;;;3713:40;;3644:16;3713:40;3633:128;3570:191;:::o;15008:840::-;-1:-1:-1;;;;;15139:18:0;;15131:68;;;;-1:-1:-1;;;15131:68:0;;8185:2:1;15131:68:0;;;8167:21:1;8224:2;8204:18;;;8197:30;8263:34;8243:18;;;8236:62;-1:-1:-1;;;8314:18:1;;;8307:35;8359:19;;15131:68:0;7983:401:1;15131:68:0;-1:-1:-1;;;;;15218:16:0;;15210:64;;;;-1:-1:-1;;;15210:64:0;;8591:2:1;15210:64:0;;;8573:21:1;8630:2;8610:18;;;8603:30;8669:34;8649:18;;;8642:62;-1:-1:-1;;;8720:18:1;;;8713:33;8763:19;;15210:64:0;8389:399:1;15210:64:0;-1:-1:-1;;;;;15360:15:0;;15338:19;15360:15;;;:9;:15;;;;;;15394:21;;;;15386:72;;;;-1:-1:-1;;;15386:72:0;;8995:2:1;15386:72:0;;;8977:21:1;9034:2;9014:18;;;9007:30;9073:34;9053:18;;;9046:62;-1:-1:-1;;;9124:18:1;;;9117:36;9170:19;;15386:72:0;8793:402:1;15386:72:0;-1:-1:-1;;;;;15494:15:0;;;;;;;:9;:15;;;;;;15512:20;;;15494:38;;15712:13;;;;;;;;;;:23;;;;;;15764:26;;;;;;15526:6;1342:25:1;;1330:2;1315:18;;1196:177;15764:26:0;;;;;;;;15803:37;17016:675;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:248::-;1779:6;1787;1840:2;1828:9;1819:7;1815:23;1811:32;1808:52;;;1856:1;1853;1846:12;1808:52;-1:-1:-1;;1879:23:1;;;1949:2;1934:18;;;1921:32;;-1:-1:-1;1711:248:1:o;2361:180::-;2420:6;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;-1:-1:-1;2512:23:1;;2361:180;-1:-1:-1;2361:180:1:o;2546:322::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;2807:2;2792:18;;2779:32;;-1:-1:-1;2858:2:1;2843:18;;;2830:32;;2546:322;-1:-1:-1;;;2546:322:1:o;2873:186::-;2932:6;2985:2;2973:9;2964:7;2960:23;2956:32;2953:52;;;3001:1;2998;2991:12;2953:52;3024:29;3043:9;3024:29;:::i;:::-;3014:39;2873:186;-1:-1:-1;;;2873:186:1:o;3064:260::-;3132:6;3140;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;3232:29;3251:9;3232:29;:::i;:::-;3222:39;;3280:38;3314:2;3303:9;3299:18;3280:38;:::i;:::-;3270:48;;3064:260;;;;;:::o;3329:380::-;3408:1;3404:12;;;;3451;;;3472:61;;3526:4;3518:6;3514:17;3504:27;;3472:61;3579:2;3571:6;3568:14;3548:18;3545:38;3542:161;;3625:10;3620:3;3616:20;3613:1;3606:31;3660:4;3657:1;3650:15;3688:4;3685:1;3678:15;3542:161;;3329:380;;;:::o;3714:127::-;3775:10;3770:3;3766:20;3763:1;3756:31;3806:4;3803:1;3796:15;3830:4;3827:1;3820:15;3846:125;3911:9;;;3932:10;;;3929:36;;;3945:18;;:::i;6289:168::-;6362:9;;;6393;;6410:15;;;6404:22;;6390:37;6380:71;;6431:18;;:::i;6462:217::-;6502:1;6528;6518:132;;6572:10;6567:3;6563:20;6560:1;6553:31;6607:4;6604:1;6597:15;6635:4;6632:1;6625:15;6518:132;-1:-1:-1;6664:9:1;;6462:217::o;6684:128::-;6751:9;;;6772:11;;;6769:37;;;6786:18;;:::i

Swarm Source

ipfs://ea26d0f89c29837c126860baf3acebd27dc06d6e49d97cbc3a7a69c817a44696
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.