ETH Price: $2,693.43 (-1.20%)

Token

MONDToken (MOND)

Overview

Max Total Supply

4,011,723.71912652264118318 MOND

Holders

20

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
MONDToken

Compiler Version
v0.8.7-1.0.1

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at abscan.org on 2025-02-07
*/

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

pragma solidity ^0.8.0;

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

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

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

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;
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity 0.8.7;

contract MONDToken is ERC20("MONDToken", "MOND"), Ownable {
    uint256 public constant MAX_SUPPLY = 10_000_000e18; // 10 million MOND

    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyOwner {
        require(
            totalSupply() + _amount <= MAX_SUPPLY,
            "MOND::mint: cannot exceed max supply"
        );
        _mint(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000189752d351d281a394b838a883e054858a1bebb69da3949c1b211b7778f00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020000008003000039000000400030043f0000000100200190000000300000c13d00000060021002700000013c02200197000000040020008c000004a80000413d000000000301043b000000e003300270000001490030009c0000004d0000213d000001550030009c000000980000213d0000015b0030009c000001330000213d0000015e0030009c000001c40000613d0000015f0030009c000004a80000c13d000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002401100370000000000301043b00000000010004110000014401100198000002e70000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000002401000039000000a40010043f0000017501000041000000c40010043f0000017401000041000000e40010043f0000016401000041000004ed000104300000000001000416000000000001004b000004a80000c13d0000000901000039000000800010043f0000013d01000041000000a00010043f0000010001000039000000400010043f0000000406000039000000c00060043f0000013e01000041000000e00010043f0000000303000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000710000613d0000017b01000041000000000010043f0000002201000039000000040010043f0000017c01000041000004ed000104300000014a0030009c000000a50000213d000001500030009c000001560000213d000001530030009c000001da0000613d000001540030009c000004a80000c13d0000000001000416000000000001004b000004a80000c13d0000000501000039000000000201041a00000144032001970000000005000411000000000053004b000002950000c13d0000014502200197000000000021041b00000000010004140000013c0010009c0000013c01008041000000c00110021000000160011001c70000800d0200003900000003030000390000014704000041000000000600001904eb04e10000040f0000000100200190000004a80000613d000000400100043d0000013c0010009c0000013c010080410000004001100210000004ec0001042e000000200040008c0000008b0000413d000400000004001d000000000030043f00000000010004140000013c0010009c0000013c01008041000000c0011002100000013f011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b00000004020000290000001f0220003900000005022002700000000002210019000000000021004b000000040600003900000003030000390000008b0000813d000000000001041b0000000101100039000000000021004b000000870000413d000000a00100043d000001400110019700000012011001bf000000000013041b000000c00700043d000001410070009c000001010000413d0000017b01000041000000000010043f0000004101000039000000040010043f0000017c01000041000004ed00010430000001560030009c000001790000213d000001590030009c000001f00000613d0000015a0030009c000004a80000c13d0000000001000416000000000001004b000004a80000c13d0000017601000041000000800010043f0000016d01000041000004ec0001042e0000014b0030009c000001a30000213d0000014e0030009c000001f70000613d0000014f0030009c000004a80000c13d000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002401100370000000000201043b000000000100041100000144031001980000014a0000613d000000040000006b000002f70000613d000300000002001d000200000003001d000000000030043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000000000101041a000000030110006c000003aa0000413d000100000001001d0000000201000029000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000102000029000000000021041b0000000401000029000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000010200008a000000030320014f000000000101043b000000000201041a000000000032004b0000026a0000213d00000003030000290000000002320019000000000021041b000000400100043d00000000003104350000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f0000013f011001c70000800d0200003900000003030000390000016704000041000003490000013d000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000470000c13d000000200030008c0000012b0000413d000300000003001d000400000007001d000000000060043f00000000010004140000013c0010009c0000013c01008041000000c0011002100000013f011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d00000004070000290000001f027000390000000502200270000000200070008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004060000390000012b0000813d000000000002041b0000000102200039000000000012004b000001270000413d000000200070008c0000028a0000413d000000000060043f00000184027001980000029e0000c13d000000e0030000390000014201000041000002ac0000013d0000015c0030009c0000022c0000613d0000015d0030009c000004a80000c13d000000640020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002402100370000000000202043b000300000002001d000001440020009c000004a80000213d0000004401100370000000000201043b000000040000006b000002f50000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f0000018101000041000000c40010043f0000018201000041000000e40010043f0000016401000041000004ed00010430000001510030009c000002340000613d000001520030009c000004a80000c13d0000000001000416000000000001004b000004a80000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000470000c13d000000800010043f000000000004004b000002d50000613d000000000030043f000000000001004b000001d80000613d000001420200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001700000413d000003190000013d000001570030009c0000023d0000613d000001580030009c000004a80000c13d000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002401100370000000000401043b0000000501000039000000000101041a00000144011001970000000002000411000000000021004b000002950000c13d00000185054001670000000201000039000000000201041a000000000052004b0000026a0000213d0000000002420019000001700020009c000003560000413d0000016101000041000000800010043f0000002001000039000000840010043f0000002401000039000000a40010043f0000017201000041000000c40010043f0000017301000041000000e40010043f0000016401000041000004ed000104300000014c0030009c000002700000613d0000014d0030009c000004a80000c13d000000240020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000401100370000000000601043b000001440060009c000004a80000213d0000000501000039000000000201041a00000144032001970000000005000411000000000053004b000002950000c13d000000000006004b000003030000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000016201000041000000c40010043f0000016301000041000000e40010043f0000016401000041000004ed000104300000000001000416000000000001004b000004a80000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000470000c13d000000800010043f000000000004004b000002d50000613d000000000030043f000000000001004b0000030f0000c13d0000002001000039000002d80000013d000000240020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000401100370000000000101043b000001440010009c000004a80000213d000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000002820000013d0000000001000416000000000001004b000004a80000c13d0000001201000039000000800010043f0000016d01000041000004ec0001042e000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002401100370000000000101043b000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000000000101041a000000030210006c000003630000813d000000400100043d00000064021000390000016903000041000000000032043500000044021000390000016a03000041000000000032043500000024021000390000002503000039000003e60000013d0000000001000416000000000001004b000004a80000c13d0000000201000039000000000101041a000000800010043f0000016d01000041000004ec0001042e0000000001000416000000000001004b000004a80000c13d0000000501000039000000000101041a0000014401100197000000800010043f0000016d01000041000004ec0001042e000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000400000002001d000001440020009c000004a80000213d0000002401100370000000000101043b000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000010200008a000000030220014f000000000101043b000000000301041a000000000023004b0000038c0000a13d0000017b01000041000000000010043f0000001101000039000000040010043f0000017c01000041000004ed00010430000000440020008c000004a80000413d0000000002000416000000000002004b000004a80000c13d0000000402100370000000000202043b000001440020009c000004a80000213d0000002401100370000000000101043b000400000001001d000001440010009c000004a80000213d000000000102001904eb04c00000040f000000040200002904eb04d10000040f000000000101041a000000400200043d00000000001204350000013c0020009c0000013c02008041000000400120021000000165011001c7000004ec0001042e000000000007004b0000000001000019000002b70000613d0000000301700210000001850110027f0000018501100167000000e00200043d000000000112016f0000000102700210000000000121019f000002b70000013d0000016101000041000000800010043f0000002001000039000000840010043f000000a40010043f0000016e01000041000000c40010043f0000016f01000041000004ed0001043000000142010000410000002004000039000000010320008a0000000503300270000001430330009a0000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000002a30000c13d000000e003500039000000000072004b000002b50000813d0000000302700210000000f80220018f000001850220027f00000185022001670000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b000000000600041100000144016001970000000502000039000000000302041a0000014504300197000000000114019f000000000012041b000000400100043d0000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f000001440530019700000146011001c70000800d020000390000000303000039000001470400004104eb04e10000040f0000000100200190000004a80000613d0000002001000039000001000010044300000120000004430000014801000041000004ec0001042e0000018601200197000000a00010043f00000040010000390000008001100039000400000001001d000000400010043f000000800200003904eb04aa0000040f000000040200002900000000012100490000013c0010009c0000013c0100804100000060011002100000013c0020009c0000013c020080410000004002200210000000000121019f000004ec0001042e000000040000006b0000031e0000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000002201000039000000a40010043f0000017801000041000000c40010043f0000017701000041000000e40010043f0000016401000041000004ed00010430000000030000006b000003990000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f0000017f01000041000000c40010043f0000018001000041000000e40010043f0000016401000041000004ed000104300000014502200197000000000262019f000000000021041b00000000010004140000013c0010009c0000013c01008041000000c00110021000000160011001c70000800d0200003900000003030000390000014704000041000000690000013d000001830200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003110000413d0000005f0130003900000184011001970000016c0010009c000000920000213d000002d80000013d000300000003001d000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000302000029000000000021041b000000400100043d00000000002104350000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f0000013f011001c70000800d02000039000000030300003900000168040000410000000005000411000000040600002904eb04e10000040f0000000100200190000004a80000613d000000400100043d000000010200003900000000002104350000013c0010009c0000013c01008041000000400110021000000165011001c7000004ec0001042e0000000403000029000000000003004b000003b40000c13d0000016101000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000017101000041000000c40010043f0000016f01000041000004ed00010430000000000100041100000144011001980000038f0000613d000300000002001d000000040000006b000003dd0000613d000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000302000029000000000021041b000000400100043d00000000002104350000013c0010009c0000013c0100804100000040011002100000000002000414000003410000013d00000000010004110000014401100198000003da0000c13d000000400100043d00000064021000390000017403000041000000000032043500000044021000390000017503000041000000000032043500000024021000390000002403000039000003e60000013d000200000002001d0000000401000029000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000000000101041a0001000200100074000003f10000813d000000400100043d00000064021000390000017d03000041000000000032043500000044021000390000017e03000041000000000032043500000024021000390000002603000039000003e60000013d000200000005001d000300000004001d000000000021041b000000000030043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000000000201041a000000020020006c00000003030000290000026a0000213d0000000002320019000000000021041b000000400100043d00000000003104350000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f0000013f011001c70000800d020000390000000303000039000001670400004100000000050000190000000406000029000000690000013d000200000003001d000000040000006b000004520000c13d000000400100043d000000640210003900000177030000410000000000320435000000440210003900000178030000410000000000320435000000240210003900000022030000390000000000320435000001610200004100000000002104350000000402100039000000200300003900000000003204350000013c0010009c0000013c0100804100000040011002100000016b011001c7000004ed000104300000000401000029000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000102000029000000000021041b0000000301000029000000000010043f000000200000043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000010200008a000000020320014f000000000101043b000000000201041a000000000032004b0000026a0000213d00000002030000290000000002320019000000000021041b000000400100043d00000000003104350000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f0000013f011001c70000800d02000039000000030300003900000167040000410000000405000029000000030600002904eb04e10000040f0000000100200190000004a80000613d0000000401000029000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b00000000020004110000014402200197000300000002001d000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b000000000101041a0002000200100074000004760000813d000000400100043d00000064021000390000017903000041000000000032043500000044021000390000017a03000041000000000032043500000024021000390000002803000039000003e60000013d000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d00000002030000290000000302300029000000000101043b000000000021041b000000400100043d00000000002104350000013c0010009c0000013c0100804100000040011002100000000002000414000003410000013d000000030000006b000003dd0000613d0000000401000029000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004a80000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000013c0010009c0000013c01008041000000400110021000000000020004140000013c0020009c0000013c02008041000000c002200210000000000112019f0000013f011001c70000800d02000039000000030300003900000168040000410000000405000029000000000600041104eb04e10000040f00000001002001900000034e0000c13d0000000001000019000004ed000104300000002003000039000000000431043600000000320204340000000000240435000000000002004b0000004001100039000004bc0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000004b20000413d000004bc0000a13d000000000321001900000000000304350000001f0220003900000184022001970000000001210019000000000001042d0000014401100197000000000010043f0000000101000039000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004cf0000613d000000000101043b000000000001042d0000000001000019000004ed000104300000014402200197000000000020043f000000200010043f00000000010004140000013c0010009c0000013c01008041000000c00110021000000166011001c7000080100200003904eb04e60000040f0000000100200190000004df0000613d000000000101043b000000000001042d0000000001000019000004ed00010430000004e4002104210000000102000039000000000001042d0000000002000019000000000001042d000004e9002104230000000102000039000000000001042d0000000002000019000000000001042d000004eb00000432000004ec0001042e000004ed000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4d4f4e44546f6b656e00000000000000000000000000000000000000000000004d4f4e44000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000313ce566000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000040c10f1900000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3020000000000000000000000000000000000000000000080000000000000000008c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000200000008000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000084595161401484a00000145524332303a206d696e7420746f20746865207a65726f2061646472657373004d4f4e443a3a6d696e743a2063616e6e6f7420657863656564206d617820737570706c7900000000000000000000000000000000000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464000000000000000000000000000000000000000000084595161401484a000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472656c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320614e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a207472616e7366657220746f20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000cd736498ac3a42ec2205e45114bb0a53b6f42446665596de427fe77a50f8f0ee

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