ETH Price: $2,437.42 (+0.95%)

Token

Liquid Machine (LIQUID)
 

Overview

Max Total Supply

1,000,000,000,000 LIQUID

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 LIQUID

Value
$0.00
0x1B19DA858aC017b1Af802331A5a0546a5Ad0b1f7
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:
LiquidMachine

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-06-15
*/

// File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

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

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

// File: @openzeppelin/[email protected]/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: contract-ee0fc41452.sol


pragma solidity ^0.8.4;



contract LiquidMachine is ERC20, ERC20Burnable {
    constructor() ERC20("Liquid Machine", "LIQUID") {
        _mint(msg.sender, 1000000000000 * 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"}]

60806040523480156200001157600080fd5b50604080518082018252600e81527f4c6971756964204d616368696e6500000000000000000000000000000000000060208083019182528351808501909452600684527f4c495155494400000000000000000000000000000000000000000000000000009084015281519192916200008c9160039162000230565b508051620000a290600490602084019062000230565b505050620000f033620000c3620000f6640100000000026401000000009004565b620000d090600a62000407565b620000e19064e8d4a510006200041f565b640100000000620000fb810204565b620004b1565b601290565b600160a060020a03821662000170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b62000187600083836401000000006200022b810204565b80600260008282546200019b919062000441565b9091555050600160a060020a03821660009081526020819052604081208054839290620001ca90849062000441565b9091555050604051818152600160a060020a038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000227600083836401000000006200022b810204565b5050565b505050565b8280546200023e906200045c565b90600052602060002090601f016020900481019282620002625760008555620002ad565b82601f106200027d57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad57825182559160200191906001019062000290565b50620002bb929150620002bf565b5090565b5b80821115620002bb5760008155600101620002c0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b80851115620003485781600019048211156200032a576200032a620002d6565b808516156200033857918102915b600290940493908002906200030a565b509250929050565b600082620003615750600162000401565b81620003705750600062000401565b81600181146200038957600281146200039457620003b5565b600191505062000401565b60ff841115620003a857620003a8620002d6565b8360020a91505062000401565b5060208310610133831016604e8410600b8410161715620003da575081810a62000401565b620003e6838362000305565b8060001904821115620003fd57620003fd620002d6565b0290505b92915050565b60006200041860ff84168362000350565b9392505050565b60008160001904831182151516156200043c576200043c620002d6565b500290565b60008219821115620004575762000457620002d6565b500190565b6002810460018216806200047157607f821691505b602082108103620004ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b610baf80620004c16000396000f3fe608060405234801561001057600080fd5b50600436106100ec576000357c01000000000000000000000000000000000000000000000000000000009004806342966c68116100a957806395d89b411161008357806395d89b41146101ca578063a457c2d7146101d2578063a9059cbb146101e5578063dd62ed3e146101f857600080fd5b806342966c681461017957806370a082311461018e57806379cc6790146101b757600080fd5b806306fdde03146100f1578063095ea7b31461010f57806318160ddd1461013257806323b872dd14610144578063313ce567146101575780633950935114610166575b600080fd5b6100f961020b565b6040516101069190610983565b60405180910390f35b61012261011d3660046109f4565b61029d565b6040519015158152602001610106565b6002545b604051908152602001610106565b610122610152366004610a1e565b6102b5565b60405160128152602001610106565b6101226101743660046109f4565b6102d9565b61018c610187366004610a5a565b6102fb565b005b61013661019c366004610a73565b600160a060020a031660009081526020819052604090205490565b61018c6101c53660046109f4565b610308565b6100f9610321565b6101226101e03660046109f4565b610330565b6101226101f33660046109f4565b6103cb565b610136610206366004610a95565b6103d9565b60606003805461021a90610ac8565b80601f016020809104026020016040519081016040528092919081815260200182805461024690610ac8565b80156102935780601f1061026857610100808354040283529160200191610293565b820191906000526020600020905b81548152906001019060200180831161027657829003601f168201915b5050505050905090565b6000336102ab818585610404565b5060019392505050565b6000336102c3858285610563565b6102ce8585856105e0565b506001949350505050565b6000336102ab8185856102ec83836103d9565b6102f69190610b4a565b610404565b6103053382610800565b50565b610313823383610563565b61031d8282610800565b5050565b60606004805461021a90610ac8565b6000338161033e82866103d9565b9050838110156103be5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102ce8286868403610404565b6000336102ab8185856105e0565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166104825760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0382166105015760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061056f84846103d9565b905060001981146105da57818110156105cd5760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b5565b6105da8484848403610404565b50505050565b600160a060020a03831661065f5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0382166106de5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038316600090815260208190526040902054818110156107705760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038085166000908152602081905260408082208585039055918516815290812080548492906107a7908490610b4a565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f391815260200190565b60405180910390a36105da565b600160a060020a03821661087f5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038216600090815260208190526040902054818110156109115760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0383166000908152602081905260408120838303905560028054849290610940908490610b62565b9091555050604051828152600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610556565b600060208083528351808285015260005b818110156109b057858101830151858201604001528201610994565b818111156109c2576000604083870101525b50601f01601f1916929092016040019392505050565b8035600160a060020a03811681146109ef57600080fd5b919050565b60008060408385031215610a0757600080fd5b610a10836109d8565b946020939093013593505050565b600080600060608486031215610a3357600080fd5b610a3c846109d8565b9250610a4a602085016109d8565b9150604084013590509250925092565b600060208284031215610a6c57600080fd5b5035919050565b600060208284031215610a8557600080fd5b610a8e826109d8565b9392505050565b60008060408385031215610aa857600080fd5b610ab1836109d8565b9150610abf602084016109d8565b90509250929050565b600281046001821680610adc57607f821691505b602082108103610b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115610b5d57610b5d610b1b565b500190565b600082821015610b7457610b74610b1b565b50039056fea2646970667358221220067e3083d1ea8ac6af41712662c3c5d5d5bbaafcc602889fa896747cebd2caba64736f6c634300080e0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ec576000357c01000000000000000000000000000000000000000000000000000000009004806342966c68116100a957806395d89b411161008357806395d89b41146101ca578063a457c2d7146101d2578063a9059cbb146101e5578063dd62ed3e146101f857600080fd5b806342966c681461017957806370a082311461018e57806379cc6790146101b757600080fd5b806306fdde03146100f1578063095ea7b31461010f57806318160ddd1461013257806323b872dd14610144578063313ce567146101575780633950935114610166575b600080fd5b6100f961020b565b6040516101069190610983565b60405180910390f35b61012261011d3660046109f4565b61029d565b6040519015158152602001610106565b6002545b604051908152602001610106565b610122610152366004610a1e565b6102b5565b60405160128152602001610106565b6101226101743660046109f4565b6102d9565b61018c610187366004610a5a565b6102fb565b005b61013661019c366004610a73565b600160a060020a031660009081526020819052604090205490565b61018c6101c53660046109f4565b610308565b6100f9610321565b6101226101e03660046109f4565b610330565b6101226101f33660046109f4565b6103cb565b610136610206366004610a95565b6103d9565b60606003805461021a90610ac8565b80601f016020809104026020016040519081016040528092919081815260200182805461024690610ac8565b80156102935780601f1061026857610100808354040283529160200191610293565b820191906000526020600020905b81548152906001019060200180831161027657829003601f168201915b5050505050905090565b6000336102ab818585610404565b5060019392505050565b6000336102c3858285610563565b6102ce8585856105e0565b506001949350505050565b6000336102ab8185856102ec83836103d9565b6102f69190610b4a565b610404565b6103053382610800565b50565b610313823383610563565b61031d8282610800565b5050565b60606004805461021a90610ac8565b6000338161033e82866103d9565b9050838110156103be5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102ce8286868403610404565b6000336102ab8185856105e0565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383166104825760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0382166105015760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061056f84846103d9565b905060001981146105da57818110156105cd5760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b5565b6105da8484848403610404565b50505050565b600160a060020a03831661065f5760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0382166106de5760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038316600090815260208190526040902054818110156107705760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038085166000908152602081905260408082208585039055918516815290812080548492906107a7908490610b4a565b9250508190555082600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f391815260200190565b60405180910390a36105da565b600160a060020a03821661087f5760405160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a038216600090815260208190526040902054818110156109115760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103b5565b600160a060020a0383166000908152602081905260408120838303905560028054849290610940908490610b62565b9091555050604051828152600090600160a060020a038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610556565b600060208083528351808285015260005b818110156109b057858101830151858201604001528201610994565b818111156109c2576000604083870101525b50601f01601f1916929092016040019392505050565b8035600160a060020a03811681146109ef57600080fd5b919050565b60008060408385031215610a0757600080fd5b610a10836109d8565b946020939093013593505050565b600080600060608486031215610a3357600080fd5b610a3c846109d8565b9250610a4a602085016109d8565b9150604084013590509250925092565b600060208284031215610a6c57600080fd5b5035919050565b600060208284031215610a8557600080fd5b610a8e826109d8565b9392505050565b60008060408385031215610aa857600080fd5b610ab1836109d8565b9150610abf602084016109d8565b90509250929050565b600281046001821680610adc57607f821691505b602082108103610b15577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115610b5d57610b5d610b1b565b500190565b600082821015610b7457610b74610b1b565b50039056fea2646970667358221220067e3083d1ea8ac6af41712662c3c5d5d5bbaafcc602889fa896747cebd2caba64736f6c634300080e0033

Deployed Bytecode Sourcemap

18711:175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6677:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9028:201;;;;;;:::i;:::-;;:::i;:::-;;;1241:14:1;;1234:22;1216:41;;1204:2;1189:18;9028:201:0;1076:187:1;7797:108:0;7885:12;;7797:108;;;1414:25:1;;;1402:2;1387:18;7797:108:0;1268:177:1;9809:295:0;;;;;;:::i;:::-;;:::i;7639:93::-;;;7722:2;1925:36:1;;1913:2;1898:18;7639:93:0;1783:184:1;10513:238:0;;;;;;:::i;:::-;;:::i;18061:91::-;;;;;;:::i;:::-;;:::i;:::-;;7968:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8069:18:0;8042:7;8069:18;;;;;;;;;;;;7968:127;18471:164;;;;;;:::i;:::-;;:::i;6896:104::-;;;:::i;11254:436::-;;;;;;:::i;:::-;;:::i;8301:193::-;;;;;;:::i;:::-;;:::i;8557:151::-;;;;;;:::i;:::-;;:::i;6677:100::-;6731:13;6764:5;6757:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6677:100;:::o;9028:201::-;9111:4;765:10;9167:32;765:10;9183:7;9192:6;9167:8;:32::i;:::-;-1:-1:-1;9217:4:0;;9028:201;-1:-1:-1;;;9028:201:0:o;9809:295::-;9940:4;765:10;9998:38;10014:4;765:10;10029:6;9998:15;:38::i;:::-;10047:27;10057:4;10063:2;10067:6;10047:9;:27::i;:::-;-1:-1:-1;10092:4:0;;9809:295;-1:-1:-1;;;;9809:295:0:o;10513:238::-;10601:4;765:10;10657:64;765:10;10673:7;10710:10;10682:25;765:10;10673:7;10682:9;:25::i;:::-;:38;;;;:::i;:::-;10657:8;:64::i;18061:91::-;18117:27;765:10;18137:6;18117:5;:27::i;:::-;18061:91;:::o;18471:164::-;18548:46;18564:7;765:10;18587:6;18548:15;:46::i;:::-;18605:22;18611:7;18620:6;18605:5;:22::i;:::-;18471:164;;:::o;6896:104::-;6952:13;6985:7;6978:14;;;;;:::i;11254:436::-;11347:4;765:10;11347:4;11430:25;765:10;11447:7;11430:9;:25::i;:::-;11403:52;;11494:15;11474:16;:35;;11466:85;;;;-1:-1:-1;;;;;11466:85:0;;3579:2:1;11466:85:0;;;3561:21:1;3618:2;3598:18;;;3591:30;3657:34;3637:18;;;3630:62;3728:7;3708:18;;;3701:35;3753:19;;11466:85:0;;;;;;;;;11587:60;11596:5;11603:7;11631:15;11612:16;:34;11587:8;:60::i;8301:193::-;8380:4;765:10;8436:28;765:10;8453:2;8457:6;8436:9;:28::i;8557:151::-;-1:-1:-1;;;;;8673:18:0;;;8646:7;8673:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8557:151::o;14888:380::-;-1:-1:-1;;;;;15024:19:0;;15016:68;;;;-1:-1:-1;;;;;15016:68:0;;3985:2:1;15016:68:0;;;3967:21:1;4024:2;4004:18;;;3997:30;4063:34;4043:18;;;4036:62;4134:6;4114:18;;;4107:34;4158:19;;15016:68:0;3783:400:1;15016:68:0;-1:-1:-1;;;;;15103:21:0;;15095:68;;;;-1:-1:-1;;;;;15095:68:0;;4390:2:1;15095:68:0;;;4372:21:1;4429:2;4409:18;;;4402:30;4468:34;4448:18;;;4441:62;4539:4;4519:18;;;4512:32;4561:19;;15095:68:0;4188:398:1;15095:68:0;-1:-1:-1;;;;;15176:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15228:32;;1414:25:1;;;15228:32:0;;1387:18:1;15228:32:0;;;;;;;;14888:380;;;:::o;15559:453::-;15694:24;15721:25;15731:5;15738:7;15721:9;:25::i;:::-;15694:52;;-1:-1:-1;;15761:16:0;:37;15757:248;;15843:6;15823:16;:26;;15815:68;;;;-1:-1:-1;;;;;15815:68:0;;4793:2:1;15815:68:0;;;4775:21:1;4832:2;4812:18;;;4805:30;4871:31;4851:18;;;4844:59;4920:18;;15815:68:0;4591:353:1;15815:68:0;15927:51;15936:5;15943:7;15971:6;15952:16;:25;15927:8;:51::i;:::-;15683:329;15559:453;;;:::o;12169:671::-;-1:-1:-1;;;;;12300:18:0;;12292:68;;;;-1:-1:-1;;;;;12292:68:0;;5151:2:1;12292:68:0;;;5133:21:1;5190:2;5170:18;;;5163:30;5229:34;5209:18;;;5202:62;5300:7;5280:18;;;5273:35;5325:19;;12292:68:0;4949:401:1;12292:68:0;-1:-1:-1;;;;;12379:16:0;;12371:64;;;;-1:-1:-1;;;;;12371:64:0;;5557:2:1;12371:64:0;;;5539:21:1;5596:2;5576:18;;;5569:30;5635:34;5615:18;;;5608:62;5706:5;5686:18;;;5679:33;5729:19;;12371:64:0;5355:399:1;12371:64:0;-1:-1:-1;;;;;12521:15:0;;12499:19;12521:15;;;;;;;;;;;12555:21;;;;12547:72;;;;-1:-1:-1;;;;;12547:72:0;;5961:2:1;12547:72:0;;;5943:21:1;6000:2;5980:18;;;5973:30;6039:34;6019:18;;;6012:62;6110:8;6090:18;;;6083:36;6136:19;;12547:72:0;5759:402:1;12547:72:0;-1:-1:-1;;;;;12655:15:0;;;:9;:15;;;;;;;;;;;12673:20;;;12655:38;;12715:13;;;;;;;;:23;;12687:6;;12655:9;12715:23;;12687:6;;12715:23;:::i;:::-;;;;;;;;12771:2;-1:-1:-1;;;;;12756:26:0;12765:4;-1:-1:-1;;;;;12756:26:0;;12775:6;12756:26;;;;1414:25:1;;1402:2;1387:18;;1268:177;12756:26:0;;;;;;;;12795:37;13859:591;;-1:-1:-1;;;;;13943:21:0;;13935:67;;;;-1:-1:-1;;;;;13935:67:0;;6368:2:1;13935:67:0;;;6350:21:1;6407:2;6387:18;;;6380:30;6446:34;6426:18;;;6419:62;6517:3;6497:18;;;6490:31;6538:19;;13935:67:0;6166:397:1;13935:67:0;-1:-1:-1;;;;;14102:18:0;;14077:22;14102:18;;;;;;;;;;;14139:24;;;;14131:71;;;;-1:-1:-1;;;;;14131:71:0;;6770:2:1;14131:71:0;;;6752:21:1;6809:2;6789:18;;;6782:30;6848:34;6828:18;;;6821:62;6919:4;6899:18;;;6892:32;6941:19;;14131:71:0;6568:398:1;14131:71:0;-1:-1:-1;;;;;14238:18:0;;:9;:18;;;;;;;;;;14259:23;;;14238:44;;14304:12;:22;;14276:6;;14238:9;14304:22;;14276:6;;14304:22;:::i;:::-;;;;-1:-1:-1;;14344:37:0;;1414:25:1;;;14370:1:0;;-1:-1:-1;;;;;14344:37:0;;;;;1402:2:1;1387:18;14344:37:0;1268:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:196::-;684:20;;-1:-1:-1;;;;;733:54:1;;723:65;;713:93;;802:1;799;792:12;713:93;616:196;;;:::o;817:254::-;885:6;893;946:2;934:9;925:7;921:23;917:32;914:52;;;962:1;959;952:12;914:52;985:29;1004:9;985:29;:::i;:::-;975:39;1061:2;1046:18;;;;1033:32;;-1:-1:-1;;;817:254:1:o;1450:328::-;1527:6;1535;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:29;1654:9;1635:29;:::i;:::-;1625:39;;1683:38;1717:2;1706:9;1702:18;1683:38;:::i;:::-;1673:48;;1768:2;1757:9;1753:18;1740:32;1730:42;;1450:328;;;;;:::o;1972:180::-;2031:6;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;-1:-1:-1;2123:23:1;;1972:180;-1:-1:-1;1972:180:1:o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;2157:186;-1:-1:-1;;;2157:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:437::-;2698:1;2688:12;;2745:1;2735:12;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:218;;2900:77;2897:1;2890:88;3001:4;2998:1;2991:15;3029:4;3026:1;3019:15;2826:218;;2613:437;;;:::o;3055:184::-;3107:77;3104:1;3097:88;3204:4;3201:1;3194:15;3228:4;3225:1;3218:15;3244:128;3284:3;3315:1;3311:6;3308:1;3305:13;3302:39;;;3321:18;;:::i;:::-;-1:-1:-1;3357:9:1;;3244:128::o;6971:125::-;7011:4;7039:1;7036;7033:8;7030:34;;;7044:18;;:::i;:::-;-1:-1:-1;7081:9:1;;6971:125::o

Swarm Source

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