ETH Price: $3,003.16 (+3.02%)
Gas: 1 Gwei

Token

LEZGI Token (LEZGI)
 

Overview

Max Total Supply

100,000,000 LEZGI

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: LEZGI
Balance
4,999,441.02483629308567181 LEZGI

Value
$0.00
0x433389d59cdf0202ed3e9a378baa7f623392e107
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LEZGIToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : LEZGI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

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

contract LEZGIToken is ERC20, Ownable {
    uint256 private constant MAX_SUPPLY = 100_000_000 * 10**18; // 100 million tokens
    uint256 public minHoldingAmount = 1;
    uint256 public maxHoldingAmount = 100_000 * 10**18; //max holding allows for 1% of supply for anti-bot prevention 

    mapping(address => bool) public whitelistedAddresses;
    mapping(address => bool) public blacklistedAddresses;
    mapping(address => bool) public excludedFromHoldingLimits;

    event MinHoldingAmountUpdated(uint256 newMinHoldingAmount);
    event MaxHoldingAmountUpdated(uint256 newMaxHoldingAmount);
    event WhitelistedAddressesUpdated(address[] addresses, bool status);
    event BlacklistedAddressesUpdated(address[] addresses, bool status);
    event ExcludedFromHoldingLimitsUpdated(address indexed account, bool excluded);
    event OwnershipRenounced(address indexed previousOwner);

    modifier notBlacklisted(address account) {
        require(!blacklistedAddresses[account], "Account is blacklisted");
        _;
    }

    constructor() ERC20("LEZGI Token", "LEZGI") Ownable(msg.sender) {
        whitelistedAddresses[msg.sender] = true;
        excludedFromHoldingLimits[msg.sender] = true;
        _mint(msg.sender, MAX_SUPPLY);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        notBlacklisted(msg.sender)
        notBlacklisted(recipient)
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount)
        public
        override
        notBlacklisted(sender)
        notBlacklisted(recipient)
        returns (bool)
    {
        return super.transferFrom(sender, recipient, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount)
        internal
        override 
        notBlacklisted(sender)
        notBlacklisted(recipient)
    {
        if (!excludedFromHoldingLimits[recipient]) {
            require(
                balanceOf(recipient) + amount >= minHoldingAmount &&
                balanceOf(recipient) + amount <= maxHoldingAmount,
                "Holding amount out of limits"
            );
        }

        super._transfer(sender, recipient, amount);
    }

    function setMinHoldingAmount(uint256 newMinHoldingAmount) external onlyOwner {
        minHoldingAmount = newMinHoldingAmount;
        emit MinHoldingAmountUpdated(newMinHoldingAmount);
    }

    function setMaxHoldingAmount(uint256 newMaxHoldingAmount) external onlyOwner {
        maxHoldingAmount = newMaxHoldingAmount;
        emit MaxHoldingAmountUpdated(newMaxHoldingAmount);
    }

    function batchWhitelistAddresses(address[] calldata addresses, bool status) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistedAddresses[addresses[i]] = status;
        }
        emit WhitelistedAddressesUpdated(addresses, status);
    }

    function batchBlacklistAddresses(address[] calldata addresses, bool status) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            blacklistedAddresses[addresses[i]] = status;
        }
        emit BlacklistedAddressesUpdated(addresses, status);
    }

    function excludeFromHoldingLimits(address account, bool exclude) external onlyOwner {
        excludedFromHoldingLimits[account] = exclude;
        emit ExcludedFromHoldingLimitsUpdated(account, exclude);
    }

    function renounceOwnership() public override onlyOwner {
        emit OwnershipRenounced(owner());
        super.renounceOwnership();
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * 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 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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.
 */
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}.
     *
     * 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 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;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    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;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    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}.
     *
     * 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 `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 virtual {
        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:
     * ```
     * 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 4 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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 5 of 7 : Context.sol
