ETH Price: $3,058.63 (+2.60%)
Gas: 11 Gwei

Token

Jesse (JLM)
 

Overview

Max Total Supply

70,003,750 JLM

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
rsync-builder.eth
Balance
2,500 JLM

Value
$0.00
0x1f9090aae28b8a3dceadf281b0f12828e676c326
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:
Jesse

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 2 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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 `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.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);
}

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 : JLM.sol
// contracts/Jesse.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

contract Jesse is ERC20Capped, ERC20Burnable, Pausable {
    address payable public owner;
    uint256 public blockReward;


    constructor(uint256 cap, uint256 reward) ERC20("Jesse", "JLM") ERC20Capped(cap * (10 ** decimals())){
        owner = payable(msg.sender);
        _mint(owner, 70000000 * (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 emergencyStop() public onlyOwner {
        _pause();
    }

    function resume() public onlyOwner {
        _unpause();
    }


    function setBlockReward(uint256 reward) public onlyOwner {
        blockReward = reward * (10 ** decimals());
    }

    

    modifier onlyOwner {
        require(msg.sender == owner, "Only the owner can call this 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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[],"name":"emergencyStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resume","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"}]

60a06040523480156200001157600080fd5b5060405162002faf38038062002faf833981810160405281019062000037919062000605565b620000476200023a60201b60201c565b600a620000559190620007dc565b826200006291906200082d565b6040518060400160405280600581526020017f4a657373650000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a4c4d00000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000ae8565b508060049081620000f1919062000ae8565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c30565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff02191690831515021790555033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000201600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001d66200023a60201b60201c565b600a620001e49190620007dc565b63042c1d80620001f591906200082d565b6200024360201b60201c565b620002116200023a60201b60201c565b600a6200021f9190620007dc565b816200022c91906200082d565b600681905550505062000d9f565b60006012905090565b62000253620002ca60201b60201c565b8162000264620002d460201b60201c565b62000270919062000c52565b1115620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab9062000cdd565b60405180910390fd5b620002c68282620002de60201b60201c565b5050565b6000608051905090565b6000600254905090565b620002ee620002ca60201b60201c565b81620002ff620002d460201b60201c565b6200030b919062000c52565b11156200034f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003469062000cdd565b60405180910390fd5b6200036182826200036560201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce9062000d4f565b60405180910390fd5b620003eb60008383620004d260201b60201c565b8060026000828254620003ff919062000c52565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b2919062000d82565b60405180910390a3620004ce60008383620005a560201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200053c57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620005765750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200058d576200058c620005aa60201b60201c565b5b620005a0838383620005c060201b60201c565b505050565b505050565b620005be416006546200024360201b60201c565b565b505050565b600080fd5b6000819050919050565b620005df81620005ca565b8114620005eb57600080fd5b50565b600081519050620005ff81620005d4565b92915050565b600080604083850312156200061f576200061e620005c5565b5b60006200062f85828601620005ee565b92505060206200064285828601620005ee565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006da57808604811115620006b257620006b16200064c565b5b6001851615620006c25780820291505b8081029050620006d2856200067b565b945062000692565b94509492505050565b600082620006f55760019050620007c8565b81620007055760009050620007c8565b81600181146200071e576002811462000729576200075f565b6001915050620007c8565b60ff8411156200073e576200073d6200064c565b5b8360020a9150848211156200075857620007576200064c565b5b50620007c8565b5060208310610133831016604e8410600b8410161715620007995782820a9050838111156200079357620007926200064c565b5b620007c8565b620007a8848484600162000688565b92509050818404811115620007c257620007c16200064c565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007e982620005ca565b9150620007f683620007cf565b9250620008257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006e3565b905092915050565b60006200083a82620005ca565b91506200084783620005ca565b92508282026200085781620005ca565b915082820484148315176200087157620008706200064c565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008fa57607f821691505b60208210810362000910576200090f620008b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200097a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200093b565b6200098686836200093b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009c9620009c3620009bd84620005ca565b6200099e565b620005ca565b9050919050565b6000819050919050565b620009e583620009a8565b620009fd620009f482620009d0565b84845462000948565b825550505050565b600090565b62000a1462000a05565b62000a21818484620009da565b505050565b5b8181101562000a495762000a3d60008262000a0a565b60018101905062000a27565b5050565b601f82111562000a985762000a628162000916565b62000a6d846200092b565b8101602085101562000a7d578190505b62000a9562000a8c856200092b565b83018262000a26565b50505b505050565b600082821c905092915050565b600062000abd6000198460080262000a9d565b1980831691505092915050565b600062000ad8838362000aaa565b9150826002028217905092915050565b62000af38262000878565b67ffffffffffffffff81111562000b0f5762000b0e62000883565b5b62000b1b8254620008e1565b62000b2882828562000a4d565b600060209050601f83116001811462000b60576000841562000b4b578287015190505b62000b57858262000aca565b86555062000bc7565b601f19841662000b708662000916565b60005b8281101562000b9a5784890151825560018201915060208501945060208101905062000b73565b8683101562000bba578489015162000bb6601f89168262000aaa565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c1860158362000bcf565b915062000c258262000be0565b602082019050919050565b6000602082019050818103600083015262000c4b8162000c09565b9050919050565b600062000c5f82620005ca565b915062000c6c83620005ca565b925082820190508082111562000c875762000c866200064c565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000cc560198362000bcf565b915062000cd28262000c8d565b602082019050919050565b6000602082019050818103600083015262000cf88162000cb6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d37601f8362000bcf565b915062000d448262000cff565b602082019050919050565b6000602082019050818103600083015262000d6a8162000d28565b9050919050565b62000d7c81620005ca565b82525050565b600060208201905062000d99600083018462000d71565b92915050565b6080516121f462000dbb600039600061062c01526121f46000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806342966c68116100ad5780638da5cb5b116100715780638da5cb5b1461030d57806395d89b411461032b578063a457c2d714610349578063a9059cbb14610379578063dd62ed3e146103a95761012c565b806342966c681461027d5780635c975abb1461029957806363a599a4146102b757806370a08231146102c157806379cc6790146102f15761012c565b80631a18e707116100f45780631a18e707146101c557806323b872dd146101e1578063313ce56714610211578063355274ea1461022f578063395093511461024d5761012c565b8063046f7da21461013157806306fdde031461013b578063095ea7b3146101595780630ac168a11461018957806318160ddd146101a7575b600080fd5b6101396103d9565b005b610143610473565b6040516101509190611518565b60405180910390f35b610173600480360381019061016e91906115d3565b610505565b604051610180919061162e565b60405180910390f35b610191610528565b60405161019e9190611658565b60405180910390f35b6101af61052e565b6040516101bc9190611658565b60405180910390f35b6101df60048036038101906101da9190611673565b610538565b005b6101fb60048036038101906101f691906116a0565b6105f0565b604051610208919061162e565b60405180910390f35b61021961061f565b604051610226919061170f565b60405180910390f35b610237610628565b6040516102449190611658565b60405180910390f35b610267600480360381019061026291906115d3565b610650565b604051610274919061162e565b60405180910390f35b61029760048036038101906102929190611673565b610687565b005b6102a161069b565b6040516102ae919061162e565b60405180910390f35b6102bf6106b2565b005b6102db60048036038101906102d6919061172a565b61074c565b6040516102e89190611658565b60405180910390f35b61030b600480360381019061030691906115d3565b610794565b005b6103156107b4565b6040516103229190611778565b60405180910390f35b6103336107da565b6040516103409190611518565b60405180910390f35b610363600480360381019061035e91906115d3565b61086c565b604051610370919061162e565b60405180910390f35b610393600480360381019061038e91906115d3565b6108e3565b6040516103a0919061162e565b60405180910390f35b6103c360048036038101906103be9190611793565b610906565b6040516103d09190611658565b60405180910390f35b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046090611845565b60405180910390fd5b61047161098d565b565b60606003805461048290611894565b80601f01602080910402602001604051908101604052809291908181526020018280546104ae90611894565b80156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b6000806105106109f0565b905061051d8185856109f8565b600191505092915050565b60065481565b6000600254905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611845565b60405180910390fd5b6105d061061f565b600a6105dc9190611a27565b816105e79190611a72565b60068190555050565b6000806105fb6109f0565b9050610608858285610bc1565b610613858585610c4d565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061065b6109f0565b905061067c81858561066d8589610906565b6106779190611ab4565b6109f8565b600191505092915050565b6106986106926109f0565b82610ec3565b50565b6000600560009054906101000a900460ff16905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611845565b60405180910390fd5b61074a611090565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a6826107a06109f0565b83610bc1565b6107b08282610ec3565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546107e990611894565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611894565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000806108776109f0565b905060006108858286610906565b9050838110156108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611b5a565b60405180910390fd5b6108d782868684036109f8565b60019250505092915050565b6000806108ee6109f0565b90506108fb818585610c4d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109956110f3565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109d96109f0565b6040516109e69190611b89565b60405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90611c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90611ca8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb49190611658565b60405180910390a3505050565b6000610bcd8484610906565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c475781811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611d14565b60405180910390fd5b610c4684848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611da6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611e38565b60405180910390fd5b610d3683838361113c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611eca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa9190611658565b60405180910390a3610ebd8484846111fc565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611f5c565b60405180910390fd5b610f3e8260008361113c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90611fee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110779190611658565b60405180910390a361108b836000846111fc565b505050565b611098611201565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110dc6109f0565b6040516110e99190611b89565b60405180910390a1565b6110fb61069b565b61113a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111319061205a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111a557504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111de5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ec576111eb61124b565b5b6111f7838383611259565b505050565b505050565b61120961069b565b15611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906120c6565b60405180910390fd5b565b6112574160065461125e565b565b505050565b611266610628565b8161126f61052e565b6112799190611ab4565b11156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612132565b60405180910390fd5b6112c482826112c8565b5050565b6112d0610628565b816112d961052e565b6112e39190611ab4565b1115611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612132565b60405180910390fd5b61132e8282611332565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113989061219e565b60405180910390fd5b6113ad6000838361113c565b80600260008282546113bf9190611ab4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114709190611658565b60405180910390a3611484600083836111fc565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114c25780820151818401526020810190506114a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ea82611488565b6114f48185611493565b93506115048185602086016114a4565b61150d816114ce565b840191505092915050565b6000602082019050818103600083015261153281846114df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061156a8261153f565b9050919050565b61157a8161155f565b811461158557600080fd5b50565b60008135905061159781611571565b92915050565b6000819050919050565b6115b08161159d565b81146115bb57600080fd5b50565b6000813590506115cd816115a7565b92915050565b600080604083850312156115ea576115e961153a565b5b60006115f885828601611588565b9250506020611609858286016115be565b9150509250929050565b60008115159050919050565b61162881611613565b82525050565b6000602082019050611643600083018461161f565b92915050565b6116528161159d565b82525050565b600060208201905061166d6000830184611649565b92915050565b6000602082840312156116895761168861153a565b5b6000611697848285016115be565b91505092915050565b6000806000606084860312156116b9576116b861153a565b5b60006116c786828701611588565b93505060206116d886828701611588565b92505060406116e9868287016115be565b9150509250925092565b600060ff82169050919050565b611709816116f3565b82525050565b60006020820190506117246000830184611700565b92915050565b6000602082840312156117405761173f61153a565b5b600061174e84828501611588565b91505092915050565b60006117628261153f565b9050919050565b61177281611757565b82525050565b600060208201905061178d6000830184611769565b92915050565b600080604083850312156117aa576117a961153a565b5b60006117b885828601611588565b92505060206117c985828601611588565b9150509250929050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061182f602583611493565b915061183a826117d3565b604082019050919050565b6000602082019050818103600083015261185e81611822565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118ac57607f821691505b6020821081036118bf576118be611865565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561194b57808604811115611927576119266118c5565b5b60018516156119365780820291505b8081029050611944856118f4565b945061190b565b94509492505050565b6000826119645760019050611a20565b816119725760009050611a20565b81600181146119885760028114611992576119c1565b6001915050611a20565b60ff8411156119a4576119a36118c5565b5b8360020a9150848211156119bb576119ba6118c5565b5b50611a20565b5060208310610133831016604e8410600b84101617156119f65782820a9050838111156119f1576119f06118c5565b5b611a20565b611a038484846001611901565b92509050818404811115611a1a57611a196118c5565b5b81810290505b9392505050565b6000611a328261159d565b9150611a3d836116f3565b9250611a6a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611954565b905092915050565b6000611a7d8261159d565b9150611a888361159d565b9250828202611a968161159d565b91508282048414831517611aad57611aac6118c5565b5b5092915050565b6000611abf8261159d565b9150611aca8361159d565b9250828201905080821115611ae257611ae16118c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602583611493565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b611b838161155f565b82525050565b6000602082019050611b9e6000830184611b7a565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c00602483611493565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c92602283611493565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cfe601d83611493565b9150611d0982611cc8565b602082019050919050565b60006020820190508181036000830152611d2d81611cf1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d90602583611493565b9150611d9b82611d34565b604082019050919050565b60006020820190508181036000830152611dbf81611d83565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e22602383611493565b9150611e2d82611dc6565b604082019050919050565b60006020820190508181036000830152611e5181611e15565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611eb4602683611493565b9150611ebf82611e58565b604082019050919050565b60006020820190508181036000830152611ee381611ea7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f46602183611493565b9150611f5182611eea565b604082019050919050565b60006020820190508181036000830152611f7581611f39565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fd8602283611493565b9150611fe382611f7c565b604082019050919050565b6000602082019050818103600083015261200781611fcb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612044601483611493565b915061204f8261200e565b602082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006120b0601083611493565b91506120bb8261207a565b602082019050919050565b600060208201905081810360008301526120df816120a3565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600061211c601983611493565b9150612127826120e6565b602082019050919050565b6000602082019050818103600083015261214b8161210f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612188601f83611493565b915061219382612152565b602082019050919050565b600060208201905081810360008301526121b78161217b565b905091905056fea2646970667358221220d16dce57c191f255690bc1c8eef4e00520ff346f60a19a23a10307bc4b28acfe64736f6c634300081300330000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000004e2

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806342966c68116100ad5780638da5cb5b116100715780638da5cb5b1461030d57806395d89b411461032b578063a457c2d714610349578063a9059cbb14610379578063dd62ed3e146103a95761012c565b806342966c681461027d5780635c975abb1461029957806363a599a4146102b757806370a08231146102c157806379cc6790146102f15761012c565b80631a18e707116100f45780631a18e707146101c557806323b872dd146101e1578063313ce56714610211578063355274ea1461022f578063395093511461024d5761012c565b8063046f7da21461013157806306fdde031461013b578063095ea7b3146101595780630ac168a11461018957806318160ddd146101a7575b600080fd5b6101396103d9565b005b610143610473565b6040516101509190611518565b60405180910390f35b610173600480360381019061016e91906115d3565b610505565b604051610180919061162e565b60405180910390f35b610191610528565b60405161019e9190611658565b60405180910390f35b6101af61052e565b6040516101bc9190611658565b60405180910390f35b6101df60048036038101906101da9190611673565b610538565b005b6101fb60048036038101906101f691906116a0565b6105f0565b604051610208919061162e565b60405180910390f35b61021961061f565b604051610226919061170f565b60405180910390f35b610237610628565b6040516102449190611658565b60405180910390f35b610267600480360381019061026291906115d3565b610650565b604051610274919061162e565b60405180910390f35b61029760048036038101906102929190611673565b610687565b005b6102a161069b565b6040516102ae919061162e565b60405180910390f35b6102bf6106b2565b005b6102db60048036038101906102d6919061172a565b61074c565b6040516102e89190611658565b60405180910390f35b61030b600480360381019061030691906115d3565b610794565b005b6103156107b4565b6040516103229190611778565b60405180910390f35b6103336107da565b6040516103409190611518565b60405180910390f35b610363600480360381019061035e91906115d3565b61086c565b604051610370919061162e565b60405180910390f35b610393600480360381019061038e91906115d3565b6108e3565b6040516103a0919061162e565b60405180910390f35b6103c360048036038101906103be9190611793565b610906565b6040516103d09190611658565b60405180910390f35b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046090611845565b60405180910390fd5b61047161098d565b565b60606003805461048290611894565b80601f01602080910402602001604051908101604052809291908181526020018280546104ae90611894565b80156104fb5780601f106104d0576101008083540402835291602001916104fb565b820191906000526020600020905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b6000806105106109f0565b905061051d8185856109f8565b600191505092915050565b60065481565b6000600254905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bf90611845565b60405180910390fd5b6105d061061f565b600a6105dc9190611a27565b816105e79190611a72565b60068190555050565b6000806105fb6109f0565b9050610608858285610bc1565b610613858585610c4d565b60019150509392505050565b60006012905090565b60007f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000905090565b60008061065b6109f0565b905061067c81858561066d8589610906565b6106779190611ab4565b6109f8565b600191505092915050565b6106986106926109f0565b82610ec3565b50565b6000600560009054906101000a900460ff16905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611845565b60405180910390fd5b61074a611090565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107a6826107a06109f0565b83610bc1565b6107b08282610ec3565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546107e990611894565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611894565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000806108776109f0565b905060006108858286610906565b9050838110156108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611b5a565b60405180910390fd5b6108d782868684036109f8565b60019250505092915050565b6000806108ee6109f0565b90506108fb818585610c4d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109956110f3565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109d96109f0565b6040516109e69190611b89565b60405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90611c16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd90611ca8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb49190611658565b60405180910390a3505050565b6000610bcd8484610906565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c475781811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611d14565b60405180910390fd5b610c4684848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611da6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611e38565b60405180910390fd5b610d3683838361113c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611eca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa9190611658565b60405180910390a3610ebd8484846111fc565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611f5c565b60405180910390fd5b610f3e8260008361113c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90611fee565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110779190611658565b60405180910390a361108b836000846111fc565b505050565b611098611201565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110dc6109f0565b6040516110e99190611b89565b60405180910390a1565b6110fb61069b565b61113a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111319061205a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111a557504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111de5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ec576111eb61124b565b5b6111f7838383611259565b505050565b505050565b61120961069b565b15611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906120c6565b60405180910390fd5b565b6112574160065461125e565b565b505050565b611266610628565b8161126f61052e565b6112799190611ab4565b11156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612132565b60405180910390fd5b6112c482826112c8565b5050565b6112d0610628565b816112d961052e565b6112e39190611ab4565b1115611324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131b90612132565b60405180910390fd5b61132e8282611332565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113989061219e565b60405180910390fd5b6113ad6000838361113c565b80600260008282546113bf9190611ab4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114709190611658565b60405180910390a3611484600083836111fc565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114c25780820151818401526020810190506114a7565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ea82611488565b6114f48185611493565b93506115048185602086016114a4565b61150d816114ce565b840191505092915050565b6000602082019050818103600083015261153281846114df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061156a8261153f565b9050919050565b61157a8161155f565b811461158557600080fd5b50565b60008135905061159781611571565b92915050565b6000819050919050565b6115b08161159d565b81146115bb57600080fd5b50565b6000813590506115cd816115a7565b92915050565b600080604083850312156115ea576115e961153a565b5b60006115f885828601611588565b9250506020611609858286016115be565b9150509250929050565b60008115159050919050565b61162881611613565b82525050565b6000602082019050611643600083018461161f565b92915050565b6116528161159d565b82525050565b600060208201905061166d6000830184611649565b92915050565b6000602082840312156116895761168861153a565b5b6000611697848285016115be565b91505092915050565b6000806000606084860312156116b9576116b861153a565b5b60006116c786828701611588565b93505060206116d886828701611588565b92505060406116e9868287016115be565b9150509250925092565b600060ff82169050919050565b611709816116f3565b82525050565b60006020820190506117246000830184611700565b92915050565b6000602082840312156117405761173f61153a565b5b600061174e84828501611588565b91505092915050565b60006117628261153f565b9050919050565b61177281611757565b82525050565b600060208201905061178d6000830184611769565b92915050565b600080604083850312156117aa576117a961153a565b5b60006117b885828601611588565b92505060206117c985828601611588565b9150509250929050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061182f602583611493565b915061183a826117d3565b604082019050919050565b6000602082019050818103600083015261185e81611822565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118ac57607f821691505b6020821081036118bf576118be611865565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561194b57808604811115611927576119266118c5565b5b60018516156119365780820291505b8081029050611944856118f4565b945061190b565b94509492505050565b6000826119645760019050611a20565b816119725760009050611a20565b81600181146119885760028114611992576119c1565b6001915050611a20565b60ff8411156119a4576119a36118c5565b5b8360020a9150848211156119bb576119ba6118c5565b5b50611a20565b5060208310610133831016604e8410600b84101617156119f65782820a9050838111156119f1576119f06118c5565b5b611a20565b611a038484846001611901565b92509050818404811115611a1a57611a196118c5565b5b81810290505b9392505050565b6000611a328261159d565b9150611a3d836116f3565b9250611a6a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611954565b905092915050565b6000611a7d8261159d565b9150611a888361159d565b9250828202611a968161159d565b91508282048414831517611aad57611aac6118c5565b5b5092915050565b6000611abf8261159d565b9150611aca8361159d565b9250828201905080821115611ae257611ae16118c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602583611493565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b611b838161155f565b82525050565b6000602082019050611b9e6000830184611b7a565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c00602483611493565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c92602283611493565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cfe601d83611493565b9150611d0982611cc8565b602082019050919050565b60006020820190508181036000830152611d2d81611cf1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d90602583611493565b9150611d9b82611d34565b604082019050919050565b60006020820190508181036000830152611dbf81611d83565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e22602383611493565b9150611e2d82611dc6565b604082019050919050565b60006020820190508181036000830152611e5181611e15565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611eb4602683611493565b9150611ebf82611e58565b604082019050919050565b60006020820190508181036000830152611ee381611ea7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f46602183611493565b9150611f5182611eea565b604082019050919050565b60006020820190508181036000830152611f7581611f39565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fd8602283611493565b9150611fe382611f7c565b604082019050919050565b6000602082019050818103600083015261200781611fcb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612044601483611493565b915061204f8261200e565b602082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006120b0601083611493565b91506120bb8261207a565b602082019050919050565b600060208201905081810360008301526120df816120a3565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600061211c601983611493565b9150612127826120e6565b602082019050919050565b6000602082019050818103600083015261214b8161210f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612188601f83611493565b915061219382612152565b602082019050919050565b600060208201905081810360008301526121b78161217b565b905091905056fea2646970667358221220d16dce57c191f255690bc1c8eef4e00520ff346f60a19a23a10307bc4b28acfe64736f6c63430008130033

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

0000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000004e2

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [1] : 00000000000000000000000000000000000000000000000000000000000004e2


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.