ETH Price: $3,442.99 (+1.52%)
Gas: 4 Gwei

Token

MicroPepeMoon (PEPE)
 

Overview

Max Total Supply

85,000,000,000 PEPE

Holders

282

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cvd.eth
Balance
1,025,305,333.787697319123706755 PEPE

Value
$0.00
0xdaa7c1b5feaca5d1bc1bea7e7c07d91d3e6dfe51
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:
MicroPepeMoon

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 6 of 7: MicroPepeMoon.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.9;

import "ERC20.sol";
import "ERC20Burnable.sol";
import "Ownable.sol";


contract MicroPepeMoon is ERC20, ERC20Burnable, Ownable {
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply
    ) ERC20(_name, _symbol) {
        _mint(msg.sender, _totalSupply);
        _transferOwnership(address(0));
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(
            (amount <= totalSupply() * 5 / 1000) || (amount >= totalSupply() * 99 / 100),
            "Transfer amount must be less than 0.5% or more than 99% of total supply"
        );
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(
            (amount <= totalSupply() * 5 / 1000) || (amount >= totalSupply() * 99 / 100),
            "Transfer amount must be less than 0.5% or more than 99% of total supply"
        );
        return super.transferFrom(sender, recipient, amount);
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7: ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "ERC20.sol";
import "Context.sol";

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

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

File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 7: 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 7 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b50604051620027ca380380620027ca8339818101604052810190620000379190620004bf565b828281600390816200004a91906200079a565b5080600490816200005c91906200079a565b5050506200007f62000073620000ac60201b60201c565b620000b460201b60201c565b6200009133826200017a60201b60201c565b620000a36000620000b460201b60201c565b5050506200099c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e390620008e2565b60405180910390fd5b6200020060008383620002e760201b60201c565b806002600082825462000214919062000933565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c791906200097f565b60405180910390a3620002e360008383620002ec60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200035a826200030f565b810181811067ffffffffffffffff821117156200037c576200037b62000320565b5b80604052505050565b600062000391620002f1565b90506200039f82826200034f565b919050565b600067ffffffffffffffff821115620003c257620003c162000320565b5b620003cd826200030f565b9050602081019050919050565b60005b83811015620003fa578082015181840152602081019050620003dd565b60008484015250505050565b60006200041d6200041784620003a4565b62000385565b9050828152602081018484840111156200043c576200043b6200030a565b5b62000449848285620003da565b509392505050565b600082601f83011262000469576200046862000305565b5b81516200047b84826020860162000406565b91505092915050565b6000819050919050565b620004998162000484565b8114620004a557600080fd5b50565b600081519050620004b9816200048e565b92915050565b600080600060608486031215620004db57620004da620002fb565b5b600084015167ffffffffffffffff811115620004fc57620004fb62000300565b5b6200050a8682870162000451565b935050602084015167ffffffffffffffff8111156200052e576200052d62000300565b5b6200053c8682870162000451565b92505060406200054f86828701620004a8565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ac57607f821691505b602082108103620005c257620005c162000564565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200062c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ed565b620006388683620005ed565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200067b620006756200066f8462000484565b62000650565b62000484565b9050919050565b6000819050919050565b62000697836200065a565b620006af620006a68262000682565b848454620005fa565b825550505050565b600090565b620006c6620006b7565b620006d38184846200068c565b505050565b5b81811015620006fb57620006ef600082620006bc565b600181019050620006d9565b5050565b601f8211156200074a576200071481620005c8565b6200071f84620005dd565b810160208510156200072f578190505b620007476200073e85620005dd565b830182620006d8565b50505b505050565b600082821c905092915050565b60006200076f600019846008026200074f565b1980831691505092915050565b60006200078a83836200075c565b9150826002028217905092915050565b620007a58262000559565b67ffffffffffffffff811115620007c157620007c062000320565b5b620007cd825462000593565b620007da828285620006ff565b600060209050601f831160018114620008125760008415620007fd578287015190505b6200080985826200077c565b86555062000879565b601f1984166200082286620005c8565b60005b828110156200084c5784890151825560018201915060208501945060208101905062000825565b868310156200086c578489015162000868601f8916826200075c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008ca601f8362000881565b9150620008d78262000892565b602082019050919050565b60006020820190508181036000830152620008fd81620008bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009408262000484565b91506200094d8362000484565b925082820190508082111562000968576200096762000904565b5b92915050565b620009798162000484565b82525050565b60006020820190506200099660008301846200096e565b92915050565b611e1e80620009ac6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8600561043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006012905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860056106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e20302e3525206f72206d6f7265207468616e20393925206f6620746f74616c60208201527f20737570706c7900000000000000000000000000000000000000000000000000604082015250565b6000611718604783611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea26469706673582212207a74ba94ef2c088f4eb833a4b4c8aa775b94e8436dbf292489ceb53d0cb8217564736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000112a65a21103a943908000000000000000000000000000000000000000000000000000000000000000000000d4d6963726f506570654d6f6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045045504500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8600561043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006012905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860056106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e20302e3525206f72206d6f7265207468616e20393925206f6620746f74616c60208201527f20737570706c7900000000000000000000000000000000000000000000000000604082015250565b6000611718604783611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea26469706673582212207a74ba94ef2c088f4eb833a4b4c8aa775b94e8436dbf292489ceb53d0cb8217564736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000112a65a21103a943908000000000000000000000000000000000000000000000000000000000000000000000d4d6963726f506570654d6f6f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045045504500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MicroPepeMoon
Arg [1] : _symbol (string): PEPE
Arg [2] : _totalSupply (uint256): 85000000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000112a65a21103a943908000000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4d6963726f506570654d6f6f6e00000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5045504500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

137:1115:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2192:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4552:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3321:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;873:377:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3163:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6003:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;423:93:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;579:91:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3492:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1875:103:6;;;:::i;:::-;;989:164:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1234:87:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2411:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6744:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;522:345:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4081:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2133:201:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2192:100:1;2246:13;2279:5;2272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2192:100;:::o;4552:201::-;4635:4;4652:13;4668:12;:10;:12::i;:::-;4652:28;;4691:32;4700:5;4707:7;4716:6;4691:8;:32::i;:::-;4741:4;4734:11;;;4552:201;;;;:::o;3321:108::-;3382:7;3409:12;;3402:19;;3321:108;:::o;873:377:5:-;971:4;1039;1035:1;1019:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;1009:6;:34;;1008:76;;;;1080:3;1075:2;1059:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;1049:6;:34;;1008:76;987:194;;;;;;;;;;;;:::i;:::-;;;;;;;;;1198:45;1217:6;1225:9;1236:6;1198:18;:45::i;:::-;1191:52;;873:377;;;;;:::o;3163:93:1:-;3221:5;3246:2;3239:9;;3163:93;:::o;6003:238::-;6091:4;6108:13;6124:12;:10;:12::i;:::-;6108:28;;6147:64;6156:5;6163:7;6200:10;6172:25;6182:5;6189:7;6172:9;:25::i;:::-;:38;;;;:::i;:::-;6147:8;:64::i;:::-;6229:4;6222:11;;;6003:238;;;;:::o;423:93:5:-;1120:13:6;:11;:13::i;:::-;492:17:5::1;498:2;502:6;492:5;:17::i;:::-;423:93:::0;;:::o;579:91:2:-;635:27;641:12;:10;:12::i;:::-;655:6;635:5;:27::i;:::-;579:91;:::o;3492:127:1:-;3566:7;3593:9;:18;3603:7;3593:18;;;;;;;;;;;;;;;;3586:25;;3492:127;;;:::o;1875:103:6:-;1120:13;:11;:13::i;:::-;1940:30:::1;1967:1;1940:18;:30::i;:::-;1875:103::o:0;989:164:2:-;1066:46;1082:7;1091:12;:10;:12::i;:::-;1105:6;1066:15;:46::i;:::-;1123:22;1129:7;1138:6;1123:5;:22::i;:::-;989:164;;:::o;1234:87:6:-;1280:7;1307:6;;;;;;;;;;;1300:13;;1234:87;:::o;2411:104:1:-;2467:13;2500:7;2493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411:104;:::o;6744:436::-;6837:4;6854:13;6870:12;:10;:12::i;:::-;6854:28;;6893:24;6920:25;6930:5;6937:7;6920:9;:25::i;:::-;6893:52;;6984:15;6964:16;:35;;6956:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7077:60;7086:5;7093:7;7121:15;7102:16;:34;7077:8;:60::i;:::-;7168:4;7161:11;;;;6744:436;;;;:::o;522:345:5:-;600:4;668;664:1;648:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;638:6;:34;;637:76;;;;709:3;704:2;688:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;678:6;:34;;637:76;616:194;;;;;;;;;;;;:::i;:::-;;;;;;;;;827:33;842:9;853:6;827:14;:33::i;:::-;820:40;;522:345;;;;:::o;4081:151:1:-;4170:7;4197:11;:18;4209:5;4197:18;;;;;;;;;;;;;;;:27;4216:7;4197:27;;;;;;;;;;;;;;;;4190:34;;4081:151;;;;:::o;2133:201:6:-;1120:13;:11;:13::i;:::-;2242:1:::1;2222:22;;:8;:22;;::::0;2214:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2298:28;2317:8;2298:18;:28::i;:::-;2133:201:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10737:346:1:-;10856:1;10839:19;;:5;:19;;;10831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10937:1;10918:21;;:7;:21;;;10910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11021:6;10991:11;:18;11003:5;10991:18;;;;;;;;;;;;;;;:27;11010:7;10991:27;;;;;;;;;;;;;;;:36;;;;11059:7;11043:32;;11052:5;11043:32;;;11068:6;11043:32;;;;;;:::i;:::-;;;;;;;;10737:346;;;:::o;5333:261::-;5430:4;5447:15;5465:12;:10;:12::i;:::-;5447:30;;5488:38;5504:4;5510:7;5519:6;5488:15;:38::i;:::-;5537:27;5547:4;5553:2;5557:6;5537:9;:27::i;:::-;5582:4;5575:11;;;5333:261;;;;;:::o;1399:132:6:-;1474:12;:10;:12::i;:::-;1463:23;;:7;:5;:7::i;:::-;:23;;;1455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1399:132::o;8743:548:1:-;8846:1;8827:21;;:7;:21;;;8819:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8897:49;8926:1;8930:7;8939:6;8897:20;:49::i;:::-;8975:6;8959:12;;:22;;;;;;;:::i;:::-;;;;;;;;9152:6;9130:9;:18;9140:7;9130:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9206:7;9185:37;;9202:1;9185:37;;;9215:6;9185:37;;;;;;:::i;:::-;;;;;;;;9235:48;9263:1;9267:7;9276:6;9235:19;:48::i;:::-;8743:548;;:::o;9624:675::-;9727:1;9708:21;;:7;:21;;;9700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9780:49;9801:7;9818:1;9822:6;9780:20;:49::i;:::-;9842:22;9867:9;:18;9877:7;9867:18;;;;;;;;;;;;;;;;9842:43;;9922:6;9904:14;:24;;9896:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10041:6;10024:14;:23;10003:9;:18;10013:7;10003:18;;;;;;;;;;;;;;;:44;;;;10158:6;10142:12;;:22;;;;;;;;;;;10219:1;10193:37;;10202:7;10193:37;;;10223:6;10193:37;;;;;;:::i;:::-;;;;;;;;10243:48;10263:7;10280:1;10284:6;10243:19;:48::i;:::-;9689:610;9624:675;;:::o;2494:191:6:-;2568:16;2587:6;;;;;;;;;;;2568:25;;2613:8;2604:6;;:17;;;;;;;;;;;;;;;;;;2668:8;2637:40;;2658:8;2637:40;;;;;;;;;;;;2557:128;2494:191;:::o;11374:419:1:-;11475:24;11502:25;11512:5;11519:7;11502:9;:25::i;:::-;11475:52;;11562:17;11542:16;:37;11538:248;;11624:6;11604:16;:26;;11596:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11708:51;11717:5;11724:7;11752:6;11733:16;:25;11708:8;:51::i;:::-;11538:248;11464:329;11374:419;;;:::o;3825:193::-;3904:4;3921:13;3937:12;:10;:12::i;:::-;3921:28;;3960;3970:5;3977:2;3981:6;3960:9;:28::i;:::-;4006:4;3999:11;;;3825:193;;;;:::o;7650:806::-;7763:1;7747:18;;:4;:18;;;7739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7840:1;7826:16;;:2;:16;;;7818:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7895:38;7916:4;7922:2;7926:6;7895:20;:38::i;:::-;7946:19;7968:9;:15;7978:4;7968:15;;;;;;;;;;;;;;;;7946:37;;8017:6;8002:11;:21;;7994:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8134:6;8120:11;:20;8102:9;:15;8112:4;8102:15;;;;;;;;;;;;;;;:38;;;;8337:6;8320:9;:13;8330:2;8320:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8387:2;8372:26;;8381:4;8372:26;;;8391:6;8372:26;;;;;;:::i;:::-;;;;;;;;8411:37;8431:4;8437:2;8441:6;8411:19;:37::i;:::-;7728:728;7650:806;;;:::o;12393:91::-;;;;:::o;13088:90::-;;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:410;7093:7;7116:20;7134:1;7116:20;:::i;:::-;7111:25;;7150:20;7168:1;7150:20;:::i;:::-;7145:25;;7205:1;7202;7198:9;7227:30;7245:11;7227:30;:::i;:::-;7216:41;;7406:1;7397:7;7393:15;7390:1;7387:22;7367:1;7360:9;7340:83;7317:139;;7436:18;;:::i;:::-;7317:139;7101:362;7053:410;;;;:::o;7469:180::-;7517:77;7514:1;7507:88;7614:4;7611:1;7604:15;7638:4;7635:1;7628:15;7655:185;7695:1;7712:20;7730:1;7712:20;:::i;:::-;7707:25;;7746:20;7764:1;7746:20;:::i;:::-;7741:25;;7785:1;7775:35;;7790:18;;:::i;:::-;7775:35;7832:1;7829;7825:9;7820:14;;7655:185;;;;:::o;7846:295::-;7986:34;7982:1;7974:6;7970:14;7963:58;8055:34;8050:2;8042:6;8038:15;8031:59;8124:9;8119:2;8111:6;8107:15;8100:34;7846:295;:::o;8147:366::-;8289:3;8310:67;8374:2;8369:3;8310:67;:::i;:::-;8303:74;;8386:93;8475:3;8386:93;:::i;:::-;8504:2;8499:3;8495:12;8488:19;;8147:366;;;:::o;8519:419::-;8685:4;8723:2;8712:9;8708:18;8700:26;;8772:9;8766:4;8762:20;8758:1;8747:9;8743:17;8736:47;8800:131;8926:4;8800:131;:::i;:::-;8792:139;;8519:419;;;:::o;8944:191::-;8984:3;9003:20;9021:1;9003:20;:::i;:::-;8998:25;;9037:20;9055:1;9037:20;:::i;:::-;9032:25;;9080:1;9077;9073:9;9066:16;;9101:3;9098:1;9095:10;9092:36;;;9108:18;;:::i;:::-;9092:36;8944:191;;;;:::o;9141:224::-;9281:34;9277:1;9269:6;9265:14;9258:58;9350:7;9345:2;9337:6;9333:15;9326:32;9141:224;:::o;9371:366::-;9513:3;9534:67;9598:2;9593:3;9534:67;:::i;:::-;9527:74;;9610:93;9699:3;9610:93;:::i;:::-;9728:2;9723:3;9719:12;9712:19;;9371:366;;;:::o;9743:419::-;9909:4;9947:2;9936:9;9932:18;9924:26;;9996:9;9990:4;9986:20;9982:1;9971:9;9967:17;9960:47;10024:131;10150:4;10024:131;:::i;:::-;10016:139;;9743:419;;;:::o;10168:225::-;10308:34;10304:1;10296:6;10292:14;10285:58;10377:8;10372:2;10364:6;10360:15;10353:33;10168:225;:::o;10399:366::-;10541:3;10562:67;10626:2;10621:3;10562:67;:::i;:::-;10555:74;;10638:93;10727:3;10638:93;:::i;:::-;10756:2;10751:3;10747:12;10740:19;;10399:366;;;:::o;10771:419::-;10937:4;10975:2;10964:9;10960:18;10952:26;;11024:9;11018:4;11014:20;11010:1;10999:9;10995:17;10988:47;11052:131;11178:4;11052:131;:::i;:::-;11044:139;;10771:419;;;:::o;11196:223::-;11336:34;11332:1;11324:6;11320:14;11313:58;11405:6;11400:2;11392:6;11388:15;11381:31;11196:223;:::o;11425:366::-;11567:3;11588:67;11652:2;11647:3;11588:67;:::i;:::-;11581:74;;11664:93;11753:3;11664:93;:::i;:::-;11782:2;11777:3;11773:12;11766:19;;11425:366;;;:::o;11797:419::-;11963:4;12001:2;11990:9;11986:18;11978:26;;12050:9;12044:4;12040:20;12036:1;12025:9;12021:17;12014:47;12078:131;12204:4;12078:131;:::i;:::-;12070:139;;11797:419;;;:::o;12222:221::-;12362:34;12358:1;12350:6;12346:14;12339:58;12431:4;12426:2;12418:6;12414:15;12407:29;12222:221;:::o;12449:366::-;12591:3;12612:67;12676:2;12671:3;12612:67;:::i;:::-;12605:74;;12688:93;12777:3;12688:93;:::i;:::-;12806:2;12801:3;12797:12;12790:19;;12449:366;;;:::o;12821:419::-;12987:4;13025:2;13014:9;13010:18;13002:26;;13074:9;13068:4;13064:20;13060:1;13049:9;13045:17;13038:47;13102:131;13228:4;13102:131;:::i;:::-;13094:139;;12821:419;;;:::o;13246:182::-;13386:34;13382:1;13374:6;13370:14;13363:58;13246:182;:::o;13434:366::-;13576:3;13597:67;13661:2;13656:3;13597:67;:::i;:::-;13590:74;;13673:93;13762:3;13673:93;:::i;:::-;13791:2;13786:3;13782:12;13775:19;;13434:366;;;:::o;13806:419::-;13972:4;14010:2;13999:9;13995:18;13987:26;;14059:9;14053:4;14049:20;14045:1;14034:9;14030:17;14023:47;14087:131;14213:4;14087:131;:::i;:::-;14079:139;;13806:419;;;:::o;14231:181::-;14371:33;14367:1;14359:6;14355:14;14348:57;14231:181;:::o;14418:366::-;14560:3;14581:67;14645:2;14640:3;14581:67;:::i;:::-;14574:74;;14657:93;14746:3;14657:93;:::i;:::-;14775:2;14770:3;14766:12;14759:19;;14418:366;;;:::o;14790:419::-;14956:4;14994:2;14983:9;14979:18;14971:26;;15043:9;15037:4;15033:20;15029:1;15018:9;15014:17;15007:47;15071:131;15197:4;15071:131;:::i;:::-;15063:139;;14790:419;;;:::o;15215:220::-;15355:34;15351:1;15343:6;15339:14;15332:58;15424:3;15419:2;15411:6;15407:15;15400:28;15215:220;:::o;15441:366::-;15583:3;15604:67;15668:2;15663:3;15604:67;:::i;:::-;15597:74;;15680:93;15769:3;15680:93;:::i;:::-;15798:2;15793:3;15789:12;15782:19;;15441:366;;;:::o;15813:419::-;15979:4;16017:2;16006:9;16002:18;15994:26;;16066:9;16060:4;16056:20;16052:1;16041:9;16037:17;16030:47;16094:131;16220:4;16094:131;:::i;:::-;16086:139;;15813:419;;;:::o;16238:221::-;16378:34;16374:1;16366:6;16362:14;16355:58;16447:4;16442:2;16434:6;16430:15;16423:29;16238:221;:::o;16465:366::-;16607:3;16628:67;16692:2;16687:3;16628:67;:::i;:::-;16621:74;;16704:93;16793:3;16704:93;:::i;:::-;16822:2;16817:3;16813:12;16806:19;;16465:366;;;:::o;16837:419::-;17003:4;17041:2;17030:9;17026:18;17018:26;;17090:9;17084:4;17080:20;17076:1;17065:9;17061:17;17054:47;17118:131;17244:4;17118:131;:::i;:::-;17110:139;;16837:419;;;:::o;17262:179::-;17402:31;17398:1;17390:6;17386:14;17379:55;17262:179;:::o;17447:366::-;17589:3;17610:67;17674:2;17669:3;17610:67;:::i;:::-;17603:74;;17686:93;17775:3;17686:93;:::i;:::-;17804:2;17799:3;17795:12;17788:19;;17447:366;;;:::o;17819:419::-;17985:4;18023:2;18012:9;18008:18;18000:26;;18072:9;18066:4;18062:20;18058:1;18047:9;18043:17;18036:47;18100:131;18226:4;18100:131;:::i;:::-;18092:139;;17819:419;;;:::o;18244:224::-;18384:34;18380:1;18372:6;18368:14;18361:58;18453:7;18448:2;18440:6;18436:15;18429:32;18244:224;:::o;18474:366::-;18616:3;18637:67;18701:2;18696:3;18637:67;:::i;:::-;18630:74;;18713:93;18802:3;18713:93;:::i;:::-;18831:2;18826:3;18822:12;18815:19;;18474:366;;;:::o;18846:419::-;19012:4;19050:2;19039:9;19035:18;19027:26;;19099:9;19093:4;19089:20;19085:1;19074:9;19070:17;19063:47;19127:131;19253:4;19127:131;:::i;:::-;19119:139;;18846:419;;;:::o;19271:222::-;19411:34;19407:1;19399:6;19395:14;19388:58;19480:5;19475:2;19467:6;19463:15;19456:30;19271:222;:::o;19499:366::-;19641:3;19662:67;19726:2;19721:3;19662:67;:::i;:::-;19655:74;;19738:93;19827:3;19738:93;:::i;:::-;19856:2;19851:3;19847:12;19840:19;;19499:366;;;:::o;19871:419::-;20037:4;20075:2;20064:9;20060:18;20052:26;;20124:9;20118:4;20114:20;20110:1;20099:9;20095:17;20088:47;20152:131;20278:4;20152:131;:::i;:::-;20144:139;;19871:419;;;:::o;20296:225::-;20436:34;20432:1;20424:6;20420:14;20413:58;20505:8;20500:2;20492:6;20488:15;20481:33;20296:225;:::o;20527:366::-;20669:3;20690:67;20754:2;20749:3;20690:67;:::i;:::-;20683:74;;20766:93;20855:3;20766:93;:::i;:::-;20884:2;20879:3;20875:12;20868:19;;20527:366;;;:::o;20899:419::-;21065:4;21103:2;21092:9;21088:18;21080:26;;21152:9;21146:4;21142:20;21138:1;21127:9;21123:17;21116:47;21180:131;21306:4;21180:131;:::i;:::-;21172:139;;20899:419;;;:::o

Swarm Source

ipfs://7a74ba94ef2c088f4eb833a4b4c8aa775b94e8436dbf292489ceb53d0cb82175
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.