// 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 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"BlacklistedAddressesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromHoldingLimitsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxHoldingAmount","type":"uint256"}],"name":"MaxHoldingAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMinHoldingAmount","type":"uint256"}],"name":"MinHoldingAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"WhitelistedAddressesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"batchBlacklistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"batchWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromHoldingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromHoldingLimits","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":"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":"uint256","name":"newMaxHoldingAmount","type":"uint256"}],"name":"setMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinHoldingAmount","type":"uint256"}],"name":"setMinHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600160065569152d02c7e14af680000060075534801562000023575f80fd5b50336040518060400160405280600b81526020017f4c455a474920546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c455a47490000000000000000000000000000000000000000000000000000008152508160039081620000a29190620007de565b508060049081620000b49190620007de565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200012a575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000121919062000905565b60405180910390fd5b6200013b816200020960201b60201c565b50600160085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000203336a52b7d2dcc80cd2e4000000620002cc60201b60201c565b620009ee565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200033f575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000336919062000905565b60405180910390fd5b620003525f83836200035660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003aa578060025f8282546200039d91906200094d565b925050819055506200047b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000436578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200042d9392919062000998565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c4578060025f82825403925050819055506200050e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200056d9190620009d3565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005f657607f821691505b6020821081036200060c576200060b620005b1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000633565b6200067c868362000633565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006c6620006c0620006ba8462000694565b6200069d565b62000694565b9050919050565b5f819050919050565b620006e183620006a6565b620006f9620006f082620006cd565b8484546200063f565b825550505050565b5f90565b6200070f62000701565b6200071c818484620006d6565b505050565b5b818110156200074357620007375f8262000705565b60018101905062000722565b5050565b601f82111562000792576200075c8162000612565b620007678462000624565b8101602085101562000777578190505b6200078f620007868562000624565b83018262000721565b50505b505050565b5f82821c905092915050565b5f620007b45f198460080262000797565b1980831691505092915050565b5f620007ce8383620007a3565b9150826002028217905092915050565b620007e9826200057a565b67ffffffffffffffff81111562000805576200080462000584565b5b620008118254620005de565b6200081e82828562000747565b5f60209050601f83116001811462000854575f84156200083f578287015190505b6200084b8582620007c1565b865550620008ba565b601f198416620008648662000612565b5f5b828110156200088d5784890151825560018201915060208501945060208101905062000866565b86831015620008ad5784890151620008a9601f891682620007a3565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008ed82620008c2565b9050919050565b620008ff81620008e1565b82525050565b5f6020820190506200091a5f830184620008f4565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009598262000694565b9150620009668362000694565b925082820190508082111562000981576200098062000920565b5b92915050565b620009928162000694565b82525050565b5f606082019050620009ad5f830186620008f4565b620009bc602083018562000987565b620009cb604083018462000987565b949350505050565b5f602082019050620009e85f83018462000987565b92915050565b611de380620009fc5f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806370a08231116100b6578063a9059cbb1161007a578063a9059cbb14610364578063b8fe721414610394578063bded89fb146103b0578063d5749d42146103cc578063dd62ed3e146103fc578063f2fde38b1461042c57610140565b806370a08231146102d0578063715018a61461030057806389f9a1d31461030a5780638da5cb5b1461032857806395d89b411461034657610140565b80631ab99e12116101085780631ab99e12146101fc578063223e0fc71461021a57806323b872dd1461024a578063313ce5671461027a578063545f9a9b1461029857806359dbf9a5146102b457610140565b806306c933d81461014457806306fdde031461017457806309143f2314610192578063095ea7b3146101ae57806318160ddd146101de575b5f80fd5b61015e600480360381019061015991906116af565b610448565b60405161016b91906116f4565b60405180910390f35b61017c610465565b6040516101899190611797565b60405180910390f35b6101ac60048036038101906101a791906117ea565b6104f5565b005b6101c860048036038101906101c39190611815565b61053e565b6040516101d591906116f4565b60405180910390f35b6101e6610560565b6040516101f39190611862565b60405180910390f35b610204610569565b6040516102119190611862565b60405180910390f35b610234600480360381019061022f91906116af565b61056f565b60405161024191906116f4565b60405180910390f35b610264600480360381019061025f919061187b565b61058c565b60405161027191906116f4565b60405180910390f35b6102826106b9565b60405161028f91906118e6565b60405180910390f35b6102b260048036038101906102ad919061198a565b6106c1565b005b6102ce60048036038101906102c9919061198a565b6107a5565b005b6102ea60048036038101906102e591906116af565b610889565b6040516102f79190611862565b60405180910390f35b6103086108ce565b005b61031261092a565b60405161031f9190611862565b60405180910390f35b610330610930565b60405161033d91906119f6565b60405180910390f35b61034e610958565b60405161035b9190611797565b60405180910390f35b61037e60048036038101906103799190611815565b6109e8565b60405161038b91906116f4565b60405180910390f35b6103ae60048036038101906103a99190611a0f565b610b13565b005b6103ca60048036038101906103c591906117ea565b610bc1565b005b6103e660048036038101906103e191906116af565b610c0a565b6040516103f391906116f4565b60405180910390f35b61041660048036038101906104119190611a4d565b610c27565b6040516104239190611862565b60405180910390f35b610446600480360381019061044191906116af565b610ca9565b005b6008602052805f5260405f205f915054906101000a900460ff1681565b60606003805461047490611ab8565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611ab8565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b6104fd610d2d565b806006819055507f1749ee026aedb5a0481b11192a229a2f14ac525783678bbeabed864f77217230816040516105339190611862565b60405180910390a150565b5f80610548610db4565b9050610555818585610dbb565b600191505092915050565b5f600254905090565b60065481565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90611b32565b60405180910390fd5b8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a90611b32565b60405180910390fd5b6106ae868686610dcd565b925050509392505050565b5f6012905090565b6106c9610d2d565b5f5b83839050811015610764578160085f8686858181106106ed576106ec611b50565b5b905060200201602081019061070291906116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061075c90611baa565b9150506106cb565b507f234985315ea01a914bee53880a6802130749ded50238e3180a42eb28dae3664183838360405161079893929190611cad565b60405180910390a1505050565b6107ad610d2d565b5f5b83839050811015610848578160095f8686858181106107d1576107d0611b50565b5b90506020020160208101906107e691906116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061084090611baa565b9150506107af565b507f021768d2f2fe00948ed7bf541b126a5702ef4c95879bdc53b3686c50215e51bf83838360405161087c93929190611cad565b60405180910390a1505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108d6610d2d565b6108de610930565b73ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a2610928610dfb565b565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096790611ab8565b80601f016020809104026020016040519081016040528092919081815260200182805461099390611ab8565b80156109de5780601f106109b5576101008083540402835291602001916109de565b820191905f5260205f20905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b5f3360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90611b32565b60405180910390fd5b8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611b32565b60405180910390fd5b610b098585610e0e565b9250505092915050565b610b1b610d2d565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fafce298e8cdeb800ee464f1523ca5e758b566e41a7dc6c6843d3954f834fa86282604051610bb591906116f4565b60405180910390a25050565b610bc9610d2d565b806007819055507fc48a0e49bcb0d959290cfe89e7c9f7315508e0c0eb5e7342398af498ae7e07a481604051610bff9190611862565b60405180910390a150565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb1610d2d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d21575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d1891906119f6565b60405180910390fd5b610d2a81610e30565b50565b610d35610db4565b73ffffffffffffffffffffffffffffffffffffffff16610d53610930565b73ffffffffffffffffffffffffffffffffffffffff1614610db257610d76610db4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610da991906119f6565b60405180910390fd5b565b5f33905090565b610dc88383836001610ef3565b505050565b5f80610dd7610db4565b9050610de48582856110c2565b610def858585611154565b60019150509392505050565b610e03610d2d565b610e0c5f610e30565b565b5f80610e18610db4565b9050610e25818585611154565b600191505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f63575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f5a91906119f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fca91906119f6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110bc578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110b39190611862565b60405180910390a35b50505050565b5f6110cd8484610c27565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114e578181101561113f578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161113693929190611cdd565b60405180910390fd5b61114d84848484035f610ef3565b5b50505050565b8260095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690611b32565b60405180910390fd5b8260095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190611b32565b60405180910390fd5b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661133257600654836112c586610889565b6112cf9190611d12565b101580156112f25750600754836112e586610889565b6112ef9190611d12565b11155b611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890611d8f565b60405180910390fd5b5b61133d858585611344565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113ab91906119f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611424575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161141b91906119f6565b60405180910390fd5b61142f838383611434565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611484578060025f8282546114789190611d12565b92505081905550611552565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561150d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161150493929190611cdd565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611599578060025f82825403925050819055506115e3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116409190611862565b60405180910390a3505050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61167e82611655565b9050919050565b61168e81611674565b8114611698575f80fd5b50565b5f813590506116a981611685565b92915050565b5f602082840312156116c4576116c361164d565b5b5f6116d18482850161169b565b91505092915050565b5f8115159050919050565b6116ee816116da565b82525050565b5f6020820190506117075f8301846116e5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611744578082015181840152602081019050611729565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6117698261170d565b6117738185611717565b9350611783818560208601611727565b61178c8161174f565b840191505092915050565b5f6020820190508181035f8301526117af818461175f565b905092915050565b5f819050919050565b6117c9816117b7565b81146117d3575f80fd5b50565b5f813590506117e4816117c0565b92915050565b5f602082840312156117ff576117fe61164d565b5b5f61180c848285016117d6565b91505092915050565b5f806040838503121561182b5761182a61164d565b5b5f6118388582860161169b565b9250506020611849858286016117d6565b9150509250929050565b61185c816117b7565b82525050565b5f6020820190506118755f830184611853565b92915050565b5f805f606084860312156118925761189161164d565b5b5f61189f8682870161169b565b93505060206118b08682870161169b565b92505060406118c1868287016117d6565b9150509250925092565b5f60ff82169050919050565b6118e0816118cb565b82525050565b5f6020820190506118f95f8301846118d7565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126119205761191f6118ff565b5b8235905067ffffffffffffffff81111561193d5761193c611903565b5b60208301915083602082028301111561195957611958611907565b5b9250929050565b611969816116da565b8114611973575f80fd5b50565b5f8135905061198481611960565b92915050565b5f805f604084860312156119a1576119a061164d565b5b5f84013567ffffffffffffffff8111156119be576119bd611651565b5b6119ca8682870161190b565b935093505060206119dd86828701611976565b9150509250925092565b6119f081611674565b82525050565b5f602082019050611a095f8301846119e7565b92915050565b5f8060408385031215611a2557611a2461164d565b5b5f611a328582860161169b565b9250506020611a4385828601611976565b9150509250929050565b5f8060408385031215611a6357611a6261164d565b5b5f611a708582860161169b565b9250506020611a818582860161169b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611acf57607f821691505b602082108103611ae257611ae1611a8b565b5b50919050565b7f4163636f756e7420697320626c61636b6c6973746564000000000000000000005f82015250565b5f611b1c601683611717565b9150611b2782611ae8565b602082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bb4826117b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611be657611be5611b7d565b5b600182019050919050565b5f82825260208201905092915050565b5f819050919050565b611c1381611674565b82525050565b5f611c248383611c0a565b60208301905092915050565b5f611c3e602084018461169b565b905092915050565b5f602082019050919050565b5f611c5d8385611bf1565b9350611c6882611c01565b805f5b85811015611ca057611c7d8284611c30565b611c878882611c19565b9750611c9283611c46565b925050600181019050611c6b565b5085925050509392505050565b5f6040820190508181035f830152611cc6818587611c52565b9050611cd560208301846116e5565b949350505050565b5f606082019050611cf05f8301866119e7565b611cfd6020830185611853565b611d0a6040830184611853565b949350505050565b5f611d1c826117b7565b9150611d27836117b7565b9250828201905080821115611d3f57611d3e611b7d565b5b92915050565b7f486f6c64696e6720616d6f756e74206f7574206f66206c696d697473000000005f82015250565b5f611d79601c83611717565b9150611d8482611d45565b602082019050919050565b5f6020820190508181035f830152611da681611d6d565b905091905056fea264697066735822122039f030690322de28d258bee4e2c6c5d85b268447db74d4553b7e270ce545884064736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806370a08231116100b6578063a9059cbb1161007a578063a9059cbb14610364578063b8fe721414610394578063bded89fb146103b0578063d5749d42146103cc578063dd62ed3e146103fc578063f2fde38b1461042c57610140565b806370a08231146102d0578063715018a61461030057806389f9a1d31461030a5780638da5cb5b1461032857806395d89b411461034657610140565b80631ab99e12116101085780631ab99e12146101fc578063223e0fc71461021a57806323b872dd1461024a578063313ce5671461027a578063545f9a9b1461029857806359dbf9a5146102b457610140565b806306c933d81461014457806306fdde031461017457806309143f2314610192578063095ea7b3146101ae57806318160ddd146101de575b5f80fd5b61015e600480360381019061015991906116af565b610448565b60405161016b91906116f4565b60405180910390f35b61017c610465565b6040516101899190611797565b60405180910390f35b6101ac60048036038101906101a791906117ea565b6104f5565b005b6101c860048036038101906101c39190611815565b61053e565b6040516101d591906116f4565b60405180910390f35b6101e6610560565b6040516101f39190611862565b60405180910390f35b610204610569565b6040516102119190611862565b60405180910390f35b610234600480360381019061022f91906116af565b61056f565b60405161024191906116f4565b60405180910390f35b610264600480360381019061025f919061187b565b61058c565b60405161027191906116f4565b60405180910390f35b6102826106b9565b60405161028f91906118e6565b60405180910390f35b6102b260048036038101906102ad919061198a565b6106c1565b005b6102ce60048036038101906102c9919061198a565b6107a5565b005b6102ea60048036038101906102e591906116af565b610889565b6040516102f79190611862565b60405180910390f35b6103086108ce565b005b61031261092a565b60405161031f9190611862565b60405180910390f35b610330610930565b60405161033d91906119f6565b60405180910390f35b61034e610958565b60405161035b9190611797565b60405180910390f35b61037e60048036038101906103799190611815565b6109e8565b60405161038b91906116f4565b60405180910390f35b6103ae60048036038101906103a99190611a0f565b610b13565b005b6103ca60048036038101906103c591906117ea565b610bc1565b005b6103e660048036038101906103e191906116af565b610c0a565b6040516103f391906116f4565b60405180910390f35b61041660048036038101906104119190611a4d565b610c27565b6040516104239190611862565b60405180910390f35b610446600480360381019061044191906116af565b610ca9565b005b6008602052805f5260405f205f915054906101000a900460ff1681565b60606003805461047490611ab8565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611ab8565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b6104fd610d2d565b806006819055507f1749ee026aedb5a0481b11192a229a2f14ac525783678bbeabed864f77217230816040516105339190611862565b60405180910390a150565b5f80610548610db4565b9050610555818585610dbb565b600191505092915050565b5f600254905090565b60065481565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90611b32565b60405180910390fd5b8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a90611b32565b60405180910390fd5b6106ae868686610dcd565b925050509392505050565b5f6012905090565b6106c9610d2d565b5f5b83839050811015610764578160085f8686858181106106ed576106ec611b50565b5b905060200201602081019061070291906116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061075c90611baa565b9150506106cb565b507f234985315ea01a914bee53880a6802130749ded50238e3180a42eb28dae3664183838360405161079893929190611cad565b60405180910390a1505050565b6107ad610d2d565b5f5b83839050811015610848578160095f8686858181106107d1576107d0611b50565b5b90506020020160208101906107e691906116af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061084090611baa565b9150506107af565b507f021768d2f2fe00948ed7bf541b126a5702ef4c95879bdc53b3686c50215e51bf83838360405161087c93929190611cad565b60405180910390a1505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108d6610d2d565b6108de610930565b73ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a2610928610dfb565b565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096790611ab8565b80601f016020809104026020016040519081016040528092919081815260200182805461099390611ab8565b80156109de5780601f106109b5576101008083540402835291602001916109de565b820191905f5260205f20905b8154815290600101906020018083116109c157829003601f168201915b5050505050905090565b5f3360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90611b32565b60405180910390fd5b8360095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611b32565b60405180910390fd5b610b098585610e0e565b9250505092915050565b610b1b610d2d565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fafce298e8cdeb800ee464f1523ca5e758b566e41a7dc6c6843d3954f834fa86282604051610bb591906116f4565b60405180910390a25050565b610bc9610d2d565b806007819055507fc48a0e49bcb0d959290cfe89e7c9f7315508e0c0eb5e7342398af498ae7e07a481604051610bff9190611862565b60405180910390a150565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb1610d2d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d21575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d1891906119f6565b60405180910390fd5b610d2a81610e30565b50565b610d35610db4565b73ffffffffffffffffffffffffffffffffffffffff16610d53610930565b73ffffffffffffffffffffffffffffffffffffffff1614610db257610d76610db4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610da991906119f6565b60405180910390fd5b565b5f33905090565b610dc88383836001610ef3565b505050565b5f80610dd7610db4565b9050610de48582856110c2565b610def858585611154565b60019150509392505050565b610e03610d2d565b610e0c5f610e30565b565b5f80610e18610db4565b9050610e25818585611154565b600191505092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f63575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f5a91906119f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd3575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fca91906119f6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110bc578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110b39190611862565b60405180910390a35b50505050565b5f6110cd8484610c27565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461114e578181101561113f578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161113693929190611cdd565b60405180910390fd5b61114d84848484035f610ef3565b5b50505050565b8260095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690611b32565b60405180910390fd5b8260095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190611b32565b60405180910390fd5b600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661133257600654836112c586610889565b6112cf9190611d12565b101580156112f25750600754836112e586610889565b6112ef9190611d12565b11155b611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890611d8f565b60405180910390fd5b5b61133d858585611344565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113ab91906119f6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611424575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161141b91906119f6565b60405180910390fd5b61142f838383611434565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611484578060025f8282546114789190611d12565b92505081905550611552565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561150d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161150493929190611cdd565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611599578060025f82825403925050819055506115e3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116409190611862565b60405180910390a3505050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61167e82611655565b9050919050565b61168e81611674565b8114611698575f80fd5b50565b5f813590506116a981611685565b92915050565b5f602082840312156116c4576116c361164d565b5b5f6116d18482850161169b565b91505092915050565b5f8115159050919050565b6116ee816116da565b82525050565b5f6020820190506117075f8301846116e5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611744578082015181840152602081019050611729565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6117698261170d565b6117738185611717565b9350611783818560208601611727565b61178c8161174f565b840191505092915050565b5f6020820190508181035f8301526117af818461175f565b905092915050565b5f819050919050565b6117c9816117b7565b81146117d3575f80fd5b50565b5f813590506117e4816117c0565b92915050565b5f602082840312156117ff576117fe61164d565b5b5f61180c848285016117d6565b91505092915050565b5f806040838503121561182b5761182a61164d565b5b5f6118388582860161169b565b9250506020611849858286016117d6565b9150509250929050565b61185c816117b7565b82525050565b5f6020820190506118755f830184611853565b92915050565b5f805f606084860312156118925761189161164d565b5b5f61189f8682870161169b565b93505060206118b08682870161169b565b92505060406118c1868287016117d6565b9150509250925092565b5f60ff82169050919050565b6118e0816118cb565b82525050565b5f6020820190506118f95f8301846118d7565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126119205761191f6118ff565b5b8235905067ffffffffffffffff81111561193d5761193c611903565b5b60208301915083602082028301111561195957611958611907565b5b9250929050565b611969816116da565b8114611973575f80fd5b50565b5f8135905061198481611960565b92915050565b5f805f604084860312156119a1576119a061164d565b5b5f84013567ffffffffffffffff8111156119be576119bd611651565b5b6119ca8682870161190b565b935093505060206119dd86828701611976565b9150509250925092565b6119f081611674565b82525050565b5f602082019050611a095f8301846119e7565b92915050565b5f8060408385031215611a2557611a2461164d565b5b5f611a328582860161169b565b9250506020611a4385828601611976565b9150509250929050565b5f8060408385031215611a6357611a6261164d565b5b5f611a708582860161169b565b9250506020611a818582860161169b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611acf57607f821691505b602082108103611ae257611ae1611a8b565b5b50919050565b7f4163636f756e7420697320626c61636b6c6973746564000000000000000000005f82015250565b5f611b1c601683611717565b9150611b2782611ae8565b602082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bb4826117b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611be657611be5611b7d565b5b600182019050919050565b5f82825260208201905092915050565b5f819050919050565b611c1381611674565b82525050565b5f611c248383611c0a565b60208301905092915050565b5f611c3e602084018461169b565b905092915050565b5f602082019050919050565b5f611c5d8385611bf1565b9350611c6882611c01565b805f5b85811015611ca057611c7d8284611c30565b611c878882611c19565b9750611c9283611c46565b925050600181019050611c6b565b5085925050509392505050565b5f6040820190508181035f830152611cc6818587611c52565b9050611cd560208301846116e5565b949350505050565b5f606082019050611cf05f8301866119e7565b611cfd6020830185611853565b611d0a6040830184611853565b949350505050565b5f611d1c826117b7565b9150611d27836117b7565b9250828201905080821115611d3f57611d3e611b7d565b5b92915050565b7f486f6c64696e6720616d6f756e74206f7574206f66206c696d697473000000005f82015250565b5f611d79601c83611717565b9150611d8482611d45565b602082019050919050565b5f6020820190508181035f830152611da681611d6d565b905091905056fea264697066735822122039f030690322de28d258bee4e2c6c5d85b268447db74d4553b7e270ce545884064736f6c63430008140033

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.