ETH Price: $3,930.44 (-1.31%)

Token

Zorro (ZORRO)

Overview

Max Total Supply

10,000,000,000 ZORRO

Holders

14,398

Market

Price

$0.00 @ 0.000000 ETH (-1.16%)

Onchain Market Cap

$478,400.00

Circulating Supply Market Cap

$479,219.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
233,988.860031641504995958 ZORRO

Value
$11.19 ( ~0.00284701010484115 ETH) [0.0023%]
0x6588e29f223bcb5edca7234e53ecba348b2a787b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zorro is a community based token on zkSync.

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

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.19

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-01-07
*/

// SPDX-License-Identifier: MIT

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

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

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

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

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

contract ZorroToken is Ownable, ERC20 {
    address lp;

    uint256 walletBPSLimit = 100; // 1%

    mapping(address => bool) blacklisted;

    event SetWalletLimit(uint256 _walletBPSLimit);
    event ClaimedFees(uint256 _claimed0, uint256 _claimed1);

    constructor() ERC20("Zorro", "ZORRO") {
        //10b
        _mint(msg.sender, 10 ** 28);
    }

    function setRule(uint256 _walletBPSLimit) external onlyOwner {
        walletBPSLimit = _walletBPSLimit;

        emit SetWalletLimit(_walletBPSLimit);
    }

    function setBlacklist(address _account, bool _blacklisted) external onlyOwner {
        blacklisted[_account] = _blacklisted;
    }

    function setLP(address _lp) external onlyOwner {
        lp = _lp;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual {        
        address feePool = (lp == address(0) ? address(0): IPool(lp).fees());

        // allow owner override
        // allow fee pool to receive more than the limit
        if(walletBPSLimit != 0 && from != owner() && to != owner() && to != feePool && from != feePool){
            uint256 newBal = balanceOf(to) + amount;

            require(newBal <= ((totalSupply() * walletBPSLimit) / 10000), "over limit pls chill");
        }
        
        require(!blacklisted[from], "BL account");
    }

    function claimFees(address _lp) external onlyOwner {
        (uint256 _claimed0, uint256 _claimed1) = IPool(_lp).claimFees();
    
        address _token0 = IPool(_lp).token0();
        address _token1 = IPool(_lp).token1();

        IERC20(_token0).transfer(owner(), IERC20(_token0).balanceOf(address(this)));
        IERC20(_token1).transfer(owner(), IERC20(_token1).balanceOf(address(this)));

        emit ClaimedFees(_claimed0, _claimed1);
    }

    function delegateFees(address _lp, address _account) external onlyOwner { 
        IPool(_lp).delegate(_account);
    }

    function telegram() external pure returns (string memory) {
        return "https://t.me/zkzorro";
    }

    function twitter() external pure returns (string memory) {
        return "https://x.com/zkzorro";
    }
}

interface IPool {
    function token0() external view returns (address);
    function token1() external view returns (address);
    function fees() external view returns (address);

    function claimFees() external returns (uint claimed0, uint claimed1);
    function delegate(address delegatee) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"uint256","name":"_claimed0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_claimed1","type":"uint256"}],"name":"ClaimedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_walletBPSLimit","type":"uint256"}],"name":"SetWalletLimit","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":[{"internalType":"address","name":"_lp","type":"address"}],"name":"claimFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"},{"internalType":"address","name":"_account","type":"address"}],"name":"delegateFees","outputs":[],"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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_blacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletBPSLimit","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"telegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"},{"inputs":[],"name":"twitter","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002dd1b45d1611f7412c30429383fe1f3435d2846e6708fdaa8ad4ab446e400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00010000000000020008000000000002000000000401034f0000008001000039000000400010043f000000000104001900000060011002700000027d011001970000000102200190000000290000c13d000000040210008c000007a40000413d000000000204043b000000e002200270000002950320009c000000510000a13d000002960320009c000000880000a13d000002970320009c000000a30000213d0000029b0320009c000001bd0000613d0000029c0320009c000001d60000613d0000029d0220009c000007a40000c13d0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000201043b000002820120009c000007a40000213d0000002401400370000000000301043b000000000100041109f008200000040f000004d80000013d0000000001000416000000000101004b000007a40000c13d0000000502000039000000800020043f0000027e01000041000000a00010043f0000010001000039000000400010043f000800000002001d000000c00020043f0000027f01000041000000e00010043f0000000006000411000000000200041a0000028001200197000000000116019f000000000010041b0000027d0100004100000000030004140000027d0430009c0000000003018019000000c00130021000000281011001c700000282052001970000800d020000390000000303000039000600000003001d0000028304000041000700000006001d09f009e60000040f0000000101200190000007a40000613d000000800500043d000002840150009c000000760000413d000002bd0100004100000000001004350000004101000039000000850000013d000002a40320009c000000960000213d000002ab0320009c000001160000a13d000002ac0320009c0000021a0000613d000002ad0320009c000002610000613d000002ae0220009c000007a40000c13d0000000002000416000000000202004b000007a40000c13d000000040110008a000000200110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d000000000100041a00000282011001970000000002000411000000000121004b000003800000c13d000002c201000041000000800010043f00000000010004140000000802000029000000040320008c000004120000c13d0000000003000031000000400130008c000000000403001900000040040080390000043c0000013d0000000404000039000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000c60000613d000002bd0100004100000000001004350000002201000039000000040010043f000002be01000041000009f2000104300000029e0320009c000001280000a13d0000029f0320009c000002810000613d000002a00120009c000002910000613d000002a10120009c000007a40000c13d0000000001000416000000000101004b000007a40000c13d000000000100041a00000282011001970000037d0000013d000002a50320009c000001350000a13d000002a60320009c000002a60000613d000002a70320009c000002e40000613d000002a80120009c000007a40000c13d0000000001000416000000000101004b000007a40000c13d00000012010000390000037d0000013d000002980320009c000002f80000613d000002990320009c0000030a0000613d0000029a0220009c000007a40000c13d0000000002000416000000000202004b000007a40000c13d000000040110008a000000200110008c000007a40000413d0000000401400370000000000601043b000002820160009c000007a40000213d000000000100041a00000282021001970000000005000411000000000252004b000003800000c13d000000000206004b000004750000c13d0000028e01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000002b101000041000000c40010043f000002b201000041000000e40010043f000002b301000041000009f200010430000000200130008c000000e80000413d000300000003001d000400000005001d000500000004001d00000000004004350000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000285011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000504000029000000e80000813d000000000002041b0000000102200039000000000312004b000000e40000413d0000001f0150008c000001530000a13d000400000005001d000500000004001d00000000004004350000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000285011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000200200008a000000040600002900000000032601700000002002000039000000000101043b000001070000613d0000002002000039000000000400001900000080052000390000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000000ff0000413d000000000363004b000001120000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000080022000390000000002020433000000000232016f000000000021041b000000010160021000000001011001bf00000005040000290000015e0000013d000002af0320009c000003270000613d000002b00220009c000007a40000c13d0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000201043b000002820120009c000007a40000213d0000002401400370000000000301043b0000000001000411000004d70000013d000002a20320009c000003400000613d000002a30120009c000007a40000c13d0000000001000416000000000101004b000007a40000c13d000000c001000039000000400010043f0000001402000039000000800020043f000002bc02000041000003000000013d000002a90320009c000003780000613d000002aa0220009c000007a40000c13d0000000002000416000000000202004b000007a40000c13d000000040110008a000000200110008c000007a40000413d000000000100041a00000282011001970000000002000411000000000121004b000003800000c13d0000000401400370000000000101043b0000000702000039000000000012041b000000800010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c001200210000002c0011001c70000800d020000390000000103000039000002c104000041000004810000013d000000000105004b0000000001000019000001570000613d000000a00100043d0000000302500210000000010300008a000000000223022f000000000232013f000000000121016f0000000102500210000000000121019f000000000014041b000000c00400043d000002860140009c0000004d0000213d0000000801000029000000000101041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000820000c13d000000200130008c0000018f0000413d000400000003001d000500000004001d000000080100002900000000001004350000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000285011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d00000005040000290000001f024000390000000502200270000000200340008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000018f0000813d000000000002041b0000000102200039000000000312004b0000018b0000413d0000001f0140008c000003890000a13d000500000004001d000000080100002900000000001004350000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000285011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000200200008a00000005070000290000000002270170000000e003000039000000000101043b000001b00000613d000000200400003900000000030000190000000005040019000000c0045000390000000004040433000000000041041b000000200450003900000001011000390000002003300039000000000623004b000001a60000413d000000e003500039000000000272004b000001ba0000813d0000000302700210000000f80220018f000000010400008a000000000224022f000000000242013f0000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000003940000013d0000000001000416000000000101004b000007a40000c13d0000000503000039000000000203041a000000010420019000000001052002700000007f0150018f000000000105c0190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000820000c13d000000800010043f000000000404004b000003ad0000c13d000001000300008a000000000232016f000000a00020043f000000000101004b000000c002000039000000a002006039000003bc0000013d0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d0000002401400370000000000101043b000700000001001d0000000001000411000600000001001d00000000001004350000000201000039000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b00000008020000290000000000200435000000200010043f00000000010004140000027d0210009c0000027d01008041000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000101041a0000000703000029000000000231004b000004d40000813d000000400100043d0000006402100039000002b80300004100000000003204350000004402100039000002b90300004100000000003204350000002402100039000000250300003900000000003204350000028e0200004100000000002104350000000402100039000000200300003900000000003204350000027d020000410000027d0310009c00000000010280190000004001100210000002ba011001c7000009f2000104300000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d0000002401400370000000000101043b000700000001001d000002820110009c000007a40000213d000000000100041a00000282011001970000000002000411000000000121004b000003800000c13d000002cc010000410000000000100439000000080100002900000004001004430000027d0100004100000000020004140000027d0320009c0000000002018019000000c001200210000002cd011001c7000080020200003909f009eb0000040f0000000102200190000004e10000613d000000000101043b000000000101004b000007a40000613d000000400500043d000002ce01000041000000000015043500000004015000390000000702000029000000000021043500000000010004140000000802000029000000040320008c0000025c0000613d0000027d040000410000027d0310009c00000000010480190000027d0350009c00000000040540190000004003400210000000c001100210000000000131019f000002be011001c7000800000005001d09f009e60000040f0000000805000029000000000301001900000060033002700000027d0030019d0000027d033001970000000102200190000005fc0000613d000002860150009c0000004d0000213d000000400050043f0000000001000019000009f10001042e0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d0000002401400370000000000201043b000000000102004b0000000001000019000000010100c039000700000002001d000000000112004b000007a40000c13d09f007f60000040f000000080100002900000000001004350000000801000039000000200010043f0000004002000039000000000100001909f009d00000040f000001000200008a000000000301041a000000000223016f0000000703000029000002f40000013d0000000002000416000000000202004b000007a40000c13d000000040110008a000000200110008c000007a40000413d0000000401400370000000000101043b000002820210009c000007a40000213d00000000001004350000000101000039000000200010043f00000040020000390000000001000019000003250000013d0000000001000416000000000101004b000007a40000c13d000000000100041a00000282021001970000000005000411000000000252004b000003800000c13d0000028001100197000000000010041b0000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000281011001c70000800d02000039000000030300003900000283040000410000000006000019000004810000013d0000000002000416000000000202004b000007a40000c13d000000040110008a000000600110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d0000002401400370000000000101043b000700000001001d000002820110009c000007a40000213d0000004401400370000000000101043b000600000001001d000000080100002900000000001004350000000201000039000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b0000000002000411000500000002001d0000000000200435000000200010043f00000000010004140000027d0210009c0000027d01008041000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000101041a000000010200008a000000000221004b000005f80000613d0000000603000029000000000231004b000005f40000813d000000400100043d0000004402100039000002bf03000041000000000032043500000024021000390000001d03000039000003a10000013d0000000002000416000000000202004b000007a40000c13d000000040110008a000000200110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d09f007f60000040f0000000601000039000000000201041a00000280022001970000000803000029000000000232019f000000000021041b0000000001000019000009f10001042e0000000001000416000000000101004b000007a40000c13d000000c001000039000000400010043f0000001502000039000000800020043f000002b502000041000000a00020043f000000800200003909f007e00000040f000000c00110008a0000027d020000410000027d0310009c00000000010280190000006001100210000002b6011001c7000009f10001042e0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000101043b000002820210009c000007a40000213d0000002402400370000000000202043b000800000002001d000002820220009c000007a40000213d00000000001004350000000201000039000000200010043f0000004002000039000700000002001d000000000100001909f009d00000040f00000008020000290000000000200435000000200010043f0000000001000019000000070200002909f009d00000040f0000037c0000013d0000000001000416000000000101004b000007a40000c13d0000000403000039000000000203041a000000010420019000000001052002700000007f0150018f000000000105c0190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000820000c13d000000800010043f000000000404004b000003bd0000c13d000001000300008a000000000232016f000000a00020043f000000000101004b000000c002000039000000a002006039000003cc0000013d0000000002000416000000000202004b000007a40000c13d000000040110008a000000400110008c000007a40000413d0000000401400370000000000101043b000800000001001d000002820110009c000007a40000213d0000000001000411000600000001001d00000000001004350000000201000039000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c70000801002000039000700000004035309f009eb0000040f000000070300035f0000000102200190000007a40000613d000000000101043b00000008020000290000000000200435000000200010043f0000002401300370000000000101043b000700000001001d00000000010004140000027d0210009c0000027d01008041000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000101041a0000000703100029000000000113004b000000000100001900000001010040390000000101100190000004d50000613d000002bd0100004100000000001004350000001101000039000000850000013d0000000001000416000000000101004b000007a40000c13d0000000301000039000000000101041a000000800010043f000002b401000041000009f10001042e0000028e01000041000000800010043f0000002001000039000000840010043f000000a40010043f000002ca01000041000000c40010043f000002cb01000041000009f200010430000000000104004b00000000010000190000038d0000613d000000e00100043d0000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000802000029000000000012041b00000064010000390000000702000039000000000012041b000000070100006b000003df0000c13d000000400100043d00000044021000390000029403000041000000000032043500000024021000390000001f0300003900000000003204350000028e0200004100000000002104350000000402100039000000200300003900000000003204350000027d020000410000027d0310009c000000000102801900000040011002100000028f011001c7000009f2000104300000000000300435000000a002000039000000000301004b000003bc0000613d000002bb0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000003b30000413d000000c002300039000003cc0000013d0000000000300435000000a002000039000000000301004b000003cc0000613d000002cf0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000003c30000413d000000c002300039000000800220008a0000008001000039000800000001001d09f0080d0000040f000000400100043d000700000001001d000000080200002909f007e00000040f000000070400002900000000014100490000027d020000410000027d0310009c00000000010280190000027d0340009c000000000402801900000040024002100000006001100210000000000121019f000009f10001042e0000000601000039000000000101041a00000282021001980000000001000019000004860000c13d000000000200041a0000028202200198000004900000613d000000070220006b000004900000613d000000070210006b000004900000613d000000000101004b000004900000613d000000070100002900000000001004350000000101000039000000200010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000101041a0000028b0210009c000003740000813d0000028c011000410000000602000029000000000302041a00000064423000c9000000000403004b000004080000613d00000000433200d9000000640330008c000003740000c13d000027103220011a000000000121004b000004900000a13d000000400100043d00000044021000390000028d03000041000000000032043500000024021000390000001403000039000003a10000013d0000027d040000410000027d0310009c0000000001048019000000c001100210000002c3011001c709f009e60000040f000000000301001900000060033002700000027d03300197000000400430008c000000000403001900000040040080390000001f0540018f00000005064002720000042a0000613d00000000070000190000000508700210000000000981034f000000000909043b000000800880003900000000009804350000000107700039000000000867004b000004220000413d000000000705004b000004390000613d0000000506600210000000000761034f00000003055002100000008006600039000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000004e20000613d0000001f01400039000000e00510018f0000008001500039000700000001001d000000400010043f000000400130008c000007a40000413d000000a00100043d000400000001001d000000800100043d000500000001001d000002c4010000410000000706000029000000000016043500000000010004140000000802000029000000040320008c000005400000c13d000000a001500039000600000001001d000000400010043f0000000001060433000700000001001d000002820110009c000007a40000213d000002c501000041000000060200002900000000001204350000003f0100003900000020030000390000000004000414000000c002500039000800000002001d000000400020043f000000000203001900000006040000290000000004040433000300000004001d000002820440009c000007a40000213d000000000400041a000002c6050000410000000807000029000000000057043500000004057001bf0000000006000410000100000006001d0000000000650435000202820040019b00000000040004140000000705000029000000040550008c0000061f0000c13d0000000002720019000600000002001d000000400020043f000006540000013d0000028001100197000000000161019f000000000010041b0000027d0100004100000000020004140000027d0320009c0000000002018019000000c00120021000000281011001c70000800d020000390000000303000039000002830400004109f009e60000040f0000000101200190000007a40000613d0000000001000019000009f10001042e000000400a00043d000002870100004100000000001a04350000000001000414000000040320008c000004ff0000c13d0000000004000031000000200140008c00000020040080390000052f0000013d00000000000004350000000801000039000000200010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000101041a000000ff01100190000005ed0000c13d0000000601000029000000000101041a000002910210009c000003740000213d0000028c011000410000000602000029000000000012041b000000070100002900000000001004350000000101000039000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000007a40000613d000000000101043b000000000201041a0000028c02200041000000000021041b0000028c01000041000000400200043d000000000012043500000000010004140000027d0310009c0000027d0400004100000000010480190000027d0320009c00000000020480190000004002200210000000c001100210000000000112019f00000285011001c70000800d02000039000000030300003900000292040000410000000005000019000000070600002909f009e60000040f0000000101200190000007a40000613d0000002001000039000001000010044300000120000004430000029301000041000009f10001042e00000000033100490000000601000029000000080200002909f009750000040f0000000101000039000000400200043d00000000001204350000027d010000410000027d0320009c00000000020180190000004001200210000002b7011001c7000009f10001042e000000000001042f000000400200043d0000001f0430018f0000000505300272000004ef0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000004e70000413d000000000604004b000004fe0000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006180000013d0000027d030000410000027d0410009c00000000010380190000027d04a0009c00000000030a40190000004003300210000000c001100210000000000131019f00000288011001c700080000000a001d09f009eb0000040f000000080a000029000000000301001900000060033002700000027d03300197000000200430008c000000000403001900000020040080390000001f0540018f00000005064002720000051d0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000005150000413d000000000705004b0000052c0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000005b30000613d0000001f01400039000000600210018f0000000001a20019000000000221004b00000000020000190000000102004039000002860310009c0000004d0000213d00000001022001900000004d0000c13d000000400010043f000000200140008c000007a40000413d00000000010a0433000002890210009c000007a40000813d000003e40000013d0000027d040000410000027d0310009c0000000001048019000000c0011002100000004003600210000000000131019f00000288011001c709f009eb0000040f000000070a000029000000000301001900000060033002700000027d03300197000000200430008c000000000403001900000020040080390000001f0540018f00000005064002720000055b0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000005530000413d000000000705004b0000056a0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000005d00000613d0000001f01400039000000600110018f0000000001a10019000600000001001d000000400010043f000000200130008c000007a40000413d00000007010000290000000001010433000700000001001d000002820110009c000007a40000213d000002c501000041000000060400002900000000001404350000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000004002400210000000000121019f00000288011001c7000000080200002909f009eb0000040f000000060a000029000000000301001900000060033002700000027d04300197000000200340008c000000000304001900000020030080390000001f0530018f0000000506300272000005990000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000005910000413d000000000705004b000005a80000613d0000000506600210000000000761034f00000006066000290000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000004001f0000000102200190000006df0000613d0000001f01300039000000600210018f0000000605200029000800000005001d000000400050043f000000200440008c000007a40000413d0000045f0000013d000000400200043d0000001f0430018f0000000505300272000005c00000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005b80000413d000000000604004b000006180000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006180000013d000000400200043d0000001f0430018f0000000505300272000005dd0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000005d50000413d000000000604004b000005ec0000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006180000013d000000400100043d00000044021000390000029003000041000000000032043500000024021000390000000a03000039000003a10000013d00000000033100490000000801000029000000050200002909f009750000040f000000080100002900000007020000290000000603000029000000270000013d000000400200043d0000001f0430018f0000000505300272000006090000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000006010000413d000000000604004b000006180000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f00000000001504350000027d010000410000027d0420009c000000000201801900000040012002100000006002300210000000000121019f000009f2000104300000027d010000410000027d0240009c0000000004018019000000c0014002100000004002700210000000000112019f000002be011001c7000000070200002909f009eb0000040f000000080a000029000000000301001900000060033002700000027d04300197000000200340008c000000000304001900000020030080390000001f0530018f00000005063002720000063b0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000006330000413d000000000705004b0000064a0000613d0000000506600210000000000761034f00000008066000290000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000004001f0000000102200190000006c20000613d0000001f01300039000000600210018f0000000802200029000600000002001d000000400020043f000000200240008c000007a40000413d00000008020000290000000002020433000000060500002900000024045000390000000000240435000002c702000041000000000025043500000004025000390000000204000029000000000042043500000000020004140000000704000029000000040440008c000006930000613d0000027d010000410000027d0320009c0000000002018019000000c0012002100000000602000029000600000002001d0000004002200210000000000112019f000002c8011001c7000000070200002909f009e60000040f000000060a000029000000000301001900000060033002700000027d04300197000000200340008c000000000304001900000020030080390000001f0530018f0000000506300272000006800000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000006780000413d000000000705004b0000068f0000613d0000000506600210000000000761034f00000006066000290000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000004001f0000000102200190000006fc0000613d0000001f01300039000000200200008a000000000121016f0000000602100029000800000002001d000000400020043f000000200230008c000007a40000413d00000006020000290000000002020433000000000302004b0000000003000019000000010300c039000000000232004b000007a40000c13d000000000200041a000600000002001d000002c6020000410000000803000029000000000023043500000004023000390000000103000029000000000032043500000000020004140000000303000029000000040330008c0000071f0000c13d0000000802100029000700000002001d000000400020043f00000008020000290000000002020433000000070400002900000024034000390000000000230435000002c7020000410000000000240435000000060200002900000282022001970000000403400039000000000023043500000000020004140000000303000029000000040330008c000007560000c13d0000000701100029000000400010043f0000078c0000013d000000400200043d0000001f0340018f0000000505400272000006cf0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000006c70000413d000000000603004b000006de0000613d0000000505500210000000000151034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000161019f0000000000150435000007180000013d000000400200043d0000001f0340018f0000000505400272000006ec0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000006e40000413d000000000603004b000007180000613d0000000505500210000000000151034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000161019f0000000000150435000007180000013d000000400200043d0000001f0340018f0000000505400272000007090000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000007010000413d000000000603004b000007180000613d0000000505500210000000000151034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000161019f00000000001504350000027d010000410000027d0320009c000000000201801900000040012002100000006002400210000000000121019f000009f2000104300000027d010000410000027d0320009c0000000002018019000000c00120021000000008020000290000004002200210000000000112019f000002be011001c7000000030200002909f009eb0000040f000000080a000029000000000301001900000060033002700000027d03300197000000200430008c000000000403001900000020040080390000001f0540018f00000005064002720000073c0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000007340000413d000000000705004b0000074b0000613d0000000506600210000000000761034f00000008066000290000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000007a60000613d0000001f01400039000000600110018f0000000802100029000700000002001d000000400020043f000000200230008c000007a40000413d000006b00000013d0000027d010000410000027d0320009c0000000002018019000000c0012002100000000702000029000700000002001d0000004002200210000000000112019f000002c8011001c7000000030200002909f009e60000040f000000070a000029000000000301001900000060033002700000027d03300197000000200430008c000000000403001900000020040080390000001f0540018f0000000506400272000007740000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000076c0000413d000000000705004b000007830000613d0000000506600210000000000761034f00000007066000290000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000007c30000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200230008c000007a40000413d00000007020000290000000002020433000000000302004b0000000003000019000000010300c039000000000232004b000007a40000c13d000000200210003900000004030000290000000000320435000000050200002900000000002104350000027d0200004100000000030004140000027d0430009c0000000003028019000000c0023002100000004001100210000000000121019f0000028a011001c70000800d020000390000000103000039000002c904000041000001520000013d0000000001000019000009f200010430000000400200043d0000001f0430018f0000000505300272000007b30000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000007ab0000413d000000000604004b000007c20000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006180000013d000000400200043d0000001f0430018f0000000505300272000007d00000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000007c80000413d000000000604004b000007df0000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000006180000013d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000007ef0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000007e80000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000000100041a00000282011001970000000002000411000000000121004b000007fc0000c13d000000000001042d000000400100043d0000004402100039000002ca0300004100000000003204350000028e020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000027d020000410000027d0310009c000000000102801900000040011002100000028f011001c7000009f2000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000002860310009c0000081a0000213d00000001022001900000081a0000c13d000000400010043f000000000001042d000002bd0100004100000000001004350000004101000039000000040010043f000002be01000041000009f2000104300005000000000002000300000003001d000502820010019c000009060000613d000402820020019c000009100000613d0000000601000039000000000101041a00000282021001980000000001000019000008760000613d000000400a00043d000002870100004100000000001a04350000000001000414000000040320008c000008360000c13d0000000003000031000000200130008c00000000040300190000002004008039000008660000013d0000027d030000410000027d0410009c00000000010380190000027d04a0009c00000000030a40190000004003300210000000c001100210000000000131019f00000288011001c700020000000a001d09f009eb0000040f000000020a000029000000000301001900000060033002700000027d03300197000000200430008c000000000403001900000020040080390000001f0540018f0000000506400272000008540000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000084c0000413d000000000705004b000008630000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f0000000102200190000009400000613d0000001f01400039000000600210018f0000000001a20019000000000221004b00000000020000190000000102004039000002860410009c000009360000213d0000000102200190000009360000c13d000000400010043f0000001f0130008c000009040000a13d00000000010a0433000002820210009c000009040000213d0000000702000039000000000402041a000000000204004b000008a70000613d000000000200041a0000028202200197000000050320006b000008a70000613d000000040220006b000008a70000613d000000040210006b000008a70000613d000000050110006b000008a70000613d000200000004001d000000040100002900000000001004350000000101000039000000200010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000009040000613d000000000101043b000000000201041a0000000301200029000000000221004b00000000020000190000000102004039000000010220019000000002050000290000093a0000c13d0000000302000039000000000302041a00000000425300a9000000000403004b000008a40000613d00000000433200d9000000000335004b0000093a0000c13d000027103220011a000000000121004b000009630000213d000000050100002900000000001004350000000801000039000000200010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000009040000613d000000000101043b000000000101041a000000ff011001900000091a0000c13d000000050100002900000000001004350000000101000039000200000001001d000000200010043f0000027d0100004100000000020004140000027d0320009c0000000002018019000000c0012002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000009040000613d000000000101043b000000000201041a000100000002001d000000030120006c000009210000413d000000050100002900000000001004350000000201000029000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000009040000613d0000000103000029000000030230006a000000000101043b000000000021041b0000000401000029000000000010043500000000010004140000027d0210009c0000027d01008041000000c0011002100000028a011001c7000080100200003909f009eb0000040f0000000102200190000009040000613d000000000101043b000000000201041a00000003030000290000000002320019000000000021041b000000400100043d00000000003104350000027d0200004100000000030004140000027d0430009c00000000030280190000027d0410009c00000000010280190000004001100210000000c002300210000000000112019f00000285011001c70000800d02000039000000030300003900000292040000410000000505000029000000040600002909f009e60000040f0000000101200190000009040000613d000000000001042d0000000001000019000009f200010430000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d5030000410000000000320435000000240210003900000025030000390000092a0000013d000000400100043d0000006402100039000002d20300004100000000003204350000004402100039000002d3030000410000000000320435000000240210003900000023030000390000092a0000013d000000400100043d00000044021000390000029003000041000000000032043500000024021000390000000a03000039000009690000013d000000400100043d0000006402100039000002d00300004100000000003204350000004402100039000002d10300004100000000003204350000002402100039000000260300003900000000003204350000028e0200004100000000002104350000000402100039000000200300003900000000003204350000027d020000410000027d0310009c00000000010280190000004001100210000002ba011001c7000009f200010430000002bd01000041000000000010043500000041010000390000093d0000013d000002bd0100004100000000001004350000001101000039000000040010043f000002be01000041000009f200010430000000400200043d0000001f0430018f00000005053002720000094d0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000009450000413d000000000604004b0000095c0000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f00000000001504350000027d010000410000027d0420009c000000000201801900000040012002100000006002300210000000000112019f000009f200010430000000400100043d00000044021000390000028d0300004100000000003204350000002402100039000000140300003900000000003204350000028e0200004100000000002104350000000402100039000000200300003900000000003204350000027d020000410000027d0310009c000000000102801900000040011002100000028f011001c7000009f20001043000030000000000020000028201100198000009b00000613d000200000003001d000302820020019c000009ba0000613d000100000001001d00000000001004350000000201000039000000200010043f0000027d0300004100000000010004140000027d0210009c0000000001038019000000c0011002100000028a011001c7000080100200003909f009eb0000040f00000001022001900000000303000029000009ae0000613d000000000101043b0000000000300435000000200010043f00000000010004140000027d0210009c0000027d01008041000000c0011002100000028a011001c7000080100200003909f009eb0000040f00000003060000290000000102200190000009ae0000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000027d0200004100000000030004140000027d0430009c00000000030280190000027d0410009c00000000010280190000004001100210000000c002300210000000000112019f00000285011001c70000800d020000390000000303000039000002d604000041000000010500002909f009e60000040f0000000101200190000009ae0000613d000000000001042d0000000001000019000009f200010430000000400100043d0000006402100039000002d90300004100000000003204350000004402100039000002da03000041000000000032043500000024021000390000002403000039000009c30000013d000000400100043d0000006402100039000002d70300004100000000003204350000004402100039000002d80300004100000000003204350000002402100039000000220300003900000000003204350000028e0200004100000000002104350000000402100039000000200300003900000000003204350000027d020000410000027d0310009c00000000010280190000004001100210000002ba011001c7000009f200010430000000000001042f0000027d030000410000027d0410009c000000000103801900000040011002100000027d0420009c00000000020380190000006002200210000000000112019f00000000020004140000027d0420009c0000000002038019000000c002200210000000000112019f00000281011001c7000080100200003909f009eb0000040f0000000102200190000009e40000613d000000000101043b000000000001042d0000000001000019000009f200010430000009e9002104210000000102000039000000000001042d0000000002000019000000000001042d000009ee002104230000000102000039000000000001042d0000000002000019000000000001042d000009f000000432000009f10001042e000009f200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff5a6f72726f0000000000000000000000000000000000000000000000000000005a4f52524f000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff9af1d35a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000100000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ffffffffffffffffffffffffffffffffffffffffdfb031a1c1dafd9ef00000000000000000000000000000000000000000000000204fce5e3e250261100000006f766572206c696d697420706c73206368696c6c00000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000424c206163636f756e7400000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffdfb031a1c1dafd9eefffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000395093500000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000abfaeedf00000000000000000000000000000000000000000000000000000000abfaeee000000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000047ecb6650000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002f34d28200000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000202b85af0000000000000000000000000000000000000000000000000000000013a2acfa0000000000000000000000000000000000000000000000000000000013a2acfb00000000000000000000000000000000000000000000000000000000153b0d1e0000000000000000000000000000000000000000000000000000000015a0ea6a0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b34f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000080000000000000000068747470733a2f2f782e636f6d2f7a6b7a6f72726f00000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db068747470733a2f2f742e6d652f7a6b7a6f72726f0000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e636500000002000000000000000000000000000000000000200000008000000000000000003181753d33fcf77ed923eafaae9b22e48b6a3770bcb1d6762e7eafe198c7be19d294f0930000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000000dfe168100000000000000000000000000000000000000000000000000000000d21220a70000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000be5959aa1d26c3046a61026bb7db0bde4e44dce7124c091947a35888f03f82194f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000005c19a95c000000000000000000000000000000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164640000000000000000000000000000000000000000000000000000000000000000fac3088ee5b8d6ce3d1b43a87e09c53e674ba2a7752156776bb0f1db2f9eae14

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