ETH Price: $2,067.12 (+4.37%)

Token

KZ (KZ)

Overview

Max Total Supply

494,695,174,683 KZ

Holders

2,676

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000472 KZ

Value
$0.00
0x64848d53d16b26e0868fc16fe473e493042269dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
KzToken

Compiler Version
v0.8.20+commit.a1b79de6

ZkSolc Version
v1.3.18

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion, MIT license
File 1 of 7 : KzToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { ERC20Capped } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract KzToken is Ownable, ERC20Capped {
    uint256 public constant TOKEN_CAPPED = 758629374645 * (10 ** 18);
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    uint256 public maxTxAmount;
    address admin;
    bool public limited;
    bool public started;
    mapping(address => bool) public swapPairs;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) public blacklists;

    // Some dapps need to be allowed to transfer large amounts of tokens
    mapping(address => bool) public allowedDapps;

    event ConfigUpdated(
        bool started,
        bool limited,
        uint256 maxHoldingAmount,
        uint256 minHoldingAmount,
        uint256 maxTxAmount
    );
    event BlacklistUpdated(address, bool);
    event SwapPairUpdated(address, bool);
    event DappUpdated(address, bool);
    event AdminUpdated(address);

    constructor() ERC20Capped(TOKEN_CAPPED) ERC20("KZ", "KZ") {
        started = true;
        admin = msg.sender;
        _mint(0x97EC06BC704E9fF7d07237a8B4d33a38756aece9, TOKEN_CAPPED);
    }

    function config(
        bool _started,
        bool _limited,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount,
        uint256 _maxTxAmount
    ) external onlyOwner {
        started = _started;
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
        maxTxAmount = _maxTxAmount;
        emit ConfigUpdated(_started, _limited, _maxHoldingAmount, _minHoldingAmount, _maxTxAmount);
    }

    function setSwapPair(address _pair, bool _status) external onlyOwner {
        swapPairs[_pair] = _status;
        emit SwapPairUpdated(_pair, _status);
    }

    function setWhitelistDapp(address _dapp, bool _status) external onlyOwner {
        allowedDapps[_dapp] = _status;
        emit DappUpdated(_dapp, _status);
    }

    function setBlacklist(address _addr, bool _isBlacklisting) public onlyOwner {
        blacklists[_addr] = _isBlacklisting;
        emit BlacklistUpdated(_addr, _isBlacklisting);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "BLACKLISTED");

        if (!started) {
            require(from == owner() || to == owner(), "TRADING_IS_NOT_START");
            return;
        }
        if (allowedDapps[msg.sender]) {
            return;
        }
        if (maxTxAmount > 0) {
            require(amount <= maxTxAmount, "TX_LIMIT_EXCEEDED");
        }
        if (limited && swapPairs[from]) {
            require(
                super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount,
                "FORBIDDEN"
            );
        }
    }

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

    function transferAdmin(address _newAdmin) external {
        require(msg.sender == admin, "ONLY_ADMIN");
        admin = _newAdmin;
        emit AdminUpdated(_newAdmin);
    }

    function claimStuckTokens(address _token) external {
        require(msg.sender == admin, "ONLY_ADMIN");
        IERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
    }
}

