ETH Price: $2,323.03 (+2.21%)

Token

EuphoriaToken (EUPHORIA)
 

Overview

Max Total Supply

2,135,581.013888888888888804 EUPHORIA

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,855.8125 EUPHORIA

Value
$0.00
0x7a24ca684ca996ae924b5707eb389c851dc19143
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EuphoriaToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : EuphoriaToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

contract EuphoriaToken is ERC20 ,Ownable{
    uint256 public giveawayTokensSupply = 30000 ether;
    uint256 public givawayTokensMinted;
    uint256 public maxSupply = 1271842500 ether;
    bool public paused = true;
    mapping(address => bool) controllers;

    constructor() ERC20("EuphoriaToken", "EUPHORIA"){}
    
    function giveawayTokens(address to, uint256 amount) public onlyOwner {
        require(givawayTokensMinted <= giveawayTokensSupply && giveawayTokensSupply + totalSupply() <= maxSupply, "Giveaway token supply mints exceeded");
        _mint(to, amount);
        givawayTokensMinted +=amount;
    }
    function mint(address to, uint256 amount) external {
        require(!paused, "Contract is Paused");
        require(controllers[msg.sender], "Only controllers can mint");
        require(amount + totalSupply() <= maxSupply, "Total supply exceeded" );
        _mint(to, amount);
    }
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }
    function addController(address controller) external onlyOwner {
        controllers[controller] = true;
    }

    function removeController(address controller) external onlyOwner {
        controllers[controller] = false;
    }
    function setMaxSupply(uint256 _maxSupply) public onlyOwner{
        maxSupply = _maxSupply;
    }
    function pause() public onlyOwner {
        paused = !paused;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev 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 4 of 6 : Context.sol
// 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;
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"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":[],"name":"givawayTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveawayTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayTokensSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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"}]

