ETH Price: $3,255.91 (+2.53%)
Gas: 3 Gwei

Token

RIZZO (RIZZ)
 

Overview

Max Total Supply

250,000,000,000,000 RIZZ

Holders

436

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
73,535,919,032.877008074002919993 RIZZ

Value
$0.00
0xa0443F8A74E3B134d88F7F4BD054Fa1e6b837244
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:
StandardToken

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-05-07
*/

// SPDX-License-Identifier: MIT

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

    constructor() {
        _setOwner(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) internal {
        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 StandardToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    bool public cooldownEnabled;
    uint256 public cooldownDuration;

    uint256 public _decimals = 18 ;

    mapping(address => uint256) public lastTransaction;

    constructor(uint256 _totalSupply, string memory _name, string memory _symbol) ERC20(_name, _symbol) {
        _mint(owner(), _totalSupply * 10**_decimals);
    }

    function setCooldownEnabled(uint256 _duration) public onlyOwner {
        cooldownDuration = _duration;
    }

    function setRule(bool _limited, uint256 _cooldownDuration, uint256 _maxHoldingAmount) public onlyOwner {
        limited = _limited;
        setCooldownEnabled(_cooldownDuration);
        maxHoldingAmount = _maxHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        if (limited && (from != owner() || to != owner())) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
            require(block.timestamp >= lastTransaction[from] + cooldownDuration, "Cooldown not met");
            lastTransaction[from] = block.timestamp;
            lastTransaction[to] = block.timestamp;
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":"uint256","name":"_duration","type":"uint256"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_cooldownDuration","type":"uint256"},{"internalType":"uint256","name":"_maxHoldingAmount","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"}]

60806040526012600a553480156200001657600080fd5b50604051620015e4380380620015e48339810160408190526200003991620004b4565b81816200004633620000b2565b81516200005b9060049060208501906200035b565b508051620000719060059060208401906200035b565b505050620000a9620000886200010260201b60201c565b600a8054620000979162000589565b620000a3908662000654565b62000111565b505050620006df565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031690565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017b6000838362000208565b80600360008282546200018f919062000525565b90915550506001600160a01b03821660009081526001602052604081208054839290620001be90849062000525565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60065460ff1680156200024257506000546001600160a01b0384811691161415806200024257506000546001600160a01b03838116911614155b156200033b576007548162000262846200034060201b620004e91760201c565b6200026e919062000525565b1115620002a75760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000164565b6009546001600160a01b0384166000908152600b6020526040902054620002cf919062000525565b421015620003135760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b604482015260640162000164565b6001600160a01b038084166000908152600b6020526040808220429081905592851682529020555b505050565b6001600160a01b031660009081526001602052604090205490565b828054620003699062000676565b90600052602060002090601f0160209004810192826200038d5760008555620003d8565b82601f10620003a857805160ff1916838001178555620003d8565b82800160010185558215620003d8579182015b82811115620003d8578251825591602001919060010190620003bb565b50620003e6929150620003ea565b5090565b5b80821115620003e65760008155600101620003eb565b600082601f83011262000412578081fd5b81516001600160401b03808211156200042f576200042f620006c9565b604051601f8301601f19908116603f011681019082821181831017156200045a576200045a620006c9565b8160405283815260209250868385880101111562000476578485fd5b8491505b838210156200049957858201830151818301840152908201906200047a565b83821115620004aa57848385830101525b9695505050505050565b600080600060608486031215620004c9578283fd5b835160208501519093506001600160401b0380821115620004e8578384fd5b620004f68783880162000401565b935060408601519150808211156200050c578283fd5b506200051b8682870162000401565b9150509250925092565b600082198211156200053b576200053b620006b3565b500190565b600181815b8085111562000581578160001904821115620005655762000565620006b3565b808516156200057357918102915b93841c939080029062000545565b509250929050565b60006200059783836200059e565b9392505050565b600082620005af575060016200064e565b81620005be575060006200064e565b8160018114620005d75760028114620005e25762000602565b60019150506200064e565b60ff841115620005f657620005f6620006b3565b50506001821b6200064e565b5060208310610133831016604e8410600b841016171562000627575081810a6200064e565b62000633838362000540565b80600019048211156200064a576200064a620006b3565b0290505b92915050565b6000816000190483118215151615620006715762000671620006b3565b500290565b600181811c908216806200068b57607f821691505b60208210811415620006ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610ef580620006ef6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610288578063a9059cbb1461029b578063a985ceef146102ae578063d07ea4e2146102bb578063dd62ed3e146102ce578063f2fde38b1461030757600080fd5b806370a0823114610234578063715018a614610247578063860a32ec1461024f57806389f9a1d31461025c5780638da5cb5b1461026557806395d89b411461028057600080fd5b8063313ce56711610115578063313ce567146101d857806332424aa3146101e757806335269315146101f057806339509351146101f957806342966c681461020c5780634cbee0911461022157600080fd5b80630531be921461015257806306fdde0314610185578063095ea7b31461019a57806318160ddd146101bd57806323b872dd146101c5575b600080fd5b610172610160366004610cb0565b600b6020526000908152604090205481565b6040519081526020015b60405180910390f35b61018d61031a565b60405161017c9190610db7565b6101ad6101a8366004610d3e565b6103ac565b604051901515815260200161017c565b600354610172565b6101ad6101d3366004610d03565b6103c2565b6040516012815260200161017c565b610172600a5481565b61017260095481565b6101ad610207366004610d3e565b610471565b61021f61021a366004610d9f565b6104ad565b005b61021f61022f366004610d9f565b6104ba565b610172610242366004610cb0565b6104e9565b61021f610504565b6006546101ad9060ff1681565b61017260075481565b6000546040516001600160a01b03909116815260200161017c565b61018d61053a565b6101ad610296366004610d3e565b610549565b6101ad6102a9366004610d3e565b6105e2565b6008546101ad9060ff1681565b61021f6102c9366004610d67565b6105ef565b6101726102dc366004610cd1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021f610315366004610cb0565b610637565b60606004805461032990610e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461035590610e6e565b80156103a25780601f10610377576101008083540402835291602001916103a2565b820191906000526020600020905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b60006103b93384846106cf565b50600192915050565b60006103cf8484846107f4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046685338584036106cf565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b99185906104a8908690610e3f565b6106cf565b6104b733826109ce565b50565b6000546001600160a01b031633146104e45760405162461bcd60e51b815260040161045090610e0a565b600955565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461052e5760405162461bcd60e51b815260040161045090610e0a565b6105386000610b25565b565b60606005805461032990610e6e565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610450565b6105d833858584036106cf565b5060019392505050565b60006103b93384846107f4565b6000546001600160a01b031633146106195760405162461bcd60e51b815260040161045090610e0a565b6006805460ff1916841515179055610630826104ba565b6007555050565b6000546001600160a01b031633146106615760405162461bcd60e51b815260040161045090610e0a565b6001600160a01b0381166106c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610450565b6104b781610b25565b6001600160a01b0383166107315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610450565b6001600160a01b0382166107925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610450565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108585760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610450565b6001600160a01b0382166108ba5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610450565b6108c5838383610b75565b6001600160a01b0383166000908152600160205260409020548181101561093d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610450565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610974908490610e3f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c091815260200190565b60405180910390a350505050565b6001600160a01b038216610a2e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610450565b610a3a82600083610b75565b6001600160a01b03821660009081526001602052604090205481811015610aae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610450565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610add908490610e57565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107e7565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065460ff168015610bad57506000546001600160a01b038481169116141580610bad57506000546001600160a01b03838116911614155b15610b205760075481610bbf846104e9565b610bc99190610e3f565b1115610c005760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610450565b6009546001600160a01b0384166000908152600b6020526040902054610c269190610e3f565b421015610c685760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b6044820152606401610450565b6001600160a01b038084166000908152600b602052604080822042908190559285168252902055505050565b80356001600160a01b0381168114610cab57600080fd5b919050565b600060208284031215610cc1578081fd5b610cca82610c94565b9392505050565b60008060408385031215610ce3578081fd5b610cec83610c94565b9150610cfa60208401610c94565b90509250929050565b600080600060608486031215610d17578081fd5b610d2084610c94565b9250610d2e60208501610c94565b9150604084013590509250925092565b60008060408385031215610d50578182fd5b610d5983610c94565b946020939093013593505050565b600080600060608486031215610d7b578283fd5b83358015158114610d8a578384fd5b95602085013595506040909401359392505050565b600060208284031215610db0578081fd5b5035919050565b6000602080835283518082850152825b81811015610de357858101830151858201604001528201610dc7565b81811115610df45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e5257610e52610ea9565b500190565b600082821015610e6957610e69610ea9565b500390565b600181811c90821680610e8257607f821691505b60208210811415610ea357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ce422d4f389431f3a47065104d5709ac9904654209eafad2b98fa42c6dcff98f64736f6c634300080400330000000000000000000000000000000000000000000000000000e35fa931a000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000552495a5a4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452495a5a00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610288578063a9059cbb1461029b578063a985ceef146102ae578063d07ea4e2146102bb578063dd62ed3e146102ce578063f2fde38b1461030757600080fd5b806370a0823114610234578063715018a614610247578063860a32ec1461024f57806389f9a1d31461025c5780638da5cb5b1461026557806395d89b411461028057600080fd5b8063313ce56711610115578063313ce567146101d857806332424aa3146101e757806335269315146101f057806339509351146101f957806342966c681461020c5780634cbee0911461022157600080fd5b80630531be921461015257806306fdde0314610185578063095ea7b31461019a57806318160ddd146101bd57806323b872dd146101c5575b600080fd5b610172610160366004610cb0565b600b6020526000908152604090205481565b6040519081526020015b60405180910390f35b61018d61031a565b60405161017c9190610db7565b6101ad6101a8366004610d3e565b6103ac565b604051901515815260200161017c565b600354610172565b6101ad6101d3366004610d03565b6103c2565b6040516012815260200161017c565b610172600a5481565b61017260095481565b6101ad610207366004610d3e565b610471565b61021f61021a366004610d9f565b6104ad565b005b61021f61022f366004610d9f565b6104ba565b610172610242366004610cb0565b6104e9565b61021f610504565b6006546101ad9060ff1681565b61017260075481565b6000546040516001600160a01b03909116815260200161017c565b61018d61053a565b6101ad610296366004610d3e565b610549565b6101ad6102a9366004610d3e565b6105e2565b6008546101ad9060ff1681565b61021f6102c9366004610d67565b6105ef565b6101726102dc366004610cd1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021f610315366004610cb0565b610637565b60606004805461032990610e6e565b80601f016020809104026020016040519081016040528092919081815260200182805461035590610e6e565b80156103a25780601f10610377576101008083540402835291602001916103a2565b820191906000526020600020905b81548152906001019060200180831161038557829003601f168201915b5050505050905090565b60006103b93384846106cf565b50600192915050565b60006103cf8484846107f4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046685338584036106cf565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103b99185906104a8908690610e3f565b6106cf565b6104b733826109ce565b50565b6000546001600160a01b031633146104e45760405162461bcd60e51b815260040161045090610e0a565b600955565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461052e5760405162461bcd60e51b815260040161045090610e0a565b6105386000610b25565b565b60606005805461032990610e6e565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610450565b6105d833858584036106cf565b5060019392505050565b60006103b93384846107f4565b6000546001600160a01b031633146106195760405162461bcd60e51b815260040161045090610e0a565b6006805460ff1916841515179055610630826104ba565b6007555050565b6000546001600160a01b031633146106615760405162461bcd60e51b815260040161045090610e0a565b6001600160a01b0381166106c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610450565b6104b781610b25565b6001600160a01b0383166107315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610450565b6001600160a01b0382166107925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610450565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108585760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610450565b6001600160a01b0382166108ba5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610450565b6108c5838383610b75565b6001600160a01b0383166000908152600160205260409020548181101561093d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610450565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610974908490610e3f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c091815260200190565b60405180910390a350505050565b6001600160a01b038216610a2e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610450565b610a3a82600083610b75565b6001600160a01b03821660009081526001602052604090205481811015610aae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610450565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610add908490610e57565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107e7565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065460ff168015610bad57506000546001600160a01b038481169116141580610bad57506000546001600160a01b03838116911614155b15610b205760075481610bbf846104e9565b610bc99190610e3f565b1115610c005760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610450565b6009546001600160a01b0384166000908152600b6020526040902054610c269190610e3f565b421015610c685760405162461bcd60e51b815260206004820152601060248201526f10dbdbdb191bdddb881b9bdd081b595d60821b6044820152606401610450565b6001600160a01b038084166000908152600b602052604080822042908190559285168252902055505050565b80356001600160a01b0381168114610cab57600080fd5b919050565b600060208284031215610cc1578081fd5b610cca82610c94565b9392505050565b60008060408385031215610ce3578081fd5b610cec83610c94565b9150610cfa60208401610c94565b90509250929050565b600080600060608486031215610d17578081fd5b610d2084610c94565b9250610d2e60208501610c94565b9150604084013590509250925092565b60008060408385031215610d50578182fd5b610d5983610c94565b946020939093013593505050565b600080600060608486031215610d7b578283fd5b83358015158114610d8a578384fd5b95602085013595506040909401359392505050565b600060208284031215610db0578081fd5b5035919050565b6000602080835283518082850152825b81811015610de357858101830151858201604001528201610dc7565b81811115610df45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e5257610e52610ea9565b500190565b600082821015610e6957610e69610ea9565b500390565b600181811c90821680610e8257607f821691505b60208210811415610ea357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ce422d4f389431f3a47065104d5709ac9904654209eafad2b98fa42c6dcff98f64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000e35fa931a000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000552495a5a4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452495a5a00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 250000000000000
Arg [1] : _name (string): RIZZO
Arg [2] : _symbol (string): RIZZ

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000e35fa931a000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 52495a5a4f000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 52495a5a00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17496:1413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17721:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;8155:25:1;;;8143:2;8128:18;17721:50:0;;;;;;;;7535:100;;;:::i;:::-;;;;;;;:::i;9702:169::-;;;;;;:::i;:::-;;:::i;:::-;;;2282:14:1;;2275:22;2257:41;;2245:2;2230:18;9702:169:0;2212:92:1;8655:108:0;8743:12;;8655:108;;10353:492;;;;;;:::i;:::-;;:::i;8497:93::-;;;8580:2;8333:36:1;;8321:2;8306:18;8497:93:0;8288:87:1;17682:29:0;;;;;;17642:31;;;;;;11254:215;;;;;;:::i;:::-;;:::i;18825:81::-;;;;;;:::i;:::-;;:::i;:::-;;17951:111;;;;;;:::i;:::-;;:::i;8826:127::-;;;;;;:::i;:::-;;:::i;1779:94::-;;;:::i;17544:19::-;;;;;;;;;17570:31;;;;;;1556:87;1602:7;1629:6;1556:87;;-1:-1:-1;;;;;1629:6:0;;;2055:51:1;;2043:2;2028:18;1556:87:0;2010:102:1;7754:104:0;;;:::i;11972:413::-;;;;;;:::i;:::-;;:::i;9166:175::-;;;;;;:::i;:::-;;:::i;17608:27::-;;;;;;;;;18070:235;;;;;;:::i;:::-;;:::i;9404:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9520:18:0;;;9493:7;9520:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9404:151;1881:192;;;;;;:::i;:::-;;:::i;7535:100::-;7589:13;7622:5;7615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7535:100;:::o;9702:169::-;9785:4;9802:39;682:10;9825:7;9834:6;9802:8;:39::i;:::-;-1:-1:-1;9859:4:0;9702:169;;;;:::o;10353:492::-;10493:4;10510:36;10520:6;10528:9;10539:6;10510:9;:36::i;:::-;-1:-1:-1;;;;;10586:19:0;;10559:24;10586:19;;;:11;:19;;;;;;;;682:10;10586:33;;;;;;;;10638:26;;;;10630:79;;;;-1:-1:-1;;;10630:79:0;;5822:2:1;10630:79:0;;;5804:21:1;5861:2;5841:18;;;5834:30;5900:34;5880:18;;;5873:62;-1:-1:-1;;;5951:18:1;;;5944:38;5999:19;;10630:79:0;;;;;;;;;10745:57;10754:6;682:10;10795:6;10776:16;:25;10745:8;:57::i;:::-;-1:-1:-1;10833:4:0;;10353:492;-1:-1:-1;;;;10353:492:0:o;11254:215::-;682:10;11342:4;11391:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11391:34:0;;;;;;;;;;11342:4;;11359:80;;11382:7;;11391:47;;11428:10;;11391:47;:::i;:::-;11359:8;:80::i;18825:81::-;18874:24;18880:10;18892:5;18874;:24::i;:::-;18825:81;:::o;17951:111::-;1602:7;1629:6;-1:-1:-1;;;;;1629:6:0;682:10;1691:23;1683:68;;;;-1:-1:-1;;;1683:68:0;;;;;;;:::i;:::-;18026:16:::1;:28:::0;17951:111::o;8826:127::-;-1:-1:-1;;;;;8927:18:0;8900:7;8927:18;;;:9;:18;;;;;;;8826:127::o;1779:94::-;1602:7;1629:6;-1:-1:-1;;;;;1629:6:0;682:10;1691:23;1683:68;;;;-1:-1:-1;;;1683:68:0;;;;;;;:::i;:::-;1844:21:::1;1862:1;1844:9;:21::i;:::-;1779:94::o:0;7754:104::-;7810:13;7843:7;7836:14;;;;;:::i;11972:413::-;682:10;12065:4;12109:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12109:34:0;;;;;;;;;;12162:35;;;;12154:85;;;;-1:-1:-1;;;12154:85:0;;7805:2:1;12154:85:0;;;7787:21:1;7844:2;7824:18;;;7817:30;7883:34;7863:18;;;7856:62;-1:-1:-1;;;7934:18:1;;;7927:35;7979:19;;12154:85:0;7777:227:1;12154:85:0;12275:67;682:10;12298:7;12326:15;12307:16;:34;12275:8;:67::i;:::-;-1:-1:-1;12373:4:0;;11972:413;-1:-1:-1;;;11972:413:0:o;9166:175::-;9252:4;9269:42;682:10;9293:9;9304:6;9269:9;:42::i;18070:235::-;1602:7;1629:6;-1:-1:-1;;;;;1629:6:0;682:10;1691:23;1683:68;;;;-1:-1:-1;;;1683:68:0;;;;;;;:::i;:::-;18184:7:::1;:18:::0;;-1:-1:-1;;18184:18:0::1;::::0;::::1;;;::::0;;18213:37:::1;18232:17:::0;18213:18:::1;:37::i;:::-;18261:16;:36:::0;-1:-1:-1;;18070:235:0:o;1881:192::-;1602:7;1629:6;-1:-1:-1;;;;;1629:6:0;682:10;1691:23;1683:68;;;;-1:-1:-1;;;1683:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1970:22:0;::::1;1962:73;;;::::0;-1:-1:-1;;;1962:73:0;;3926:2:1;1962:73:0::1;::::0;::::1;3908:21:1::0;3965:2;3945:18;;;3938:30;4004:34;3984:18;;;3977:62;-1:-1:-1;;;4055:18:1;;;4048:36;4101:19;;1962:73:0::1;3898:228:1::0;1962:73:0::1;2046:19;2056:8;2046:9;:19::i;15656:380::-:0;-1:-1:-1;;;;;15792:19:0;;15784:68;;;;-1:-1:-1;;;15784:68:0;;7400:2:1;15784:68:0;;;7382:21:1;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:34;7573:19;;15784:68:0;7372:226:1;15784:68:0;-1:-1:-1;;;;;15871:21:0;;15863:68;;;;-1:-1:-1;;;15863:68:0;;4333:2:1;15863:68:0;;;4315:21:1;4372:2;4352:18;;;4345:30;4411:34;4391:18;;;4384:62;-1:-1:-1;;;4462:18:1;;;4455:32;4504:19;;15863:68:0;4305:224:1;15863:68:0;-1:-1:-1;;;;;15944:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15996:32;;8155:25:1;;;15996:32:0;;8128:18:1;15996:32:0;;;;;;;;15656:380;;;:::o;12875:733::-;-1:-1:-1;;;;;13015:20:0;;13007:70;;;;-1:-1:-1;;;13007:70:0;;6994:2:1;13007:70:0;;;6976:21:1;7033:2;7013:18;;;7006:30;7072:34;7052:18;;;7045:62;-1:-1:-1;;;7123:18:1;;;7116:35;7168:19;;13007:70:0;6966:227:1;13007:70:0;-1:-1:-1;;;;;13096:23:0;;13088:71;;;;-1:-1:-1;;;13088:71:0;;3119:2:1;13088:71:0;;;3101:21:1;3158:2;3138:18;;;3131:30;3197:34;3177:18;;;3170:62;-1:-1:-1;;;3248:18:1;;;3241:33;3291:19;;13088:71:0;3091:225:1;13088:71:0;13172:47;13193:6;13201:9;13212:6;13172:20;:47::i;:::-;-1:-1:-1;;;;;13256:17:0;;13232:21;13256:17;;;:9;:17;;;;;;13292:23;;;;13284:74;;;;-1:-1:-1;;;13284:74:0;;4736:2:1;13284:74:0;;;4718:21:1;4775:2;4755:18;;;4748:30;4814:34;4794:18;;;4787:62;-1:-1:-1;;;4865:18:1;;;4858:36;4911:19;;13284:74:0;4708:228:1;13284:74:0;-1:-1:-1;;;;;13394:17:0;;;;;;;:9;:17;;;;;;13414:22;;;13394:42;;13458:20;;;;;;;;:30;;13430:6;;13394:17;13458:30;;13430:6;;13458:30;:::i;:::-;;;;;;;;13523:9;-1:-1:-1;;;;;13506:35:0;13515:6;-1:-1:-1;;;;;13506:35:0;;13534:6;13506:35;;;;8155:25:1;;8143:2;8128:18;;8110:76;13506:35:0;;;;;;;;12875:733;;;;:::o;14627:591::-;-1:-1:-1;;;;;14711:21:0;;14703:67;;;;-1:-1:-1;;;14703:67:0;;6592:2:1;14703:67:0;;;6574:21:1;6631:2;6611:18;;;6604:30;6670:34;6650:18;;;6643:62;-1:-1:-1;;;6721:18:1;;;6714:31;6762:19;;14703:67:0;6564:223:1;14703:67:0;14783:49;14804:7;14821:1;14825:6;14783:20;:49::i;:::-;-1:-1:-1;;;;;14870:18:0;;14845:22;14870:18;;;:9;:18;;;;;;14907:24;;;;14899:71;;;;-1:-1:-1;;;14899:71:0;;3523:2:1;14899:71:0;;;3505:21:1;3562:2;3542:18;;;3535:30;3601:34;3581:18;;;3574:62;-1:-1:-1;;;3652:18:1;;;3645:32;3694:19;;14899:71:0;3495:224:1;14899:71:0;-1:-1:-1;;;;;15006:18:0;;;;;;:9;:18;;;;;15027:23;;;15006:44;;15072:12;:22;;15044:6;;15006:18;15072:22;;15044:6;;15072:22;:::i;:::-;;;;-1:-1:-1;;15112:37:0;;8155:25:1;;;15138:1:0;;-1:-1:-1;;;;;15112:37:0;;;;;8143:2:1;8128:18;15112:37:0;8110:76:1;15162:48:0;14627:591;;;:::o;2081:174::-;2138:16;2157:6;;-1:-1:-1;;;;;2174:17:0;;;-1:-1:-1;;;;;;2174:17:0;;;;;;2207:40;;2157:6;;;;;;;2207:40;;2138:16;2207:40;2081:174;;:::o;18313:504::-;18460:7;;;;:45;;;;-1:-1:-1;1602:7:0;1629:6;-1:-1:-1;;;;;18472:15:0;;;1629:6;;18472:15;;;:32;;-1:-1:-1;1602:7:0;1629:6;-1:-1:-1;;;;;18491:13:0;;;1629:6;;18491:13;;18472:32;18456:354;;;18562:16;;18552:6;18530:19;18546:2;18530:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;18522:67;;;;-1:-1:-1;;;18522:67:0;;5143:2:1;18522:67:0;;;5125:21:1;5182:1;5162:18;;;5155:29;-1:-1:-1;;;5200:18:1;;;5193:36;5246:18;;18522:67:0;5115:155:1;18522:67:0;18655:16;;-1:-1:-1;;;;;18631:21:0;;;;;;:15;:21;;;;;;:40;;18655:16;18631:40;:::i;:::-;18612:15;:59;;18604:88;;;;-1:-1:-1;;;18604:88:0;;5477:2:1;18604:88:0;;;5459:21:1;5516:2;5496:18;;;5489:30;-1:-1:-1;;;5535:18:1;;;5528:46;5591:18;;18604:88:0;5449:166:1;18604:88:0;-1:-1:-1;;;;;18707:21:0;;;;;;;:15;:21;;;;;;18731:15;18707:39;;;;18761:19;;;;;;;:37;18313:504;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:429::-;1354:6;1362;1370;1423:2;1411:9;1402:7;1398:23;1394:32;1391:2;;;1444:6;1436;1429:22;1391:2;1488:9;1475:23;1541:5;1534:13;1527:21;1520:5;1517:32;1507:2;;1568:6;1560;1553:22;1507:2;1596:5;1648:2;1633:18;;1620:32;;-1:-1:-1;1699:2:1;1684:18;;;1671:32;;1381:328;-1:-1:-1;;;1381:328:1:o;1714:190::-;1773:6;1826:2;1814:9;1805:7;1801:23;1797:32;1794:2;;;1847:6;1839;1832:22;1794:2;-1:-1:-1;1875:23:1;;1784:120;-1:-1:-1;1784:120:1:o;2309:603::-;2421:4;2450:2;2479;2468:9;2461:21;2511:6;2505:13;2554:6;2549:2;2538:9;2534:18;2527:34;2579:4;2592:140;2606:6;2603:1;2600:13;2592:140;;;2701:14;;;2697:23;;2691:30;2667:17;;;2686:2;2663:26;2656:66;2621:10;;2592:140;;;2750:6;2747:1;2744:13;2741:2;;;2820:4;2815:2;2806:6;2795:9;2791:22;2787:31;2780:45;2741:2;-1:-1:-1;2896:2:1;2875:15;-1:-1:-1;;2871:29:1;2856:45;;;;2903:2;2852:54;;2430:482;-1:-1:-1;;;2430:482:1:o;6029:356::-;6231:2;6213:21;;;6250:18;;;6243:30;6309:34;6304:2;6289:18;;6282:62;6376:2;6361:18;;6203:182::o;8380:128::-;8420:3;8451:1;8447:6;8444:1;8441:13;8438:2;;;8457:18;;:::i;:::-;-1:-1:-1;8493:9:1;;8428:80::o;8513:125::-;8553:4;8581:1;8578;8575:8;8572:2;;;8586:18;;:::i;:::-;-1:-1:-1;8623:9:1;;8562:76::o;8643:380::-;8722:1;8718:12;;;;8765;;;8786:2;;8840:4;8832:6;8828:17;8818:27;;8786:2;8893;8885:6;8882:14;8862:18;8859:38;8856:2;;;8939:10;8934:3;8930:20;8927:1;8920:31;8974:4;8971:1;8964:15;9002:4;8999:1;8992:15;8856:2;;8698:325;;;:::o;9028:127::-;9089:10;9084:3;9080:20;9077:1;9070:31;9120:4;9117:1;9110:15;9144:4;9141:1;9134:15

Swarm Source

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