ETH Price: $3,150.68 (+0.99%)
Gas: 2 Gwei

Token

Pepe Meme (PEPEMEME)
 

Overview

Max Total Supply

420,690,000,000,000 PEPEMEME

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,036,675,195,012.703134431081566358 PEPEMEME

Value
$0.00
0xFA66445C5b9c10EC31012C016A416868391A60F0
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:
PepeMemeToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-23
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.4;

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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;
        _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;
        }
        _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 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 {}
}

contract PepeMemeToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    bool public cooldownEnabled;
    uint256 public cooldownDuration;
    
    mapping(address => bool) public blacklists;
    mapping(address => uint256) public lastTransaction;

    constructor(uint256 _totalSupply) ERC20("Pepe Meme", "PEPEMEME") {
        _mint(msg.sender, _totalSupply*10**18);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setCooldownEnabled(bool _enabled, uint256 _duration) external onlyOwner {
        cooldownEnabled = _enabled;
        cooldownDuration = _duration;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (cooldownEnabled) {
            require(block.timestamp >= lastTransaction[from] + cooldownDuration, "Cooldown not met");
            lastTransaction[from] = block.timestamp;
            lastTransaction[to] = block.timestamp;
        }

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "Trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620017a6380380620017a683398101604081905262000034916200055d565b6040518060400160405280600981526020016850657065204d656d6560b81b81525060405180604001604052806008815260200167504550454d454d4560c01b815250620000916200008b620000e760201b60201c565b620000eb565b8151620000a6906004906020850190620004b7565b508051620000bc906005906020840190620004b7565b505050620000e03382670de0b6b3a7640000620000da919062000591565b6200013b565b5062000606565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a56000838362000232565b8060036000828254620001b9919062000576565b90915550506001600160a01b03821660009081526001602052604081208054839290620001e890849062000576565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600b602052604090205460ff161580156200027557506001600160a01b0383166000908152600b602052604090205460ff16155b620002b15760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016200018e565b600954600160a01b900460ff16156200035857600a546001600160a01b0384166000908152600c6020526040902054620002ec919062000576565b421015620003305760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b60448201526064016200018e565b6001600160a01b038084166000908152600c6020526040808220429081905592851682529020555b6009546001600160a01b0316620003e6576000546001600160a01b03848116911614806200039357506000546001600160a01b038381169116145b620003e15760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200018e565b505050565b60065460ff1680156200040657506009546001600160a01b038481169116145b15620003e1576007548162000426846200049c60201b620006131760201c565b62000432919062000576565b111580156200046557506008548162000456846200049c60201b620006131760201c565b62000462919062000576565b10155b620003e15760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200018e565b6001600160a01b031660009081526001602052604090205490565b828054620004c590620005b3565b90600052602060002090601f016020900481019282620004e9576000855562000534565b82601f106200050457805160ff191683800117855562000534565b8280016001018555821562000534579182015b828111156200053457825182559160200191906001019062000517565b506200054292915062000546565b5090565b5b8082111562000542576000815560010162000547565b6000602082840312156200056f578081fd5b5051919050565b600082198211156200058c576200058c620005f0565b500190565b6000816000190483118215151615620005ae57620005ae620005f0565b500290565b600181811c90821680620005c857607f821691505b60208210811415620005ea57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61119080620006166000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806349bd5a5e116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610346578063a985ceef14610359578063dd62ed3e1461036d578063f2fde38b146103a657600080fd5b806395d89b411461031857806398d24e8814610320578063a457c2d71461033357600080fd5b806349bd5a5e146102ab57806370a08231146102d6578063715018a6146102e9578063860a32ec146102f157806389f9a1d3146102fe5780638da5cb5b1461030757600080fd5b806323b872dd1161014b5780633950935111610125578063395093511461025d5780633aa633aa14610270578063404e51291461028557806342966c681461029857600080fd5b806323b872dd14610232578063313ce56714610245578063352693151461025457600080fd5b80630531be921461019357806306fdde03146101c6578063095ea7b3146101db57806316c02129146101fe57806318160ddd146102215780631ab99e1214610229575b600080fd5b6101b36101a1366004610efe565b600c6020526000908152604090205481565b6040519081526020015b60405180910390f35b6101ce6103b9565b6040516101bd9190611052565b6101ee6101e9366004610fb5565b61044b565b60405190151581526020016101bd565b6101ee61020c366004610efe565b600b6020526000908152604090205460ff1681565b6003546101b3565b6101b360085481565b6101ee610240366004610f51565b610461565b604051601281526020016101bd565b6101b3600a5481565b6101ee61026b366004610fb5565b610510565b61028361027e366004610fde565b61054c565b005b610283610293366004610f8c565b6105b1565b6102836102a636600461103a565b610606565b6009546102be906001600160a01b031681565b6040516001600160a01b0390911681526020016101bd565b6101b36102e4366004610efe565b610613565b61028361062e565b6006546101ee9060ff1681565b6101b360075481565b6000546001600160a01b03166102be565b6101ce610664565b61028361032e36600461101f565b610673565b6101ee610341366004610fb5565b6106bf565b6101ee610354366004610fb5565b610758565b6009546101ee90600160a01b900460ff1681565b6101b361037b366004610f1f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102836103b4366004610efe565b610765565b6060600480546103c890611109565b80601f01602080910402602001604051908101604052809291908181526020018280546103f490611109565b80156104415780601f1061041657610100808354040283529160200191610441565b820191906000526020600020905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b60006104583384846107fd565b50600192915050565b600061046e848484610922565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104f85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050585338584036107fd565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104589185906105479086906110da565b6107fd565b6000546001600160a01b031633146105765760405162461bcd60e51b81526004016104ef906110a5565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146105db5760405162461bcd60e51b81526004016104ef906110a5565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6106103382610afc565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106585760405162461bcd60e51b81526004016104ef906110a5565b6106626000610c53565b565b6060600580546103c890611109565b6000546001600160a01b0316331461069d5760405162461bcd60e51b81526004016104ef906110a5565b60098054921515600160a01b0260ff60a01b1990931692909217909155600a55565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ef565b61074e33858584036107fd565b5060019392505050565b6000610458338484610922565b6000546001600160a01b0316331461078f5760405162461bcd60e51b81526004016104ef906110a5565b6001600160a01b0381166107f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ef565b61061081610c53565b6001600160a01b03831661085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ef565b6001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ef565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ef565b6001600160a01b0382166109e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ef565b6109f3838383610ca3565b6001600160a01b03831660009081526001602052604090205481811015610a6b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ef565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610aa29084906110da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aee91815260200190565b60405180910390a350505050565b6001600160a01b038216610b5c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ef565b610b6882600083610ca3565b6001600160a01b03821660009081526001602052604090205481811015610bdc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ef565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c0b9084906110f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610915565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600b602052604090205460ff16158015610ce557506001600160a01b0383166000908152600b602052604090205460ff16155b610d1f5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104ef565b600954600160a01b900460ff1615610dc157600a546001600160a01b0384166000908152600c6020526040902054610d5791906110da565b421015610d995760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b60448201526064016104ef565b6001600160a01b038084166000908152600c6020526040808220429081905592851682529020555b6009546001600160a01b0316610e3f576000546001600160a01b0384811691161480610dfa57506000546001600160a01b038381169116145b610c4e5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104ef565b60065460ff168015610e5e57506009546001600160a01b038481169116145b15610c4e5760075481610e7084610613565b610e7a91906110da565b11158015610e9d575060085481610e9084610613565b610e9a91906110da565b10155b610c4e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104ef565b80356001600160a01b0381168114610ee957600080fd5b919050565b80358015158114610ee957600080fd5b600060208284031215610f0f578081fd5b610f1882610ed2565b9392505050565b60008060408385031215610f31578081fd5b610f3a83610ed2565b9150610f4860208401610ed2565b90509250929050565b600080600060608486031215610f65578081fd5b610f6e84610ed2565b9250610f7c60208501610ed2565b9150604084013590509250925092565b60008060408385031215610f9e578182fd5b610fa783610ed2565b9150610f4860208401610eee565b60008060408385031215610fc7578182fd5b610fd083610ed2565b946020939093013593505050565b60008060008060808587031215610ff3578081fd5b610ffc85610eee565b935061100a60208601610ed2565b93969395505050506040820135916060013590565b60008060408385031215611031578182fd5b610fd083610eee565b60006020828403121561104b578081fd5b5035919050565b6000602080835283518082850152825b8181101561107e57858101830151858201604001528201611062565b8181111561108f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156110ed576110ed611144565b500190565b60008282101561110457611104611144565b500390565b600181811c9082168061111d57607f821691505b6020821081141561113e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206cad5cb94d1ac89d30ad9441022091e95633983b0577ac7da32b30cd9cab8e4a64736f6c6343000804003300000000000000000000000000000000000000000000000000017e9d8602b400

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806349bd5a5e116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610346578063a985ceef14610359578063dd62ed3e1461036d578063f2fde38b146103a657600080fd5b806395d89b411461031857806398d24e8814610320578063a457c2d71461033357600080fd5b806349bd5a5e146102ab57806370a08231146102d6578063715018a6146102e9578063860a32ec146102f157806389f9a1d3146102fe5780638da5cb5b1461030757600080fd5b806323b872dd1161014b5780633950935111610125578063395093511461025d5780633aa633aa14610270578063404e51291461028557806342966c681461029857600080fd5b806323b872dd14610232578063313ce56714610245578063352693151461025457600080fd5b80630531be921461019357806306fdde03146101c6578063095ea7b3146101db57806316c02129146101fe57806318160ddd146102215780631ab99e1214610229575b600080fd5b6101b36101a1366004610efe565b600c6020526000908152604090205481565b6040519081526020015b60405180910390f35b6101ce6103b9565b6040516101bd9190611052565b6101ee6101e9366004610fb5565b61044b565b60405190151581526020016101bd565b6101ee61020c366004610efe565b600b6020526000908152604090205460ff1681565b6003546101b3565b6101b360085481565b6101ee610240366004610f51565b610461565b604051601281526020016101bd565b6101b3600a5481565b6101ee61026b366004610fb5565b610510565b61028361027e366004610fde565b61054c565b005b610283610293366004610f8c565b6105b1565b6102836102a636600461103a565b610606565b6009546102be906001600160a01b031681565b6040516001600160a01b0390911681526020016101bd565b6101b36102e4366004610efe565b610613565b61028361062e565b6006546101ee9060ff1681565b6101b360075481565b6000546001600160a01b03166102be565b6101ce610664565b61028361032e36600461101f565b610673565b6101ee610341366004610fb5565b6106bf565b6101ee610354366004610fb5565b610758565b6009546101ee90600160a01b900460ff1681565b6101b361037b366004610f1f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102836103b4366004610efe565b610765565b6060600480546103c890611109565b80601f01602080910402602001604051908101604052809291908181526020018280546103f490611109565b80156104415780601f1061041657610100808354040283529160200191610441565b820191906000526020600020905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b60006104583384846107fd565b50600192915050565b600061046e848484610922565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104f85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050585338584036107fd565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104589185906105479086906110da565b6107fd565b6000546001600160a01b031633146105765760405162461bcd60e51b81526004016104ef906110a5565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6000546001600160a01b031633146105db5760405162461bcd60e51b81526004016104ef906110a5565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6106103382610afc565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106585760405162461bcd60e51b81526004016104ef906110a5565b6106626000610c53565b565b6060600580546103c890611109565b6000546001600160a01b0316331461069d5760405162461bcd60e51b81526004016104ef906110a5565b60098054921515600160a01b0260ff60a01b1990931692909217909155600a55565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ef565b61074e33858584036107fd565b5060019392505050565b6000610458338484610922565b6000546001600160a01b0316331461078f5760405162461bcd60e51b81526004016104ef906110a5565b6001600160a01b0381166107f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ef565b61061081610c53565b6001600160a01b03831661085f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ef565b6001600160a01b0382166108c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ef565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ef565b6001600160a01b0382166109e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ef565b6109f3838383610ca3565b6001600160a01b03831660009081526001602052604090205481811015610a6b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ef565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610aa29084906110da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aee91815260200190565b60405180910390a350505050565b6001600160a01b038216610b5c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104ef565b610b6882600083610ca3565b6001600160a01b03821660009081526001602052604090205481811015610bdc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104ef565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c0b9084906110f2565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610915565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600b602052604090205460ff16158015610ce557506001600160a01b0383166000908152600b602052604090205460ff16155b610d1f5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104ef565b600954600160a01b900460ff1615610dc157600a546001600160a01b0384166000908152600c6020526040902054610d5791906110da565b421015610d995760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b60448201526064016104ef565b6001600160a01b038084166000908152600c6020526040808220429081905592851682529020555b6009546001600160a01b0316610e3f576000546001600160a01b0384811691161480610dfa57506000546001600160a01b038381169116145b610c4e5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104ef565b60065460ff168015610e5e57506009546001600160a01b038481169116145b15610c4e5760075481610e7084610613565b610e7a91906110da565b11158015610e9d575060085481610e9084610613565b610e9a91906110da565b10155b610c4e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104ef565b80356001600160a01b0381168114610ee957600080fd5b919050565b80358015158114610ee957600080fd5b600060208284031215610f0f578081fd5b610f1882610ed2565b9392505050565b60008060408385031215610f31578081fd5b610f3a83610ed2565b9150610f4860208401610ed2565b90509250929050565b600080600060608486031215610f65578081fd5b610f6e84610ed2565b9250610f7c60208501610ed2565b9150604084013590509250925092565b60008060408385031215610f9e578182fd5b610fa783610ed2565b9150610f4860208401610eee565b60008060408385031215610fc7578182fd5b610fd083610ed2565b946020939093013593505050565b60008060008060808587031215610ff3578081fd5b610ffc85610eee565b935061100a60208601610ed2565b93969395505050506040820135916060013590565b60008060408385031215611031578182fd5b610fd083610eee565b60006020828403121561104b578081fd5b5035919050565b6000602080835283518082850152825b8181101561107e57858101830151858201604001528201611062565b8181111561108f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156110ed576110ed611144565b500190565b60008282101561110457611104611144565b500390565b600181811c9082168061111d57607f821691505b6020821081141561113e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206cad5cb94d1ac89d30ad9441022091e95633983b0577ac7da32b30cd9cab8e4a64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000017e9d8602b400

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000017e9d8602b400


Deployed Bytecode Sourcemap

18491:2041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18805:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;9515:25:1;;;9503:2;9488:18;18805:50:0;;;;;;;;8530:100;;;:::i;:::-;;;;;;;:::i;10697:169::-;;;;;;:::i;:::-;;:::i;:::-;;;2951:14:1;;2944:22;2926:41;;2914:2;2899:18;10697:169:0;2881:92:1;18756:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9650:108;9738:12;;9650:108;;18603:31;;;;;;11348:492;;;;;;:::i;:::-;;:::i;9492:93::-;;;9575:2;9693:36:1;;9681:2;9666:18;9492:93:0;9648:87:1;18712:31:0;;;;;;12249:215;;;;;;:::i;:::-;;:::i;19310:301::-;;;;;;:::i;:::-;;:::i;:::-;;18994:135;;;;;;:::i;:::-;;:::i;20448:81::-;;;;;;:::i;:::-;;:::i;18641:28::-;;;;;-1:-1:-1;;;;;18641:28:0;;;;;;-1:-1:-1;;;;;2742:32:1;;;2724:51;;2712:2;2697:18;18641:28:0;2679:102:1;9821:127:0;;;;;;:::i;:::-;;:::i;2440:103::-;;;:::i;18539:19::-;;;;;;;;;18565:31;;;;;;1789:87;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;1789:87;;8749:104;;;:::i;19137:165::-;;;;;;:::i;:::-;;:::i;12967:413::-;;;;;;:::i;:::-;;:::i;10161:175::-;;;;;;:::i;:::-;;:::i;18678:27::-;;;;;-1:-1:-1;;;18678:27:0;;;;;;10399:151;;;;;;:::i;:::-;-1:-1:-1;;;;;10515:18:0;;;10488:7;10515:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10399:151;2698:201;;;;;;:::i;:::-;;:::i;8530:100::-;8584:13;8617:5;8610:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8530:100;:::o;10697:169::-;10780:4;10797:39;736:10;10820:7;10829:6;10797:8;:39::i;:::-;-1:-1:-1;10854:4:0;10697:169;;;;:::o;11348:492::-;11488:4;11505:36;11515:6;11523:9;11534:6;11505:9;:36::i;:::-;-1:-1:-1;;;;;11581:19:0;;11554:24;11581:19;;;:11;:19;;;;;;;;736:10;11581:33;;;;;;;;11633:26;;;;11625:79;;;;-1:-1:-1;;;11625:79:0;;6842:2:1;11625:79:0;;;6824:21:1;6881:2;6861:18;;;6854:30;6920:34;6900:18;;;6893:62;-1:-1:-1;;;6971:18:1;;;6964:38;7019:19;;11625:79:0;;;;;;;;;11740:57;11749:6;736:10;11790:6;11771:16;:25;11740:8;:57::i;:::-;-1:-1:-1;11828:4:0;;11348:492;-1:-1:-1;;;;11348:492:0:o;12249:215::-;736:10;12337:4;12386:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12386:34:0;;;;;;;;;;12337:4;;12354:80;;12377:7;;12386:47;;12423:10;;12386:47;:::i;:::-;12354:8;:80::i;19310:301::-;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;736:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;19450:7:::1;:18:::0;;-1:-1:-1;;19450:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19479:13:::1;:30:::0;;-1:-1:-1;;;;;;19479:30:0::1;-1:-1:-1::0;;;;;19479:30:0;;;::::1;::::0;;;::::1;::::0;;;19520:16:::1;:36:::0;19567:16:::1;:36:::0;19310:301::o;18994:135::-;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;736:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19083:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19083:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18994:135::o;20448:81::-;20497:24;20503:10;20515:5;20497;:24::i;:::-;20448:81;:::o;9821:127::-;-1:-1:-1;;;;;9922:18:0;9895:7;9922:18;;;:9;:18;;;;;;;9821:127::o;2440:103::-;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;736:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;2505:30:::1;2532:1;2505:18;:30::i;:::-;2440:103::o:0;8749:104::-;8805:13;8838:7;8831:14;;;;;:::i;19137:165::-;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;736:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;19229:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;19229:26:0::1;-1:-1:-1::0;;;;19229:26:0;;::::1;::::0;;;::::1;::::0;;;19266:16:::1;:28:::0;19137:165::o;12967:413::-;736:10;13060:4;13104:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13104:34:0;;;;;;;;;;13157:35;;;;13149:85;;;;-1:-1:-1;;;13149:85:0;;8825:2:1;13149:85:0;;;8807:21:1;8864:2;8844:18;;;8837:30;8903:34;8883:18;;;8876:62;-1:-1:-1;;;8954:18:1;;;8947:35;8999:19;;13149:85:0;8797:227:1;13149:85:0;13270:67;736:10;13293:7;13321:15;13302:16;:34;13270:8;:67::i;:::-;-1:-1:-1;13368:4:0;;12967:413;-1:-1:-1;;;12967:413:0:o;10161:175::-;10247:4;10264:42;736:10;10288:9;10299:6;10264:9;:42::i;2698:201::-;1835:7;1862:6;-1:-1:-1;;;;;1862:6:0;736:10;2009:23;2001:68;;;;-1:-1:-1;;;2001:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2787:22:0;::::1;2779:73;;;::::0;-1:-1:-1;;;2779:73:0;;4595:2:1;2779:73:0::1;::::0;::::1;4577:21:1::0;4634:2;4614:18;;;4607:30;4673:34;4653:18;;;4646:62;-1:-1:-1;;;4724:18:1;;;4717:36;4770:19;;2779:73:0::1;4567:228:1::0;2779:73:0::1;2863:28;2882:8;2863:18;:28::i;16651:380::-:0;-1:-1:-1;;;;;16787:19:0;;16779:68;;;;-1:-1:-1;;;16779:68:0;;8420:2:1;16779:68:0;;;8402:21:1;8459:2;8439:18;;;8432:30;8498:34;8478:18;;;8471:62;-1:-1:-1;;;8549:18:1;;;8542:34;8593:19;;16779:68:0;8392:226:1;16779:68:0;-1:-1:-1;;;;;16866:21:0;;16858:68;;;;-1:-1:-1;;;16858:68:0;;5002:2:1;16858:68:0;;;4984:21:1;5041:2;5021:18;;;5014:30;5080:34;5060:18;;;5053:62;-1:-1:-1;;;5131:18:1;;;5124:32;5173:19;;16858:68:0;4974:224:1;16858:68:0;-1:-1:-1;;;;;16939:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16991:32;;9515:25:1;;;16991:32:0;;9488:18:1;16991:32:0;;;;;;;;16651:380;;;:::o;13870:733::-;-1:-1:-1;;;;;14010:20:0;;14002:70;;;;-1:-1:-1;;;14002:70:0;;8014:2:1;14002:70:0;;;7996:21:1;8053:2;8033:18;;;8026:30;8092:34;8072:18;;;8065:62;-1:-1:-1;;;8143:18:1;;;8136:35;8188:19;;14002:70:0;7986:227:1;14002:70:0;-1:-1:-1;;;;;14091:23:0;;14083:71;;;;-1:-1:-1;;;14083:71:0;;3788:2:1;14083:71:0;;;3770:21:1;3827:2;3807:18;;;3800:30;3866:34;3846:18;;;3839:62;-1:-1:-1;;;3917:18:1;;;3910:33;3960:19;;14083:71:0;3760:225:1;14083:71:0;14167:47;14188:6;14196:9;14207:6;14167:20;:47::i;:::-;-1:-1:-1;;;;;14251:17:0;;14227:21;14251:17;;;:9;:17;;;;;;14287:23;;;;14279:74;;;;-1:-1:-1;;;14279:74:0;;5405:2:1;14279:74:0;;;5387:21:1;5444:2;5424:18;;;5417:30;5483:34;5463:18;;;5456:62;-1:-1:-1;;;5534:18:1;;;5527:36;5580:19;;14279:74:0;5377:228:1;14279:74:0;-1:-1:-1;;;;;14389:17:0;;;;;;;:9;:17;;;;;;14409:22;;;14389:42;;14453:20;;;;;;;;:30;;14425:6;;14389:17;14453:30;;14425:6;;14453:30;:::i;:::-;;;;;;;;14518:9;-1:-1:-1;;;;;14501:35:0;14510:6;-1:-1:-1;;;;;14501:35:0;;14529:6;14501:35;;;;9515:25:1;;9503:2;9488:18;;9470:76;14501:35:0;;;;;;;;13870:733;;;;:::o;15622:591::-;-1:-1:-1;;;;;15706:21:0;;15698:67;;;;-1:-1:-1;;;15698:67:0;;7612:2:1;15698:67:0;;;7594:21:1;7651:2;7631:18;;;7624:30;7690:34;7670:18;;;7663:62;-1:-1:-1;;;7741:18:1;;;7734:31;7782:19;;15698:67:0;7584:223:1;15698:67:0;15778:49;15799:7;15816:1;15820:6;15778:20;:49::i;:::-;-1:-1:-1;;;;;15865:18:0;;15840:22;15865:18;;;:9;:18;;;;;;15902:24;;;;15894:71;;;;-1:-1:-1;;;15894:71:0;;4192:2:1;15894:71:0;;;4174:21:1;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;-1:-1:-1;;;4321:18:1;;;4314:32;4363:19;;15894:71:0;4164:224:1;15894:71:0;-1:-1:-1;;;;;16001:18:0;;;;;;:9;:18;;;;;16022:23;;;16001:44;;16067:12;:22;;16039:6;;16001:18;16067:22;;16039:6;;16067:22;:::i;:::-;;;;-1:-1:-1;;16107:37:0;;9515:25:1;;;16133:1:0;;-1:-1:-1;;;;;16107:37:0;;;;;9503:2:1;9488:18;16107:37:0;9470:76:1;16157:48:0;15622:591;;;:::o;3059:191::-;3133:16;3152:6;;-1:-1:-1;;;;;3169:17:0;;;-1:-1:-1;;;;;;3169:17:0;;;;;;3202:40;;3152:6;;;;;;;3202:40;;3133:16;3202:40;3059:191;;:::o;19619:821::-;-1:-1:-1;;;;;19771:14:0;;;;;;:10;:14;;;;;;;;19770:15;:36;;;;-1:-1:-1;;;;;;19790:16:0;;;;;;:10;:16;;;;;;;;19789:17;19770:36;19762:60;;;;-1:-1:-1;;;19762:60:0;;9231:2:1;19762:60:0;;;9213:21:1;9270:2;9250:18;;;9243:30;-1:-1:-1;;;9289:18:1;;;9282:41;9340:18;;19762:60:0;9203:161:1;19762:60:0;19839:15;;-1:-1:-1;;;19839:15:0;;;;19835:242;;;19922:16;;-1:-1:-1;;;;;19898:21:0;;;;;;:15;:21;;;;;;:40;;19922:16;19898:40;:::i;:::-;19879:15;:59;;19871:88;;;;-1:-1:-1;;;19871:88:0;;6497:2:1;19871:88:0;;;6479:21:1;6536:2;6516:18;;;6509:30;-1:-1:-1;;;6555:18:1;;;6548:46;6611:18;;19871:88:0;6469:166:1;19871:88:0;-1:-1:-1;;;;;19974:21:0;;;;;;;:15;:21;;;;;;19998:15;19974:39;;;;20028:19;;;;;;;:37;19835:242;20093:13;;-1:-1:-1;;;;;20093:13:0;20089:148;;1835:7;1862:6;-1:-1:-1;;;;;20145:15:0;;;1862:6;;20145:15;;:32;;-1:-1:-1;1835:7:0;1862:6;-1:-1:-1;;;;;20164:13:0;;;1862:6;;20164:13;20145:32;20137:67;;;;-1:-1:-1;;;20137:67:0;;6146:2:1;20137:67:0;;;6128:21:1;6185:2;6165:18;;;6158:30;-1:-1:-1;;;6204:18:1;;;6197:52;6266:18;;20137:67:0;6118:172:1;20089:148:0;20253:7;;;;:32;;;;-1:-1:-1;20272:13:0;;-1:-1:-1;;;;;20264:21:0;;;20272:13;;20264:21;20253:32;20249:184;;;20342:16;;20332:6;20310:19;20326:2;20310:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20394:16;;20384:6;20362:19;20378:2;20362:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20310:100;20302:119;;;;-1:-1:-1;;;20302:119:0;;5812:2:1;20302:119:0;;;5794:21:1;5851:1;5831:18;;;5824:29;-1:-1:-1;;;5869:18:1;;;5862:36;5915:18;;20302:119:0;5784:155:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:2;;342:1;339;332:12;357:196;416:6;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:29;537:9;518:29;:::i;:::-;508:39;427:126;-1:-1:-1;;;427:126:1:o;558:270::-;626:6;634;687:2;675:9;666:7;662:23;658:32;655:2;;;708:6;700;693:22;655:2;736:29;755:9;736:29;:::i;:::-;726:39;;784:38;818:2;807:9;803:18;784:38;:::i;:::-;774:48;;645:183;;;;;:::o;833:338::-;910:6;918;926;979:2;967:9;958:7;954:23;950:32;947:2;;;1000:6;992;985:22;947:2;1028:29;1047:9;1028:29;:::i;:::-;1018:39;;1076:38;1110:2;1099:9;1095:18;1076:38;:::i;:::-;1066:48;;1161:2;1150:9;1146:18;1133:32;1123:42;;937:234;;;;;:::o;1176:264::-;1241:6;1249;1302:2;1290:9;1281:7;1277:23;1273:32;1270:2;;;1323:6;1315;1308:22;1270:2;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:35;1430:2;1419:9;1415:18;1399:35;:::i;1445:264::-;1513:6;1521;1574:2;1562:9;1553:7;1549:23;1545:32;1542:2;;;1595:6;1587;1580:22;1542:2;1623:29;1642:9;1623:29;:::i;:::-;1613:39;1699:2;1684:18;;;;1671:32;;-1:-1:-1;;;1532:177:1:o;1714:401::-;1797:6;1805;1813;1821;1874:3;1862:9;1853:7;1849:23;1845:33;1842:2;;;1896:6;1888;1881:22;1842:2;1924:26;1940:9;1924:26;:::i;:::-;1914:36;;1969:38;2003:2;1992:9;1988:18;1969:38;:::i;:::-;1832:283;;1959:48;;-1:-1:-1;;;;2054:2:1;2039:18;;2026:32;;2105:2;2090:18;2077:32;;1832:283::o;2120:258::-;2185:6;2193;2246:2;2234:9;2225:7;2221:23;2217:32;2214:2;;;2267:6;2259;2252:22;2214:2;2295:26;2311:9;2295:26;:::i;2383:190::-;2442:6;2495:2;2483:9;2474:7;2470:23;2466:32;2463:2;;;2516:6;2508;2501:22;2463:2;-1:-1:-1;2544:23:1;;2453:120;-1:-1:-1;2453:120:1:o;2978:603::-;3090:4;3119:2;3148;3137:9;3130:21;3180:6;3174:13;3223:6;3218:2;3207:9;3203:18;3196:34;3248:4;3261:140;3275:6;3272:1;3269:13;3261:140;;;3370:14;;;3366:23;;3360:30;3336:17;;;3355:2;3332:26;3325:66;3290:10;;3261:140;;;3419:6;3416:1;3413:13;3410:2;;;3489:4;3484:2;3475:6;3464:9;3460:22;3456:31;3449:45;3410:2;-1:-1:-1;3565:2:1;3544:15;-1:-1:-1;;3540:29:1;3525:45;;;;3572:2;3521:54;;3099:482;-1:-1:-1;;;3099:482:1:o;7049:356::-;7251:2;7233:21;;;7270:18;;;7263:30;7329:34;7324:2;7309:18;;7302:62;7396:2;7381:18;;7223:182::o;9740:128::-;9780:3;9811:1;9807:6;9804:1;9801:13;9798:2;;;9817:18;;:::i;:::-;-1:-1:-1;9853:9:1;;9788:80::o;9873:125::-;9913:4;9941:1;9938;9935:8;9932:2;;;9946:18;;:::i;:::-;-1:-1:-1;9983:9:1;;9922:76::o;10003:380::-;10082:1;10078:12;;;;10125;;;10146:2;;10200:4;10192:6;10188:17;10178:27;;10146:2;10253;10245:6;10242:14;10222:18;10219:38;10216:2;;;10299:10;10294:3;10290:20;10287:1;10280:31;10334:4;10331:1;10324:15;10362:4;10359:1;10352:15;10216:2;;10058:325;;;:::o;10388:127::-;10449:10;10444:3;10440:20;10437:1;10430:31;10480:4;10477:1;10470:15;10504:4;10501:1;10494:15

Swarm Source

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