ETH Price: $2,949.29 (-2.16%)
Gas: 3 Gwei

Token

AIgentX (AIX)
 

Overview

Max Total Supply

100,000,000 AIX

Holders

12,213 (0.00%)

Market

Price

$0.27 @ 0.000092 ETH (-0.47%)

Onchain Market Cap

$27,146,900.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
252.174379202991319123 AIX

Value
$68.46 ( ~0.0232124043077172 Eth) [0.0003%]
0x37780b737d697485f771433d36772350bc4f4dd3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AIgentX, the future of crypto community management, customer service, and sales. AIgentX is here to revolutionize this space with a suite of advanced features tailored to the unique challenges of cryptocurrency.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AIX

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 6 : AIX.sol
// SPDX-License-Identifier: MIT
/*
      db          `7MMF'    `YMM'   `MP'
     ;MM:           MM        VMb.  ,P
    ,V^MM.          IM         `MM.M'
   ,M  `MM          MM           MMb
   AbmmmqMA         MM         ,M'`Mb.
  A'     VML        MM        ,P   `MM.
.AMA.   .AMMA.    .JMML.    .MM:.  .:MMa.

AIgentX 🤖🧠: An innovative AI Ecosystem Enabling Improved Engagement and Project Oversight.

AIgentX is a dynamic AI ecosystem that harnesses advanced AI and ML technologies.
It utilizes custom business and project data to provide detailed, natural language responses, optimizing interactions,
and reducing costs while offering comprehensive AI solutions for businesses and
projects across platforms like Telegram and Discord. This ecosystem empowers users to create personalized AI
for improved community engagement, accurate project representation, customer satisfaction and sales growth.


Socials:
📝Twitter: https://twitter.com/0xAIgentx
✉️Telegram: https://t.me/+hWMgnOdPhG40Nzhl
🌐Website: https://aigentx.xyz/
📰Whitepaper: https://aigentx.gitbook.io/whitepaper/
📰Medium: https://medium.com/@0xaigentx
*/

pragma solidity 0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

/**
 * @title AIX Token Contract
 */
