ETH Price: $2,981.04 (-3.96%)
Gas: 2 Gwei

Token

ETH2SOCKS (ETH2SOCKS)
 

Overview

Max Total Supply

288.935164947343868262 ETH2SOCKS

Holders

76 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10.60782195702460964 ETH2SOCKS

Value
$0.00
0xa5ad90913ae048f6a741dc53af2d57f910312453
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ETH2SOCKS token is a redeemable token that gives token holders a real pair of socks with a limited quantity of 500 socks.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ETH2SOCKS

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : ETH2SOCKS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ETH2SOCKS is ERC20Capped, Pausable, Ownable {
    constructor() ERC20("ETH2SOCKS", "ETH2SOCKS") ERC20Capped(500 * 10 ** decimals()) {
        ERC20._mint(msg.sender, 500 * 10 ** decimals());
    }

    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);
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 defaut 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 { }
}

File 3 of 9 : ERC20Capped.sol
// SPDX-License-Identifier: MIT

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 immutable private _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 4 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 5 of 9 : Pausable.sol
// SPDX-License-Identifier: MIT

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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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 6 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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);
}

File 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60a06040523480156200001157600080fd5b50620000226200024360201b60201c565b600a620000309190620006c7565b6101f46200003f919062000804565b6040518060400160405280600981526020017f45544832534f434b5300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f45544832534f434b5300000000000000000000000000000000000000000000008152508160039080519060200190620000c392919062000445565b508060049080519060200190620000dc92919062000445565b5050506000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c906200057b565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff02191690831515021790555060006200015b6200024c60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200023d336200020f6200024360201b60201c565b600a6200021d9190620006c7565b6101f46200022c919062000804565b6200025460201b62000d951760201c565b62000998565b60006012905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be90620005bf565b60405180910390fd5b620002db60008383620003b960201b60201c565b8060026000828254620002ef91906200060f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034691906200060f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ad9190620005e1565b60405180910390a35050565b620003c96200042960201b60201c565b156200040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000403906200059d565b60405180910390fd5b620004248383836200044060201b62000ee91760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b82805462000453906200087c565b90600052602060002090601f016020900481019282620004775760008555620004c3565b82601f106200049257805160ff1916838001178555620004c3565b82800160010185558215620004c3579182015b82811115620004c2578251825591602001919060010190620004a5565b5b509050620004d29190620004d6565b5090565b5b80821115620004f1576000816000905550600101620004d7565b5090565b600062000504601583620005fe565b915062000511826200091d565b602082019050919050565b60006200052b601083620005fe565b9150620005388262000946565b602082019050919050565b600062000552601f83620005fe565b91506200055f826200096f565b602082019050919050565b620005758162000865565b82525050565b600060208201905081810360008301526200059681620004f5565b9050919050565b60006020820190508181036000830152620005b8816200051c565b9050919050565b60006020820190508181036000830152620005da8162000543565b9050919050565b6000602082019050620005f860008301846200056a565b92915050565b600082825260208201905092915050565b60006200061c8262000865565b9150620006298362000865565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006615762000660620008b2565b5b828201905092915050565b6000808291508390505b6001851115620006be57808604811115620006965762000695620008b2565b5b6001851615620006a65780820291505b8081029050620006b68562000910565b945062000676565b94509492505050565b6000620006d48262000865565b9150620006e1836200086f565b9250620007107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000718565b905092915050565b6000826200072a5760019050620007fd565b816200073a5760009050620007fd565b81600181146200075357600281146200075e5762000794565b6001915050620007fd565b60ff841115620007735762000772620008b2565b5b8360020a9150848211156200078d576200078c620008b2565b5b50620007fd565b5060208310610133831016604e8410600b8410161715620007ce5782820a905083811115620007c857620007c7620008b2565b5b620007fd565b620007dd84848460016200066c565b92509050818404811115620007f757620007f6620008b2565b5b81810290505b9392505050565b6000620008118262000865565b91506200081e8362000865565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200085a5762000859620008b2565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200089557607f821691505b60208210811415620008ac57620008ab620008e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b608051612320620009b4600039600061058d01526123206000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102fb578063a457c2d714610319578063a9059cbb14610349578063dd62ed3e14610379578063f2fde38b146103a95761012c565b806370a082311461027d578063715018a6146102ad57806379cc6790146102b75780638456cb59146102d35780638da5cb5b146102dd5761012c565b8063355274ea116100f4578063355274ea146101eb57806339509351146102095780633f4ba83a1461023957806342966c68146102435780635c975abb1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c5565b6040516101469190611aac565b60405180910390f35b6101696004803603810190610164919061178f565b610457565b6040516101769190611a91565b60405180910390f35b610187610475565b6040516101949190611cae565b60405180910390f35b6101b760048036038101906101b29190611740565b61047f565b6040516101c49190611a91565b60405180910390f35b6101d5610580565b6040516101e29190611cc9565b60405180910390f35b6101f3610589565b6040516102009190611cae565b60405180910390f35b610223600480360381019061021e919061178f565b6105b1565b6040516102309190611a91565b60405180910390f35b61024161065d565b005b61025d600480360381019061025891906117cb565b6106e3565b005b6102676106f7565b6040516102749190611a91565b60405180910390f35b610297600480360381019061029291906116db565b61070e565b6040516102a49190611cae565b60405180910390f35b6102b5610756565b005b6102d160048036038101906102cc919061178f565b610893565b005b6102db61090e565b005b6102e5610994565b6040516102f29190611a76565b60405180910390f35b6103036109be565b6040516103109190611aac565b60405180910390f35b610333600480360381019061032e919061178f565b610a50565b6040516103409190611a91565b60405180910390f35b610363600480360381019061035e919061178f565b610b44565b6040516103709190611a91565b60405180910390f35b610393600480360381019061038e9190611704565b610b62565b6040516103a09190611cae565b60405180910390f35b6103c360048036038101906103be91906116db565b610be9565b005b6060600380546103d490611e12565b80601f016020809104026020016040519081016040528092919081815260200182805461040090611e12565b801561044d5780601f106104225761010080835404028352916020019161044d565b820191906000526020600020905b81548152906001019060200180831161043057829003601f168201915b5050505050905090565b600061046b610464610eee565b8484610ef6565b6001905092915050565b6000600254905090565b600061048c8484846110c1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d7610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e90611bae565b60405180910390fd5b61057485610563610eee565b858461056f9190611d56565b610ef6565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006106536105be610eee565b8484600160006105cc610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064e9190611d00565b610ef6565b6001905092915050565b610665610eee565b73ffffffffffffffffffffffffffffffffffffffff16610683610994565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d090611bce565b60405180910390fd5b6106e1611340565b565b6106f46106ee610eee565b826113e2565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075e610eee565b73ffffffffffffffffffffffffffffffffffffffff1661077c610994565b73ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006108a6836108a1610eee565b610b62565b9050818110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290611bee565b60405180910390fd5b6108ff836108f7610eee565b848403610ef6565b61090983836113e2565b505050565b610916610eee565b73ffffffffffffffffffffffffffffffffffffffff16610934610994565b73ffffffffffffffffffffffffffffffffffffffff161461098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190611bce565b60405180910390fd5b6109926115b6565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cd90611e12565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611e12565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b60008060016000610a5f610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390611c6e565b60405180910390fd5b610b39610b27610eee565b858584610b349190611d56565b610ef6565b600191505092915050565b6000610b58610b51610eee565b84846110c1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf1610eee565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610994565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90611b2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90611c8e565b60405180910390fd5b610e1160008383611659565b8060026000828254610e239190611d00565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e789190611d00565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610edd9190611cae565b60405180910390a35050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90611c4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611b4e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110b49190611cae565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890611c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890611ace565b60405180910390fd5b6111ac838383611659565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990611b6e565b60405180910390fd5b818161123e9190611d56565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ce9190611d00565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113329190611cae565b60405180910390a350505050565b6113486106f7565b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611aee565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113cb610eee565b6040516113d89190611a76565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990611c0e565b60405180910390fd5b61145e82600083611659565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90611b0e565b60405180910390fd5b81816114f09190611d56565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115449190611d56565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a99190611cae565b60405180910390a3505050565b6115be6106f7565b156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590611b8e565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611642610eee565b60405161164f9190611a76565b60405180910390a1565b6116616106f7565b156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890611b8e565b60405180910390fd5b6116ac838383610ee9565b505050565b6000813590506116c0816122bc565b92915050565b6000813590506116d5816122d3565b92915050565b6000602082840312156116ed57600080fd5b60006116fb848285016116b1565b91505092915050565b6000806040838503121561171757600080fd5b6000611725858286016116b1565b9250506020611736858286016116b1565b9150509250929050565b60008060006060848603121561175557600080fd5b6000611763868287016116b1565b9350506020611774868287016116b1565b9250506040611785868287016116c6565b9150509250925092565b600080604083850312156117a257600080fd5b60006117b0858286016116b1565b92505060206117c1858286016116c6565b9150509250929050565b6000602082840312156117dd57600080fd5b60006117eb848285016116c6565b91505092915050565b6117fd81611d8a565b82525050565b61180c81611d9c565b82525050565b600061181d82611ce4565b6118278185611cef565b9350611837818560208601611ddf565b61184081611ea2565b840191505092915050565b6000611858602383611cef565b915061186382611eb3565b604082019050919050565b600061187b601483611cef565b915061188682611f02565b602082019050919050565b600061189e602283611cef565b91506118a982611f2b565b604082019050919050565b60006118c1602683611cef565b91506118cc82611f7a565b604082019050919050565b60006118e4602283611cef565b91506118ef82611fc9565b604082019050919050565b6000611907602683611cef565b915061191282612018565b604082019050919050565b600061192a601083611cef565b915061193582612067565b602082019050919050565b600061194d602883611cef565b915061195882612090565b604082019050919050565b6000611970602083611cef565b915061197b826120df565b602082019050919050565b6000611993602483611cef565b915061199e82612108565b604082019050919050565b60006119b6602183611cef565b91506119c182612157565b604082019050919050565b60006119d9602583611cef565b91506119e4826121a6565b604082019050919050565b60006119fc602483611cef565b9150611a07826121f5565b604082019050919050565b6000611a1f602583611cef565b9150611a2a82612244565b604082019050919050565b6000611a42601f83611cef565b9150611a4d82612293565b602082019050919050565b611a6181611dc8565b82525050565b611a7081611dd2565b82525050565b6000602082019050611a8b60008301846117f4565b92915050565b6000602082019050611aa66000830184611803565b92915050565b60006020820190508181036000830152611ac68184611812565b905092915050565b60006020820190508181036000830152611ae78161184b565b9050919050565b60006020820190508181036000830152611b078161186e565b9050919050565b60006020820190508181036000830152611b2781611891565b9050919050565b60006020820190508181036000830152611b47816118b4565b9050919050565b60006020820190508181036000830152611b67816118d7565b9050919050565b60006020820190508181036000830152611b87816118fa565b9050919050565b60006020820190508181036000830152611ba78161191d565b9050919050565b60006020820190508181036000830152611bc781611940565b9050919050565b60006020820190508181036000830152611be781611963565b9050919050565b60006020820190508181036000830152611c0781611986565b9050919050565b60006020820190508181036000830152611c27816119a9565b9050919050565b60006020820190508181036000830152611c47816119cc565b9050919050565b60006020820190508181036000830152611c67816119ef565b9050919050565b60006020820190508181036000830152611c8781611a12565b9050919050565b60006020820190508181036000830152611ca781611a35565b9050919050565b6000602082019050611cc36000830184611a58565b92915050565b6000602082019050611cde6000830184611a67565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d0b82611dc8565b9150611d1683611dc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d4b57611d4a611e44565b5b828201905092915050565b6000611d6182611dc8565b9150611d6c83611dc8565b925082821015611d7f57611d7e611e44565b5b828203905092915050565b6000611d9582611da8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dfd578082015181840152602081019050611de2565b83811115611e0c576000848401525b50505050565b60006002820490506001821680611e2a57607f821691505b60208210811415611e3e57611e3d611e73565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6122c581611d8a565b81146122d057600080fd5b50565b6122dc81611dc8565b81146122e757600080fd5b5056fea264697066735822122055d161200f8eafbc0aedec089ae8de69dca115518e7fd1adb470be7dd5464a0364736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102fb578063a457c2d714610319578063a9059cbb14610349578063dd62ed3e14610379578063f2fde38b146103a95761012c565b806370a082311461027d578063715018a6146102ad57806379cc6790146102b75780638456cb59146102d35780638da5cb5b146102dd5761012c565b8063355274ea116100f4578063355274ea146101eb57806339509351146102095780633f4ba83a1461023957806342966c68146102435780635c975abb1461025f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c5565b6040516101469190611aac565b60405180910390f35b6101696004803603810190610164919061178f565b610457565b6040516101769190611a91565b60405180910390f35b610187610475565b6040516101949190611cae565b60405180910390f35b6101b760048036038101906101b29190611740565b61047f565b6040516101c49190611a91565b60405180910390f35b6101d5610580565b6040516101e29190611cc9565b60405180910390f35b6101f3610589565b6040516102009190611cae565b60405180910390f35b610223600480360381019061021e919061178f565b6105b1565b6040516102309190611a91565b60405180910390f35b61024161065d565b005b61025d600480360381019061025891906117cb565b6106e3565b005b6102676106f7565b6040516102749190611a91565b60405180910390f35b610297600480360381019061029291906116db565b61070e565b6040516102a49190611cae565b60405180910390f35b6102b5610756565b005b6102d160048036038101906102cc919061178f565b610893565b005b6102db61090e565b005b6102e5610994565b6040516102f29190611a76565b60405180910390f35b6103036109be565b6040516103109190611aac565b60405180910390f35b610333600480360381019061032e919061178f565b610a50565b6040516103409190611a91565b60405180910390f35b610363600480360381019061035e919061178f565b610b44565b6040516103709190611a91565b60405180910390f35b610393600480360381019061038e9190611704565b610b62565b6040516103a09190611cae565b60405180910390f35b6103c360048036038101906103be91906116db565b610be9565b005b6060600380546103d490611e12565b80601f016020809104026020016040519081016040528092919081815260200182805461040090611e12565b801561044d5780601f106104225761010080835404028352916020019161044d565b820191906000526020600020905b81548152906001019060200180831161043057829003601f168201915b5050505050905090565b600061046b610464610eee565b8484610ef6565b6001905092915050565b6000600254905090565b600061048c8484846110c1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d7610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e90611bae565b60405180910390fd5b61057485610563610eee565b858461056f9190611d56565b610ef6565b60019150509392505050565b60006012905090565b60007f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000905090565b60006106536105be610eee565b8484600160006105cc610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064e9190611d00565b610ef6565b6001905092915050565b610665610eee565b73ffffffffffffffffffffffffffffffffffffffff16610683610994565b73ffffffffffffffffffffffffffffffffffffffff16146106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d090611bce565b60405180910390fd5b6106e1611340565b565b6106f46106ee610eee565b826113e2565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075e610eee565b73ffffffffffffffffffffffffffffffffffffffff1661077c610994565b73ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006108a6836108a1610eee565b610b62565b9050818110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290611bee565b60405180910390fd5b6108ff836108f7610eee565b848403610ef6565b61090983836113e2565b505050565b610916610eee565b73ffffffffffffffffffffffffffffffffffffffff16610934610994565b73ffffffffffffffffffffffffffffffffffffffff161461098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190611bce565b60405180910390fd5b6109926115b6565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cd90611e12565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611e12565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b5050505050905090565b60008060016000610a5f610eee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390611c6e565b60405180910390fd5b610b39610b27610eee565b858584610b349190611d56565b610ef6565b600191505092915050565b6000610b58610b51610eee565b84846110c1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf1610eee565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610994565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90611b2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90611c8e565b60405180910390fd5b610e1160008383611659565b8060026000828254610e239190611d00565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e789190611d00565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610edd9190611cae565b60405180910390a35050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90611c4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611b4e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110b49190611cae565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890611c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890611ace565b60405180910390fd5b6111ac838383611659565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990611b6e565b60405180910390fd5b818161123e9190611d56565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112ce9190611d00565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113329190611cae565b60405180910390a350505050565b6113486106f7565b611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611aee565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6113cb610eee565b6040516113d89190611a76565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990611c0e565b60405180910390fd5b61145e82600083611659565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90611b0e565b60405180910390fd5b81816114f09190611d56565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546115449190611d56565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115a99190611cae565b60405180910390a3505050565b6115be6106f7565b156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590611b8e565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611642610eee565b60405161164f9190611a76565b60405180910390a1565b6116616106f7565b156116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890611b8e565b60405180910390fd5b6116ac838383610ee9565b505050565b6000813590506116c0816122bc565b92915050565b6000813590506116d5816122d3565b92915050565b6000602082840312156116ed57600080fd5b60006116fb848285016116b1565b91505092915050565b6000806040838503121561171757600080fd5b6000611725858286016116b1565b9250506020611736858286016116b1565b9150509250929050565b60008060006060848603121561175557600080fd5b6000611763868287016116b1565b9350506020611774868287016116b1565b9250506040611785868287016116c6565b9150509250925092565b600080604083850312156117a257600080fd5b60006117b0858286016116b1565b92505060206117c1858286016116c6565b9150509250929050565b6000602082840312156117dd57600080fd5b60006117eb848285016116c6565b91505092915050565b6117fd81611d8a565b82525050565b61180c81611d9c565b82525050565b600061181d82611ce4565b6118278185611cef565b9350611837818560208601611ddf565b61184081611ea2565b840191505092915050565b6000611858602383611cef565b915061186382611eb3565b604082019050919050565b600061187b601483611cef565b915061188682611f02565b602082019050919050565b600061189e602283611cef565b91506118a982611f2b565b604082019050919050565b60006118c1602683611cef565b91506118cc82611f7a565b604082019050919050565b60006118e4602283611cef565b91506118ef82611fc9565b604082019050919050565b6000611907602683611cef565b915061191282612018565b604082019050919050565b600061192a601083611cef565b915061193582612067565b602082019050919050565b600061194d602883611cef565b915061195882612090565b604082019050919050565b6000611970602083611cef565b915061197b826120df565b602082019050919050565b6000611993602483611cef565b915061199e82612108565b604082019050919050565b60006119b6602183611cef565b91506119c182612157565b604082019050919050565b60006119d9602583611cef565b91506119e4826121a6565b604082019050919050565b60006119fc602483611cef565b9150611a07826121f5565b604082019050919050565b6000611a1f602583611cef565b9150611a2a82612244565b604082019050919050565b6000611a42601f83611cef565b9150611a4d82612293565b602082019050919050565b611a6181611dc8565b82525050565b611a7081611dd2565b82525050565b6000602082019050611a8b60008301846117f4565b92915050565b6000602082019050611aa66000830184611803565b92915050565b60006020820190508181036000830152611ac68184611812565b905092915050565b60006020820190508181036000830152611ae78161184b565b9050919050565b60006020820190508181036000830152611b078161186e565b9050919050565b60006020820190508181036000830152611b2781611891565b9050919050565b60006020820190508181036000830152611b47816118b4565b9050919050565b60006020820190508181036000830152611b67816118d7565b9050919050565b60006020820190508181036000830152611b87816118fa565b9050919050565b60006020820190508181036000830152611ba78161191d565b9050919050565b60006020820190508181036000830152611bc781611940565b9050919050565b60006020820190508181036000830152611be781611963565b9050919050565b60006020820190508181036000830152611c0781611986565b9050919050565b60006020820190508181036000830152611c27816119a9565b9050919050565b60006020820190508181036000830152611c47816119cc565b9050919050565b60006020820190508181036000830152611c67816119ef565b9050919050565b60006020820190508181036000830152611c8781611a12565b9050919050565b60006020820190508181036000830152611ca781611a35565b9050919050565b6000602082019050611cc36000830184611a58565b92915050565b6000602082019050611cde6000830184611a67565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d0b82611dc8565b9150611d1683611dc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d4b57611d4a611e44565b5b828201905092915050565b6000611d6182611dc8565b9150611d6c83611dc8565b925082821015611d7f57611d7e611e44565b5b828203905092915050565b6000611d9582611da8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dfd578082015181840152602081019050611de2565b83811115611e0c576000848401525b50505050565b60006002820490506001821680611e2a57607f821691505b60208210811415611e3e57611e3d611e73565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6122c581611d8a565b81146122d057600080fd5b50565b6122dc81611dc8565b81146122e757600080fd5b5056fea264697066735822122055d161200f8eafbc0aedec089ae8de69dca115518e7fd1adb470be7dd5464a0364736f6c63430008010033

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.