BNB Price: $618.09 (+3.47%)
 

Overview

Max Total Supply

12,000,000ERC20 ***

Holders

10,200

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.01 ERC20 ***

Value
$0.00
0x1d0eda77bea36da35190c241c3b8244dffef1c5c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CZBNB

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2026-01-29
*/

// Sources flattened with hardhat v2.28.4 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




/**
 * @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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


// File contracts/CZBNB.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.20;


interface IPancakeRouter02 {
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract CZBNB is ERC20, Ownable {
    // 常量 - 税费固定不可更改
    uint256 public constant BUY_BURN_FEE = 1;      // 买入销毁 1%
    uint256 public constant SELL_BURN_FEE = 1;     // 卖出销毁 1%
    uint256 public constant SELL_MARKETING_FEE = 4; // 卖出营销 4%
    uint256 public constant FEE_DENOMINATOR = 100;

    // 营销钱包地址(可更换)
    address public marketingWallet;

    // PancakeSwap 路由
    IPancakeRouter02 public immutable pancakeRouter;
    address public immutable pancakePair;

    // 交易对映射
    mapping(address => bool) public isPair;

    // 免税地址(合约本身和营销钱包)
    mapping(address => bool) public isExcludedFromFees;

    // 防止重入
    bool private inSwap;

    // 累积的营销代币数量
    uint256 public accumulatedMarketingTokens;

    // 触发兑换的阈值(0.1% 的总供应量)
    uint256 public swapTokensAtAmount;

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    event MarketingWalletUpdated(address indexed oldWallet, address indexed newWallet);
    event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSent);

    constructor(
        string memory name,
        string memory symbol,
        address _marketingWallet,
        address _router
    ) ERC20(name, symbol) Ownable(msg.sender) {
        require(_marketingWallet != address(0), "Marketing wallet cannot be zero address");
        require(_router != address(0), "Router cannot be zero address");

        marketingWallet = _marketingWallet;
        pancakeRouter = IPancakeRouter02(_router);

        // 创建交易对(这里需要在部署后手动创建流动性池)
        // 注意:实际的 pair 地址需要在添加流动性后设置
        pancakePair = address(0); // 将在部署脚本中设置

        // 铸造总供应量:1200万代币
        uint256 totalSupply = 12_000_000 * 10**decimals();
        _mint(msg.sender, totalSupply);

        // 设置兑换阈值为总供应量的 0.1%
        swapTokensAtAmount = totalSupply / 1000;

        // 排除合约本身和营销钱包的手续费
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[_marketingWallet] = true;
        isExcludedFromFees[msg.sender] = true;
    }

    /**
     * @dev 设置交易对地址
     */
    function setPair(address _pair) external onlyOwner {
        require(_pair != address(0), "Pair cannot be zero address");
        isPair[_pair] = true;
    }

    /**
     * @dev 更新营销钱包地址
     */
    function updateMarketingWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "Marketing wallet cannot be zero address");
        address oldWallet = marketingWallet;

        // 更新免税状态
        isExcludedFromFees[oldWallet] = false;
        isExcludedFromFees[newWallet] = true;

        marketingWallet = newWallet;
        emit MarketingWalletUpdated(oldWallet, newWallet);
    }

    /**
     * @dev 设置免税地址
     */
    function setExcludedFromFees(address account, bool excluded) external onlyOwner {
        isExcludedFromFees[account] = excluded;
    }

    /**
     * @dev 更新兑换阈值
     */
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount > 0, "Amount must be greater than 0");
        swapTokensAtAmount = newAmount;
    }

    /**
     * @dev 重写转账函数以实现税费机制
     */
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        // 允许 mint (from=0) 和 burn (to=0 或 to=dead)
        if (from == address(0) || to == address(0)) {
            super._update(from, to, amount);
            return;
        }

        // 如果是免税地址或者在兑换过程中,直接转账
        if (isExcludedFromFees[from] || isExcludedFromFees[to] || inSwap) {
            super._update(from, to, amount);
            return;
        }

        uint256 fees = 0;
        uint256 burnAmount = 0;

        // 买入(从交易对转出)
        if (isPair[from]) {
            burnAmount = (amount * BUY_BURN_FEE) / FEE_DENOMINATOR;
            fees = burnAmount;
        }
        // 卖出(转入交易对)
        else if (isPair[to]) {
            burnAmount = (amount * SELL_BURN_FEE) / FEE_DENOMINATOR;
            uint256 marketingAmount = (amount * SELL_MARKETING_FEE) / FEE_DENOMINATOR;
            fees = burnAmount + marketingAmount;

            // 累积营销代币
            if (marketingAmount > 0) {
                accumulatedMarketingTokens += marketingAmount;
                super._update(from, address(this), marketingAmount);
            }

            // 检查是否需要兑换营销代币为 BNB
            if (!inSwap && accumulatedMarketingTokens >= swapTokensAtAmount) {
                swapAndSendMarketing();
            }
        }

        // 销毁代币
        if (burnAmount > 0) {
            super._update(from, address(0xdead), burnAmount);
        }

        // 转账剩余金额
        uint256 amountAfterFees = amount - fees;
        super._update(from, to, amountAfterFees);
    }

    /**
     * @dev 将累积的营销代币兑换成 BNB 并发送到营销钱包
     */
    function swapAndSendMarketing() private lockTheSwap {
        uint256 tokenAmount = accumulatedMarketingTokens;
        if (tokenAmount == 0) return;

        accumulatedMarketingTokens = 0;

        // 授权路由合约
        _approve(address(this), address(pancakeRouter), tokenAmount);

        // 构建交易路径
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pancakeRouter.WETH(); // WBNB

        // 兑换代币为 BNB
        try pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // 接受任何数量的 BNB
            path,
            marketingWallet,
            block.timestamp
        ) {
            emit SwapAndSendMarketing(tokenAmount, address(this).balance);
        } catch {
            // 如果兑换失败,恢复累积金额
            accumulatedMarketingTokens = tokenAmount;
        }
    }

    /**
     * @dev 手动触发兑换(仅限所有者)
     */
    function manualSwap() external onlyOwner {
        require(accumulatedMarketingTokens > 0, "No tokens to swap");
        swapAndSendMarketing();
    }

    /**
     * @dev 接收 BNB
     */
    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletUpdated","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"SwapAndSendMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_BURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_MARKETING_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accumulatedMarketingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pancakePair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pancakeRouter","outputs":[{"internalType":"contract IPancakeRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b50604051620021113803806200211183398101604081905262000034916200095c565b338484600362000045838262000a71565b50600462000054828262000a71565b5050506001600160a01b0381166200008757604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000928162000213565b506001600160a01b038216620000fb5760405162461bcd60e51b815260206004820152602760248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265207a65726f206044820152666164647265737360c81b60648201526084016200007e565b6001600160a01b038116620001535760405162461bcd60e51b815260206004820152601d60248201527f526f757465722063616e6e6f74206265207a65726f206164647265737300000060448201526064016200007e565b600680546001600160a01b0319166001600160a01b03848116919091179091558116608052600060a081905262000188601290565b6200019590600a62000c52565b620001a49062b71b0062000c6a565b9050620001b2338262000265565b620001c06103e88262000c84565b600b555050306000908152600860205260408082208054600160ff1991821681179092556001600160a01b039490941683528183208054851682179055338352912080549092161790555062000d7a9050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002915760405163ec442f0560e01b8152600060048201526024016200007e565b6200029f60008383620002a3565b5050565b6001600160a01b0383161580620002c157506001600160a01b038216155b15620002d957620002d483838362000483565b505050565b6001600160a01b03831660009081526008602052604090205460ff16806200031957506001600160a01b03821660009081526008602052604090205460ff165b8062000327575060095460ff165b156200033a57620002d483838362000483565b6001600160a01b038316600090815260076020526040812054819060ff1615620003845760646200036d60018562000c6a565b62000379919062000c84565b905080915062000448565b6001600160a01b03841660009081526007602052604090205460ff161562000448576064620003b560018562000c6a565b620003c1919062000c84565b905060006064620003d460048662000c6a565b620003e0919062000c84565b9050620003ee818362000ca7565b925080156200041e5780600a60008282546200040b919062000ca7565b909155506200041e905086308362000483565b60095460ff16158015620004365750600b54600a5410155b15620004465762000446620005b6565b505b80156200045e576200045e8561dead8362000483565b60006200046c838562000cbd565b90506200047b86868362000483565b505050505050565b6001600160a01b038316620004b2578060026000828254620004a6919062000ca7565b90915550620005269050565b6001600160a01b03831660009081526020819052604090205481811015620005075760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200007e565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620005445760028054829003905562000563565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005a991815260200190565b60405180910390a3505050565b6009805460ff19166001179055600a546000819003620005d7575062000789565b6000600a55608051620005ed9030908362000795565b604080516002808252606082018352600092602083019080368337019050509050308160008151811062000625576200062562000cd3565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000686573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ac919062000ce9565b81600181518110620006c257620006c262000cd3565b6001600160a01b03928316602091820292909201015260805160065460405163791ac94760e01b81529183169263791ac9479262000710928792600092889290911690429060040162000d07565b600060405180830381600087803b1580156200072b57600080fd5b505af19250505080156200073d575060015b6200074d57600a82905562000786565b604080518381524760208201527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e62999910160405180910390a15b50505b6009805460ff19169055565b620002d483838360016001600160a01b038416620007ca5760405163e602df0560e01b8152600060048201526024016200007e565b6001600160a01b038316620007f657604051634a1406b160e11b8152600060048201526024016200007e565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200087457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200086b91815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008a257600080fd5b81516001600160401b0380821115620008bf57620008bf6200087a565b604051601f8301601f19908116603f01168101908282118183101715620008ea57620008ea6200087a565b816040528381526020925086838588010111156200090757600080fd5b600091505b838210156200092b57858201830151818301840152908201906200090c565b600093810190920192909252949350505050565b80516001600160a01b03811681146200095757600080fd5b919050565b600080600080608085870312156200097357600080fd5b84516001600160401b03808211156200098b57600080fd5b620009998883890162000890565b95506020870151915080821115620009b057600080fd5b50620009bf8782880162000890565b935050620009d0604086016200093f565b9150620009e0606086016200093f565b905092959194509250565b600181811c9082168062000a0057607f821691505b60208210810362000a2157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002d457600081815260208120601f850160051c8101602086101562000a505750805b601f850160051c820191505b818110156200047b5782815560010162000a5c565b81516001600160401b0381111562000a8d5762000a8d6200087a565b62000aa58162000a9e8454620009eb565b8462000a27565b602080601f83116001811462000add576000841562000ac45750858301515b600019600386901b1c1916600185901b1785556200047b565b600085815260208120601f198616915b8281101562000b0e5788860151825594840194600190910190840162000aed565b508582101562000b2d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000b9457816000190482111562000b785762000b7862000b3d565b8085161562000b8657918102915b93841c939080029062000b58565b509250929050565b60008262000bad5750600162000c4c565b8162000bbc5750600062000c4c565b816001811462000bd5576002811462000be05762000c00565b600191505062000c4c565b60ff84111562000bf45762000bf462000b3d565b50506001821b62000c4c565b5060208310610133831016604e8410600b841016171562000c25575081810a62000c4c565b62000c31838362000b53565b806000190482111562000c485762000c4862000b3d565b0290505b92915050565b600062000c6360ff84168362000b9c565b9392505050565b808202811582820484141762000c4c5762000c4c62000b3d565b60008262000ca257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000c4c5762000c4c62000b3d565b8181038181111562000c4c5762000c4c62000b3d565b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000cfc57600080fd5b62000c63826200093f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562000d595784516001600160a01b03168352938301939183019160010162000d32565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05161135c62000db5600039600061042101526000818161045501528181610a6001528181610adc0152610b97015261135c6000f3fe6080604052600436106101bb5760003560e01c8063a9059cbb116100ec578063d73792a91161008a578063e463b07211610064578063e463b07214610477578063e5e31b131461051d578063f2fde38b1461054d578063f6a857e51461056d57600080fd5b8063d73792a9146104ac578063dd62ed3e146104c1578063e2f456051461050757600080fd5b8063b8c9d25c116100c6578063b8c9d25c1461040f578063c21ebd0714610443578063c37e676914610477578063d257b34f1461048c57600080fd5b8063a9059cbb146103ba578063aacebbe3146103da578063ad533d09146103fa57600080fd5b8063590ffdce1161015957806375f0a8741161013357806375f0a8741461032f5780638187f516146103675780638da5cb5b1461038757806395d89b41146103a557600080fd5b8063590ffdce146102c457806370a08231146102e4578063715018a61461031a57600080fd5b806323b872dd1161019557806323b872dd14610241578063313ce567146102615780634fbee1931461027d57806351bc3c85146102ad57600080fd5b806306fdde03146101c7578063095ea7b3146101f257806318160ddd1461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610583565b6040516101e9919061105a565b60405180910390f35b3480156101fe57600080fd5b5061021261020d3660046110bd565b610615565b60405190151581526020016101e9565b34801561022e57600080fd5b506002545b6040519081526020016101e9565b34801561024d57600080fd5b5061021261025c3660046110e9565b61062f565b34801561026d57600080fd5b50604051601281526020016101e9565b34801561028957600080fd5b5061021261029836600461112a565b60086020526000908152604090205460ff1681565b3480156102b957600080fd5b506102c2610653565b005b3480156102d057600080fd5b506102c26102df36600461114e565b6106b0565b3480156102f057600080fd5b506102336102ff36600461112a565b6001600160a01b031660009081526020819052604090205490565b34801561032657600080fd5b506102c26106e3565b34801561033b57600080fd5b5060065461034f906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b34801561037357600080fd5b506102c261038236600461112a565b6106f5565b34801561039357600080fd5b506005546001600160a01b031661034f565b3480156103b157600080fd5b506101dc610777565b3480156103c657600080fd5b506102126103d53660046110bd565b610786565b3480156103e657600080fd5b506102c26103f536600461112a565b610794565b34801561040657600080fd5b50610233600481565b34801561041b57600080fd5b5061034f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044f57600080fd5b5061034f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561048357600080fd5b50610233600181565b34801561049857600080fd5b506102c26104a736600461118c565b61087e565b3480156104b857600080fd5b50610233606481565b3480156104cd57600080fd5b506102336104dc3660046111a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b50610233600b5481565b34801561052957600080fd5b5061021261053836600461112a565b60076020526000908152604090205460ff1681565b34801561055957600080fd5b506102c261056836600461112a565b6108db565b34801561057957600080fd5b50610233600a5481565b606060038054610592906111d3565b80601f01602080910402602001604051908101604052809291908181526020018280546105be906111d3565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600033610623818585610919565b60019150505b92915050565b60003361063d85828561092b565b6106488585856109aa565b506001949350505050565b61065b610a09565b6000600a54116106a65760405162461bcd60e51b815260206004820152601160248201527004e6f20746f6b656e7320746f207377617607c1b60448201526064015b60405180910390fd5b6106ae610a36565b565b6106b8610a09565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6106eb610a09565b6106ae6000610c58565b6106fd610a09565b6001600160a01b0381166107535760405162461bcd60e51b815260206004820152601b60248201527f506169722063616e6e6f74206265207a65726f20616464726573730000000000604482015260640161069d565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b606060048054610592906111d3565b6000336106238185856109aa565b61079c610a09565b6001600160a01b0381166108025760405162461bcd60e51b815260206004820152602760248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265207a65726f206044820152666164647265737360c81b606482015260840161069d565b600680546001600160a01b03908116600081815260086020526040808220805460ff19908116909155938616808352818320805490951660011790945584546001600160a01b03191684179094559251909283917f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc679190a35050565b610886610a09565b600081116108d65760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161069d565b600b55565b6108e3610a09565b6001600160a01b03811661090d57604051631e4fbdf760e01b81526000600482015260240161069d565b61091681610c58565b50565b6109268383836001610caa565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156109a4578181101561099557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161069d565b6109a484848484036000610caa565b50505050565b6001600160a01b0383166109d457604051634b637e8f60e11b81526000600482015260240161069d565b6001600160a01b0382166109fe5760405163ec442f0560e01b81526000600482015260240161069d565b610926838383610d7f565b6005546001600160a01b031633146106ae5760405163118cdaa760e01b815233600482015260240161069d565b6009805460ff19166001179055600a546000819003610a555750610c4c565b6000600a55610a85307f000000000000000000000000000000000000000000000000000000000000000083610919565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610aba57610aba61120d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5c9190611223565b81600181518110610b6f57610b6f61120d565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b81527f000000000000000000000000000000000000000000000000000000000000000083169263791ac94792610bd792879260009288929116904290600401611240565b600060405180830381600087803b158015610bf157600080fd5b505af1925050508015610c02575060015b610c1057600a829055610c49565b604080518381524760208201527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e62999910160405180910390a15b50505b6009805460ff19169055565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610cd45760405163e602df0560e01b81526000600482015260240161069d565b6001600160a01b038316610cfe57604051634a1406b160e11b81526000600482015260240161069d565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156109a457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d7191815260200190565b60405180910390a350505050565b6001600160a01b0383161580610d9c57506001600160a01b038216155b15610dac57610926838383610f30565b6001600160a01b03831660009081526008602052604090205460ff1680610deb57506001600160a01b03821660009081526008602052604090205460ff165b80610df8575060095460ff165b15610e0857610926838383610f30565b6001600160a01b038316600090815260076020526040812054819060ff1615610e4c576064610e386001856112c7565b610e4291906112de565b9050809150610efc565b6001600160a01b03841660009081526007602052604090205460ff1615610efc576064610e7a6001856112c7565b610e8491906112de565b905060006064610e956004866112c7565b610e9f91906112de565b9050610eab8183611300565b92508015610ed65780600a6000828254610ec59190611300565b90915550610ed69050863083610f30565b60095460ff16158015610eed5750600b54600a5410155b15610efa57610efa610a36565b505b8015610f0f57610f0f8561dead83610f30565b6000610f1b8385611313565b9050610f28868683610f30565b505050505050565b6001600160a01b038316610f5b578060026000828254610f509190611300565b90915550610fcd9050565b6001600160a01b03831660009081526020819052604090205481811015610fae5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161069d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610fe957600280548290039055611008565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104d91815260200190565b60405180910390a3505050565b600060208083528351808285015260005b818110156110875785810183015185820160400152820161106b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461091657600080fd5b600080604083850312156110d057600080fd5b82356110db816110a8565b946020939093013593505050565b6000806000606084860312156110fe57600080fd5b8335611109816110a8565b92506020840135611119816110a8565b929592945050506040919091013590565b60006020828403121561113c57600080fd5b8135611147816110a8565b9392505050565b6000806040838503121561116157600080fd5b823561116c816110a8565b91506020830135801515811461118157600080fd5b809150509250929050565b60006020828403121561119e57600080fd5b5035919050565b600080604083850312156111b857600080fd5b82356111c3816110a8565b91506020830135611181816110a8565b600181811c908216806111e757607f821691505b60208210810361120757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561123557600080fd5b8151611147816110a8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112905784516001600160a01b03168352938301939183019160010161126b565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610629576106296112b1565b6000826112fb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610629576106296112b1565b81810381811115610629576106296112b156fea2646970667358221220e4fefd90c8d3dacc5a190e7ee939dfccf817c94c474e6a4b0f99135db971871a64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000502d8a43a433a9596e5702b3f77cd7392768f0d200000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e0000000000000000000000000000000000000000000000000000000000000005435a424e420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005435a424e42000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063a9059cbb116100ec578063d73792a91161008a578063e463b07211610064578063e463b07214610477578063e5e31b131461051d578063f2fde38b1461054d578063f6a857e51461056d57600080fd5b8063d73792a9146104ac578063dd62ed3e146104c1578063e2f456051461050757600080fd5b8063b8c9d25c116100c6578063b8c9d25c1461040f578063c21ebd0714610443578063c37e676914610477578063d257b34f1461048c57600080fd5b8063a9059cbb146103ba578063aacebbe3146103da578063ad533d09146103fa57600080fd5b8063590ffdce1161015957806375f0a8741161013357806375f0a8741461032f5780638187f516146103675780638da5cb5b1461038757806395d89b41146103a557600080fd5b8063590ffdce146102c457806370a08231146102e4578063715018a61461031a57600080fd5b806323b872dd1161019557806323b872dd14610241578063313ce567146102615780634fbee1931461027d57806351bc3c85146102ad57600080fd5b806306fdde03146101c7578063095ea7b3146101f257806318160ddd1461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610583565b6040516101e9919061105a565b60405180910390f35b3480156101fe57600080fd5b5061021261020d3660046110bd565b610615565b60405190151581526020016101e9565b34801561022e57600080fd5b506002545b6040519081526020016101e9565b34801561024d57600080fd5b5061021261025c3660046110e9565b61062f565b34801561026d57600080fd5b50604051601281526020016101e9565b34801561028957600080fd5b5061021261029836600461112a565b60086020526000908152604090205460ff1681565b3480156102b957600080fd5b506102c2610653565b005b3480156102d057600080fd5b506102c26102df36600461114e565b6106b0565b3480156102f057600080fd5b506102336102ff36600461112a565b6001600160a01b031660009081526020819052604090205490565b34801561032657600080fd5b506102c26106e3565b34801561033b57600080fd5b5060065461034f906001600160a01b031681565b6040516001600160a01b0390911681526020016101e9565b34801561037357600080fd5b506102c261038236600461112a565b6106f5565b34801561039357600080fd5b506005546001600160a01b031661034f565b3480156103b157600080fd5b506101dc610777565b3480156103c657600080fd5b506102126103d53660046110bd565b610786565b3480156103e657600080fd5b506102c26103f536600461112a565b610794565b34801561040657600080fd5b50610233600481565b34801561041b57600080fd5b5061034f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044f57600080fd5b5061034f7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b34801561048357600080fd5b50610233600181565b34801561049857600080fd5b506102c26104a736600461118c565b61087e565b3480156104b857600080fd5b50610233606481565b3480156104cd57600080fd5b506102336104dc3660046111a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561051357600080fd5b50610233600b5481565b34801561052957600080fd5b5061021261053836600461112a565b60076020526000908152604090205460ff1681565b34801561055957600080fd5b506102c261056836600461112a565b6108db565b34801561057957600080fd5b50610233600a5481565b606060038054610592906111d3565b80601f01602080910402602001604051908101604052809291908181526020018280546105be906111d3565b801561060b5780601f106105e05761010080835404028352916020019161060b565b820191906000526020600020905b8154815290600101906020018083116105ee57829003601f168201915b5050505050905090565b600033610623818585610919565b60019150505b92915050565b60003361063d85828561092b565b6106488585856109aa565b506001949350505050565b61065b610a09565b6000600a54116106a65760405162461bcd60e51b815260206004820152601160248201527004e6f20746f6b656e7320746f207377617607c1b60448201526064015b60405180910390fd5b6106ae610a36565b565b6106b8610a09565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6106eb610a09565b6106ae6000610c58565b6106fd610a09565b6001600160a01b0381166107535760405162461bcd60e51b815260206004820152601b60248201527f506169722063616e6e6f74206265207a65726f20616464726573730000000000604482015260640161069d565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b606060048054610592906111d3565b6000336106238185856109aa565b61079c610a09565b6001600160a01b0381166108025760405162461bcd60e51b815260206004820152602760248201527f4d61726b6574696e672077616c6c65742063616e6e6f74206265207a65726f206044820152666164647265737360c81b606482015260840161069d565b600680546001600160a01b03908116600081815260086020526040808220805460ff19908116909155938616808352818320805490951660011790945584546001600160a01b03191684179094559251909283917f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc679190a35050565b610886610a09565b600081116108d65760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161069d565b600b55565b6108e3610a09565b6001600160a01b03811661090d57604051631e4fbdf760e01b81526000600482015260240161069d565b61091681610c58565b50565b6109268383836001610caa565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156109a4578181101561099557604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161069d565b6109a484848484036000610caa565b50505050565b6001600160a01b0383166109d457604051634b637e8f60e11b81526000600482015260240161069d565b6001600160a01b0382166109fe5760405163ec442f0560e01b81526000600482015260240161069d565b610926838383610d7f565b6005546001600160a01b031633146106ae5760405163118cdaa760e01b815233600482015260240161069d565b6009805460ff19166001179055600a546000819003610a555750610c4c565b6000600a55610a85307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e83610919565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610aba57610aba61120d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5c9190611223565b81600181518110610b6f57610b6f61120d565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b81527f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e83169263791ac94792610bd792879260009288929116904290600401611240565b600060405180830381600087803b158015610bf157600080fd5b505af1925050508015610c02575060015b610c1057600a829055610c49565b604080518381524760208201527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e62999910160405180910390a15b50505b6009805460ff19169055565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610cd45760405163e602df0560e01b81526000600482015260240161069d565b6001600160a01b038316610cfe57604051634a1406b160e11b81526000600482015260240161069d565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156109a457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d7191815260200190565b60405180910390a350505050565b6001600160a01b0383161580610d9c57506001600160a01b038216155b15610dac57610926838383610f30565b6001600160a01b03831660009081526008602052604090205460ff1680610deb57506001600160a01b03821660009081526008602052604090205460ff165b80610df8575060095460ff165b15610e0857610926838383610f30565b6001600160a01b038316600090815260076020526040812054819060ff1615610e4c576064610e386001856112c7565b610e4291906112de565b9050809150610efc565b6001600160a01b03841660009081526007602052604090205460ff1615610efc576064610e7a6001856112c7565b610e8491906112de565b905060006064610e956004866112c7565b610e9f91906112de565b9050610eab8183611300565b92508015610ed65780600a6000828254610ec59190611300565b90915550610ed69050863083610f30565b60095460ff16158015610eed5750600b54600a5410155b15610efa57610efa610a36565b505b8015610f0f57610f0f8561dead83610f30565b6000610f1b8385611313565b9050610f28868683610f30565b505050505050565b6001600160a01b038316610f5b578060026000828254610f509190611300565b90915550610fcd9050565b6001600160a01b03831660009081526020819052604090205481811015610fae5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161069d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610fe957600280548290039055611008565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104d91815260200190565b60405180910390a3505050565b600060208083528351808285015260005b818110156110875785810183015185820160400152820161106b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461091657600080fd5b600080604083850312156110d057600080fd5b82356110db816110a8565b946020939093013593505050565b6000806000606084860312156110fe57600080fd5b8335611109816110a8565b92506020840135611119816110a8565b929592945050506040919091013590565b60006020828403121561113c57600080fd5b8135611147816110a8565b9392505050565b6000806040838503121561116157600080fd5b823561116c816110a8565b91506020830135801515811461118157600080fd5b809150509250929050565b60006020828403121561119e57600080fd5b5035919050565b600080604083850312156111b857600080fd5b82356111c3816110a8565b91506020830135611181816110a8565b600181811c908216806111e757607f821691505b60208210810361120757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561123557600080fd5b8151611147816110a8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112905784516001600160a01b03168352938301939183019160010161126b565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610629576106296112b1565b6000826112fb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610629576106296112b1565b81810381811115610629576106296112b156fea2646970667358221220e4fefd90c8d3dacc5a190e7ee939dfccf817c94c474e6a4b0f99135db971871a64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000502d8a43a433a9596e5702b3f77cd7392768f0d200000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e0000000000000000000000000000000000000000000000000000000000000005435a424e420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005435a424e42000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CZBNB
Arg [1] : symbol (string): CZBNB
Arg [2] : _marketingWallet (address): 0x502D8A43A433a9596e5702b3f77cd7392768f0D2
Arg [3] : _router (address): 0x10ED43C718714eb63d5aA57B78B54704E256024E

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000502d8a43a433a9596e5702b3f77cd7392768f0d2
Arg [3] : 00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 435a424e42000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 435a424e42000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26311:6778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16601:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18811:190;;;;;;;;;;-1:-1:-1;18811:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18811:190:0;1023:187:1;17674:99:0;;;;;;;;;;-1:-1:-1;17753:12:0;;17674:99;;;1361:25:1;;;1349:2;1334:18;17674:99:0;1215:177:1;19611:249:0;;;;;;;;;;-1:-1:-1;19611:249:0;;;;;:::i;:::-;;:::i;17554:84::-;;;;;;;;;;-1:-1:-1;17554:84:0;;17628:2;2000:36:1;;1988:2;1973:18;17554:84:0;1858:184:1;26993:50:0;;;;;;;;;;-1:-1:-1;26993:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32854:153;;;;;;;;;;;;;:::i;:::-;;29476:137;;;;;;;;;;-1:-1:-1;29476:137:0;;;;;:::i;:::-;;:::i;17809:118::-;;;;;;;;;;-1:-1:-1;17809:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;17901:18:0;17874:7;17901:18;;;;;;;;;;;;17809:118;3571:103;;;;;;;;;;;;;:::i;26703:30::-;;;;;;;;;;-1:-1:-1;26703:30:0;;;;-1:-1:-1;;;;;26703:30:0;;;;;;-1:-1:-1;;;;;2884:32:1;;;2866:51;;2854:2;2839:18;26703:30:0;2720:203:1;28757:160:0;;;;;;;;;;-1:-1:-1;28757:160:0;;;;;:::i;:::-;;:::i;2896:87::-;;;;;;;;;;-1:-1:-1;2969:6:0;;-1:-1:-1;;;;;2969:6:0;2896:87;;16811:95;;;;;;;;;;;;;:::i;18132:182::-;;;;;;;;;;-1:-1:-1;18132:182:0;;;;;:::i;:::-;;:::i;28981:437::-;;;;;;;;;;-1:-1:-1;28981:437:0;;;;;:::i;:::-;;:::i;26535:46::-;;;;;;;;;;;;26580:1;26535:46;;26823:36;;;;;;;;;;;;;;;26769:47;;;;;;;;;;;;;;;26464:41;;;;;;;;;;;;26504:1;26464:41;;29671:187;;;;;;;;;;-1:-1:-1;29671:187:0;;;;;:::i;:::-;;:::i;26607:45::-;;;;;;;;;;;;26649:3;26607:45;;18350:142;;;;;;;;;;-1:-1:-1;18350:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;18457:18:0;;;18430:7;18457:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18350:142;27243:33;;;;;;;;;;;;;;;;26892:38;;;;;;;;;;-1:-1:-1;26892:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;3829:220;;;;;;;;;;-1:-1:-1;3829:220:0;;;;;:::i;:::-;;:::i;27137:41::-;;;;;;;;;;;;;;;;16601:91;16646:13;16679:5;16672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16601:91;:::o;18811:190::-;18884:4;930:10;18940:31;930:10;18956:7;18965:5;18940:8;:31::i;:::-;18989:4;18982:11;;;18811:190;;;;;:::o;19611:249::-;19698:4;930:10;19756:37;19772:4;930:10;19787:5;19756:15;:37::i;:::-;19804:26;19814:4;19820:2;19824:5;19804:9;:26::i;:::-;-1:-1:-1;19848:4:0;;19611:249;-1:-1:-1;;;;19611:249:0:o;32854:153::-;2782:13;:11;:13::i;:::-;32943:1:::1;32914:26;;:30;32906:60;;;::::0;-1:-1:-1;;;32906:60:0;;4325:2:1;32906:60:0::1;::::0;::::1;4307:21:1::0;4364:2;4344:18;;;4337:30;-1:-1:-1;;;4383:18:1;;;4376:47;4440:18;;32906:60:0::1;;;;;;;;;32977:22;:20;:22::i;:::-;32854:153::o:0;29476:137::-;2782:13;:11;:13::i;:::-;-1:-1:-1;;;;;29567:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;29567:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29476:137::o;3571:103::-;2782:13;:11;:13::i;:::-;3636:30:::1;3663:1;3636:18;:30::i;28757:160::-:0;2782:13;:11;:13::i;:::-;-1:-1:-1;;;;;28827:19:0;::::1;28819:59;;;::::0;-1:-1:-1;;;28819:59:0;;4671:2:1;28819:59:0::1;::::0;::::1;4653:21:1::0;4710:2;4690:18;;;4683:30;4749:29;4729:18;;;4722:57;4796:18;;28819:59:0::1;4469:351:1::0;28819:59:0::1;-1:-1:-1::0;;;;;28889:13:0::1;;::::0;;;:6:::1;:13;::::0;;;;:20;;-1:-1:-1;;28889:20:0::1;28905:4;28889:20;::::0;;28757:160::o;16811:95::-;16858:13;16891:7;16884:14;;;;;:::i;18132:182::-;18201:4;930:10;18257:27;930:10;18274:2;18278:5;18257:9;:27::i;28981:437::-;2782:13;:11;:13::i;:::-;-1:-1:-1;;;;;29069:23:0;::::1;29061:75;;;::::0;-1:-1:-1;;;29061:75:0;;5027:2:1;29061:75:0::1;::::0;::::1;5009:21:1::0;5066:2;5046:18;;;5039:30;5105:34;5085:18;;;5078:62;-1:-1:-1;;;5156:18:1;;;5149:37;5203:19;;29061:75:0::1;4825:403:1::0;29061:75:0::1;29167:15;::::0;;-1:-1:-1;;;;;29167:15:0;;::::1;29147:17;29226:29:::0;;;:18:::1;:29;::::0;;;;;:37;;-1:-1:-1;;29226:37:0;;::::1;::::0;;;29274:29;;::::1;::::0;;;;;;:36;;;;::::1;29167:15:::0;29274:36:::1;::::0;;;29323:27;;-1:-1:-1;;;;;;29323:27:0::1;::::0;::::1;::::0;;;29366:44;;29167:15;;;;29366:44:::1;::::0;29147:17;29366:44:::1;29050:368;28981:437:::0;:::o;29671:187::-;2782:13;:11;:13::i;:::-;29774:1:::1;29762:9;:13;29754:55;;;::::0;-1:-1:-1;;;29754:55:0;;5435:2:1;29754:55:0::1;::::0;::::1;5417:21:1::0;5474:2;5454:18;;;5447:30;5513:31;5493:18;;;5486:59;5562:18;;29754:55:0::1;5233:353:1::0;29754:55:0::1;29820:18;:30:::0;29671:187::o;3829:220::-;2782:13;:11;:13::i;:::-;-1:-1:-1;;;;;3914:22:0;::::1;3910:93;;3960:31;::::0;-1:-1:-1;;;3960:31:0;;3988:1:::1;3960:31;::::0;::::1;2866:51:1::0;2839:18;;3960:31:0::1;2720:203:1::0;3910:93:0::1;4013:28;4032:8;4013:18;:28::i;:::-;3829:220:::0;:::o;23670:130::-;23755:37;23764:5;23771:7;23780:5;23787:4;23755:8;:37::i;:::-;23670:130;;;:::o;25402:486::-;-1:-1:-1;;;;;18457:18:0;;;25502:24;18457:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25569:36:0;;25565:316;;;25645:5;25626:16;:24;25622:132;;;25678:60;;-1:-1:-1;;;25678:60:0;;-1:-1:-1;;;;;5811:32:1;;25678:60:0;;;5793:51:1;5860:18;;;5853:34;;;5903:18;;;5896:34;;;5766:18;;25678:60:0;5591:345:1;25622:132:0;25797:57;25806:5;25813:7;25841:5;25822:16;:24;25848:5;25797:8;:57::i;:::-;25491:397;25402:486;;;:::o;20245:308::-;-1:-1:-1;;;;;20329:18:0;;20325:88;;20371:30;;-1:-1:-1;;;20371:30:0;;20398:1;20371:30;;;2866:51:1;2839:18;;20371:30:0;2720:203:1;20325:88:0;-1:-1:-1;;;;;20427:16:0;;20423:88;;20467:32;;-1:-1:-1;;;20467:32:0;;20496:1;20467:32;;;2866:51:1;2839:18;;20467:32:0;2720:203:1;20423:88:0;20521:24;20529:4;20535:2;20539:5;20521:7;:24::i;3061:166::-;2969:6;;-1:-1:-1;;;;;2969:6:0;930:10;3121:23;3117:103;;3168:40;;-1:-1:-1;;;3168:40:0;;930:10;3168:40;;;2866:51:1;2839:18;;3168:40:0;2720:203:1;31811:964:0;27317:6;:13;;-1:-1:-1;;27317:13:0;27326:4;27317:13;;;31896:26:::1;::::0;27317:6;31937:16;;;31933:29:::1;;31955:7;;;31933:29;32003:1;31974:26;:30:::0;32048:60:::1;32065:4;32080:13;32096:11:::0;32048:8:::1;:60::i;:::-;32176:16;::::0;;32190:1:::1;32176:16:::0;;;;;::::1;::::0;;32152:21:::1;::::0;32176:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;32176:16:0::1;32152:40;;32221:4;32203;32208:1;32203:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;32203:23:0::1;;;-1:-1:-1::0;;;;;32203:23:0::1;;;::::0;::::1;32247:13;-1:-1:-1::0;;;;;32247:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32237:4;32242:1;32237:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32237:30:0;;::::1;:7;::::0;;::::1;::::0;;;;;:30;32493:15:::1;::::0;32324:225:::1;::::0;-1:-1:-1;;;32324:225:0;;:13:::1;:64:::0;::::1;::::0;::::1;::::0;:225:::1;::::0;32403:11;;32429:1:::1;::::0;32474:4;;32493:15;::::1;::::0;32523::::1;::::0;32324:225:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;32320:448;;32716:26;:40:::0;;;32320:448:::1;;;32570:56;::::0;;7620:25:1;;;32604:21:0::1;7676:2:1::0;7661:18;;7654:34;32570:56:0::1;::::0;7593:18:1;32570:56:0::1;;;;;;;32320:448;31863:912;;27341:1;27353:6:::0;:14;;-1:-1:-1;;27353:14:0;;;31811:964::o;4209:191::-;4302:6;;;-1:-1:-1;;;;;4319:17:0;;;-1:-1:-1;;;;;;4319:17:0;;;;;;;4352:40;;4302:6;;;4319:17;4302:6;;4352:40;;4283:16;;4352:40;4272:128;4209:191;:::o;24667:443::-;-1:-1:-1;;;;;24780:19:0;;24776:91;;24823:32;;-1:-1:-1;;;24823:32:0;;24852:1;24823:32;;;2866:51:1;2839:18;;24823:32:0;2720:203:1;24776:91:0;-1:-1:-1;;;;;24881:21:0;;24877:92;;24926:31;;-1:-1:-1;;;24926:31:0;;24954:1;24926:31;;;2866:51:1;2839:18;;24926:31:0;2720:203:1;24877:92:0;-1:-1:-1;;;;;24979:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25025:78;;;;25076:7;-1:-1:-1;;;;;25060:31:0;25069:5;-1:-1:-1;;;;;25060:31:0;;25085:5;25060:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;25060:31:0;;;;;;;;24667:443;;;;:::o;29937:1772::-;-1:-1:-1;;;;;30124:18:0;;;;:38;;-1:-1:-1;;;;;;30146:16:0;;;30124:38;30120:123;;;30179:31;30193:4;30199:2;30203:6;30179:13;:31::i;30120:123::-;-1:-1:-1;;;;;30332:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;30360:22:0;;;;;;:18;:22;;;;;;;;30332:50;:60;;;-1:-1:-1;30386:6:0;;;;30332:60;30328:145;;;30409:31;30423:4;30429:2;30433:6;30409:13;:31::i;30328:145::-;-1:-1:-1;;;;;30594:12:0;;30485;30594;;;:6;:12;;;;;;30485;;30594;;30590:846;;;26649:3;30637:21;26432:1;30637:6;:21;:::i;:::-;30636:41;;;;:::i;:::-;30623:54;;30699:10;30692:17;;30590:846;;;-1:-1:-1;;;;;30780:10:0;;;;;;:6;:10;;;;;;;;30776:660;;;26649:3;30821:22;26504:1;30821:6;:22;:::i;:::-;30820:42;;;;:::i;:::-;30807:55;-1:-1:-1;30877:23:0;26649:3;30904:27;26580:1;30904:6;:27;:::i;:::-;30903:47;;;;:::i;:::-;30877:73;-1:-1:-1;30972:28:0;30877:73;30972:10;:28;:::i;:::-;30965:35;-1:-1:-1;31056:19:0;;31052:175;;31126:15;31096:26;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;31160:51:0;;-1:-1:-1;31174:4:0;31188;31195:15;31160:13;:51::i;:::-;31308:6;;;;31307:7;:59;;;;;31348:18;;31318:26;;:48;;31307:59;31303:122;;;31387:22;:20;:22::i;:::-;30792:644;30776:660;31477:14;;31473:95;;31508:48;31522:4;31536:6;31545:10;31508:13;:48::i;:::-;31611:23;31637:13;31646:4;31637:6;:13;:::i;:::-;31611:39;;31661:40;31675:4;31681:2;31685:15;31661:13;:40::i;:::-;30048:1661;;;29937:1772;;;:::o;20877:1135::-;-1:-1:-1;;;;;20967:18:0;;20963:552;;21121:5;21105:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20963:552:0;;-1:-1:-1;20963:552:0;;-1:-1:-1;;;;;21181:15:0;;21159:19;21181:15;;;;;;;;;;;21215:19;;;21211:117;;;21262:50;;-1:-1:-1;;;21262:50:0;;-1:-1:-1;;;;;5811:32:1;;21262:50:0;;;5793:51:1;5860:18;;;5853:34;;;5903:18;;;5896:34;;;5766:18;;21262:50:0;5591:345:1;21211:117:0;-1:-1:-1;;;;;21451:15:0;;:9;:15;;;;;;;;;;21469:19;;;;21451:37;;20963:552;-1:-1:-1;;;;;21531:16:0;;21527:435;;21697:12;:21;;;;;;;21527:435;;;-1:-1:-1;;;;;21913:13:0;;:9;:13;;;;;;;;;;:22;;;;;;21527:435;21994:2;-1:-1:-1;;;;;21979:25:0;21988:4;-1:-1:-1;;;;;21979:25:0;;21998:5;21979:25;;;;1361::1;;1349:2;1334:18;;1215:177;21979:25:0;;;;;;;;20877:1135;;;:::o;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2299:416::-;2364:6;2372;2425:2;2413:9;2404:7;2400:23;2396:32;2393:52;;;2441:1;2438;2431:12;2393:52;2480:9;2467:23;2499:31;2524:5;2499:31;:::i;:::-;2549:5;-1:-1:-1;2606:2:1;2591:18;;2578:32;2648:15;;2641:23;2629:36;;2619:64;;2679:1;2676;2669:12;2619:64;2702:7;2692:17;;;2299:416;;;;;:::o;3160:180::-;3219:6;3272:2;3260:9;3251:7;3247:23;3243:32;3240:52;;;3288:1;3285;3278:12;3240:52;-1:-1:-1;3311:23:1;;3160:180;-1:-1:-1;3160:180:1:o;3345:388::-;3413:6;3421;3474:2;3462:9;3453:7;3449:23;3445:32;3442:52;;;3490:1;3487;3480:12;3442:52;3529:9;3516:23;3548:31;3573:5;3548:31;:::i;:::-;3598:5;-1:-1:-1;3655:2:1;3640:18;;3627:32;3668:33;3627:32;3668:33;:::i;3738:380::-;3817:1;3813:12;;;;3860;;;3881:61;;3935:4;3927:6;3923:17;3913:27;;3881:61;3988:2;3980:6;3977:14;3957:18;3954:38;3951:161;;4034:10;4029:3;4025:20;4022:1;4015:31;4069:4;4066:1;4059:15;4097:4;4094:1;4087:15;3951:161;;3738:380;;;:::o;6073:127::-;6134:10;6129:3;6125:20;6122:1;6115:31;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6205:251;6275:6;6328:2;6316:9;6307:7;6303:23;6299:32;6296:52;;;6344:1;6341;6334:12;6296:52;6376:9;6370:16;6395:31;6420:5;6395:31;:::i;6461:980::-;6723:4;6771:3;6760:9;6756:19;6802:6;6791:9;6784:25;6828:2;6866:6;6861:2;6850:9;6846:18;6839:34;6909:3;6904:2;6893:9;6889:18;6882:31;6933:6;6968;6962:13;6999:6;6991;6984:22;7037:3;7026:9;7022:19;7015:26;;7076:2;7068:6;7064:15;7050:29;;7097:1;7107:195;7121:6;7118:1;7115:13;7107:195;;;7186:13;;-1:-1:-1;;;;;7182:39:1;7170:52;;7277:15;;;;7242:12;;;;7218:1;7136:9;7107:195;;;-1:-1:-1;;;;;;;7358:32:1;;;;7353:2;7338:18;;7331:60;-1:-1:-1;;;7422:3:1;7407:19;7400:35;7319:3;6461:980;-1:-1:-1;;;6461:980:1:o;7699:127::-;7760:10;7755:3;7751:20;7748:1;7741:31;7791:4;7788:1;7781:15;7815:4;7812:1;7805:15;7831:168;7904:9;;;7935;;7952:15;;;7946:22;;7932:37;7922:71;;7973:18;;:::i;8004:217::-;8044:1;8070;8060:132;;8114:10;8109:3;8105:20;8102:1;8095:31;8149:4;8146:1;8139:15;8177:4;8174:1;8167:15;8060:132;-1:-1:-1;8206:9:1;;8004:217::o;8226:125::-;8291:9;;;8312:10;;;8309:36;;;8325:18;;:::i;8356:128::-;8423:9;;;8444:11;;;8441:37;;;8458:18;;:::i

Swarm Source

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