contract AIX is IERC20Metadata, Ownable, ERC20 {
    /**
     * Sniper Bot and Malicious Actor Protection during the launch stage:
     * The AIX token employs strategies against sniper bots and malicious users:
     *
     * 1. Selling Fee:
     * - Temporarily sets a 100% selling fee to prevent buying from sniper-bots.
     * - After the launch, disabled by the owner, this cannot be reactivated.
     *
     * 2. Blacklist:
     * - During the launch addresses can be blacklisted.
     * - After the launch, blacklisting is permanently disabled.
     *
     * These mechanisms promote price stability and protect genuine investors.
     *
     * After the launch stage:
     * - Users cannot be blacklisted.
     * - buyFee and sellFee must be <= 5%.
     */

    /// @notice Emitted when a liquidity pool pair is updated.
    event LPPairSet(address indexed pair, bool enabled);

    /// @notice Emitted when an account is marked or unmarked as a liquidity holder (treasury, staking, etc).
    event LiquidityHolderSet(address indexed account, bool flag);

    /// @notice Emitted (once) when fees are locked forever.
    event FeesLockedForever();

    /// @notice Emitted (once) when sniper bot protection is disabled forever.
    event SniperBotProtectionDisabledForever();

    event BlacklistSet(address indexed account, bool flag);

    /// @notice Emitted (once) when blacklist add is restricted forever.
    event BlacklistAddRestrictedForever();

    event BuyFeeNumeratorSet(uint256 value);
    event SellFeeNumeratorSet(uint256 value);
    event TreasurySet(address treasury);
    event BuyFeePaid(address indexed from, address indexed to, uint256 amount);
    event SellFeePaid(address indexed from, address indexed to, uint256 amount);

    /**
     * @dev Struct to group account-specific flags to optimize storage usage.
     * This design pattern leverages Solidity's storage layout, where multiple
     * state variables of the same type are packed into a single storage slot
     * to minimize gas costs.
     *
     *   +-------------------- bytes32 slot ------------------------------+
     *   | 0 | 0 | 0 | ... | isBlackListed | isLiquidityHolder | isLPPool |
     *   +----------------------------------------------------------------+
     *
     * For a deeper understanding of storage packing and its benefits, you can refer to:
     * - https://docs.soliditylang.org/en/latest/internals/layout_in_storage.html
     * - https://dev.to/web3_ruud/advance-soliditymastering-storage-slot-c38
     */
    struct AccountInfo {
        bool isLPPool;
        bool isLiquidityHolder;
        bool isBlackListed;
    }
    mapping (address => AccountInfo) public accountInfo;

    string constant private _name = "AIgentX";
    string constant private _symbol = "AIX";
    uint256 constant private TOTAL_SUPPLY = 100_000_000 * (10 ** 18);

    uint256 constant public DENOMINATOR = 10000;
    uint256 constant public MAX_BUY_FEE_NUMERATOR = 500;  // 5%
    uint256 constant public MAX_SELL_FEE_NUMERATOR = 500;  // 5%
    uint256 public buyFeeNumerator;
    uint256 public _sellFeeNumerator;
    address public treasury;
    bool public feesAreLockedForever;
    bool public sniperBotProtectionDisabledForever;
    bool public blacklistAddRestrictedForever;

    constructor(
        address _treasury,
        uint256 _buyFeeNumeratorValue,
        uint256 _sellFeeNumeratorValue
    ) Ownable() ERC20(_name, _symbol) {
        _mint(msg.sender, TOTAL_SUPPLY);
        setLiquidityHolder(msg.sender, true);
        setLiquidityHolder(_treasury, true);
        setTreasury(_treasury);
        setBuyFeeNumerator(_buyFeeNumeratorValue);
        setSellFeeNumerator(_sellFeeNumeratorValue);
    }

    function setTreasury(address _treasury) public onlyOwner {
        require(_treasury != address(0), "Treasury address cannot be zero");
        treasury = _treasury;
        emit TreasurySet(_treasury);
    }

    function lockFeesForever() external onlyOwner {
        require(!feesAreLockedForever, "already set");
        feesAreLockedForever = true;
        emit FeesLockedForever();
    }

    function restrictBlacklistAddForever() external onlyOwner {
        require(!blacklistAddRestrictedForever, "already set");
        blacklistAddRestrictedForever = true;
        emit BlacklistAddRestrictedForever();
    }

    function setLpPair(address pair, bool enabled) external onlyOwner {
        accountInfo[pair].isLPPool = enabled;
        emit LPPairSet(pair, enabled);
    }

    function setBlacklisted(address account, bool isBlacklisted) external onlyOwner {
        if (isBlacklisted) {
            require(!blacklistAddRestrictedForever, "Blacklist add restricted forever");
        }
        accountInfo[account].isBlackListed = isBlacklisted;
        emit BlacklistSet(account, isBlacklisted);
    }

    function setBuyFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_BUY_FEE_NUMERATOR, "Exceeds maximum buy fee");
        buyFeeNumerator = value;
        emit BuyFeeNumeratorSet(value);
    }

    function setSellFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_SELL_FEE_NUMERATOR, "Exceeds maximum buy fee");
        _sellFeeNumerator = value;
        emit SellFeeNumeratorSet(value);
    }

    function sellFeeNumerator() public view returns(uint256) {
        if (sniperBotProtectionDisabledForever) {
            return _sellFeeNumerator;
        }
        return DENOMINATOR;  // 100% to prevent sniper bots from buying
    }

    function disableSniperBotProtectionForever() external onlyOwner {
        require(!sniperBotProtectionDisabledForever, "already set");
        sniperBotProtectionDisabledForever = true;
        emit SniperBotProtectionDisabledForever();
    }

    function setLiquidityHolder(address account, bool flag) public onlyOwner {
        accountInfo[account].isLiquidityHolder = flag;
        emit LiquidityHolderSet(account, flag);
    }

    function _hasLimits(AccountInfo memory fromInfo, AccountInfo memory toInfo) internal pure returns(bool) {
        return !fromInfo.isLiquidityHolder && !toInfo.isLiquidityHolder;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        AccountInfo memory fromInfo = accountInfo[from];
        AccountInfo memory toInfo = accountInfo[to];

        require(!fromInfo.isBlackListed && !toInfo.isBlackListed, "Blacklisted");

        if (!_hasLimits(fromInfo, toInfo) ||
            (fromInfo.isLPPool && toInfo.isLPPool)  // no fee for transferring between pools
        ) {
            super._transfer(from, to, amount);
            return;
        }

        if (fromInfo.isLPPool) {
            // buy
            uint256 buyFeeAmount = amount * buyFeeNumerator / DENOMINATOR;
            emit BuyFeePaid(from, treasury, buyFeeAmount);
            super._transfer(from, treasury, buyFeeAmount);
            unchecked {  // underflow is not possible
                amount -= buyFeeAmount;
            }
        } else if (toInfo.isLPPool) {
            // sell
            uint256 sellFeeAmount = amount * sellFeeNumerator() / DENOMINATOR;
            emit SellFeePaid(from, treasury, sellFeeAmount);
            super._transfer(from, treasury, sellFeeAmount);
            unchecked {  // underflow is not possible
                amount -= sellFeeAmount;
            }
        } else {
            // no fees for usual transfers
        }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"uint256","name":"_buyFeeNumeratorValue","type":"uint256"},{"internalType":"uint256","name":"_sellFeeNumeratorValue","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"BlacklistAddRestrictedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"BlacklistSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BuyFeeNumeratorSet","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":"amount","type":"uint256"}],"name":"BuyFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesLockedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"LPPairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"LiquidityHolderSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SellFeeNumeratorSet","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":"amount","type":"uint256"}],"name":"SellFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"SniperBotProtectionDisabledForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"}],"name":"TreasurySet","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"bool","name":"isLPPool","type":"bool"},{"internalType":"bool","name":"isLiquidityHolder","type":"bool"},{"internalType":"bool","name":"isBlackListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistAddRestrictedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeNumerator","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":"disableSniperBotProtectionForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesAreLockedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"lockFeesForever","outputs":[],"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":"restrictBlacklistAddForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuyFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLpPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSellFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sniperBotProtectionDisabledForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620036d8380380620036d88339818101604052810190620000379190620008ed565b6040518060400160405280600781526020017f414967656e7458000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4149580000000000000000000000000000000000000000000000000000000000815250620000c3620000b76200017660201b60201c565b6200017e60201b60201c565b8160049080519060200190620000db9291906200080f565b508060059080519060200190620000f49291906200080f565b50505062000114336a52b7d2dcc80cd2e40000006200024260201b60201c565b62000127336001620003b160201b60201c565b6200013a836001620003b160201b60201c565b6200014b836200046f60201b60201c565b6200015c826200056f60201b60201c565b6200016d816200065d60201b60201c565b50505062000d92565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ac9062000b01565b60405180910390fd5b620002c9600083836200074b60201b60201c565b8060036000828254620002dd919062000b51565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000391919062000b23565b60405180910390a3620003ad600083836200075060201b60201c565b5050565b620003c16200075560201b60201c565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b8260405162000463919062000a5c565b60405180910390a25050565b6200047f6200075560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620004f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e99062000a79565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f8160405162000564919062000a3f565b60405180910390a150565b6200057f6200075560201b60201c565b600960149054906101000a900460ff1615620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000a9b565b60405180910390fd5b6101f48111156200061a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006119062000abd565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d8160405162000652919062000b23565b60405180910390a150565b6200066d6200075560201b60201c565b600960149054906101000a900460ff1615620006c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b79062000a9b565b60405180910390fd5b6101f481111562000708576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ff9062000abd565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe508160405162000740919062000b23565b60405180910390a150565b505050565b505050565b620007656200017660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078b620007e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007db9062000adf565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200081d9062000bf8565b90600052602060002090601f0160209004810192826200084157600085556200088d565b82601f106200085c57805160ff19168380011785556200088d565b828001600101855582156200088d579182015b828111156200088c5782518255916020019190600101906200086f565b5b5090506200089c9190620008a0565b5090565b5b80821115620008bb576000816000905550600101620008a1565b5090565b600081519050620008d08162000d5e565b92915050565b600081519050620008e78162000d78565b92915050565b60008060006060848603121562000909576200090862000c8c565b5b60006200091986828701620008bf565b93505060206200092c86828701620008d6565b92505060406200093f86828701620008d6565b9150509250925092565b620009548162000bae565b82525050565b620009658162000bc2565b82525050565b60006200097a601f8362000b40565b9150620009878262000c91565b602082019050919050565b6000620009a160178362000b40565b9150620009ae8262000cba565b602082019050919050565b6000620009c860178362000b40565b9150620009d58262000ce3565b602082019050919050565b6000620009ef60208362000b40565b9150620009fc8262000d0c565b602082019050919050565b600062000a16601f8362000b40565b915062000a238262000d35565b602082019050919050565b62000a398162000bee565b82525050565b600060208201905062000a56600083018462000949565b92915050565b600060208201905062000a7360008301846200095a565b92915050565b6000602082019050818103600083015262000a94816200096b565b9050919050565b6000602082019050818103600083015262000ab68162000992565b9050919050565b6000602082019050818103600083015262000ad881620009b9565b9050919050565b6000602082019050818103600083015262000afa81620009e0565b9050919050565b6000602082019050818103600083015262000b1c8162000a07565b9050919050565b600060208201905062000b3a600083018462000a2e565b92915050565b600082825260208201905092915050565b600062000b5e8262000bee565b915062000b6b8362000bee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ba35762000ba262000c2e565b5b828201905092915050565b600062000bbb8262000bce565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c1157607f821691505b6020821081141562000c285762000c2762000c5d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f547265617375727920616464726573732063616e6e6f74206265207a65726f00600082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000d698162000bae565b811462000d7557600080fd5b50565b62000d838162000bee565b811462000d8f57600080fd5b50565b6129368062000da26000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806380c581d11161011a578063cbf1f4a4116100ad578063dca69d211161007c578063dca69d2114610597578063dd62ed3e146105b5578063f0f44260146105e5578063f28ed40514610601578063f2fde38b1461061f57610206565b8063cbf1f4a414610537578063d01dd6d214610553578063d041df8a1461056f578063d231185f1461058d57610206565b806395d89b41116100e957806395d89b4114610487578063a457c2d7146104a5578063a7310b58146104d5578063a9059cbb1461050757610206565b806380c581d1146104115780638da5cb5b1461042d5780638f3b957f1461044b578063918f86741461046957610206565b8063244c53591161019d57806370a082311161016c57806370a082311461037f578063715018a6146103af578063719f75c5146103b95780637b24ab32146103d55780637b4aaf51146103f357610206565b8063244c5359146102f7578063313ce56714610313578063395093511461033157806361d027b31461036157610206565b806318160ddd116101d957806318160ddd146102815780631ff32a6e1461029f57806323b872dd146102bd578063241b21eb146102ed57610206565b806306fdde031461020b578063095ea7b3146102295780630a8ce4741461025957806310b343e714610263575b600080fd5b61021361063b565b60405161022091906120b8565b60405180910390f35b610243600480360381019061023e9190611d5c565b6106cd565b6040516102509190612066565b60405180910390f35b6102616106f0565b005b61026b610791565b6040516102789190612066565b60405180910390f35b6102896107a4565b60405161029691906122ba565b60405180910390f35b6102a76107ae565b6040516102b491906122ba565b60405180910390f35b6102d760048036038101906102d29190611cc9565b6107b4565b6040516102e49190612066565b60405180910390f35b6102f56107e3565b005b610311600480360381019061030c9190611d9c565b610884565b005b61031b610962565b60405161032891906122d5565b60405180910390f35b61034b60048036038101906103469190611d5c565b61096b565b6040516103589190612066565b60405180910390f35b6103696109a2565b604051610376919061204b565b60405180910390f35b61039960048036038101906103949190611c5c565b6109c8565b6040516103a691906122ba565b60405180910390f35b6103b7610a11565b005b6103d360048036038101906103ce9190611d1c565b610a25565b005b6103dd610ad9565b6040516103ea91906122ba565b60405180910390f35b6103fb610adf565b6040516104089190612066565b60405180910390f35b61042b60048036038101906104269190611d1c565b610af2565b005b610435610ba6565b604051610442919061204b565b60405180910390f35b610453610bcf565b60405161046091906122ba565b60405180910390f35b610471610bd5565b60405161047e91906122ba565b60405180910390f35b61048f610bdb565b60405161049c91906120b8565b60405180910390f35b6104bf60048036038101906104ba9190611d5c565b610c6d565b6040516104cc9190612066565b60405180910390f35b6104ef60048036038101906104ea9190611c5c565b610ce4565b6040516104fe93929190612081565b60405180910390f35b610521600480360381019061051c9190611d5c565b610d35565b60405161052e9190612066565b60405180910390f35b610551600480360381019061054c9190611d9c565b610d58565b005b61056d60048036038101906105689190611d1c565b610e36565b005b610577610f41565b6040516105849190612066565b60405180910390f35b610595610f54565b005b61059f610ff5565b6040516105ac91906122ba565b60405180910390f35b6105cf60048036038101906105ca9190611c89565b61101f565b6040516105dc91906122ba565b60405180910390f35b6105ff60048036038101906105fa9190611c5c565b6110a6565b005b610609611199565b60405161061691906122ba565b60405180910390f35b61063960048036038101906106349190611c5c565b61119f565b005b60606004805461064a90612475565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612475565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d8611223565b90506106e581858561122b565b600191505092915050565b6106f86113f6565b600960149054906101000a900460ff1615610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f9061225a565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe460405160405180910390a1565b600960169054906101000a900460ff1681565b6000600354905090565b6101f481565b6000806107bf611223565b90506107cc858285611474565b6107d7858585611500565b60019150509392505050565b6107eb6113f6565b600960169054906101000a900460ff161561083b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108329061225a565b60405180910390fd5b6001600960166101000a81548160ff0219169083151502179055507f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65660405160405180910390a1565b61088c6113f6565b600960149054906101000a900460ff16156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d3906121ba565b60405180910390fd5b6101f4811115610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906121da565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe508160405161095791906122ba565b60405180910390a150565b60006012905090565b600080610976611223565b9050610997818585610988858961101f565b610992919061230c565b61122b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a196113f6565b610a2360006118b6565b565b610a2d6113f6565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b82604051610acd9190612066565b60405180910390a25050565b60075481565b600960149054906101000a900460ff1681565b610afa6113f6565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610b9a9190612066565b60405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b61271081565b606060058054610bea90612475565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1690612475565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b600080610c78611223565b90506000610c86828661101f565b905083811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061227a565b60405180910390fd5b610cd8828686840361122b565b60019250505092915050565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b600080610d40611223565b9050610d4d818585611500565b600191505092915050565b610d606113f6565b600960149054906101000a900460ff1615610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906121ba565b60405180910390fd5b6101f4811115610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906121da565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d81604051610e2b91906122ba565b60405180910390a150565b610e3e6113f6565b8015610e9557600960169054906101000a900460ff1615610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b9061213a565b60405180910390fd5b5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb6012382604051610f359190612066565b60405180910390a25050565b600960159054906101000a900460ff1681565b610f5c6113f6565b600960159054906101000a900460ff1615610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061225a565b60405180910390fd5b6001600960156101000a81548160ff0219169083151502179055507fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f60405160405180910390a1565b6000600960159054906101000a900460ff161561101657600854905061101c565b61271090505b90565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ae6113f6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061219a565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f8160405161118e919061204b565b60405180910390a150565b60085481565b6111a76113f6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906120fa565b60405180910390fd5b611220816118b6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112929061223a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113029061211a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e991906122ba565b60405180910390a3505050565b6113fe611223565b73ffffffffffffffffffffffffffffffffffffffff1661141c610ba6565b73ffffffffffffffffffffffffffffffffffffffff1614611472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611469906121fa565b60405180910390fd5b565b6000611480848461101f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114fa57818110156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e39061215a565b60405180910390fd5b6114f9848484840361122b565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff1615151515815250509050816040015115801561165257508060400151155b611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061229a565b60405180910390fd5b61169b828261197a565b15806116b55750816000015180156116b4575080600001515b5b156116cc576116c5858585611998565b50506118b1565b8160000151156117b4576000612710600754856116e99190612393565b6116f39190612362565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a8360405161177491906122ba565b60405180910390a36117a986600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611998565b8084039350506118a3565b8060000151156118a15760006127106117cb610ff5565b856117d69190612393565b6117e09190612362565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b7828360405161186191906122ba565b60405180910390a361189686600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611998565b8084039350506118a2565b5b5b6118ae858585611998565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826020015115801561199057508160200151155b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061221a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f906120da565b60405180910390fd5b611a83838383611c13565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061217a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bfa91906122ba565b60405180910390a3611c0d848484611c18565b50505050565b505050565b505050565b600081359050611c2c816128bb565b92915050565b600081359050611c41816128d2565b92915050565b600081359050611c56816128e9565b92915050565b600060208284031215611c7257611c71612534565b5b6000611c8084828501611c1d565b91505092915050565b60008060408385031215611ca057611c9f612534565b5b6000611cae85828601611c1d565b9250506020611cbf85828601611c1d565b9150509250929050565b600080600060608486031215611ce257611ce1612534565b5b6000611cf086828701611c1d565b9350506020611d0186828701611c1d565b9250506040611d1286828701611c47565b9150509250925092565b60008060408385031215611d3357611d32612534565b5b6000611d4185828601611c1d565b9250506020611d5285828601611c32565b9150509250929050565b60008060408385031215611d7357611d72612534565b5b6000611d8185828601611c1d565b9250506020611d9285828601611c47565b9150509250929050565b600060208284031215611db257611db1612534565b5b6000611dc084828501611c47565b91505092915050565b611dd2816123ed565b82525050565b611de1816123ff565b82525050565b6000611df2826122f0565b611dfc81856122fb565b9350611e0c818560208601612442565b611e1581612539565b840191505092915050565b6000611e2d6023836122fb565b9150611e388261254a565b604082019050919050565b6000611e506026836122fb565b9150611e5b82612599565b604082019050919050565b6000611e736022836122fb565b9150611e7e826125e8565b604082019050919050565b6000611e966020836122fb565b9150611ea182612637565b602082019050919050565b6000611eb9601d836122fb565b9150611ec482612660565b602082019050919050565b6000611edc6026836122fb565b9150611ee782612689565b604082019050919050565b6000611eff601f836122fb565b9150611f0a826126d8565b602082019050919050565b6000611f226017836122fb565b9150611f2d82612701565b602082019050919050565b6000611f456017836122fb565b9150611f508261272a565b602082019050919050565b6000611f686020836122fb565b9150611f7382612753565b602082019050919050565b6000611f8b6025836122fb565b9150611f968261277c565b604082019050919050565b6000611fae6024836122fb565b9150611fb9826127cb565b604082019050919050565b6000611fd1600b836122fb565b9150611fdc8261281a565b602082019050919050565b6000611ff46025836122fb565b9150611fff82612843565b604082019050919050565b6000612017600b836122fb565b915061202282612892565b602082019050919050565b6120368161242b565b82525050565b61204581612435565b82525050565b60006020820190506120606000830184611dc9565b92915050565b600060208201905061207b6000830184611dd8565b92915050565b60006060820190506120966000830186611dd8565b6120a36020830185611dd8565b6120b06040830184611dd8565b949350505050565b600060208201905081810360008301526120d28184611de7565b905092915050565b600060208201905081810360008301526120f381611e20565b9050919050565b6000602082019050818103600083015261211381611e43565b9050919050565b6000602082019050818103600083015261213381611e66565b9050919050565b6000602082019050818103600083015261215381611e89565b9050919050565b6000602082019050818103600083015261217381611eac565b9050919050565b6000602082019050818103600083015261219381611ecf565b9050919050565b600060208201905081810360008301526121b381611ef2565b9050919050565b600060208201905081810360008301526121d381611f15565b9050919050565b600060208201905081810360008301526121f381611f38565b9050919050565b6000602082019050818103600083015261221381611f5b565b9050919050565b6000602082019050818103600083015261223381611f7e565b9050919050565b6000602082019050818103600083015261225381611fa1565b9050919050565b6000602082019050818103600083015261227381611fc4565b9050919050565b6000602082019050818103600083015261229381611fe7565b9050919050565b600060208201905081810360008301526122b38161200a565b9050919050565b60006020820190506122cf600083018461202d565b92915050565b60006020820190506122ea600083018461203c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006123178261242b565b91506123228361242b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612357576123566124a7565b5b828201905092915050565b600061236d8261242b565b91506123788361242b565b925082612388576123876124d6565b5b828204905092915050565b600061239e8261242b565b91506123a98361242b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123e2576123e16124a7565b5b828202905092915050565b60006123f88261240b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612460578082015181840152602081019050612445565b8381111561246f576000848401525b50505050565b6000600282049050600182168061248d57607f821691505b602082108114156124a1576124a0612505565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c69737420616464207265737472696374656420666f7265766572600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f547265617375727920616464726573732063616e6e6f74206265207a65726f00600082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6128c4816123ed565b81146128cf57600080fd5b50565b6128db816123ff565b81146128e657600080fd5b50565b6128f28161242b565b81146128fd57600080fd5b5056fea26469706673582212200464ff4eb287547a30ca2a9db196e371be9e130360b61a60eafdba59ec8d99f364736f6c63430008060033000000000000000000000000d93012ff676a39bb6c8a579f8a27df977e57870100000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806380c581d11161011a578063cbf1f4a4116100ad578063dca69d211161007c578063dca69d2114610597578063dd62ed3e146105b5578063f0f44260146105e5578063f28ed40514610601578063f2fde38b1461061f57610206565b8063cbf1f4a414610537578063d01dd6d214610553578063d041df8a1461056f578063d231185f1461058d57610206565b806395d89b41116100e957806395d89b4114610487578063a457c2d7146104a5578063a7310b58146104d5578063a9059cbb1461050757610206565b806380c581d1146104115780638da5cb5b1461042d5780638f3b957f1461044b578063918f86741461046957610206565b8063244c53591161019d57806370a082311161016c57806370a082311461037f578063715018a6146103af578063719f75c5146103b95780637b24ab32146103d55780637b4aaf51146103f357610206565b8063244c5359146102f7578063313ce56714610313578063395093511461033157806361d027b31461036157610206565b806318160ddd116101d957806318160ddd146102815780631ff32a6e1461029f57806323b872dd146102bd578063241b21eb146102ed57610206565b806306fdde031461020b578063095ea7b3146102295780630a8ce4741461025957806310b343e714610263575b600080fd5b61021361063b565b60405161022091906120b8565b60405180910390f35b610243600480360381019061023e9190611d5c565b6106cd565b6040516102509190612066565b60405180910390f35b6102616106f0565b005b61026b610791565b6040516102789190612066565b60405180910390f35b6102896107a4565b60405161029691906122ba565b60405180910390f35b6102a76107ae565b6040516102b491906122ba565b60405180910390f35b6102d760048036038101906102d29190611cc9565b6107b4565b6040516102e49190612066565b60405180910390f35b6102f56107e3565b005b610311600480360381019061030c9190611d9c565b610884565b005b61031b610962565b60405161032891906122d5565b60405180910390f35b61034b60048036038101906103469190611d5c565b61096b565b6040516103589190612066565b60405180910390f35b6103696109a2565b604051610376919061204b565b60405180910390f35b61039960048036038101906103949190611c5c565b6109c8565b6040516103a691906122ba565b60405180910390f35b6103b7610a11565b005b6103d360048036038101906103ce9190611d1c565b610a25565b005b6103dd610ad9565b6040516103ea91906122ba565b60405180910390f35b6103fb610adf565b6040516104089190612066565b60405180910390f35b61042b60048036038101906104269190611d1c565b610af2565b005b610435610ba6565b604051610442919061204b565b60405180910390f35b610453610bcf565b60405161046091906122ba565b60405180910390f35b610471610bd5565b60405161047e91906122ba565b60405180910390f35b61048f610bdb565b60405161049c91906120b8565b60405180910390f35b6104bf60048036038101906104ba9190611d5c565b610c6d565b6040516104cc9190612066565b60405180910390f35b6104ef60048036038101906104ea9190611c5c565b610ce4565b6040516104fe93929190612081565b60405180910390f35b610521600480360381019061051c9190611d5c565b610d35565b60405161052e9190612066565b60405180910390f35b610551600480360381019061054c9190611d9c565b610d58565b005b61056d60048036038101906105689190611d1c565b610e36565b005b610577610f41565b6040516105849190612066565b60405180910390f35b610595610f54565b005b61059f610ff5565b6040516105ac91906122ba565b60405180910390f35b6105cf60048036038101906105ca9190611c89565b61101f565b6040516105dc91906122ba565b60405180910390f35b6105ff60048036038101906105fa9190611c5c565b6110a6565b005b610609611199565b60405161061691906122ba565b60405180910390f35b61063960048036038101906106349190611c5c565b61119f565b005b60606004805461064a90612475565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612475565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d8611223565b90506106e581858561122b565b600191505092915050565b6106f86113f6565b600960149054906101000a900460ff1615610748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073f9061225a565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe460405160405180910390a1565b600960169054906101000a900460ff1681565b6000600354905090565b6101f481565b6000806107bf611223565b90506107cc858285611474565b6107d7858585611500565b60019150509392505050565b6107eb6113f6565b600960169054906101000a900460ff161561083b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108329061225a565b60405180910390fd5b6001600960166101000a81548160ff0219169083151502179055507f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65660405160405180910390a1565b61088c6113f6565b600960149054906101000a900460ff16156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d3906121ba565b60405180910390fd5b6101f4811115610921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610918906121da565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe508160405161095791906122ba565b60405180910390a150565b60006012905090565b600080610976611223565b9050610997818585610988858961101f565b610992919061230c565b61122b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a196113f6565b610a2360006118b6565b565b610a2d6113f6565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b82604051610acd9190612066565b60405180910390a25050565b60075481565b600960149054906101000a900460ff1681565b610afa6113f6565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610b9a9190612066565b60405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b61271081565b606060058054610bea90612475565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1690612475565b8015610c635780601f10610c3857610100808354040283529160200191610c63565b820191906000526020600020905b815481529060010190602001808311610c4657829003601f168201915b5050505050905090565b600080610c78611223565b90506000610c86828661101f565b905083811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061227a565b60405180910390fd5b610cd8828686840361122b565b60019250505092915050565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b600080610d40611223565b9050610d4d818585611500565b600191505092915050565b610d606113f6565b600960149054906101000a900460ff1615610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906121ba565b60405180910390fd5b6101f4811115610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906121da565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d81604051610e2b91906122ba565b60405180910390a150565b610e3e6113f6565b8015610e9557600960169054906101000a900460ff1615610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b9061213a565b60405180910390fd5b5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb6012382604051610f359190612066565b60405180910390a25050565b600960159054906101000a900460ff1681565b610f5c6113f6565b600960159054906101000a900460ff1615610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061225a565b60405180910390fd5b6001600960156101000a81548160ff0219169083151502179055507fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f60405160405180910390a1565b6000600960159054906101000a900460ff161561101657600854905061101c565b61271090505b90565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ae6113f6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111159061219a565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f8160405161118e919061204b565b60405180910390a150565b60085481565b6111a76113f6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906120fa565b60405180910390fd5b611220816118b6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112929061223a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113029061211a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113e991906122ba565b60405180910390a3505050565b6113fe611223565b73ffffffffffffffffffffffffffffffffffffffff1661141c610ba6565b73ffffffffffffffffffffffffffffffffffffffff1614611472576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611469906121fa565b60405180910390fd5b565b6000611480848461101f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114fa57818110156114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e39061215a565b60405180910390fd5b6114f9848484840361122b565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff1615151515815250509050816040015115801561165257508060400151155b611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116889061229a565b60405180910390fd5b61169b828261197a565b15806116b55750816000015180156116b4575080600001515b5b156116cc576116c5858585611998565b50506118b1565b8160000151156117b4576000612710600754856116e99190612393565b6116f39190612362565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a8360405161177491906122ba565b60405180910390a36117a986600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611998565b8084039350506118a3565b8060000151156118a15760006127106117cb610ff5565b856117d69190612393565b6117e09190612362565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b7828360405161186191906122ba565b60405180910390a361189686600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611998565b8084039350506118a2565b5b5b6118ae858585611998565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826020015115801561199057508160200151155b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061221a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f906120da565b60405180910390fd5b611a83838383611c13565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061217a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bfa91906122ba565b60405180910390a3611c0d848484611c18565b50505050565b505050565b505050565b600081359050611c2c816128bb565b92915050565b600081359050611c41816128d2565b92915050565b600081359050611c56816128e9565b92915050565b600060208284031215611c7257611c71612534565b5b6000611c8084828501611c1d565b91505092915050565b60008060408385031215611ca057611c9f612534565b5b6000611cae85828601611c1d565b9250506020611cbf85828601611c1d565b9150509250929050565b600080600060608486031215611ce257611ce1612534565b5b6000611cf086828701611c1d565b9350506020611d0186828701611c1d565b9250506040611d1286828701611c47565b9150509250925092565b60008060408385031215611d3357611d32612534565b5b6000611d4185828601611c1d565b9250506020611d5285828601611c32565b9150509250929050565b60008060408385031215611d7357611d72612534565b5b6000611d8185828601611c1d565b9250506020611d9285828601611c47565b9150509250929050565b600060208284031215611db257611db1612534565b5b6000611dc084828501611c47565b91505092915050565b611dd2816123ed565b82525050565b611de1816123ff565b82525050565b6000611df2826122f0565b611dfc81856122fb565b9350611e0c818560208601612442565b611e1581612539565b840191505092915050565b6000611e2d6023836122fb565b9150611e388261254a565b604082019050919050565b6000611e506026836122fb565b9150611e5b82612599565b604082019050919050565b6000611e736022836122fb565b9150611e7e826125e8565b604082019050919050565b6000611e966020836122fb565b9150611ea182612637565b602082019050919050565b6000611eb9601d836122fb565b9150611ec482612660565b602082019050919050565b6000611edc6026836122fb565b9150611ee782612689565b604082019050919050565b6000611eff601f836122fb565b9150611f0a826126d8565b602082019050919050565b6000611f226017836122fb565b9150611f2d82612701565b602082019050919050565b6000611f456017836122fb565b9150611f508261272a565b602082019050919050565b6000611f686020836122fb565b9150611f7382612753565b602082019050919050565b6000611f8b6025836122fb565b9150611f968261277c565b604082019050919050565b6000611fae6024836122fb565b9150611fb9826127cb565b604082019050919050565b6000611fd1600b836122fb565b9150611fdc8261281a565b602082019050919050565b6000611ff46025836122fb565b9150611fff82612843565b604082019050919050565b6000612017600b836122fb565b915061202282612892565b602082019050919050565b6120368161242b565b82525050565b61204581612435565b82525050565b60006020820190506120606000830184611dc9565b92915050565b600060208201905061207b6000830184611dd8565b92915050565b60006060820190506120966000830186611dd8565b6120a36020830185611dd8565b6120b06040830184611dd8565b949350505050565b600060208201905081810360008301526120d28184611de7565b905092915050565b600060208201905081810360008301526120f381611e20565b9050919050565b6000602082019050818103600083015261211381611e43565b9050919050565b6000602082019050818103600083015261213381611e66565b9050919050565b6000602082019050818103600083015261215381611e89565b9050919050565b6000602082019050818103600083015261217381611eac565b9050919050565b6000602082019050818103600083015261219381611ecf565b9050919050565b600060208201905081810360008301526121b381611ef2565b9050919050565b600060208201905081810360008301526121d381611f15565b9050919050565b600060208201905081810360008301526121f381611f38565b9050919050565b6000602082019050818103600083015261221381611f5b565b9050919050565b6000602082019050818103600083015261223381611f7e565b9050919050565b6000602082019050818103600083015261225381611fa1565b9050919050565b6000602082019050818103600083015261227381611fc4565b9050919050565b6000602082019050818103600083015261229381611fe7565b9050919050565b600060208201905081810360008301526122b38161200a565b9050919050565b60006020820190506122cf600083018461202d565b92915050565b60006020820190506122ea600083018461203c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006123178261242b565b91506123228361242b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612357576123566124a7565b5b828201905092915050565b600061236d8261242b565b91506123788361242b565b925082612388576123876124d6565b5b828204905092915050565b600061239e8261242b565b91506123a98361242b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123e2576123e16124a7565b5b828202905092915050565b60006123f88261240b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612460578082015181840152602081019050612445565b8381111561246f576000848401525b50505050565b6000600282049050600182168061248d57607f821691505b602082108114156124a1576124a0612505565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c69737420616464207265737472696374656420666f7265766572600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f547265617375727920616464726573732063616e6e6f74206265207a65726f00600082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6128c4816123ed565b81146128cf57600080fd5b50565b6128db816123ff565b81146128e657600080fd5b50565b6128f28161242b565b81146128fd57600080fd5b5056fea26469706673582212200464ff4eb287547a30ca2a9db196e371be9e130360b61a60eafdba59ec8d99f364736f6c63430008060033

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

000000000000000000000000d93012ff676a39bb6c8a579f8a27df977e57870100000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c2

-----Decoded View---------------
Arg [0] : _treasury (address): 0xd93012Ff676A39bB6C8A579f8a27dF977E578701
Arg [1] : _buyFeeNumeratorValue (uint256): 450
Arg [2] : _sellFeeNumeratorValue (uint256): 450

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000d93012ff676a39bb6c8a579f8a27df977e578701
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001c2
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c2


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.