ETH Price: $2,520.67 (-0.15%)
Gas: 0.86 Gwei

Token

PIGGY (PIGGY)
 

Overview

Max Total Supply

1,000,000,000 PIGGY

Holders

216

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
850,036.552348262914287691 PIGGY

Value
$0.00
0xFBD86E3AE673F1466D01CBD2D42C2b582C3b30A3
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:
Piggy

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

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

//         Oink             Oink oink 
//           \                  \
//
//           (\___/)            (\___/)
//           / _"_ \________    / _"_ \________
//          ( (o o) )       \9 ( (o o) )       \9
//           \__^__/         \  \__O__/         \
//          _.::::::::::::::::::._\  __         /
//          \"""""""""""""""\""""/ (_ (___)_(___)
//           \_______________\__/   )_/)_/)_/)_/

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

contract Piggy is ERC20("PIGGY", "PIGGY"), Ownable {
	mapping(address => bool) public isCooldownExempt;
	mapping(address => uint) public cooldowns;
	uint public MEV_COOLDOWN = 1;

	constructor() {
		_mint(msg.sender, 1_000_000_000 ether);
		isCooldownExempt[msg.sender] = true;
	}

	function setIsCooldownExempt(address[] calldata addrs, bool value) external onlyOwner {
		for (uint i; i < addrs.length; ++i) isCooldownExempt[addrs[i]] = value;
	}

	function setMEV_COOLDOWN(uint value) external onlyOwner {
		assert(value <= 10); // ~2min
		MEV_COOLDOWN = value;
	}

	function _beforeTokenTransfer(address from, address to,	uint256) internal override {
		if (!isCooldownExempt[from]) require(cooldowns[from] + MEV_COOLDOWN <= block.number, "MEV protection");
		if (!isCooldownExempt[to]) cooldowns[to] = block.number;
	}
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 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 {
        _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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 6 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MEV_COOLDOWN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cooldowns","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":[{"internalType":"address","name":"","type":"address"}],"name":"isCooldownExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsCooldownExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMEV_COOLDOWN","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"}]

608060405260016008553480156200001657600080fd5b506040518060400160405280600581526020017f50494747590000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5049474759000000000000000000000000000000000000000000000000000000815250816003908162000094919062000782565b508060049081620000a6919062000782565b505050620000c9620000bd6200014560201b60201c565b6200014d60201b60201c565b620000e7336b033b2e3c9fd0803ce80000006200021360201b60201c565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009f6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027c90620008ca565b60405180910390fd5b62000299600083836200038060201b60201c565b8060026000828254620002ad91906200091b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000360919062000967565b60405180910390a36200037c600083836200050360201b60201c565b5050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620004675743600854600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200042291906200091b565b111562000466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045d90620009d4565b60405180910390fd5b5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620004fe5743600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058a57607f821691505b602082108103620005a0576200059f62000542565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200060a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005cb565b620006168683620005cb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006636200065d62000657846200062e565b62000638565b6200062e565b9050919050565b6000819050919050565b6200067f8362000642565b620006976200068e826200066a565b848454620005d8565b825550505050565b600090565b620006ae6200069f565b620006bb81848462000674565b505050565b5b81811015620006e357620006d7600082620006a4565b600181019050620006c1565b5050565b601f8211156200073257620006fc81620005a6565b6200070784620005bb565b8101602085101562000717578190505b6200072f6200072685620005bb565b830182620006c0565b50505b505050565b600082821c905092915050565b6000620007576000198460080262000737565b1980831691505092915050565b600062000772838362000744565b9150826002028217905092915050565b6200078d8262000508565b67ffffffffffffffff811115620007a957620007a862000513565b5b620007b5825462000571565b620007c2828285620006e7565b600060209050601f831160018114620007fa5760008415620007e5578287015190505b620007f1858262000764565b86555062000861565b601f1984166200080a86620005a6565b60005b8281101562000834578489015182556001820191506020850194506020810190506200080d565b8683101562000854578489015162000850601f89168262000744565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008b2601f8362000869565b9150620008bf826200087a565b602082019050919050565b60006020820190508181036000830152620008e581620008a3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000928826200062e565b915062000935836200062e565b925082820190508082111562000950576200094f620008ec565b5b92915050565b62000961816200062e565b82525050565b60006020820190506200097e600083018462000956565b92915050565b7f4d45562070726f74656374696f6e000000000000000000000000000000000000600082015250565b6000620009bc600e8362000869565b9150620009c98262000984565b602082019050919050565b60006020820190508181036000830152620009ef81620009ad565b9050919050565b611b878062000a066000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610320578063a9eb764f14610350578063ced8ffee14610380578063dd62ed3e1461039c578063f2fde38b146103cc57610121565b806370a082311461027a578063715018a6146102aa5780638da5cb5b146102b457806395d89b41146102d2578063a457c2d7146102f057610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f2578063395093511461021057806353b051d2146102405780636aa4bfa11461025c57610121565b806301320fe21461012657806306fdde0314610156578063095ea7b31461017457806318160ddd146101a4575b600080fd5b610140600480360381019061013b91906110df565b6103e8565b60405161014d9190611125565b60405180910390f35b61015e610400565b60405161016b91906111d0565b60405180910390f35b61018e6004803603810190610189919061121e565b610492565b60405161019b9190611279565b60405180910390f35b6101ac6104b5565b6040516101b99190611125565b60405180910390f35b6101dc60048036038101906101d79190611294565b6104bf565b6040516101e99190611279565b60405180910390f35b6101fa6104ee565b6040516102079190611303565b60405180910390f35b61022a6004803603810190610225919061121e565b6104f7565b6040516102379190611279565b60405180910390f35b61025a6004803603810190610255919061131e565b61052e565b005b610264610552565b6040516102719190611125565b60405180910390f35b610294600480360381019061028f91906110df565b610558565b6040516102a19190611125565b60405180910390f35b6102b26105a0565b005b6102bc6105b4565b6040516102c9919061135a565b60405180910390f35b6102da6105de565b6040516102e791906111d0565b60405180910390f35b61030a6004803603810190610305919061121e565b610670565b6040516103179190611279565b60405180910390f35b61033a6004803603810190610335919061121e565b6106e7565b6040516103479190611279565b60405180910390f35b61036a600480360381019061036591906110df565b61070a565b6040516103779190611279565b60405180910390f35b61039a60048036038101906103959190611406565b61072a565b005b6103b660048036038101906103b19190611466565b6107d5565b6040516103c39190611125565b60405180910390f35b6103e660048036038101906103e191906110df565b61085c565b005b60076020528060005260406000206000915090505481565b60606003805461040f906114d5565b80601f016020809104026020016040519081016040528092919081815260200182805461043b906114d5565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b60008061049d6108df565b90506104aa8185856108e7565b600191505092915050565b6000600254905090565b6000806104ca6108df565b90506104d7858285610ab0565b6104e2858585610b3c565b60019150509392505050565b60006012905090565b6000806105026108df565b905061052381858561051485896107d5565b61051e9190611535565b6108e7565b600191505092915050565b610536610db2565b600a81111561054857610547611569565b5b8060088190555050565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a8610db2565b6105b26000610e30565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ed906114d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610619906114d5565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b60008061067b6108df565b9050600061068982866107d5565b9050838110156106ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c59061160a565b60405180910390fd5b6106db82868684036108e7565b60019250505092915050565b6000806106f26108df565b90506106ff818585610b3c565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610732610db2565b60005b838390508110156107cf5781600660008686858181106107585761075761162a565b5b905060200201602081019061076d91906110df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806107c890611659565b9050610735565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610864610db2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611713565b60405180910390fd5b6108dc81610e30565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906117a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611837565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa39190611125565b60405180910390a3505050565b6000610abc84846107d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b365781811015610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906118a3565b60405180910390fd5b610b3584848484036108e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290611935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906119c7565b60405180910390fd5b610c25838383610ef6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611a59565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d999190611125565b60405180910390a3610dac848484611072565b50505050565b610dba6108df565b73ffffffffffffffffffffffffffffffffffffffff16610dd86105b4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590611ac5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fd75743600854600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f959190611535565b1115610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611b31565b60405180910390fd5b5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661106d5743600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110ac82611081565b9050919050565b6110bc816110a1565b81146110c757600080fd5b50565b6000813590506110d9816110b3565b92915050565b6000602082840312156110f5576110f4611077565b5b6000611103848285016110ca565b91505092915050565b6000819050919050565b61111f8161110c565b82525050565b600060208201905061113a6000830184611116565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117a57808201518184015260208101905061115f565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a282611140565b6111ac818561114b565b93506111bc81856020860161115c565b6111c581611186565b840191505092915050565b600060208201905081810360008301526111ea8184611197565b905092915050565b6111fb8161110c565b811461120657600080fd5b50565b600081359050611218816111f2565b92915050565b6000806040838503121561123557611234611077565b5b6000611243858286016110ca565b925050602061125485828601611209565b9150509250929050565b60008115159050919050565b6112738161125e565b82525050565b600060208201905061128e600083018461126a565b92915050565b6000806000606084860312156112ad576112ac611077565b5b60006112bb868287016110ca565b93505060206112cc868287016110ca565b92505060406112dd86828701611209565b9150509250925092565b600060ff82169050919050565b6112fd816112e7565b82525050565b600060208201905061131860008301846112f4565b92915050565b60006020828403121561133457611333611077565b5b600061134284828501611209565b91505092915050565b611354816110a1565b82525050565b600060208201905061136f600083018461134b565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261139a57611399611375565b5b8235905067ffffffffffffffff8111156113b7576113b661137a565b5b6020830191508360208202830111156113d3576113d261137f565b5b9250929050565b6113e38161125e565b81146113ee57600080fd5b50565b600081359050611400816113da565b92915050565b60008060006040848603121561141f5761141e611077565b5b600084013567ffffffffffffffff81111561143d5761143c61107c565b5b61144986828701611384565b9350935050602061145c868287016113f1565b9150509250925092565b6000806040838503121561147d5761147c611077565b5b600061148b858286016110ca565b925050602061149c858286016110ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114ed57607f821691505b602082108103611500576114ff6114a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115408261110c565b915061154b8361110c565b925082820190508082111561156357611562611506565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f460258361114b565b91506115ff82611598565b604082019050919050565b60006020820190508181036000830152611623816115e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116648261110c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361169657611695611506565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fd60268361114b565b9150611708826116a1565b604082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061178f60248361114b565b915061179a82611733565b604082019050919050565b600060208201905081810360008301526117be81611782565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061182160228361114b565b915061182c826117c5565b604082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188d601d8361114b565b915061189882611857565b602082019050919050565b600060208201905081810360008301526118bc81611880565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061191f60258361114b565b915061192a826118c3565b604082019050919050565b6000602082019050818103600083015261194e81611912565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119b160238361114b565b91506119bc82611955565b604082019050919050565b600060208201905081810360008301526119e0816119a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a4360268361114b565b9150611a4e826119e7565b604082019050919050565b60006020820190508181036000830152611a7281611a36565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aaf60208361114b565b9150611aba82611a79565b602082019050919050565b60006020820190508181036000830152611ade81611aa2565b9050919050565b7f4d45562070726f74656374696f6e000000000000000000000000000000000000600082015250565b6000611b1b600e8361114b565b9150611b2682611ae5565b602082019050919050565b60006020820190508181036000830152611b4a81611b0e565b905091905056fea2646970667358221220c409589b259279aca7372341a0e5f8aa1ff83c9b53db6bb2394ed27122569b0564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610320578063a9eb764f14610350578063ced8ffee14610380578063dd62ed3e1461039c578063f2fde38b146103cc57610121565b806370a082311461027a578063715018a6146102aa5780638da5cb5b146102b457806395d89b41146102d2578063a457c2d7146102f057610121565b806323b872dd116100f457806323b872dd146101c2578063313ce567146101f2578063395093511461021057806353b051d2146102405780636aa4bfa11461025c57610121565b806301320fe21461012657806306fdde0314610156578063095ea7b31461017457806318160ddd146101a4575b600080fd5b610140600480360381019061013b91906110df565b6103e8565b60405161014d9190611125565b60405180910390f35b61015e610400565b60405161016b91906111d0565b60405180910390f35b61018e6004803603810190610189919061121e565b610492565b60405161019b9190611279565b60405180910390f35b6101ac6104b5565b6040516101b99190611125565b60405180910390f35b6101dc60048036038101906101d79190611294565b6104bf565b6040516101e99190611279565b60405180910390f35b6101fa6104ee565b6040516102079190611303565b60405180910390f35b61022a6004803603810190610225919061121e565b6104f7565b6040516102379190611279565b60405180910390f35b61025a6004803603810190610255919061131e565b61052e565b005b610264610552565b6040516102719190611125565b60405180910390f35b610294600480360381019061028f91906110df565b610558565b6040516102a19190611125565b60405180910390f35b6102b26105a0565b005b6102bc6105b4565b6040516102c9919061135a565b60405180910390f35b6102da6105de565b6040516102e791906111d0565b60405180910390f35b61030a6004803603810190610305919061121e565b610670565b6040516103179190611279565b60405180910390f35b61033a6004803603810190610335919061121e565b6106e7565b6040516103479190611279565b60405180910390f35b61036a600480360381019061036591906110df565b61070a565b6040516103779190611279565b60405180910390f35b61039a60048036038101906103959190611406565b61072a565b005b6103b660048036038101906103b19190611466565b6107d5565b6040516103c39190611125565b60405180910390f35b6103e660048036038101906103e191906110df565b61085c565b005b60076020528060005260406000206000915090505481565b60606003805461040f906114d5565b80601f016020809104026020016040519081016040528092919081815260200182805461043b906114d5565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b60008061049d6108df565b90506104aa8185856108e7565b600191505092915050565b6000600254905090565b6000806104ca6108df565b90506104d7858285610ab0565b6104e2858585610b3c565b60019150509392505050565b60006012905090565b6000806105026108df565b905061052381858561051485896107d5565b61051e9190611535565b6108e7565b600191505092915050565b610536610db2565b600a81111561054857610547611569565b5b8060088190555050565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105a8610db2565b6105b26000610e30565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ed906114d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610619906114d5565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b60008061067b6108df565b9050600061068982866107d5565b9050838110156106ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c59061160a565b60405180910390fd5b6106db82868684036108e7565b60019250505092915050565b6000806106f26108df565b90506106ff818585610b3c565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b610732610db2565b60005b838390508110156107cf5781600660008686858181106107585761075761162a565b5b905060200201602081019061076d91906110df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806107c890611659565b9050610735565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610864610db2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611713565b60405180910390fd5b6108dc81610e30565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906117a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611837565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aa39190611125565b60405180910390a3505050565b6000610abc84846107d5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b365781811015610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f906118a3565b60405180910390fd5b610b3584848484036108e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290611935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906119c7565b60405180910390fd5b610c25838383610ef6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611a59565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d999190611125565b60405180910390a3610dac848484611072565b50505050565b610dba6108df565b73ffffffffffffffffffffffffffffffffffffffff16610dd86105b4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590611ac5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fd75743600854600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f959190611535565b1115610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611b31565b60405180910390fd5b5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661106d5743600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110ac82611081565b9050919050565b6110bc816110a1565b81146110c757600080fd5b50565b6000813590506110d9816110b3565b92915050565b6000602082840312156110f5576110f4611077565b5b6000611103848285016110ca565b91505092915050565b6000819050919050565b61111f8161110c565b82525050565b600060208201905061113a6000830184611116565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117a57808201518184015260208101905061115f565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a282611140565b6111ac818561114b565b93506111bc81856020860161115c565b6111c581611186565b840191505092915050565b600060208201905081810360008301526111ea8184611197565b905092915050565b6111fb8161110c565b811461120657600080fd5b50565b600081359050611218816111f2565b92915050565b6000806040838503121561123557611234611077565b5b6000611243858286016110ca565b925050602061125485828601611209565b9150509250929050565b60008115159050919050565b6112738161125e565b82525050565b600060208201905061128e600083018461126a565b92915050565b6000806000606084860312156112ad576112ac611077565b5b60006112bb868287016110ca565b93505060206112cc868287016110ca565b92505060406112dd86828701611209565b9150509250925092565b600060ff82169050919050565b6112fd816112e7565b82525050565b600060208201905061131860008301846112f4565b92915050565b60006020828403121561133457611333611077565b5b600061134284828501611209565b91505092915050565b611354816110a1565b82525050565b600060208201905061136f600083018461134b565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261139a57611399611375565b5b8235905067ffffffffffffffff8111156113b7576113b661137a565b5b6020830191508360208202830111156113d3576113d261137f565b5b9250929050565b6113e38161125e565b81146113ee57600080fd5b50565b600081359050611400816113da565b92915050565b60008060006040848603121561141f5761141e611077565b5b600084013567ffffffffffffffff81111561143d5761143c61107c565b5b61144986828701611384565b9350935050602061145c868287016113f1565b9150509250925092565b6000806040838503121561147d5761147c611077565b5b600061148b858286016110ca565b925050602061149c858286016110ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114ed57607f821691505b602082108103611500576114ff6114a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115408261110c565b915061154b8361110c565b925082820190508082111561156357611562611506565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f460258361114b565b91506115ff82611598565b604082019050919050565b60006020820190508181036000830152611623816115e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116648261110c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361169657611695611506565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116fd60268361114b565b9150611708826116a1565b604082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061178f60248361114b565b915061179a82611733565b604082019050919050565b600060208201905081810360008301526117be81611782565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061182160228361114b565b915061182c826117c5565b604082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061188d601d8361114b565b915061189882611857565b602082019050919050565b600060208201905081810360008301526118bc81611880565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061191f60258361114b565b915061192a826118c3565b604082019050919050565b6000602082019050818103600083015261194e81611912565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119b160238361114b565b91506119bc82611955565b604082019050919050565b600060208201905081810360008301526119e0816119a4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a4360268361114b565b9150611a4e826119e7565b604082019050919050565b60006020820190508181036000830152611a7281611a36565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611aaf60208361114b565b9150611aba82611a79565b602082019050919050565b60006020820190508181036000830152611ade81611aa2565b9050919050565b7f4d45562070726f74656374696f6e000000000000000000000000000000000000600082015250565b6000611b1b600e8361114b565b9150611b2682611ae5565b602082019050919050565b60006020820190508181036000830152611b4a81611b0e565b905091905056fea2646970667358221220c409589b259279aca7372341a0e5f8aa1ff83c9b53db6bb2394ed27122569b0564736f6c63430008120033

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.