File 2 of 7 : 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 3 of 7 : 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 4 of 7 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 5 of 7 : 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 6 of 7 : 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 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"AdminUpdated","type":"event"},{"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":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"bool","name":"","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"started","type":"bool"},{"indexed":false,"internalType":"bool","name":"limited","type":"bool"},{"indexed":false,"internalType":"uint256","name":"maxHoldingAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minHoldingAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"ConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"bool","name":"","type":"bool"}],"name":"DappUpdated","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":"address","name":"","type":"address"},{"indexed":false,"internalType":"bool","name":"","type":"bool"}],"name":"SwapPairUpdated","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":"TOKEN_CAPPED","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":"","type":"address"}],"name":"allowedDapps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_started","type":"bool"},{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSwapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dapp","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistDapp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapPairs","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":"_newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"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"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002c5e0d1f2271819cf9218c8327e571c583376aaf696011cb4e117ff828b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00010000000000020007000000000002000000000701034f00000000010700190000006001100270000002470110019700000001022001900000002f0000c13d0000008003000039000000400030043f000000040210008c000007100000413d000000000207043b000000e002200270000002650420009c000000570000a13d000002660320009c0000009f0000213d000002720320009c000001120000213d000002780320009c000001c00000213d0000027b0320009c000002cd0000613d0000027c0120009c000007100000c13d0000000001000416000000000101004b000007100000c13d000000000100041a0000024b021001970000000005000411000000000252004b0000048e0000c13d0000024901100197000000000010041b00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024a011001c70000800d0200003900000003030000390000024c040000410000000006000019000003d30000013d000000a001000039000000400010043f0000000001000416000000000101004b000007100000c13d0000000201000039000000a00010043f0000024802000041000000c00020043f0000012003000039000000400030043f000000e00010043f000001000020043f0000000006000411000000000200041a0000024901200197000000000161019f000000000010041b00000247010000410000000003000414000002470430009c0000000003018019000000c0013002100000024a011001c70000024b052001970000800d020000390000000303000039000500000003001d0000024c04000041000400000006001d0918090e0000040f0000000101200190000007100000613d000000a00500043d0000024d0150009c000000eb0000413d000002630100004100000000001004350000004101000039000000fa0000013d0000027d0420009c000000fd0000a13d0000027e0420009c0000011d0000213d000002840320009c000002040000213d000002870320009c000002de0000613d000002880220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000600110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000002401700370000000000101043b000400000001001d0000024b0110009c000007100000213d0000004401700370000000000101043b000300000001001d000000050100002900000000001004350000000201000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b0000000002000411000200000002001d0000000000200435000000200010043f0000000001000414000002470210009c0000024701008041000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000010200008a000000000221004b000006a30000613d0000000303000029000000000231004b0000069f0000813d000000400100043d0000004402100039000002b103000041000000000032043500000024021000390000001d03000039000005830000013d000002670320009c0000013a0000213d0000026d0320009c000002130000213d000002700320009c000002e50000613d000002710220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000002401700370000000000101043b000400000001001d0000000001000411000300000001001d00000000001004350000000201000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b00000005020000290000000000200435000000200010043f0000000001000414000002470210009c0000024701008041000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a0000000403000029000000000231004b0000060b0000813d000000400100043d00000064021000390000029f0300004100000000003204350000004402100039000002a0030000410000000000320435000000240210003900000025030000390000000000320435000002550200004100000000002104350000000402100039000000200300003900000000003204350000024702000041000002470310009c00000000010280190000004001100210000002a1011001c70000091a000104300000000404000039000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000015b0000613d000002630100004100000000001004350000002201000039000000040010043f00000264010000410000091a00010430000002890320009c000001ab0000a13d0000028a0320009c000002330000213d0000028d0320009c000002fe0000613d0000028e0220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d00000000001004350000000b010000390000040b0000013d000002730120009c0000023c0000213d000002760120009c0000033e0000613d000002770120009c000007100000c13d0000000001000416000000000101004b000007100000c13d0000000601000039000003fd0000013d0000027f0420009c000002460000213d000002820420009c000003450000613d000002830220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000401043b0000000002000411000000000102004b0000049f0000c13d0000025501000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f000002af01000041000000c40010043f000002b001000041000000e40010043f00000299010000410000091a00010430000002680320009c0000024f0000213d0000026b0320009c000003760000613d0000026c0220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000601043b0000024b0160009c000007100000213d000000000100041a0000024b021001970000000005000411000000000252004b0000048e0000c13d000000000206004b000005d00000c13d0000025501000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000029701000041000000c40010043f0000029801000041000001370000013d000000200130008c0000017d0000413d000100000003001d000200000005001d000300000004001d000000000040043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024e011001c70000801002000039091809130000040f0000000102200190000007100000613d00000002050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000003040000290000017d0000813d000000000002041b0000000102200039000000000312004b000001790000413d0000001f0150008c000002600000a13d000200000005001d000300000004001d000000000040043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024e011001c70000801002000039091809130000040f0000000102200190000007100000613d000000200200008a000000020600002900000000032601700000002002000039000000000101043b0000019c0000613d00000020020000390000000004000019000000a0052000390000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001940000413d000000000363004b000001a70000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f000000a0022000390000000002020433000000000232016f000000000021041b000000010160021000000001011001bf00000003040000290000026b0000013d0000028f0320009c000004350000613d000002900320009c000004750000613d000002910220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000201043b0000024b0120009c000007100000213d0000002401700370000000000301043b0000000001000411091808890000040f000003eb0000013d000002790320009c000003b60000613d0000027a0220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000002401700370000000000201043b000000000102004b0000000001000019000000010100c039000400000002001d000000000112004b000007100000c13d000000000100041a0000024b011001970000000002000411000000000121004b0000048e0000c13d000000050100002900000000001004350000000a01000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000403000029000000000232019f000000000021041b000000400100043d00000020021000390000000000320435000000050200002900000000002104350000000002000414000002470320009c00000247040000410000000002048019000002470310009c00000000010480190000004001100210000000c002200210000000000112019f0000025b011001c70000800d020000390000000103000039000002a304000041000003d30000013d000002850120009c000003d80000613d000002860120009c000007100000c13d0000000001000416000000000101004b000007100000c13d0000000001000412000700000001001d000600000000001d0000000001000415000000070110008a00000020011000c9091808fa0000040f000004130000013d0000026e0320009c000003dd0000613d0000026f0220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d0000002402700370000000000202043b000500000002001d0000024b0220009c000007100000213d00000000001004350000000201000039000000200010043f0000004002000039000400000002001d0000000001000019091808e40000040f00000005020000290000000000200435000000200010043f00000000010000190000000402000029000002dc0000013d0000028b0120009c000003f40000613d0000028c0120009c000007100000c13d0000000001000416000000000101004b000007100000c13d0000000701000039000003fd0000013d000002740120009c000003f90000613d000002750120009c000007100000c13d0000000001000416000000000101004b000007100000c13d000000000100041a0000024b01100197000004130000013d000002800320009c000003ff0000613d000002810120009c000007100000c13d0000000001000416000000000101004b000007100000c13d0000025001000041000004130000013d000002690320009c000004160000613d0000026a0220009c000007100000c13d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d00000000001004350000000c010000390000040b0000013d000000000105004b0000000001000019000002640000613d000000c00100043d0000000302500210000000010300008a000000000223022f000000000232013f000000000121016f0000000102500210000000000121019f000000000014041b000000e00500043d0000024f0150009c000000530000213d0000000504000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000f70000c13d000000200130008c0000029d0000413d000100000003001d000200000005001d000300000004001d000000000040043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024e011001c70000801002000039091809130000040f0000000102200190000007100000613d00000002050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000003040000290000029d0000813d000000000002041b0000000102200039000000000312004b000002990000413d0000001f0150008c000004cb0000a13d000200000005001d000300000004001d000000000040043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024e011001c70000801002000039091809130000040f0000000102200190000007100000613d000000200200008a000000020700002900000000022701700000010003000039000000000101043b000002be0000613d000000200400003900000000030000190000000005040019000000e0045000390000000004040433000000000041041b000000200450003900000001011000390000002003300039000000000623004b000002b40000413d0000010003500039000000000272004b000002c80000813d0000000302700210000000f80220018f000000010400008a000000000224022f000000000242013f0000000003030433000000000223016f000000000021041b000000010170021000000001011001bf00000004030000290000000304000029000004d70000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d00000000001004350000000101000039000000200010043f00000040020000390000000001000019091808e40000040f000003fd0000013d0000000001000416000000000101004b000007100000c13d0000000901000039000000000101041a000002a801100198000004110000013d0000000001000416000000000101004b000007100000c13d0000000503000039000000000203041a000000010420019000000001052002700000007f0150018f000000000105c0190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000f70000c13d000000800010043f000000000404004b0000054b0000c13d000001000300008a000000000232016f000000a00020043f000000000101004b000000c002000039000000a0020060390000055a0000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000002401700370000000000201043b000000000102004b0000000001000019000000010100c039000400000002001d000000000112004b000007100000c13d000000000100041a0000024b011001970000000002000411000000000121004b0000048e0000c13d000000050100002900000000001004350000000b01000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000403000029000000000232019f000000000021041b000000400100043d00000020021000390000000000320435000000050200002900000000002104350000000002000414000002470320009c00000247040000410000000002048019000002470310009c00000000010480190000004001100210000000c002200210000000000112019f0000025b011001c70000800d020000390000000103000039000002b204000041000003d30000013d0000000001000416000000000101004b000007100000c13d0000000901000039000000000101041a0000025d01100198000004110000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000000001000411000300000001001d00000000001004350000000201000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c700008010020000390004000000070353091809130000040f000000040300035f0000000102200190000007100000613d000000000101043b00000005020000290000000000200435000000200010043f0000002401300370000000000101043b000400000001001d0000000001000414000002470210009c0000024701008041000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000040310002a000004e40000413d0000060c0000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000a00110008c000007100000413d0000000401700370000000000101043b000000000201004b0000000002000019000000010200c039000000000221004b000007100000c13d0000002402700370000000000202043b000000000302004b0000000003000019000000010300c039000000000332004b000007100000c13d000000000300041a0000024b033001970000000004000411000000000343004b0000048e0000c13d0000025203000041000000000401004b00000000030060190000029a04000041000000000502004b0000000004006019000000000334019f0000000904000039000000000504041a0000029b05500197000000000353019f0000008405700370000000000505043b0000006406700370000000000606043b0000004407700370000000000707043b000000000034041b0000000603000039000000000073041b0000000703000039000000000063041b0000000803000039000000000053041b000000800010043f000000a00020043f000000c00070043f000000e00060043f000001000050043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000029c011001c70000800d0200003900000001030000390000029d04000041000003d30000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d0000000902000039000000000302041a0000024b043001970000000005000411000000000445004b000004950000c13d0000024903300197000000000313019f000000000032041b000000800010043f00000247010000410000000002000414000002470320009c0000000002018019000000c001200210000002a6011001c70000800d020000390000000103000039000002a7040000410918090e0000040f0000000101200190000007100000613d0000000001000019000009190001042e0000000001000416000000000101004b000007100000c13d0000001201000039000004130000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000201043b0000024b0120009c000007100000213d0000002401700370000000000301043b0000000001000411091807530000040f0000000101000039000000400200043d00000000001204350000024701000041000002470320009c000000000201801900000040012002100000029e011001c7000009190001042e0000000001000416000000000101004b000007100000c13d0000000301000039000003fd0000013d0000000001000416000000000101004b000007100000c13d0000000801000039000000000101041a000004130000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b0000024b0210009c000007100000213d00000000001004350000000a01000039000000200010043f00000040020000390000000001000019091808e40000040f000000000101041a000000ff011001900000000001000019000000010100c039000000800010043f0000029201000041000009190001042e0000000002000416000000000202004b000007100000c13d000000040110008a000000200110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000000901000039000000000101041a0000024b011001970000000002000411000000000112004b000004950000c13d000300000002001d0000029301000041000000800010043f0000000001000410000000840010043f00000000010004140000000502000029000000040320008c0000058f0000c13d0000000003000031000000200130008c00000000040300190000002004008039000005b90000013d0000000002000416000000000202004b000007100000c13d000000040110008a000000400110008c000007100000413d0000000401700370000000000101043b000500000001001d0000024b0110009c000007100000213d0000002401700370000000000201043b000000000102004b0000000001000019000000010100c039000400000002001d000000000112004b000007100000c13d000000000100041a0000024b011001970000000002000411000000000121004b0000048e0000c13d000000050100002900000000001004350000000c01000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000403000029000000000232019f000000000021041b000000400100043d00000020021000390000000000320435000000050200002900000000002104350000000002000414000002470320009c00000247040000410000000002048019000002470310009c00000000010480190000004001100210000000c002200210000000000112019f0000025b011001c70000800d020000390000000103000039000002b504000041000003d30000013d0000000001000416000000000101004b000007100000c13d0000000403000039000000000203041a000000010420019000000001052002700000007f0150018f000000000105c0190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000f70000c13d000000800010043f000000000404004b0000056d0000c13d000001000300008a000000000232016f000000a00020043f000000000101004b000000c002000039000000a0020060390000055a0000013d0000025501000041000000800010043f0000002001000039000000840010043f000000a40010043f000002b4010000410000049c0000013d0000025501000041000000800010043f0000002001000039000000840010043f0000000a01000039000000a40010043f000002a401000041000000c40010043f000002a5010000410000091a0001043000000000000004350000000b05000039000000200050043f0000025901000041000000000101041a000000ff01100190000006110000c13d000400000005001d000200000004001d000500000002001d0000024b01200197000300000001001d000000000010043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000ff011001900000060f0000c13d0000000901000039000000000201041a000002a8012001980000065c0000c13d000000000100041a0000024b01100197000000030210006b000006aa0000613d000000000101004b000006aa0000613d000000400100043d0000004402100039000002ac03000041000000000032043500000024021000390000001403000039000005830000013d000000000105004b0000000001000019000004cf0000613d000001000100043d0000000302500210000000010300008a000000000223022f000000000232013f000000000121016f0000000102500210000000000121019f0000000403000029000000000014041b0000025001000041000000800010043f0000000901000039000000000201041a0000025102200197000000000532019f00000252025001c7000000000021041b0000000501000029000000000101041a000002530210009c000004e80000413d000002630100004100000000001004350000001101000039000000fa0000013d0000025004100041000000000101004b0000057d0000c13d000002570100004100000000001004350000000b01000039000000200010043f0000025802000041000000000202041a000000ff02200190000005dd0000c13d00000000000004350000025902000041000000000202041a000000ff02200190000005dd0000c13d000300000005001d000400000004001d00000000003004350000000c01000039000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000ff01100190000005170000c13d0000000801000039000000000101041a000000010110008a0000025c0110009c000006750000413d00000003010000290000025d01100198000005170000613d0000025e01000041000000000101041a000000ff01100190000007120000c13d00000005010000290000000402000029000000000021041b000002570100004100000000001004350000000101000039000500000001001d000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000201041a0000025002200041000000000021041b0000025001000041000000400200043d00000000001204350000000001000414000002470310009c00000247040000410000000001048019000002470320009c00000000020480190000004002200210000000c001100210000000000112019f0000024e011001c70000800d0200003900000003030000390000026104000041000000000500001900000257060000410918090e0000040f0000000101200190000007100000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000050100002900000120001004430000026201000041000009190001042e0000000000300435000000a002000039000000000301004b0000055a0000613d000002a20200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000005510000413d000000c002300039000000800220008a0000008001000039000500000001001d091807400000040f000000400100043d000400000001001d00000005020000290918072a0000040f000000040400002900000000014100490000024702000041000002470310009c0000000001028019000002470340009c000000000402801900000040024002100000006001100210000000000121019f000009190001042e0000000000300435000000a002000039000000000301004b0000055a0000613d000002b30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000005730000413d000000c0023000390000055a0000013d000000400100043d000000440210003900000254030000410000000000320435000000240210003900000019030000390000000000320435000002550200004100000000002104350000000402100039000000200300003900000000003204350000024702000041000002470310009c0000000001028019000000400110021000000256011001c70000091a000104300000024704000041000002470310009c0000000001048019000000c00110021000000294011001c7091809130000040f000000000301001900000060033002700000024703300197000000200430008c000000000403001900000020040080390000001f0540018f0000000506400272000005a70000613d00000000070000190000000508700210000000000981034f000000000909043b000000800880003900000000009804350000000107700039000000000867004b0000059f0000413d000000000705004b000005b60000613d0000000506600210000000000761034f00000003055002100000008006600039000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000005ee0000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200230008c000007100000413d000000800200043d00000295030000410000000405000029000000000035043500000084031001bf00000003040000290000000000430435000000a403100039000000000023043500000000040004140000000502000029000000040320008c000006210000c13d0000000001150019000000400010043f000006540000013d0000024901100197000000000161019f000000000010041b00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000024a011001c70000800d0200003900000003030000390000024c04000041000003d30000013d000000400200043d00000044032000390000025a04000041000000000043043500000024032000390000000000130435000002550100004100000000001204350000000401200039000000200300003900000000003104350000024701000041000002470320009c0000000002018019000000400120021000000256011001c70000091a00010430000000400200043d0000001f0430018f0000000505300272000005fb0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005f30000413d000000000604004b000006980000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006980000013d000000000331004900000003010000290000000502000029000001be0000013d000000400300043d000000040500002900000044013000390000025a02000041000000000021043500000024013000390000000000510435000002550100004100000000001304350000000401300039000000200200003900000000002104350000024701000041000002470230009c0000000003018019000000400130021000000256011001c70000091a000104300000024701000041000002470340009c0000000004018019000000c0014002100000004003500210000000000131019f00000296011001c70918090e0000040f000000040a000029000000000301001900000060033002700000024703300197000000200430008c000000000403001900000020040080390000001f0540018f00000005064002720000063c0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000006340000413d000000000705004b0000064b0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f00000001022001900000067c0000613d0000001f01400039000000600110018f0000000001a10019000000400010043f000000200130008c000007100000413d00000004010000290000000001010433000000000201004b0000000002000019000000010200c039000000000121004b000007100000c13d000003d60000013d000400000002001d000000050100002900000000001004350000000c01000039000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000ff01100190000006aa0000c13d0000000801000039000000000101041a000000000201004b000006a70000613d000000020110006c000006a70000813d000000400100043d0000004402100039000002ab03000041000000000032043500000024021000390000001103000039000005830000013d000000400200043d0000001f0430018f0000000505300272000006890000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000006810000413d000000000604004b000006980000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f00000000001504350000024701000041000002470420009c000000000201801900000040012002100000006002300210000000000121019f0000091a00010430000000000331004900000005010000290000000202000029091808890000040f000000050100002900000004020000290000000303000029000003ea0000013d00000004010000290000025d01100198000006ee0000c13d000000050100002900000000001004350000000101000039000400000001001d000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000201041a000300000002001d000000020120006c000006c80000813d000000400100043d0000006402100039000002ad0300004100000000003204350000004402100039000002ae03000041000000000032043500000024021000390000002203000039000000df0000013d000000050100002900000000001004350000000401000029000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d00000002040000290000000302400069000000000101043b000000000021041b0000000303000039000000000103041a0000000001410049000000000013041b000000400100043d00000000004104350000000002000414000002470420009c00000247050000410000000002058019000002470410009c00000000010580190000004001100210000000c002200210000000000112019f0000024e011001c70000800d02000039000002610400004100000005050000290000002d0000013d000000030100002900000000001004350000000a01000039000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000007100000613d000000000101043b000000000101041a000000ff01100190000006aa0000613d00000000000004350000000101000039000000200010043f000002a901000041000000000101041a000000020110002a000004e40000413d0000000602000039000000000202041a000000000221004b000007230000213d0000000702000039000000000202041a000000000121004b000007230000413d000006aa0000013d00000000010000190000091a00010430000002570100004100000000001004350000000101000039000000200010043f0000025f01000041000000000101041a000002600210009c000004e40000213d00000250011000410000000602000039000000000202041a000000000221004b000007230000213d0000000702000039000000000202041a000000000121004b000005170000813d000000400100043d0000004402100039000002aa03000041000000000032043500000024021000390000000903000039000005830000013d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000007390000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000007320000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b000000000200001900000001020040390000024f0310009c0000074d0000213d00000001022001900000074d0000c13d000000400010043f000000000001042d000002630100004100000000001004350000004101000039000000040010043f00000264010000410000091a000104300005000000000002000400000003001d0005024b0010019c0000084c0000613d0000024b01200198000008560000613d000300000001001d00000000001004350000000b01000039000200000001001d000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000101041a000000ff011001900000083a0000c13d0000000501000029000000000010043500000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000101041a000000ff011001900000083a0000c13d0000000902000039000000000302041a000002a801300198000007e70000613d000200000003001d000100000002001d000000000100041100000000001004350000000c01000039000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000101041a000000ff01100190000007ed0000c13d0000000801000039000000000101041a000000000201004b0000079a0000613d000000040110006c0000087c0000413d00000002010000290000025d01100198000007ed0000613d000000050100002900000000001004350000000a01000039000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000101041a000000ff01100190000007ed0000613d000000030100002900000000001004350000000101000039000200000001001d000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000201041a0000000401200029000000000221004b000000000200001900000001020040390000000102200190000008830000c13d0000000602000039000000000202041a000000000121004b000007e00000213d000000030100002900000000001004350000000201000029000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000101041a000000040110002a000008830000413d0000000702000039000000000202041a000000000121004b000007ed0000813d000000400100043d0000004402100039000002aa03000041000000000032043500000024021000390000000103000029000008400000013d000000000100041a0000024b01100197000000050210006b000007ed0000613d000000030110006b000008750000c13d000000050100002900000000001004350000000101000039000200000001001d000000200010043f00000247010000410000000002000414000002470320009c0000000002018019000000c0012002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000201041a000100000002001d000000040120006c000008600000413d000000050100002900000000001004350000000201000029000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d0000000103000029000000040230006a000000000101043b000000000021041b000000030100002900000000001004350000000001000414000002470210009c0000024701008041000000c0011002100000025b011001c70000801002000039091809130000040f0000000102200190000008380000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000247020000410000000003000414000002470430009c0000000003028019000002470410009c00000000010280190000004001100210000000c002300210000000000112019f0000024e011001c70000800d0200003900000003030000390000026104000041000000050500002900000003060000290918090e0000040f0000000101200190000008380000613d000000000001042d00000000010000190000091a00010430000000400100043d00000044021000390000025a030000410000000000320435000000240210003900000002030000290000000000320435000002550200004100000000002104350000000402100039000000200300003900000000003204350000024702000041000002470310009c0000000001028019000000400110021000000256011001c70000091a00010430000000400100043d0000006402100039000002ba0300004100000000003204350000004402100039000002bb03000041000000000032043500000024021000390000002503000039000008690000013d000000400100043d0000006402100039000002b80300004100000000003204350000004402100039000002b903000041000000000032043500000024021000390000002303000039000008690000013d000000400100043d0000006402100039000002b60300004100000000003204350000004402100039000002b7030000410000000000320435000000240210003900000026030000390000000000320435000002550200004100000000002104350000000402100039000000200300003900000000003204350000024702000041000002470310009c00000000010280190000004001100210000002a1011001c70000091a00010430000000400100043d0000004402100039000002ac03000041000000000032043500000024021000390000001403000039000008400000013d000000400100043d0000004402100039000002ab03000041000000000032043500000024021000390000001103000039000008400000013d000002630100004100000000001004350000001101000039000000040010043f00000264010000410000091a0001043000030000000000020000024b01100198000008c40000613d000200000003001d0003024b0020019c000008ce0000613d000100000001001d00000000001004350000000201000039000000200010043f00000247030000410000000001000414000002470210009c0000000001038019000000c0011002100000025b011001c70000801002000039091809130000040f00000001022001900000000303000029000008c20000613d000000000101043b0000000000300435000000200010043f0000000001000414000002470210009c0000024701008041000000c0011002100000025b011001c70000801002000039091809130000040f00000003060000290000000102200190000008c20000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000247020000410000000003000414000002470430009c0000000003028019000002470410009c00000000010280190000004001100210000000c002300210000000000112019f0000024e011001c70000800d020000390000000303000039000002bc0400004100000001050000290918090e0000040f0000000101200190000008c20000613d000000000001042d00000000010000190000091a00010430000000400100043d0000006402100039000002bf0300004100000000003204350000004402100039000002c003000041000000000032043500000024021000390000002403000039000008d70000013d000000400100043d0000006402100039000002bd0300004100000000003204350000004402100039000002be030000410000000000320435000000240210003900000022030000390000000000320435000002550200004100000000002104350000000402100039000000200300003900000000003204350000024702000041000002470310009c00000000010280190000004001100210000002a1011001c70000091a00010430000000000001042f0000024703000041000002470410009c00000000010380190000004001100210000002470420009c00000000020380190000006002200210000000000112019f0000000002000414000002470420009c0000000002038019000000c002200210000000000112019f0000024a011001c70000801002000039091809130000040f0000000102200190000008f80000613d000000000101043b000000000001042d00000000010000190000091a00010430000002c10200004100000000002004390000000501100270000000000201003100000004002004430000000101010031000000240010044300000247010000410000000002000414000002470320009c0000000002018019000000c001200210000002c2011001c70000800502000039091809130000040f00000001022001900000090d0000613d000000000101043b000000000001042d000000000001042f00000911002104210000000102000039000000000001042d0000000002000019000000000001042d00000916002104230000000102000039000000000001042d0000000002000019000000000001042d0000091800000432000009190001042e0000091a00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4b5a000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000000000000000000000000009934382c5124969eb81b40000ffffffffffffffffffff00ff00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffff66cbc7d3aedb696147e4c000045524332304361707065643a206361702065786365656465640000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000097ec06bc704e9ff7d07237a8b4d33a38756aece9d662b0873a66974b37c4428c5ab1c2ce3675d6a2e72dbdc6a5520e4982b68d5adf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76424c41434b4c495354454400000000000000000000000000000000000000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000009934382c5124969eb81b3ffff0000000000000000000000ff000000000000000000000000000000000000000013da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3873dbab2d6b86822e66b4d139407227fb4e5b3bb84acc7f5506c72742fccf424fffffffffffffffffffffffffffffffffffffff66cbc7d3aedb696147e4bffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000800000010000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000e9b3377c00000000000000000000000000000000000000000000000000000000f9d0831900000000000000000000000000000000000000000000000000000000f9d0831a00000000000000000000000000000000000000000000000000000000ff896ead00000000000000000000000000000000000000000000000000000000e9b3377d00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000860a32eb000000000000000000000000000000000000000000000000000000008c0b5e21000000000000000000000000000000000000000000000000000000008c0b5e22000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000860a32ec0000000000000000000000000000000000000000000000000000000089f9a1d30000000000000000000000000000000000000000000000000000000075829dee0000000000000000000000000000000000000000000000000000000075829def000000000000000000000000000000000000000000000000000000008348a2880000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000001f2698aa0000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000004666670c000000000000000000000000000000000000000000000000000000004666670d000000000000000000000000000000000000000000000000000000005980c60500000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000355274ea000000000000000000000000000000000000000000000000000000001f2698ab0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000153b0d1d0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001ab99e1200000000000000000000000000000000000000000000000000000000153b0d1e0000000000000000000000000000000000000000000000000000000016c02129000000000000000000000000000000000000000000000000000000000539b8a90000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000002000000080000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000010000000000000000000000000000000000000000ffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000a000000080000000000000000029bb8c6074c397ad159ade4e4bf78afb1f9b7e0e999cad5688602434115c54470000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0da775fe65b87d02afd6ce385afebe9e6398be213feaca101f01f0e002c6a2bf14f4e4c595f41444d494e000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000020000000000000000000000000000000000002000000080000000000000000054e4612788f90384e6843298d7854436f3a585b2c3831ab66abf1de63bfa6c2d00000000000000000000ff000000000000000000000000000000000000000000a6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49464f5242494444454e000000000000000000000000000000000000000000000054585f4c494d49545f455843454544454400000000000000000000000000000054524144494e475f49535f4e4f545f5354415254000000000000000000000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000006a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ff1850785d67df414eb3d27f52e3e0ca5b2459cbaf10a89f8162c046c8ab38a2616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe9afce588ce46badff7b5441a14abcb2bea69d4b16d445df3eda7edef39daaf

[ 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.