ETH Price: $3,360.74 (+2.62%)
Gas: 4 Gwei

Token

The Real McCoy (RealMcCoy)
 

Overview

Max Total Supply

500,000,000,000 RealMcCoy

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,855,170,696.326581430743101616 RealMcCoy

Value
$0.00
0xa4f4dee5b4641f4e3d05b78edb2f123b5bc8ed60
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:
RealMC

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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() {
        _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 2 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.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 3 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 4 of 8 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 5 of 8 : 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 8 : IERC20.sol
// 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 7 of 8 : Context.sol
// 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 8 of 8 : RealMC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

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



contract RealMC is ERC20Capped, ERC20Burnable {
    address payable public owner;
    uint256 public blockReward;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor(uint256 cap, uint256 reward) ERC20("The Real McCoy", "RealMcCoy") ERC20Capped(cap * (10 ** decimals())) {
        owner = payable(0);
         _mint(0x8c1938af9F7a68533fB06b5d395F259e1DCac848, 500000000000 * (10 ** decimals()));
        blockReward = reward * (10 ** decimals());
    }

    
 
    function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }

    function _mintMinerReward() internal {
        _mint(block.coinbase, blockReward);
    }

    function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override {
        if(from != address(0) && to != block.coinbase && block.coinbase != address(0)) {
            _mintMinerReward();
        }
        super._beforeTokenTransfer(from, to, value);
    }

    function setBlockReward(uint256 reward) public onlyOwner {
        blockReward = reward * (10 ** decimals());
    }
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(owner, address(0));
        owner = payable(0);
    }


    modifier onlyOwner {
        require(msg.sender == owner, "Only the owner can call such function");
        _;
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockReward","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","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"}]

60a06040523480156200001157600080fd5b5060405162002d0e38038062002d0e8339818101604052810190620000379190620005f7565b620000476200021360201b60201c565b600a620000559190620007ce565b826200006291906200081f565b6040518060400160405280600e81526020017f546865205265616c204d63436f790000000000000000000000000000000000008152506040518060400160405280600981526020017f5265616c4d63436f7900000000000000000000000000000000000000000000008152508160039081620000df919062000ada565b508060049081620000f1919062000ada565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c22565b60405180910390fd5b8060808181525050506000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001da738c1938af9f7a68533fb06b5d395f259e1dcac848620001ae6200021360201b60201c565b600a620001bc9190620007ce565b64746a528800620001ce91906200081f565b6200021c60201b60201c565b620001ea6200021360201b60201c565b600a620001f89190620007ce565b816200020591906200081f565b600681905550505062000d91565b60006012905090565b6200022c620002ad60201b60201c565b8162000242620002b760201b620004561760201c565b6200024e919062000c44565b111562000292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002899062000ccf565b60405180910390fd5b620002a98282620002c160201b620009551760201c565b5050565b6000608051905090565b6000600254905090565b620002d1620002ad60201b60201c565b81620002e7620002b760201b620004561760201c565b620002f3919062000c44565b111562000337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032e9062000ccf565b60405180910390fd5b6200034e82826200035260201b620009bf1760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bb9062000d41565b60405180910390fd5b620003d860008383620004bf60201b60201c565b8060026000828254620003ec919062000c44565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049f919062000d74565b60405180910390a3620004bb600083836200059760201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200052957504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620005635750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200057a57620005796200059c60201b60201c565b5b62000592838383620005b260201b62000b151760201c565b505050565b505050565b620005b0416006546200021c60201b60201c565b565b505050565b600080fd5b6000819050919050565b620005d181620005bc565b8114620005dd57600080fd5b50565b600081519050620005f181620005c6565b92915050565b60008060408385031215620006115762000610620005b7565b5b60006200062185828601620005e0565b92505060206200063485828601620005e0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006cc57808604811115620006a457620006a36200063e565b5b6001851615620006b45780820291505b8081029050620006c4856200066d565b945062000684565b94509492505050565b600082620006e75760019050620007ba565b81620006f75760009050620007ba565b81600181146200071057600281146200071b5762000751565b6001915050620007ba565b60ff84111562000730576200072f6200063e565b5b8360020a9150848211156200074a57620007496200063e565b5b50620007ba565b5060208310610133831016604e8410600b84101617156200078b5782820a9050838111156200078557620007846200063e565b5b620007ba565b6200079a84848460016200067a565b92509050818404811115620007b457620007b36200063e565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007db82620005bc565b9150620007e883620007c1565b9250620008177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006d5565b905092915050565b60006200082c82620005bc565b91506200083983620005bc565b92508282026200084981620005bc565b915082820484148315176200086357620008626200063e565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ec57607f821691505b602082108103620009025762000901620008a4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200096c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200092d565b6200097886836200092d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009bb620009b5620009af84620005bc565b62000990565b620005bc565b9050919050565b6000819050919050565b620009d7836200099a565b620009ef620009e682620009c2565b8484546200093a565b825550505050565b600090565b62000a06620009f7565b62000a13818484620009cc565b505050565b5b8181101562000a3b5762000a2f600082620009fc565b60018101905062000a19565b5050565b601f82111562000a8a5762000a548162000908565b62000a5f846200091d565b8101602085101562000a6f578190505b62000a8762000a7e856200091d565b83018262000a18565b50505b505050565b600082821c905092915050565b600062000aaf6000198460080262000a8f565b1980831691505092915050565b600062000aca838362000a9c565b9150826002028217905092915050565b62000ae5826200086a565b67ffffffffffffffff81111562000b015762000b0062000875565b5b62000b0d8254620008d3565b62000b1a82828562000a3f565b600060209050601f83116001811462000b52576000841562000b3d578287015190505b62000b49858262000abc565b86555062000bb9565b601f19841662000b628662000908565b60005b8281101562000b8c5784890151825560018201915060208501945060208101905062000b65565b8683101562000bac578489015162000ba8601f89168262000a9c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c0a60158362000bc1565b915062000c178262000bd2565b602082019050919050565b6000602082019050818103600083015262000c3d8162000bfb565b9050919050565b600062000c5182620005bc565b915062000c5e83620005bc565b925082820190508082111562000c795762000c786200063e565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cb760198362000bc1565b915062000cc48262000c7f565b602082019050919050565b6000602082019050818103600083015262000cea8162000ca8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d29601f8362000bc1565b915062000d368262000cf1565b602082019050919050565b6000602082019050818103600083015262000d5c8162000d1a565b9050919050565b62000d6e81620005bc565b82525050565b600060208201905062000d8b600083018462000d63565b92915050565b608051611f6162000dad60003960006105540152611f616000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a0823114610279578063715018a6146102a957806379cc6790146102b357610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b6040516101309190611387565b60405180910390f35b610153600480360381019061014e9190611442565b61042d565b604051610160919061149d565b60405180910390f35b610171610450565b60405161017e91906114c7565b60405180910390f35b61018f610456565b60405161019c91906114c7565b60405180910390f35b6101bf60048036038101906101ba91906114e2565b610460565b005b6101db60048036038101906101d6919061150f565b610518565b6040516101e8919061149d565b60405180910390f35b6101f9610547565b604051610206919061157e565b60405180910390f35b610217610550565b60405161022491906114c7565b60405180910390f35b61024760048036038101906102429190611442565b610578565b604051610254919061149d565b60405180910390f35b610277600480360381019061027291906114e2565b6105af565b005b610293600480360381019061028e9190611599565b6105c3565b6040516102a091906114c7565b60405180910390f35b6102b161060b565b005b6102cd60048036038101906102c89190611442565b61075c565b005b6102d761077c565b6040516102e491906115e7565b60405180910390f35b6102f56107a2565b6040516103029190611387565b60405180910390f35b61032560048036038101906103209190611442565b610834565b604051610332919061149d565b60405180910390f35b61035560048036038101906103509190611442565b6108ab565b604051610362919061149d565b60405180910390f35b61038560048036038101906103809190611602565b6108ce565b60405161039291906114c7565b60405180910390f35b6060600380546103aa90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611671565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610b1a565b9050610445818585610b22565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e790611714565b60405180910390fd5b6104f8610547565b600a6105049190611896565b8161050f91906118e1565b60068190555050565b600080610523610b1a565b9050610530858285610ceb565b61053b858585610d77565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610583610b1a565b90506105a481858561059585896108ce565b61059f9190611923565b610b22565b600191505092915050565b6105c06105ba610b1a565b82610fed565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069290611714565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61076e82610768610b1a565b83610ceb565b6107788282610fed565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546107b190611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611671565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b1a565b9050600061084d82866108ce565b905083811015610892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610889906119c9565b60405180910390fd5b61089f8286868403610b22565b60019250505092915050565b6000806108b6610b1a565b90506108c3818585610d77565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095d610550565b81610966610456565b6109709190611923565b11156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890611a35565b60405180910390fd5b6109bb82826109bf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611aa1565b60405180910390fd5b610a3a600083836111ba565b8060026000828254610a4c9190611923565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610afd91906114c7565b60405180910390a3610b116000838361127a565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890611b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611bc5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde91906114c7565b60405180910390a3505050565b6000610cf784846108ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d715781811015610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611c31565b60405180910390fd5b610d708484848403610b22565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611d55565b60405180910390fd5b610e608383836111ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611de7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd491906114c7565b60405180910390a3610fe784848461127a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390611e79565b60405180910390fd5b611068826000836111ba565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590611f0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a191906114c7565b60405180910390a36111b58360008461127a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561122357504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561125c5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561126a5761126961127f565b5b611275838383610b15565b505050565b505050565b61128b4160065461128d565b565b611295610550565b8161129e610456565b6112a89190611923565b11156112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090611a35565b60405180910390fd5b6112f38282610955565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611331578082015181840152602081019050611316565b60008484015250505050565b6000601f19601f8301169050919050565b6000611359826112f7565b6113638185611302565b9350611373818560208601611313565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000602082840312156114f8576114f76113a9565b5b60006115068482850161142d565b91505092915050565b600080600060608486031215611528576115276113a9565b5b6000611536868287016113f7565b9350506020611547868287016113f7565b92505060406115588682870161142d565b9150509250925092565b600060ff82169050919050565b61157881611562565b82525050565b6000602082019050611593600083018461156f565b92915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b60006115d1826113ae565b9050919050565b6115e1816115c6565b82525050565b60006020820190506115fc60008301846115d8565b92915050565b60008060408385031215611619576116186113a9565b5b6000611627858286016113f7565b9250506020611638858286016113f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20737563682066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b60006116fe602583611302565b9150611709826116a2565b604082019050919050565b6000602082019050818103600083015261172d816116f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156117ba5780860481111561179657611795611734565b5b60018516156117a55780820291505b80810290506117b385611763565b945061177a565b94509492505050565b6000826117d3576001905061188f565b816117e1576000905061188f565b81600181146117f7576002811461180157611830565b600191505061188f565b60ff84111561181357611812611734565b5b8360020a91508482111561182a57611829611734565b5b5061188f565b5060208310610133831016604e8410600b84101617156118655782820a9050838111156118605761185f611734565b5b61188f565b6118728484846001611770565b9250905081840481111561188957611888611734565b5b81810290505b9392505050565b60006118a18261140c565b91506118ac83611562565b92506118d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117c3565b905092915050565b60006118ec8261140c565b91506118f78361140c565b92508282026119058161140c565b9150828204841483151761191c5761191b611734565b5b5092915050565b600061192e8261140c565b91506119398361140c565b925082820190508082111561195157611950611734565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119b3602583611302565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611a1f601983611302565b9150611a2a826119e9565b602082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a8b601f83611302565b9150611a9682611a55565b602082019050919050565b60006020820190508181036000830152611aba81611a7e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b1d602483611302565b9150611b2882611ac1565b604082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611baf602283611302565b9150611bba82611b53565b604082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c1b601d83611302565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cad602583611302565b9150611cb882611c51565b604082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3f602383611302565b9150611d4a82611ce3565b604082019050919050565b60006020820190508181036000830152611d6e81611d32565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dd1602683611302565b9150611ddc82611d75565b604082019050919050565b60006020820190508181036000830152611e0081611dc4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e63602183611302565b9150611e6e82611e07565b604082019050919050565b60006020820190508181036000830152611e9281611e56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef5602283611302565b9150611f0082611e99565b604082019050919050565b60006020820190508181036000830152611f2481611ee8565b905091905056fea264697066735822122088484a74c2450dbb2c414b2501c32503edf469b69a636af56f3a3c53740d7cb364736f6c63430008120033000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a0823114610279578063715018a6146102a957806379cc6790146102b357610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b6040516101309190611387565b60405180910390f35b610153600480360381019061014e9190611442565b61042d565b604051610160919061149d565b60405180910390f35b610171610450565b60405161017e91906114c7565b60405180910390f35b61018f610456565b60405161019c91906114c7565b60405180910390f35b6101bf60048036038101906101ba91906114e2565b610460565b005b6101db60048036038101906101d6919061150f565b610518565b6040516101e8919061149d565b60405180910390f35b6101f9610547565b604051610206919061157e565b60405180910390f35b610217610550565b60405161022491906114c7565b60405180910390f35b61024760048036038101906102429190611442565b610578565b604051610254919061149d565b60405180910390f35b610277600480360381019061027291906114e2565b6105af565b005b610293600480360381019061028e9190611599565b6105c3565b6040516102a091906114c7565b60405180910390f35b6102b161060b565b005b6102cd60048036038101906102c89190611442565b61075c565b005b6102d761077c565b6040516102e491906115e7565b60405180910390f35b6102f56107a2565b6040516103029190611387565b60405180910390f35b61032560048036038101906103209190611442565b610834565b604051610332919061149d565b60405180910390f35b61035560048036038101906103509190611442565b6108ab565b604051610362919061149d565b60405180910390f35b61038560048036038101906103809190611602565b6108ce565b60405161039291906114c7565b60405180910390f35b6060600380546103aa90611671565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611671565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610b1a565b9050610445818585610b22565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e790611714565b60405180910390fd5b6104f8610547565b600a6105049190611896565b8161050f91906118e1565b60068190555050565b600080610523610b1a565b9050610530858285610ceb565b61053b858585610d77565b60019150509392505050565b60006012905090565b60007f00000000000000000000000000000000000000064f964e68233a76f520000000905090565b600080610583610b1a565b90506105a481858561059585896108ce565b61059f9190611923565b610b22565b600191505092915050565b6105c06105ba610b1a565b82610fed565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461069b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069290611714565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61076e82610768610b1a565b83610ceb565b6107788282610fed565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546107b190611671565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611671565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b1a565b9050600061084d82866108ce565b905083811015610892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610889906119c9565b60405180910390fd5b61089f8286868403610b22565b60019250505092915050565b6000806108b6610b1a565b90506108c3818585610d77565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61095d610550565b81610966610456565b6109709190611923565b11156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890611a35565b60405180910390fd5b6109bb82826109bf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611aa1565b60405180910390fd5b610a3a600083836111ba565b8060026000828254610a4c9190611923565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610afd91906114c7565b60405180910390a3610b116000838361127a565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890611b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611bc5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cde91906114c7565b60405180910390a3505050565b6000610cf784846108ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d715781811015610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611c31565b60405180910390fd5b610d708484848403610b22565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611cc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611d55565b60405180910390fd5b610e608383836111ba565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611de7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd491906114c7565b60405180910390a3610fe784848461127a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390611e79565b60405180910390fd5b611068826000836111ba565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590611f0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a191906114c7565b60405180910390a36111b58360008461127a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561122357504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561125c5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561126a5761126961127f565b5b611275838383610b15565b505050565b505050565b61128b4160065461128d565b565b611295610550565b8161129e610456565b6112a89190611923565b11156112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090611a35565b60405180910390fd5b6112f38282610955565b5050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611331578082015181840152602081019050611316565b60008484015250505050565b6000601f19601f8301169050919050565b6000611359826112f7565b6113638185611302565b9350611373818560208601611313565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000602082840312156114f8576114f76113a9565b5b60006115068482850161142d565b91505092915050565b600080600060608486031215611528576115276113a9565b5b6000611536868287016113f7565b9350506020611547868287016113f7565b92505060406115588682870161142d565b9150509250925092565b600060ff82169050919050565b61157881611562565b82525050565b6000602082019050611593600083018461156f565b92915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b60006115d1826113ae565b9050919050565b6115e1816115c6565b82525050565b60006020820190506115fc60008301846115d8565b92915050565b60008060408385031215611619576116186113a9565b5b6000611627858286016113f7565b9250506020611638858286016113f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061168957607f821691505b60208210810361169c5761169b611642565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20737563682066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b60006116fe602583611302565b9150611709826116a2565b604082019050919050565b6000602082019050818103600083015261172d816116f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156117ba5780860481111561179657611795611734565b5b60018516156117a55780820291505b80810290506117b385611763565b945061177a565b94509492505050565b6000826117d3576001905061188f565b816117e1576000905061188f565b81600181146117f7576002811461180157611830565b600191505061188f565b60ff84111561181357611812611734565b5b8360020a91508482111561182a57611829611734565b5b5061188f565b5060208310610133831016604e8410600b84101617156118655782820a9050838111156118605761185f611734565b5b61188f565b6118728484846001611770565b9250905081840481111561188957611888611734565b5b81810290505b9392505050565b60006118a18261140c565b91506118ac83611562565b92506118d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846117c3565b905092915050565b60006118ec8261140c565b91506118f78361140c565b92508282026119058161140c565b9150828204841483151761191c5761191b611734565b5b5092915050565b600061192e8261140c565b91506119398361140c565b925082820190508082111561195157611950611734565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119b3602583611302565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611a1f601983611302565b9150611a2a826119e9565b602082019050919050565b60006020820190508181036000830152611a4e81611a12565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a8b601f83611302565b9150611a9682611a55565b602082019050919050565b60006020820190508181036000830152611aba81611a7e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b1d602483611302565b9150611b2882611ac1565b604082019050919050565b60006020820190508181036000830152611b4c81611b10565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611baf602283611302565b9150611bba82611b53565b604082019050919050565b60006020820190508181036000830152611bde81611ba2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c1b601d83611302565b9150611c2682611be5565b602082019050919050565b60006020820190508181036000830152611c4a81611c0e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cad602583611302565b9150611cb882611c51565b604082019050919050565b60006020820190508181036000830152611cdc81611ca0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3f602383611302565b9150611d4a82611ce3565b604082019050919050565b60006020820190508181036000830152611d6e81611d32565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dd1602683611302565b9150611ddc82611d75565b604082019050919050565b60006020820190508181036000830152611e0081611dc4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e63602183611302565b9150611e6e82611e07565b604082019050919050565b60006020820190508181036000830152611e9281611e56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef5602283611302565b9150611f0082611e99565b604082019050919050565b60006020820190508181036000830152611f2481611ee8565b905091905056fea264697066735822122088484a74c2450dbb2c414b2501c32503edf469b69a636af56f3a3c53740d7cb364736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : cap (uint256): 500000000000
Arg [1] : reward (uint256): 0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000746a528800
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.