ETH Price: $3,168.68 (-8.44%)
Gas: 3 Gwei

Token

MELOS (MELOS)
 

Overview

Max Total Supply

1,000,000,000 MELOS

Holders

393 ( -1.272%)

Market

Price

$0.00 @ 0.000001 ETH (-10.68%)

Onchain Market Cap

$1,928,310.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 MELOS

Value
$0.00
0x4fb0c3cc1e20e6c093e0875716449e0b183130a6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Melos Studio is the destination for creating, discovering and collecting original music on Web3.0.

Market

Volume (24H):$305,773.00
Market Capitalization:$0.00
Circulating Supply:0.00 MELOS
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MELOS

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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

// File: contracts/MELOS.sol

pragma solidity ^0.8.0;


contract MELOS is ERC20Burnable {
    constructor() ERC20("MELOS", "MELOS") {
        _mint(_msgSender(), 1000000000 * 10**decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526005808252644d454c4f5360d81b6020808401828152855180870190965292855284015281519192916200005291600391620001a2565b50805162000068906004906020840190620001a2565b505050620000ac6200007f620000b260201b60201c565b62000089620000b6565b6200009690600a620002f0565b620000a690633b9aca00620003e8565b620000bb565b6200045d565b3390565b601290565b6001600160a01b038216620000ed5760405162461bcd60e51b8152600401620000e49062000248565b60405180910390fd5b620000fb600083836200019d565b80600260008282546200010f919062000288565b90915550506001600160a01b038216600090815260208190526040812080548392906200013e90849062000288565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001839085906200027f565b60405180910390a362000199600083836200019d565b5050565b505050565b828054620001b0906200040a565b90600052602060002090601f016020900481019282620001d457600085556200021f565b82601f10620001ef57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021f57825182559160200191906001019062000202565b506200022d92915062000231565b5090565b5b808211156200022d576000815560010162000232565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200029e576200029e62000447565b500190565b80825b6001808611620002b75750620002e7565b818704821115620002cc57620002cc62000447565b80861615620002da57918102915b9490941c938002620002a6565b94509492505050565b60006200030460001960ff8516846200030b565b9392505050565b6000826200031c5750600162000304565b816200032b5750600062000304565b81600181146200034457600281146200034f5762000383565b600191505062000304565b60ff84111562000363576200036362000447565b6001841b9150848211156200037c576200037c62000447565b5062000304565b5060208310610133831016604e8410600b8410161715620003bb575081810a83811115620003b557620003b562000447565b62000304565b620003ca8484846001620002a3565b808604821115620003df57620003df62000447565b02949350505050565b600081600019048311821515161562000405576200040562000447565b500290565b6002810460018216806200041f57607f821691505b602082108114156200044157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610ba2806200046d6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a082311461017757806379cc67901461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e9919061082f565b60405180910390f35b6101056101003660046107e3565b610270565b6040516100e99190610824565b61011a610292565b6040516100e99190610ad5565b6101056101353660046107a8565b610298565b6101426102c6565b6040516100e99190610ade565b61010561015d3660046107e3565b6102cb565b61017561017036600461080c565b610317565b005b61011a610185366004610755565b61032b565b6101756101983660046107e3565b61034a565b6100dc61036a565b6101056101b33660046107e3565b610379565b6101056101c63660046107e3565b6103e3565b61011a6101d9366004610776565b6103fb565b6060600380546101ed90610b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610b1b565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b60008061027b610426565b905061028881858561042a565b5060019392505050565b60025490565b6000806102a3610426565b90506102b08582856104de565b6102bb858585610528565b506001949350505050565b601290565b6000806102d6610426565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506102889082908690610312908790610aec565b61042a565b610328610322610426565b8261064c565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b61035c82610356610426565b836104de565b610366828261064c565b5050565b6060600480546101ed90610b1b565b600080610384610426565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156103d65760405162461bcd60e51b81526004016103cd90610a90565b60405180910390fd5b6102bb828686840361042a565b6000806103ee610426565b9050610288818585610528565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104505760405162461bcd60e51b81526004016103cd90610a4c565b6001600160a01b0382166104765760405162461bcd60e51b81526004016103cd90610907565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104d1908590610ad5565b60405180910390a3505050565b60006104ea84846103fb565b9050600019811461052257818110156105155760405162461bcd60e51b81526004016103cd90610949565b610522848484840361042a565b50505050565b6001600160a01b03831661054e5760405162461bcd60e51b81526004016103cd90610a07565b6001600160a01b0382166105745760405162461bcd60e51b81526004016103cd90610882565b61057f838383610739565b6001600160a01b038316600090815260208190526040902054818110156105b85760405162461bcd60e51b81526004016103cd90610980565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105ef908490610aec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106399190610ad5565b60405180910390a3610522848484610739565b6001600160a01b0382166106725760405162461bcd60e51b81526004016103cd906109c6565b61067e82600083610739565b6001600160a01b038216600090815260208190526040902054818110156106b75760405162461bcd60e51b81526004016103cd906108c5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906106e6908490610b04565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610729908690610ad5565b60405180910390a3610739836000845b505050565b80356001600160a01b038116811461034557600080fd5b600060208284031215610766578081fd5b61076f8261073e565b9392505050565b60008060408385031215610788578081fd5b6107918361073e565b915061079f6020840161073e565b90509250929050565b6000806000606084860312156107bc578081fd5b6107c58461073e565b92506107d36020850161073e565b9150604084013590509250925092565b600080604083850312156107f5578182fd5b6107fe8361073e565b946020939093013593505050565b60006020828403121561081d578081fd5b5035919050565b901515815260200190565b6000602080835283518082850152825b8181101561085b5785810183015185820160400152820161083f565b8181111561086c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610aff57610aff610b56565b500190565b600082821015610b1657610b16610b56565b500390565b600281046001821680610b2f57607f821691505b60208210811415610b5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208216d018f524599aa88923a5e4a394c913e83ff424b25ffba0f98e0f3944b33264736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461019d578063a457c2d7146101a5578063a9059cbb146101b8578063dd62ed3e146101cb576100cf565b806342966c681461016257806370a082311461017757806379cc67901461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101de565b6040516100e9919061082f565b60405180910390f35b6101056101003660046107e3565b610270565b6040516100e99190610824565b61011a610292565b6040516100e99190610ad5565b6101056101353660046107a8565b610298565b6101426102c6565b6040516100e99190610ade565b61010561015d3660046107e3565b6102cb565b61017561017036600461080c565b610317565b005b61011a610185366004610755565b61032b565b6101756101983660046107e3565b61034a565b6100dc61036a565b6101056101b33660046107e3565b610379565b6101056101c63660046107e3565b6103e3565b61011a6101d9366004610776565b6103fb565b6060600380546101ed90610b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461021990610b1b565b80156102665780601f1061023b57610100808354040283529160200191610266565b820191906000526020600020905b81548152906001019060200180831161024957829003601f168201915b5050505050905090565b60008061027b610426565b905061028881858561042a565b5060019392505050565b60025490565b6000806102a3610426565b90506102b08582856104de565b6102bb858585610528565b506001949350505050565b601290565b6000806102d6610426565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506102889082908690610312908790610aec565b61042a565b610328610322610426565b8261064c565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b61035c82610356610426565b836104de565b610366828261064c565b5050565b6060600480546101ed90610b1b565b600080610384610426565b6001600160a01b03808216600090815260016020908152604080832093891683529290522054909150838110156103d65760405162461bcd60e51b81526004016103cd90610a90565b60405180910390fd5b6102bb828686840361042a565b6000806103ee610426565b9050610288818585610528565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104505760405162461bcd60e51b81526004016103cd90610a4c565b6001600160a01b0382166104765760405162461bcd60e51b81526004016103cd90610907565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104d1908590610ad5565b60405180910390a3505050565b60006104ea84846103fb565b9050600019811461052257818110156105155760405162461bcd60e51b81526004016103cd90610949565b610522848484840361042a565b50505050565b6001600160a01b03831661054e5760405162461bcd60e51b81526004016103cd90610a07565b6001600160a01b0382166105745760405162461bcd60e51b81526004016103cd90610882565b61057f838383610739565b6001600160a01b038316600090815260208190526040902054818110156105b85760405162461bcd60e51b81526004016103cd90610980565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906105ef908490610aec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106399190610ad5565b60405180910390a3610522848484610739565b6001600160a01b0382166106725760405162461bcd60e51b81526004016103cd906109c6565b61067e82600083610739565b6001600160a01b038216600090815260208190526040902054818110156106b75760405162461bcd60e51b81526004016103cd906108c5565b6001600160a01b03831660009081526020819052604081208383039055600280548492906106e6908490610b04565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610729908690610ad5565b60405180910390a3610739836000845b505050565b80356001600160a01b038116811461034557600080fd5b600060208284031215610766578081fd5b61076f8261073e565b9392505050565b60008060408385031215610788578081fd5b6107918361073e565b915061079f6020840161073e565b90509250929050565b6000806000606084860312156107bc578081fd5b6107c58461073e565b92506107d36020850161073e565b9150604084013590509250925092565b600080604083850312156107f5578182fd5b6107fe8361073e565b946020939093013593505050565b60006020828403121561081d578081fd5b5035919050565b901515815260200190565b6000602080835283518082850152825b8181101561085b5785810183015185820160400152820161083f565b8181111561086c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610aff57610aff610b56565b500190565b600082821015610b1657610b16610b56565b500390565b600281046001821680610b2f57607f821691505b60208210811415610b5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208216d018f524599aa88923a5e4a394c913e83ff424b25ffba0f98e0f3944b33264736f6c63430008000033

Deployed Bytecode Sourcemap

18696:147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6678:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9029:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7798:108::-;;;:::i;:::-;;;;;;;:::i;9810:295::-;;;;;;:::i;:::-;;:::i;7640:93::-;;;:::i;:::-;;;;;;;:::i;10514:240::-;;;;;;:::i;:::-;;:::i;18054:91::-;;;;;;:::i;:::-;;:::i;:::-;;7969:127;;;;;;:::i;:::-;;:::i;18464:164::-;;;;;;:::i;:::-;;:::i;6897:104::-;;;:::i;11257:438::-;;;;;;:::i;:::-;;:::i;8302:193::-;;;;;;:::i;:::-;;:::i;8558:151::-;;;;;;:::i;:::-;;:::i;6678:100::-;6732:13;6765:5;6758:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6678:100;:::o;9029:201::-;9112:4;9129:13;9145:12;:10;:12::i;:::-;9129:28;;9168:32;9177:5;9184:7;9193:6;9168:8;:32::i;:::-;-1:-1:-1;9218:4:0;;9029:201;-1:-1:-1;;;9029:201:0:o;7798:108::-;7886:12;;7798:108;:::o;9810:295::-;9941:4;9958:15;9976:12;:10;:12::i;:::-;9958:30;;9999:38;10015:4;10021:7;10030:6;9999:15;:38::i;:::-;10048:27;10058:4;10064:2;10068:6;10048:9;:27::i;:::-;-1:-1:-1;10093:4:0;;9810:295;-1:-1:-1;;;;9810:295:0:o;7640:93::-;7723:2;7640:93;:::o;10514:240::-;10602:4;10619:13;10635:12;:10;:12::i;:::-;-1:-1:-1;;;;;10683:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;10619:28;;-1:-1:-1;10658:66:0;;10619:28;;10674:7;;10683:40;;10713:10;;10683:40;:::i;:::-;10658:8;:66::i;18054:91::-;18110:27;18116:12;:10;:12::i;:::-;18130:6;18110:5;:27::i;:::-;18054:91;:::o;7969:127::-;-1:-1:-1;;;;;8070:18:0;;8043:7;8070:18;;;;;;;;;;;7969:127;;;;:::o;18464:164::-;18541:46;18557:7;18566:12;:10;:12::i;:::-;18580:6;18541:15;:46::i;:::-;18598:22;18604:7;18613:6;18598:5;:22::i;:::-;18464:164;;:::o;6897:104::-;6953:13;6986:7;6979:14;;;;;:::i;11257:438::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;-1:-1:-1;;;;;11433:18:0;;;11406:24;11433:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;11367:28;;-1:-1:-1;11479:35:0;;;;11471:85;;;;-1:-1:-1;;;11471:85:0;;;;;;;:::i;:::-;;;;;;;;;11592:60;11601:5;11608:7;11636:15;11617:16;:34;11592:8;:60::i;8302:193::-;8381:4;8398:13;8414:12;:10;:12::i;:::-;8398:28;;8437;8447:5;8454:2;8458:6;8437:9;:28::i;8558:151::-;-1:-1:-1;;;;;8674:18:0;;;8647:7;8674:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8558:151::o;4320:98::-;4400:10;4320:98;:::o;14893:380::-;-1:-1:-1;;;;;15029:19:0;;15021:68;;;;-1:-1:-1;;;15021:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15108:21:0;;15100:68;;;;-1:-1:-1;;;15100:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15181:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15233:32;;;;;15211:6;;15233:32;:::i;:::-;;;;;;;;14893:380;;;:::o;15560:453::-;15695:24;15722:25;15732:5;15739:7;15722:9;:25::i;:::-;15695:52;;-1:-1:-1;;15762:16:0;:37;15758:248;;15844:6;15824:16;:26;;15816:68;;;;-1:-1:-1;;;15816:68:0;;;;;;;:::i;:::-;15928:51;15937:5;15944:7;15972:6;15953:16;:25;15928:8;:51::i;:::-;15560:453;;;;:::o;12174:671::-;-1:-1:-1;;;;;12305:18:0;;12297:68;;;;-1:-1:-1;;;12297:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12384:16:0;;12376:64;;;;-1:-1:-1;;;12376:64:0;;;;;;;:::i;:::-;12453:38;12474:4;12480:2;12484:6;12453:20;:38::i;:::-;-1:-1:-1;;;;;12526:15:0;;12504:19;12526:15;;;;;;;;;;;12560:21;;;;12552:72;;;;-1:-1:-1;;;12552:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12660:15:0;;;:9;:15;;;;;;;;;;;12678:20;;;12660:38;;12720:13;;;;;;;;:23;;12692:6;;12660:9;12720:23;;12692:6;;12720:23;:::i;:::-;;;;;;;;12776:2;-1:-1:-1;;;;;12761:26:0;12770:4;-1:-1:-1;;;;;12761:26:0;;12780:6;12761:26;;;;;;:::i;:::-;;;;;;;;12800:37;12820:4;12826:2;12830:6;12800:19;:37::i;13864:591::-;-1:-1:-1;;;;;13948:21:0;;13940:67;;;;-1:-1:-1;;;13940:67:0;;;;;;;:::i;:::-;14020:49;14041:7;14058:1;14062:6;14020:20;:49::i;:::-;-1:-1:-1;;;;;14107:18:0;;14082:22;14107:18;;;;;;;;;;;14144:24;;;;14136:71;;;;-1:-1:-1;;;14136:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14243:18:0;;:9;:18;;;;;;;;;;14264:23;;;14243:44;;14309:12;:22;;14281:6;;14243:9;14309:22;;14281:6;;14309:22;:::i;:::-;;;;-1:-1:-1;;14349:37:0;;14375:1;;-1:-1:-1;;;;;14349:37:0;;;;;;;14379:6;;14349:37;:::i;:::-;;;;;;;;14399:48;14419:7;14436:1;14440:6;14399:48;13864:591;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:187::-;1654:14;;1647:22;1629:41;;1617:2;1602:18;;1584:92::o;1681:603::-;;1822:2;1851;1840:9;1833:21;1883:6;1877:13;1926:6;1921:2;1910:9;1906:18;1899:34;1951:4;1964:140;1978:6;1975:1;1972:13;1964:140;;;2073:14;;;2069:23;;2063:30;2039:17;;;2058:2;2035:26;2028:66;1993:10;;1964:140;;;2122:6;2119:1;2116:13;2113:2;;;2192:4;2187:2;2178:6;2167:9;2163:22;2159:31;2152:45;2113:2;-1:-1:-1;2268:2:1;2247:15;-1:-1:-1;;2243:29:1;2228:45;;;;2275:2;2224:54;;1802:482;-1:-1:-1;;;1802:482:1:o;2289:399::-;2491:2;2473:21;;;2530:2;2510:18;;;2503:30;2569:34;2564:2;2549:18;;2542:62;-1:-1:-1;;;2635:2:1;2620:18;;2613:33;2678:3;2663:19;;2463:225::o;2693:398::-;2895:2;2877:21;;;2934:2;2914:18;;;2907:30;2973:34;2968:2;2953:18;;2946:62;-1:-1:-1;;;3039:2:1;3024:18;;3017:32;3081:3;3066:19;;2867:224::o;3096:398::-;3298:2;3280:21;;;3337:2;3317:18;;;3310:30;3376:34;3371:2;3356:18;;3349:62;-1:-1:-1;;;3442:2:1;3427:18;;3420:32;3484:3;3469:19;;3270:224::o;3499:353::-;3701:2;3683:21;;;3740:2;3720:18;;;3713:30;3779:31;3774:2;3759:18;;3752:59;3843:2;3828:18;;3673:179::o;3857:402::-;4059:2;4041:21;;;4098:2;4078:18;;;4071:30;4137:34;4132:2;4117:18;;4110:62;-1:-1:-1;;;4203:2:1;4188:18;;4181:36;4249:3;4234:19;;4031:228::o;4264:397::-;4466:2;4448:21;;;4505:2;4485:18;;;4478:30;4544:34;4539:2;4524:18;;4517:62;-1:-1:-1;;;4610:2:1;4595:18;;4588:31;4651:3;4636:19;;4438:223::o;4666:401::-;4868:2;4850:21;;;4907:2;4887:18;;;4880:30;4946:34;4941:2;4926:18;;4919:62;-1:-1:-1;;;5012:2:1;4997:18;;4990:35;5057:3;5042:19;;4840:227::o;5072:400::-;5274:2;5256:21;;;5313:2;5293:18;;;5286:30;5352:34;5347:2;5332:18;;5325:62;-1:-1:-1;;;5418:2:1;5403:18;;5396:34;5462:3;5447:19;;5246:226::o;5477:401::-;5679:2;5661:21;;;5718:2;5698:18;;;5691:30;5757:34;5752:2;5737:18;;5730:62;-1:-1:-1;;;5823:2:1;5808:18;;5801:35;5868:3;5853:19;;5651:227::o;5883:177::-;6029:25;;;6017:2;6002:18;;5984:76::o;6065:184::-;6237:4;6225:17;;;;6207:36;;6195:2;6180:18;;6162:87::o;6254:128::-;;6325:1;6321:6;6318:1;6315:13;6312:2;;;6331:18;;:::i;:::-;-1:-1:-1;6367:9:1;;6302:80::o;6387:125::-;;6455:1;6452;6449:8;6446:2;;;6460:18;;:::i;:::-;-1:-1:-1;6497:9:1;;6436:76::o;6517:380::-;6602:1;6592:12;;6649:1;6639:12;;;6660:2;;6714:4;6706:6;6702:17;6692:27;;6660:2;6767;6759:6;6756:14;6736:18;6733:38;6730:2;;;6813:10;6808:3;6804:20;6801:1;6794:31;6848:4;6845:1;6838:15;6876:4;6873:1;6866:15;6730:2;;6572:325;;;:::o;6902:127::-;6963:10;6958:3;6954:20;6951:1;6944:31;6994:4;6991:1;6984:15;7018:4;7015:1;7008:15

Swarm Source

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