608060405269065a4da25d3016c000006006556b041c0b2013f5d37b809000006008556001600960006101000a81548160ff0219169083151502179055503480156200004a57600080fd5b506040518060400160405280600d81526020017f457570686f726961546f6b656e000000000000000000000000000000000000008152506040518060400160405280600881526020017f455550484f5249410000000000000000000000000000000000000000000000008152508160039080519060200190620000cf929190620001df565b508060049080519060200190620000e8929190620001df565b5050506200010b620000ff6200011160201b60201c565b6200011960201b60201c565b620002f3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ed90620002be565b90600052602060002090601f0160209004810192826200021157600085556200025d565b82601f106200022c57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025c5782518255916020019190600101906200023f565b5b5090506200026c919062000270565b5090565b5b808211156200028b57600081600090555060010162000271565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d757607f821691505b602082108103620002ed57620002ec6200028f565b5b50919050565b61248980620003036000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb0114610428578063dd62ed3e14610446578063f2fde38b14610476578063f6a74ed71461049257610173565b8063a457c2d7146103ac578063a7fc7a07146103dc578063a9059cbb146103f857610173565b806370a082311461030e578063715018a61461033e57806380184305146103485780638456cb59146103665780638da5cb5b1461037057806395d89b411461038e57610173565b8063313ce56711610130578063313ce5671461024e578063395093511461026c57806340c10f191461029c57806342966c68146102b85780635c975abb146102d45780636f8b44b0146102f257610173565b806306fdde0314610178578063095ea7b3146101965780630b1181d6146101c657806318160ddd146101e25780632228eef21461020057806323b872dd1461021e575b600080fd5b6101806104ae565b60405161018d9190611855565b60405180910390f35b6101b060048036038101906101ab9190611910565b610540565b6040516101bd919061196b565b60405180910390f35b6101e060048036038101906101db9190611910565b610563565b005b6101ea61066f565b6040516101f79190611995565b60405180910390f35b610208610679565b6040516102159190611995565b60405180910390f35b610238600480360381019061023391906119b0565b61067f565b604051610245919061196b565b60405180910390f35b6102566106ae565b6040516102639190611a1f565b60405180910390f35b61028660048036038101906102819190611910565b6106b7565b604051610293919061196b565b60405180910390f35b6102b660048036038101906102b19190611910565b6106ee565b005b6102d260048036038101906102cd9190611a3a565b61082f565b005b6102dc61083c565b6040516102e9919061196b565b60405180910390f35b61030c60048036038101906103079190611a3a565b61084f565b005b61032860048036038101906103239190611a67565b6108d5565b6040516103359190611995565b60405180910390f35b61034661091d565b005b6103506109a5565b60405161035d9190611995565b60405180910390f35b61036e6109ab565b005b610378610a53565b6040516103859190611aa3565b60405180910390f35b610396610a7d565b6040516103a39190611855565b60405180910390f35b6103c660048036038101906103c19190611910565b610b0f565b6040516103d3919061196b565b60405180910390f35b6103f660048036038101906103f19190611a67565b610b86565b005b610412600480360381019061040d9190611910565b610c5d565b60405161041f919061196b565b60405180910390f35b610430610c80565b60405161043d9190611995565b60405180910390f35b610460600480360381019061045b9190611abe565b610c86565b60405161046d9190611995565b60405180910390f35b610490600480360381019061048b9190611a67565b610d0d565b005b6104ac60048036038101906104a79190611a67565b610e04565b005b6060600380546104bd90611b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546104e990611b2d565b80156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b5050505050905090565b60008061054b610edb565b9050610558818585610ee3565b600191505092915050565b61056b610edb565b73ffffffffffffffffffffffffffffffffffffffff16610589610a53565b73ffffffffffffffffffffffffffffffffffffffff16146105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d690611baa565b60405180910390fd5b6006546007541115801561060957506008546105f961066f565b6006546106069190611bf9565b11155b610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90611cc1565b60405180910390fd5b61065282826110ac565b80600760008282546106649190611bf9565b925050819055505050565b6000600254905090565b60075481565b60008061068a610edb565b905061069785828561120b565b6106a2858585611297565b60019150509392505050565b60006012905090565b6000806106c2610edb565b90506106e38185856106d48589610c86565b6106de9190611bf9565b610ee3565b600191505092915050565b600960009054906101000a900460ff161561073e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073590611d2d565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611d99565b60405180910390fd5b6008546107d561066f565b826107e09190611bf9565b1115610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890611e05565b60405180910390fd5b61082b82826110ac565b5050565b6108393382611516565b50565b600960009054906101000a900460ff1681565b610857610edb565b73ffffffffffffffffffffffffffffffffffffffff16610875610a53565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290611baa565b60405180910390fd5b8060088190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610925610edb565b73ffffffffffffffffffffffffffffffffffffffff16610943610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090611baa565b60405180910390fd5b6109a360006116ec565b565b60065481565b6109b3610edb565b73ffffffffffffffffffffffffffffffffffffffff166109d1610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90611baa565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a8c90611b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890611b2d565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b600080610b1a610edb565b90506000610b288286610c86565b905083811015610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611e97565b60405180910390fd5b610b7a8286868403610ee3565b60019250505092915050565b610b8e610edb565b73ffffffffffffffffffffffffffffffffffffffff16610bac610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990611baa565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c68610edb565b9050610c75818585611297565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d15610edb565b73ffffffffffffffffffffffffffffffffffffffff16610d33610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090611baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90611f29565b60405180910390fd5b610e01816116ec565b50565b610e0c610edb565b73ffffffffffffffffffffffffffffffffffffffff16610e2a610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790611baa565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990611fbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb89061204d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161109f9190611995565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611112906120b9565b60405180910390fd5b611127600083836117b2565b80600260008282546111399190611bf9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190611bf9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f39190611995565b60405180910390a3611207600083836117b7565b5050565b60006112178484610c86565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112915781811015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612125565b60405180910390fd5b6112908484848403610ee3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906121b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90612249565b60405180910390fd5b6113808383836117b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd906122db565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114999190611bf9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114fd9190611995565b60405180910390a36115108484846117b7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061236d565b60405180910390fd5b611591826000836117b2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906123ff565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461166e919061241f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d39190611995565b60405180910390a36116e7836000846117b7565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117f65780820151818401526020810190506117db565b83811115611805576000848401525b50505050565b6000601f19601f8301169050919050565b6000611827826117bc565b61183181856117c7565b93506118418185602086016117d8565b61184a8161180b565b840191505092915050565b6000602082019050818103600083015261186f818461181c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118a78261187c565b9050919050565b6118b78161189c565b81146118c257600080fd5b50565b6000813590506118d4816118ae565b92915050565b6000819050919050565b6118ed816118da565b81146118f857600080fd5b50565b60008135905061190a816118e4565b92915050565b6000806040838503121561192757611926611877565b5b6000611935858286016118c5565b9250506020611946858286016118fb565b9150509250929050565b60008115159050919050565b61196581611950565b82525050565b6000602082019050611980600083018461195c565b92915050565b61198f816118da565b82525050565b60006020820190506119aa6000830184611986565b92915050565b6000806000606084860312156119c9576119c8611877565b5b60006119d7868287016118c5565b93505060206119e8868287016118c5565b92505060406119f9868287016118fb565b9150509250925092565b600060ff82169050919050565b611a1981611a03565b82525050565b6000602082019050611a346000830184611a10565b92915050565b600060208284031215611a5057611a4f611877565b5b6000611a5e848285016118fb565b91505092915050565b600060208284031215611a7d57611a7c611877565b5b6000611a8b848285016118c5565b91505092915050565b611a9d8161189c565b82525050565b6000602082019050611ab86000830184611a94565b92915050565b60008060408385031215611ad557611ad4611877565b5b6000611ae3858286016118c5565b9250506020611af4858286016118c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4557607f821691505b602082108103611b5857611b57611afe565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b946020836117c7565b9150611b9f82611b5e565b602082019050919050565b60006020820190508181036000830152611bc381611b87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c04826118da565b9150611c0f836118da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c4457611c43611bca565b5b828201905092915050565b7f476976656177617920746f6b656e20737570706c79206d696e7473206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000611cab6024836117c7565b9150611cb682611c4f565b604082019050919050565b60006020820190508181036000830152611cda81611c9e565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000611d176012836117c7565b9150611d2282611ce1565b602082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611d836019836117c7565b9150611d8e82611d4d565b602082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b7f546f74616c20737570706c792065786365656465640000000000000000000000600082015250565b6000611def6015836117c7565b9150611dfa82611db9565b602082019050919050565b60006020820190508181036000830152611e1e81611de2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e816025836117c7565b9150611e8c82611e25565b604082019050919050565b60006020820190508181036000830152611eb081611e74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f136026836117c7565b9150611f1e82611eb7565b604082019050919050565b60006020820190508181036000830152611f4281611f06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fa56024836117c7565b9150611fb082611f49565b604082019050919050565b60006020820190508181036000830152611fd481611f98565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120376022836117c7565b915061204282611fdb565b604082019050919050565b600060208201905081810360008301526120668161202a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006120a3601f836117c7565b91506120ae8261206d565b602082019050919050565b600060208201905081810360008301526120d281612096565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061210f601d836117c7565b915061211a826120d9565b602082019050919050565b6000602082019050818103600083015261213e81612102565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121a16025836117c7565b91506121ac82612145565b604082019050919050565b600060208201905081810360008301526121d081612194565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122336023836117c7565b915061223e826121d7565b604082019050919050565b6000602082019050818103600083015261226281612226565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122c56026836117c7565b91506122d082612269565b604082019050919050565b600060208201905081810360008301526122f4816122b8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123576021836117c7565b9150612362826122fb565b604082019050919050565b600060208201905081810360008301526123868161234a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123e96022836117c7565b91506123f48261238d565b604082019050919050565b60006020820190508181036000830152612418816123dc565b9050919050565b600061242a826118da565b9150612435836118da565b92508282101561244857612447611bca565b5b82820390509291505056fea2646970667358221220eb66c41dff249579ca3be8d9b2a7fbbae23dda538e066c2623f22c22e9ac75c964736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a457c2d711610097578063d5abeb0111610071578063d5abeb0114610428578063dd62ed3e14610446578063f2fde38b14610476578063f6a74ed71461049257610173565b8063a457c2d7146103ac578063a7fc7a07146103dc578063a9059cbb146103f857610173565b806370a082311461030e578063715018a61461033e57806380184305146103485780638456cb59146103665780638da5cb5b1461037057806395d89b411461038e57610173565b8063313ce56711610130578063313ce5671461024e578063395093511461026c57806340c10f191461029c57806342966c68146102b85780635c975abb146102d45780636f8b44b0146102f257610173565b806306fdde0314610178578063095ea7b3146101965780630b1181d6146101c657806318160ddd146101e25780632228eef21461020057806323b872dd1461021e575b600080fd5b6101806104ae565b60405161018d9190611855565b60405180910390f35b6101b060048036038101906101ab9190611910565b610540565b6040516101bd919061196b565b60405180910390f35b6101e060048036038101906101db9190611910565b610563565b005b6101ea61066f565b6040516101f79190611995565b60405180910390f35b610208610679565b6040516102159190611995565b60405180910390f35b610238600480360381019061023391906119b0565b61067f565b604051610245919061196b565b60405180910390f35b6102566106ae565b6040516102639190611a1f565b60405180910390f35b61028660048036038101906102819190611910565b6106b7565b604051610293919061196b565b60405180910390f35b6102b660048036038101906102b19190611910565b6106ee565b005b6102d260048036038101906102cd9190611a3a565b61082f565b005b6102dc61083c565b6040516102e9919061196b565b60405180910390f35b61030c60048036038101906103079190611a3a565b61084f565b005b61032860048036038101906103239190611a67565b6108d5565b6040516103359190611995565b60405180910390f35b61034661091d565b005b6103506109a5565b60405161035d9190611995565b60405180910390f35b61036e6109ab565b005b610378610a53565b6040516103859190611aa3565b60405180910390f35b610396610a7d565b6040516103a39190611855565b60405180910390f35b6103c660048036038101906103c19190611910565b610b0f565b6040516103d3919061196b565b60405180910390f35b6103f660048036038101906103f19190611a67565b610b86565b005b610412600480360381019061040d9190611910565b610c5d565b60405161041f919061196b565b60405180910390f35b610430610c80565b60405161043d9190611995565b60405180910390f35b610460600480360381019061045b9190611abe565b610c86565b60405161046d9190611995565b60405180910390f35b610490600480360381019061048b9190611a67565b610d0d565b005b6104ac60048036038101906104a79190611a67565b610e04565b005b6060600380546104bd90611b2d565b80601f01602080910402602001604051908101604052809291908181526020018280546104e990611b2d565b80156105365780601f1061050b57610100808354040283529160200191610536565b820191906000526020600020905b81548152906001019060200180831161051957829003601f168201915b5050505050905090565b60008061054b610edb565b9050610558818585610ee3565b600191505092915050565b61056b610edb565b73ffffffffffffffffffffffffffffffffffffffff16610589610a53565b73ffffffffffffffffffffffffffffffffffffffff16146105df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d690611baa565b60405180910390fd5b6006546007541115801561060957506008546105f961066f565b6006546106069190611bf9565b11155b610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90611cc1565b60405180910390fd5b61065282826110ac565b80600760008282546106649190611bf9565b925050819055505050565b6000600254905090565b60075481565b60008061068a610edb565b905061069785828561120b565b6106a2858585611297565b60019150509392505050565b60006012905090565b6000806106c2610edb565b90506106e38185856106d48589610c86565b6106de9190611bf9565b610ee3565b600191505092915050565b600960009054906101000a900460ff161561073e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073590611d2d565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190611d99565b60405180910390fd5b6008546107d561066f565b826107e09190611bf9565b1115610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890611e05565b60405180910390fd5b61082b82826110ac565b5050565b6108393382611516565b50565b600960009054906101000a900460ff1681565b610857610edb565b73ffffffffffffffffffffffffffffffffffffffff16610875610a53565b73ffffffffffffffffffffffffffffffffffffffff16146108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290611baa565b60405180910390fd5b8060088190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610925610edb565b73ffffffffffffffffffffffffffffffffffffffff16610943610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090611baa565b60405180910390fd5b6109a360006116ec565b565b60065481565b6109b3610edb565b73ffffffffffffffffffffffffffffffffffffffff166109d1610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90611baa565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a8c90611b2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890611b2d565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b600080610b1a610edb565b90506000610b288286610c86565b905083811015610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611e97565b60405180910390fd5b610b7a8286868403610ee3565b60019250505092915050565b610b8e610edb565b73ffffffffffffffffffffffffffffffffffffffff16610bac610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990611baa565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c68610edb565b9050610c75818585611297565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d15610edb565b73ffffffffffffffffffffffffffffffffffffffff16610d33610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090611baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90611f29565b60405180910390fd5b610e01816116ec565b50565b610e0c610edb565b73ffffffffffffffffffffffffffffffffffffffff16610e2a610a53565b73ffffffffffffffffffffffffffffffffffffffff1614610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790611baa565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990611fbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb89061204d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161109f9190611995565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611112906120b9565b60405180910390fd5b611127600083836117b2565b80600260008282546111399190611bf9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190611bf9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111f39190611995565b60405180910390a3611207600083836117b7565b5050565b60006112178484610c86565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112915781811015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90612125565b60405180910390fd5b6112908484848403610ee3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd906121b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90612249565b60405180910390fd5b6113808383836117b2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd906122db565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114999190611bf9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114fd9190611995565b60405180910390a36115108484846117b7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061236d565b60405180910390fd5b611591826000836117b2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e906123ff565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461166e919061241f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116d39190611995565b60405180910390a36116e7836000846117b7565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117f65780820151818401526020810190506117db565b83811115611805576000848401525b50505050565b6000601f19601f8301169050919050565b6000611827826117bc565b61183181856117c7565b93506118418185602086016117d8565b61184a8161180b565b840191505092915050565b6000602082019050818103600083015261186f818461181c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118a78261187c565b9050919050565b6118b78161189c565b81146118c257600080fd5b50565b6000813590506118d4816118ae565b92915050565b6000819050919050565b6118ed816118da565b81146118f857600080fd5b50565b60008135905061190a816118e4565b92915050565b6000806040838503121561192757611926611877565b5b6000611935858286016118c5565b9250506020611946858286016118fb565b9150509250929050565b60008115159050919050565b61196581611950565b82525050565b6000602082019050611980600083018461195c565b92915050565b61198f816118da565b82525050565b60006020820190506119aa6000830184611986565b92915050565b6000806000606084860312156119c9576119c8611877565b5b60006119d7868287016118c5565b93505060206119e8868287016118c5565b92505060406119f9868287016118fb565b9150509250925092565b600060ff82169050919050565b611a1981611a03565b82525050565b6000602082019050611a346000830184611a10565b92915050565b600060208284031215611a5057611a4f611877565b5b6000611a5e848285016118fb565b91505092915050565b600060208284031215611a7d57611a7c611877565b5b6000611a8b848285016118c5565b91505092915050565b611a9d8161189c565b82525050565b6000602082019050611ab86000830184611a94565b92915050565b60008060408385031215611ad557611ad4611877565b5b6000611ae3858286016118c5565b9250506020611af4858286016118c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4557607f821691505b602082108103611b5857611b57611afe565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b946020836117c7565b9150611b9f82611b5e565b602082019050919050565b60006020820190508181036000830152611bc381611b87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c04826118da565b9150611c0f836118da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c4457611c43611bca565b5b828201905092915050565b7f476976656177617920746f6b656e20737570706c79206d696e7473206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000611cab6024836117c7565b9150611cb682611c4f565b604082019050919050565b60006020820190508181036000830152611cda81611c9e565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000611d176012836117c7565b9150611d2282611ce1565b602082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611d836019836117c7565b9150611d8e82611d4d565b602082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b7f546f74616c20737570706c792065786365656465640000000000000000000000600082015250565b6000611def6015836117c7565b9150611dfa82611db9565b602082019050919050565b60006020820190508181036000830152611e1e81611de2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e816025836117c7565b9150611e8c82611e25565b604082019050919050565b60006020820190508181036000830152611eb081611e74565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f136026836117c7565b9150611f1e82611eb7565b604082019050919050565b60006020820190508181036000830152611f4281611f06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fa56024836117c7565b9150611fb082611f49565b604082019050919050565b60006020820190508181036000830152611fd481611f98565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120376022836117c7565b915061204282611fdb565b604082019050919050565b600060208201905081810360008301526120668161202a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006120a3601f836117c7565b91506120ae8261206d565b602082019050919050565b600060208201905081810360008301526120d281612096565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061210f601d836117c7565b915061211a826120d9565b602082019050919050565b6000602082019050818103600083015261213e81612102565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121a16025836117c7565b91506121ac82612145565b604082019050919050565b600060208201905081810360008301526121d081612194565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122336023836117c7565b915061223e826121d7565b604082019050919050565b6000602082019050818103600083015261226281612226565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122c56026836117c7565b91506122d082612269565b604082019050919050565b600060208201905081810360008301526122f4816122b8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123576021836117c7565b9150612362826122fb565b604082019050919050565b600060208201905081810360008301526123868161234a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123e96022836117c7565b91506123f48261238d565b604082019050919050565b60006020820190508181036000830152612418816123dc565b9050919050565b600061242a826118da565b9150612435836118da565b92508282101561244857612447611bca565b5b82820390509291505056fea2646970667358221220eb66c41dff249579ca3be8d9b2a7fbbae23dda538e066c2623f22c22e9ac75c964736f6c634300080d0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.