ETH Price: $2,464.99 (+5.71%)

Token

zeekwifhat (ZWIF)

Overview

Max Total Supply

1,000,000,000 ZWIF

Holders

9,072

Market

Price

$0.00 @ 0.000000 ETH (+8.44%)

Onchain Market Cap

$52,820.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,500 ZWIF

Value
$0.40 ( ~0.000162272262789169 ETH) [0.0008%]
0xf77e2c9b9ea81843d97a034e50aaa61b54edcc92
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zeek the zkSync era mascot, wif a hat.

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

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.22

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-03-13
*/

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

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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


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

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

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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


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

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

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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/ZWIFtoken.sol

// Original license: SPDX_License_Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.17;


contract ZWIFtoken is ERC20, Ownable {
    constructor(address initialOwner)
        ERC20("zeekwifhat", "ZWIF")
        Ownable()
    {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":[{"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001795c46609c37c516685b5080bfc57a93c49511dc19272c3e05de8a7e2d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000006f04084a2b26bb3ae0001586a706061b6ac5b809

Deployed Bytecode

0x00010000000000020008000000000002000000000001035500000000030100190000006003300270000001330330019700000001022001900000001d0000c13d0000008002000039000000400020043f000000040230008c000003bd0000413d000000000201043b000000e002200270000001480420009c000000290000213d000001520420009c000000e30000a13d000001530420009c0000010d0000213d000001560420009c000001420000613d000001570120009c000003bd0000c13d0000000001000416000000000101004b000003bd0000c13d00000012010000390000026c0000013d0000000002000416000000000202004b000003bd0000c13d0000013402300041000001350220009c000000400000213d000001680100004100000000001004350000004101000039000000040010043f0000016901000041000004ca00010430000001490420009c000000ee0000a13d0000014a0420009c000001200000213d0000014d0420009c0000018c0000613d0000014e0220009c000003bd0000c13d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000400220008c000003bd0000413d0000000402100370000000000202043b000001370320009c000003bd0000213d0000002401100370000000000301043b000000000100041104c803d50000040f000001f20000013d0000009f023000390000013602200197000000400020043f0000001f0230018f00000005043002720000004f0000613d00000000050000190000000506500210000000000761034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000470000413d000000000502004b0000005e0000613d0000000504400210000000000141034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000200130008c000003bd0000413d000000800100043d000001370110009c000003bd0000213d000000400800043d000001380180009c000000230000213d0000004001800039000000400010043f0000000a01000039000000000a180436000001390100004100000000001a0435000000400600043d000001380160009c000000230000213d0000004001600039000000400010043f000000040400003900000000054604360000013a01000041000000000015043500000000090804330000013b0190009c000000230000213d0000000307000039000000000107041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000001e00000c13d000000200130008c000700000006001d000800000004001d000600000005001d000000b00000413d000100000003001d00020000000a001d000300000009001d000400000008001d000500000007001d000000000070043500000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013c011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d00000003090000290000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000008040000290000000706000029000000060500002900000005070000290000000408000029000000020a000029000000b00000813d000000000002041b0000000102200039000000000312004b000000ac0000413d0000001f0190008c000002cd0000a13d000300000009001d000400000008001d000500000007001d000000000070043500000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013c011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000200200008a000000030900002900000000032901700000002002000039000000000101043b00000007060000290000000408000029000000d20000613d0000002002000039000000000400001900000000058200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000000ca0000413d000000000393004b0000000507000029000000de0000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000028200190000000002020433000000000232016f000000000021041b000000010190021000000001011001bf00000008040000290000000605000029000002d80000013d000001580420009c000001d10000613d000001590420009c000001e40000613d0000015a0120009c000003bd0000c13d0000000001000416000000000101004b000003bd0000c13d00000002010000390000026b0000013d0000014f0120009c000001fb0000613d000001500120009c000002110000613d000001510120009c000003bd0000c13d0000000001000416000000000101004b000003bd0000c13d0000000403000039000000000203041a000000010420019000000001052002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000001e00000c13d000000800060043f000000000404004b000002820000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a001006039000002910000013d000001540420009c000002180000613d000001550220009c000003bd0000c13d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000200220008c000003bd0000413d0000000401100370000000000101043b000001370210009c000003bd0000213d0000000000100435000000200000043f000000400200003900000000010000190000026a0000013d0000014b0420009c0000024f0000613d0000014c0220009c000003bd0000c13d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000200220008c000003bd0000413d0000000401100370000000000601043b000001370160009c000003bd0000213d0000000501000039000000000201041a00000137032001970000000005000411000000000353004b0000026f0000c13d000000000306004b000002bc0000c13d0000014601000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000015b01000041000000c40010043f0000015c01000041000000e40010043f0000015d01000041000004ca000104300000000002000416000000000202004b000003bd0000c13d000000040230008a000000600220008c000003bd0000413d0000000402100370000000000302043b000001370230009c000003bd0000213d0000002402100370000000000202043b000800000002001d000001370220009c000003bd0000213d0000004401100370000000000101043b000600000001001d00000000003004350000000101000039000500000001001d000000200010043f00000133040000410000000001000414000001330210009c0000000001048019000000c00110021000000142011001c70000801002000039000700000003001d04c804c30000040f0000000102200190000003bd0000613d000000000101043b0000000002000411000400000002001d0000000000200435000000200010043f0000000001000414000001330210009c0000013301008041000000c00110021000000142011001c7000080100200003904c804c30000040f00000007040000290000000102200190000003bd0000613d000000000101043b000000000101041a000000010200008a000000000221004b000003490000613d0000000603000029000000000231004b000003440000813d000000400100043d00000044021000390000016a03000041000000000032043500000024021000390000001d030000390000000000320435000001460200004100000000002104350000000402100039000000200300003900000000003204350000013302000041000001330310009c0000000001028019000000400110021000000147011001c7000004ca000104300000000002000416000000000202004b000003bd0000c13d000000040230008a000000400220008c000003bd0000413d0000000402100370000000000202043b000800000002001d000001370220009c000003bd0000213d0000002401100370000000000101043b000700000001001d0000000001000411000500000001001d00000000001004350000000101000039000600000001001d000000200010043f00000133030000410000000001000414000001330210009c0000000001038019000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000000101043b00000008020000290000000000200435000000200010043f0000000001000414000001330210009c0000013301008041000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000000101043b000000000101041a0000000703000029000000000231004b000003370000813d000000400100043d000000640210003900000160030000410000000000320435000000440210003900000161030000410000000000320435000000240210003900000025030000390000000000320435000001460200004100000000002104350000000402100039000000200300003900000000003204350000013302000041000001330310009c0000000001028019000000400110021000000162011001c7000004ca000104300000000001000416000000000101004b000003bd0000c13d0000000303000039000000000203041a000000010420019000000001052002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000002780000613d000001680100004100000000001004350000002201000039000000260000013d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000400220008c000003bd0000413d0000000402100370000000000202043b000001370320009c000003bd0000213d0000002401100370000000000301043b000000000100041104c8044e0000040f0000000101000039000000400200043d00000000001204350000013301000041000001330320009c000000000201801900000040012002100000015f011001c7000004c90001042e0000000001000416000000000101004b000003bd0000c13d0000000501000039000000000201041a00000137032001970000000005000411000000000353004b0000026f0000c13d0000013d02200197000000000021041b00000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013e011001c70000800d0200003900000003030000390000013f040000410000000006000019000002c80000013d0000000001000416000000000101004b000003bd0000c13d0000000501000039000000000101041a00000137011001970000026c0000013d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000400220008c000003bd0000413d0000000401100370000000000101043b000800000001001d000001370110009c000003bd0000213d0000000001000411000600000001001d00000000001004350000000101000039000700000001001d000000200010043f00000133030000410000000001000414000001330210009c0000000001038019000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000000101043b00000008020000290000000000200435000000200010043f0000000001000414000001330210009c0000013301008041000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000000101043b000000000101041a00000024020000390000000002200367000000000202043b0000000003120019000000000123004b0000000001000019000000010100403900000001011001900000033e0000613d000001680100004100000000001004350000001101000039000000260000013d0000000002000416000000000202004b000003bd0000c13d000000040230008a000000400220008c000003bd0000413d0000000402100370000000000202043b000001370320009c000003bd0000213d0000002401100370000000000301043b000001370130009c000003bd0000213d00000000002004350000000101000039000000200010043f0000004002000039000800000002001d0000000001000019000700000003001d04c804a80000040f00000007020000290000000000200435000000200010043f0000000001000019000000080200002904c804a80000040f000000000101041a000000800010043f0000015e01000041000004c90001042e0000014601000041000000800010043f0000002001000039000000840010043f000000a40010043f0000016601000041000000c40010043f0000016701000041000004ca00010430000000800060043f000000000404004b000002980000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a001006039000002a70000013d0000000000300435000000a001000039000000000206004b000002970000613d000001630200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b000002880000413d000000c0013000390000001f01100039000000200200008a000000000121016f0000016402100041000001650220009c000000230000413d000002ad0000013d0000000000300435000000a001000039000000000206004b000002ad0000613d0000016b0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b0000029e0000413d000000c0013000390000001f01100039000000200200008a000000000121016f0000016402100041000001650220009c000000230000413d000800000001001d000000400010043f000000800200003904c803bf0000040f000000080400002900000000014100490000013302000041000001330310009c0000000001028019000001330340009c000000000402801900000040024002100000006001100210000000000121019f000004c90001042e0000013d02200197000000000262019f000000000021041b00000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013e011001c70000800d0200003900000003030000390000013f0400004104c804be0000040f0000000101200190000003bd0000613d0000000001000019000004c90001042e000000000109004b0000000001000019000002d10000613d00000000010a04330000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000017041b00000000060604330000013b0160009c000000230000213d000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000001e00000c13d000000200130008c000003090000413d000400000003001d000500000006001d000000000040043500000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013c011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d00000005060000290000001f026000390000000502200270000000200360008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000008040000290000000605000029000003090000813d000000000002041b0000000102200039000000000312004b000003050000413d0000001f0160008c000003560000a13d000500000006001d000000000040043500000133010000410000000002000414000001330320009c0000000002018019000000c0012002100000013c011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000200200008a00000005032001800000002002000039000000000101043b0000000706000029000003270000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000031f0000413d0000000505000029000000000353004b000003330000813d0000000303500210000000f80330018f000000010400008a000000000334022f000000000343013f00000007022000290000000002020433000000000232016f000000000021041b000000010150021000000001011001bf0000000804000029000003610000013d00000000033100490000000501000029000000080200002904c8044e0000040f000000400100043d00000006020000290000034f0000013d0000000601000029000000080200002904c8044e0000040f000000400100043d00000007020000290000034f0000013d00000000033100490000000001040019000000040200002904c8044e0000040f000000070400002900000000010400190000000802000029000000060300002904c803d50000040f000000400100043d000000050200002900000000002104350000013302000041000001330310009c000000000102801900000040011002100000015f011001c7000004c90001042e000000000106004b00000000010000190000035a0000613d00000000010504330000000302600210000000010300008a000000000223022f000000000232013f000000000121016f0000000102600210000000000121019f000000000014041b0000000501000039000000000201041a0000013d032001970000000006000411000000000363019f000000000031041b000000400100043d000700000001001d00000133010000410000000003000414000001330430009c0000000003018019000000c00130021000000137052001970000013e011001c70000800d0200003900000003030000390000013f04000041000800000006001d04c804be0000040f0000000101200190000003bd0000613d0000000804000029000000080100006b0000038d0000c13d000000070300002900000044013000390000014502000041000000000021043500000024013000390000001f020000390000000000210435000001460100004100000000001304350000000401300039000000200200003900000000002104350000013301000041000001330230009c0000000003018019000000400130021000000147011001c7000004ca000104300000000201000039000000000201041a000001400320009c0000024b0000813d0000014102200041000000000021041b0000000000400435000000200000043f00000133030000410000000001000414000001330210009c0000000001038019000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000003bd0000613d000000000101043b000000000201041a0000014102200041000000000021041b0000014101000041000000400200043d00000000001204350000000001000414000001330310009c00000133040000410000000001048019000001330320009c00000000020480190000004002200210000000c001100210000000000112019f0000013c011001c70000800d02000039000000030300003900000143040000410000000005000019000000080600002904c804be0000040f0000000101200190000003bd0000613d0000002001000039000001000010044300000120000004430000014401000041000004c90001042e0000000001000019000004ca0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000003ce0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000003c70000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0004000000000002000400000003001d0000013701100198000004250000613d000201370020019c0000042f0000613d000300000001001d0000000000100435000000200000043f00000133010000410000000002000414000001330320009c0000000002018019000000c00120021000000142011001c7000080100200003904c804c30000040f0000000102200190000004230000613d000000000101043b000000000201041a000100000002001d000000040120006c000004390000413d00000003010000290000000000100435000000200000043f00000133030000410000000001000414000001330210009c0000000001038019000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000004230000613d0000000103000029000000040230006a000000000101043b000000000021041b000000020100002900000000001004350000000001000414000001330210009c0000013301008041000000c00110021000000142011001c7000080100200003904c804c30000040f0000000102200190000004230000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000133020000410000000003000414000001330430009c0000000003028019000001330410009c00000000010280190000004001100210000000c002300210000000000112019f0000013c011001c70000800d02000039000000030300003900000143040000410000000305000029000000020600002904c804be0000040f0000000101200190000004230000613d000000000001042d0000000001000019000004ca00010430000000400100043d00000064021000390000017003000041000000000032043500000044021000390000017103000041000000000032043500000024021000390000002503000039000004420000013d000000400100043d00000064021000390000016e03000041000000000032043500000044021000390000016f03000041000000000032043500000024021000390000002303000039000004420000013d000000400100043d00000064021000390000016c03000041000000000032043500000044021000390000016d030000410000000000320435000000240210003900000026030000390000000000320435000001460200004100000000002104350000000402100039000000200300003900000000003204350000013302000041000001330310009c0000000001028019000000400110021000000162011001c7000004ca0001043000030000000000020000013701100198000004890000613d000200000003001d000301370020019c000004930000613d000100000001001d00000000001004350000000101000039000000200010043f00000133030000410000000001000414000001330210009c0000000001038019000000c00110021000000142011001c7000080100200003904c804c30000040f00000001022001900000000303000029000004870000613d000000000101043b0000000000300435000000200010043f0000000001000414000001330210009c0000013301008041000000c00110021000000142011001c7000080100200003904c804c30000040f00000003060000290000000102200190000004870000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000133020000410000000003000414000001330430009c0000000003028019000001330410009c00000000010280190000004001100210000000c002300210000000000112019f0000013c011001c70000800d0200003900000003030000390000017204000041000000010500002904c804be0000040f0000000101200190000004870000613d000000000001042d0000000001000019000004ca00010430000000400100043d000000640210003900000175030000410000000000320435000000440210003900000176030000410000000000320435000000240210003900000024030000390000049c0000013d000000400100043d000000640210003900000173030000410000000000320435000000440210003900000174030000410000000000320435000000240210003900000022030000390000000000320435000001460200004100000000002104350000000402100039000000200300003900000000003204350000013302000041000001330310009c0000000001028019000000400110021000000162011001c7000004ca000104300000013303000041000001330410009c00000000010380190000004001100210000001330420009c00000000020380190000006002200210000000000112019f0000000002000414000001330420009c0000000002038019000000c002200210000000000112019f0000013e011001c7000080100200003904c804c30000040f0000000102200190000004bc0000613d000000000101043b000000000001042d0000000001000019000004ca00010430000004c1002104210000000102000039000000000001042d0000000002000019000000000001042d000004c6002104230000000102000039000000000001042d0000000002000019000000000001042d000004c800000432000004c90001042e000004ca00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000009fffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf7a65656b776966686174000000000000000000000000000000000000000000005a57494600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0fffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000804f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464000000000000000000000000000000000000000000000000000000000000000042d2a98dec25a7b73afd15e489022af637256fbf5c55ffeffe573ec68b802f6d

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