ETH Price: $3,356.10 (-2.72%)
Gas: 2 Gwei

Token

Shiryoinu Normal (ShiryoN)
 

Overview

Max Total Supply

1,001,389 ShiryoN

Holders

1,675

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
5 ShiryoN

Value
$0.00
0xeca07cef0da40d3bdae1768bdeb0eb0088cf09db
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:
ShiryoinuNormal

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-09
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.6;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


/**
 * @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 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 GSN 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 payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



/**
 * @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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract ShiryoinuNormal is ERC20("Shiryoinu Normal", "ShiryoN"), Ownable {

    constructor() {
       _setupDecimals(0);
       _mint(address(msg.sender), 1000000);// aidrop  for existing holders
    }

    function getOwner() external view returns (address) {
        return owner();
    }
    
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }

    function website() external pure returns (string memory) {
        return "https://shiryoinu.com";
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601081526f14da1a5c9e5bda5b9d48139bdc9b585b60821b60208083019182528351808501909452600784526629b434b93cb7a760c91b908401528151919291620000699160039162000278565b5080516200007f90600490602084019062000278565b50506005805460ff19166012179055506000620000993390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005805460ff191690556200010833620f42406200010e565b62000382565b6001600160a01b0382166200016a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000186816002546200020e60201b620006441790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001b9918390620006446200020e821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200021d83856200031e565b905083811015620002715760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000161565b9392505050565b828054620002869062000345565b90600052602060002090601f016020900481019282620002aa5760008555620002f5565b82601f10620002c557805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f5578251825591602001919060010190620002d8565b506200030392915062000307565b5090565b5b8082111562000303576000815560010162000308565b600082198211156200034057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200035a57607f821691505b602082108114156200037c57634e487b7160e01b600052602260045260246000fd5b50919050565b610cea80620003926000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461022c578063a9059cbb1461023f578063beb0a41614610252578063dd62ed3e14610283578063f2fde38b146102bc57600080fd5b8063715018a6146101dc578063893d20e8146101e45780638da5cb5b1461020e57806395d89b411461022457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102cf565b6040516101259190610b37565b60405180910390f35b61014161013c366004610b0d565b610361565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ad1565b610377565b60055460405160ff9091168152602001610125565b610141610199366004610b0d565b6103e0565b6101b16101ac366004610b0d565b610416565b005b6101556101c1366004610a83565b6001600160a01b031660009081526020819052604090205490565b6101b161045d565b60055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610125565b60055461010090046001600160a01b03166101f6565b6101186104dd565b61014161023a366004610b0d565b6104ec565b61014161024d366004610b0d565b61053b565b60408051808201909152601581527468747470733a2f2f73686972796f696e752e636f6d60581b6020820152610118565b610155610291366004610a9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b16102ca366004610a83565b610548565b6060600380546102de90610bf0565b80601f016020809104026020016040519081016040528092919081815260200182805461030a90610bf0565b80156103575780601f1061032c57610100808354040283529160200191610357565b820191906000526020600020905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b600061036e3384846106aa565b50600192915050565b60006103848484846107cf565b6103d684336103d185604051806060016040528060288152602001610c68602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610952565b6106aa565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161036e9185906103d19086610644565b6005546001600160a01b0361010090910416331461044f5760405162461bcd60e51b815260040161044690610b8c565b60405180910390fd5b6104598282610989565b5050565b6005546001600160a01b0361010090910416331461048d5760405162461bcd60e51b815260040161044690610b8c565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546102de90610bf0565b600061036e33846103d185604051806060016040528060258152602001610c90602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610952565b600061036e3384846107cf565b6005546001600160a01b036101009091041633146105785760405162461bcd60e51b815260040161044690610b8c565b6001600160a01b0381166105dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610446565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806106518385610bc1565b9050838110156106a35760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610446565b9392505050565b6001600160a01b03831661070c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610446565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610446565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610446565b6001600160a01b0382166108955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610446565b6108d281604051806060016040528060268152602001610c42602691396001600160a01b0386166000908152602081905260409020549190610952565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109019082610644565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107c2565b600081848411156109765760405162461bcd60e51b81526004016104469190610b37565b506109818385610bd9565b949350505050565b6001600160a01b0382166109df5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610446565b6002546109ec9082610644565b6002556001600160a01b038216600090815260208190526040902054610a129082610644565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b600060208284031215610a9557600080fd5b6106a382610a67565b60008060408385031215610ab157600080fd5b610aba83610a67565b9150610ac860208401610a67565b90509250929050565b600080600060608486031215610ae657600080fd5b610aef84610a67565b9250610afd60208501610a67565b9150604084013590509250925092565b60008060408385031215610b2057600080fd5b610b2983610a67565b946020939093013593505050565b600060208083528351808285015260005b81811015610b6457858101830151858201604001528201610b48565b81811115610b76576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bd457610bd4610c2b565b500190565b600082821015610beb57610beb610c2b565b500390565b600181811c90821680610c0457607f821691505b60208210811415610c2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122071ba9ce5c389001ba69b406e4bc6cadc1530fdc080a79b3f906fb7cbe40346aa64736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461022c578063a9059cbb1461023f578063beb0a41614610252578063dd62ed3e14610283578063f2fde38b146102bc57600080fd5b8063715018a6146101dc578063893d20e8146101e45780638da5cb5b1461020e57806395d89b411461022457600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102cf565b6040516101259190610b37565b60405180910390f35b61014161013c366004610b0d565b610361565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ad1565b610377565b60055460405160ff9091168152602001610125565b610141610199366004610b0d565b6103e0565b6101b16101ac366004610b0d565b610416565b005b6101556101c1366004610a83565b6001600160a01b031660009081526020819052604090205490565b6101b161045d565b60055461010090046001600160a01b03165b6040516001600160a01b039091168152602001610125565b60055461010090046001600160a01b03166101f6565b6101186104dd565b61014161023a366004610b0d565b6104ec565b61014161024d366004610b0d565b61053b565b60408051808201909152601581527468747470733a2f2f73686972796f696e752e636f6d60581b6020820152610118565b610155610291366004610a9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b16102ca366004610a83565b610548565b6060600380546102de90610bf0565b80601f016020809104026020016040519081016040528092919081815260200182805461030a90610bf0565b80156103575780601f1061032c57610100808354040283529160200191610357565b820191906000526020600020905b81548152906001019060200180831161033a57829003601f168201915b5050505050905090565b600061036e3384846106aa565b50600192915050565b60006103848484846107cf565b6103d684336103d185604051806060016040528060288152602001610c68602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610952565b6106aa565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161036e9185906103d19086610644565b6005546001600160a01b0361010090910416331461044f5760405162461bcd60e51b815260040161044690610b8c565b60405180910390fd5b6104598282610989565b5050565b6005546001600160a01b0361010090910416331461048d5760405162461bcd60e51b815260040161044690610b8c565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6060600480546102de90610bf0565b600061036e33846103d185604051806060016040528060258152602001610c90602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610952565b600061036e3384846107cf565b6005546001600160a01b036101009091041633146105785760405162461bcd60e51b815260040161044690610b8c565b6001600160a01b0381166105dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610446565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000806106518385610bc1565b9050838110156106a35760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610446565b9392505050565b6001600160a01b03831661070c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610446565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610446565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108335760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610446565b6001600160a01b0382166108955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610446565b6108d281604051806060016040528060268152602001610c42602691396001600160a01b0386166000908152602081905260409020549190610952565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546109019082610644565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107c2565b600081848411156109765760405162461bcd60e51b81526004016104469190610b37565b506109818385610bd9565b949350505050565b6001600160a01b0382166109df5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610446565b6002546109ec9082610644565b6002556001600160a01b038216600090815260208190526040902054610a129082610644565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b600060208284031215610a9557600080fd5b6106a382610a67565b60008060408385031215610ab157600080fd5b610aba83610a67565b9150610ac860208401610a67565b90509250929050565b600080600060608486031215610ae657600080fd5b610aef84610a67565b9250610afd60208501610a67565b9150604084013590509250925092565b60008060408385031215610b2057600080fd5b610b2983610a67565b946020939093013593505050565b600060208083528351808285015260005b81811015610b6457858101830151858201604001528201610b48565b81811115610b76576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610bd457610bd4610c2b565b500190565b600082821015610beb57610beb610c2b565b500390565b600181811c90821680610c0457607f821691505b60208210811415610c2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122071ba9ce5c389001ba69b406e4bc6cadc1530fdc080a79b3f906fb7cbe40346aa64736f6c63430008060033

Deployed Bytecode Sourcemap

24212:531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13126:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15272:169;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;15272:169:0;1543:92:1;14225:108:0;14313:12;;14225:108;;;5490:25:1;;;5478:2;5463:18;14225:108:0;5445:76:1;15923:321:0;;;;;;:::i;:::-;;:::i;14069:91::-;14143:9;;14069:91;;14143:9;;;;5668:36:1;;5656:2;5641:18;14069:91:0;5623:87:1;16653:218:0;;;;;;:::i;:::-;;:::i;24525:99::-;;;;;;:::i;:::-;;:::i;:::-;;14396:127;;;;;;:::i;:::-;-1:-1:-1;;;;;14497:18:0;14470:7;14497:18;;;;;;;;;;;;14396:127;23658:148;;;:::i;24428:85::-;23080:6;;;;;-1:-1:-1;;;;;23080:6:0;24428:85;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;24428:85:0;1341:102:1;23007:87:0;23080:6;;;;;-1:-1:-1;;;;;23080:6:0;23007:87;;13336:95;;;:::i;17374:269::-;;;;;;:::i;:::-;;:::i;14736:175::-;;;;;;:::i;:::-;;:::i;24632:106::-;24700:30;;;;;;;;;;;;-1:-1:-1;;;24700:30:0;;;;24632:106;;14974:151;;;;;;:::i;:::-;-1:-1:-1;;;;;15090:18:0;;;15063:7;15090:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14974:151;23961:244;;;;;;:::i;:::-;;:::i;13126:91::-;13171:13;13204:5;13197:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13126:91;:::o;15272:169::-;15355:4;15372:39;10797:10;15395:7;15404:6;15372:8;:39::i;:::-;-1:-1:-1;15429:4:0;15272:169;;;;:::o;15923:321::-;16029:4;16046:36;16056:6;16064:9;16075:6;16046:9;:36::i;:::-;16093:121;16102:6;10797:10;16124:89;16162:6;16124:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16124:19:0;;;;;;:11;:19;;;;;;;;10797:10;16124:33;;;;;;;;;;:37;:89::i;:::-;16093:8;:121::i;:::-;-1:-1:-1;16232:4:0;15923:321;;;;;:::o;16653:218::-;10797:10;16741:4;16790:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16790:34:0;;;;;;;;;;16741:4;;16758:83;;16781:7;;16790:50;;16829:10;16790:38;:50::i;24525:99::-;23080:6;;-1:-1:-1;;;;;23080:6:0;;;;;10797:10;23227:23;23219:68;;;;-1:-1:-1;;;23219:68:0;;;;;;;:::i;:::-;;;;;;;;;24597:19:::1;24603:3;24608:7;24597:5;:19::i;:::-;24525:99:::0;;:::o;23658:148::-;23080:6;;-1:-1:-1;;;;;23080:6:0;;;;;10797:10;23227:23;23219:68;;;;-1:-1:-1;;;23219:68:0;;;;;;;:::i;:::-;23749:6:::1;::::0;23728:40:::1;::::0;23765:1:::1;::::0;23749:6:::1;::::0;::::1;-1:-1:-1::0;;;;;23749:6:0::1;::::0;23728:40:::1;::::0;23765:1;;23728:40:::1;23779:6;:19:::0;;-1:-1:-1;;;;;;23779:19:0::1;::::0;;23658:148::o;13336:95::-;13383:13;13416:7;13409:14;;;;;:::i;17374:269::-;17467:4;17484:129;10797:10;17507:7;17516:96;17555:15;17516:96;;;;;;;;;;;;;;;;;10797:10;17516:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17516:34:0;;;;;;;;;;;;:38;:96::i;14736:175::-;14822:4;14839:42;10797:10;14863:9;14874:6;14839:9;:42::i;23961:244::-;23080:6;;-1:-1:-1;;;;;23080:6:0;;;;;10797:10;23227:23;23219:68;;;;-1:-1:-1;;;23219:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24050:22:0;::::1;24042:73;;;::::0;-1:-1:-1;;;24042:73:0;;2848:2:1;24042:73:0::1;::::0;::::1;2830:21:1::0;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:36;3023:19;;24042:73:0::1;2820:228:1::0;24042:73:0::1;24152:6;::::0;24131:38:::1;::::0;-1:-1:-1;;;;;24131:38:0;;::::1;::::0;24152:6:::1;::::0;::::1;;::::0;24131:38:::1;::::0;;;::::1;24180:6;:17:::0;;-1:-1:-1;;;;;24180:17:0;;::::1;;;-1:-1:-1::0;;;;;;24180:17:0;;::::1;::::0;;;::::1;::::0;;23961:244::o;2772:179::-;2830:7;;2862:5;2866:1;2862;:5;:::i;:::-;2850:17;;2891:1;2886;:6;;2878:46;;;;-1:-1:-1;;;2878:46:0;;3658:2:1;2878:46:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:29;3716:18;;;3709:57;3783:18;;2878:46:0;3630:177:1;2878:46:0;2942:1;2772:179;-1:-1:-1;;;2772:179:0:o;20521:346::-;-1:-1:-1;;;;;20623:19:0;;20615:68;;;;-1:-1:-1;;;20615:68:0;;4781:2:1;20615:68:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:34;4954:19;;20615:68:0;4753:226:1;20615:68:0;-1:-1:-1;;;;;20702:21:0;;20694:68;;;;-1:-1:-1;;;20694:68:0;;3255:2:1;20694:68:0;;;3237:21:1;3294:2;3274:18;;;3267:30;3333:34;3313:18;;;3306:62;-1:-1:-1;;;3384:18:1;;;3377:32;3426:19;;20694:68:0;3227:224:1;20694:68:0;-1:-1:-1;;;;;20775:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20827:32;;5490:25:1;;;20827:32:0;;5463:18:1;20827:32:0;;;;;;;;20521:346;;;:::o;18133:539::-;-1:-1:-1;;;;;18239:20:0;;18231:70;;;;-1:-1:-1;;;18231:70:0;;4375:2:1;18231:70:0;;;4357:21:1;4414:2;4394:18;;;4387:30;4453:34;4433:18;;;4426:62;-1:-1:-1;;;4504:18:1;;;4497:35;4549:19;;18231:70:0;4347:227:1;18231:70:0;-1:-1:-1;;;;;18320:23:0;;18312:71;;;;-1:-1:-1;;;18312:71:0;;2444:2:1;18312:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;18312:71:0;2416:225:1;18312:71:0;18476;18498:6;18476:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18476:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18456:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18581:20;;;;;;;:32;;18606:6;18581:24;:32::i;:::-;-1:-1:-1;;;;;18558:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18629:35;5490:25:1;;;18558:20:0;;18629:35;;;;;;5463:18:1;18629:35:0;5445:76:1;5599:166:0;5685:7;5721:12;5713:6;;;;5705:29;;;;-1:-1:-1;;;5705:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5752:5:0;5756:1;5752;:5;:::i;:::-;5745:12;5599:166;-1:-1:-1;;;;5599:166:0:o;18954:378::-;-1:-1:-1;;;;;19038:21:0;;19030:65;;;;-1:-1:-1;;;19030:65:0;;5186:2:1;19030:65:0;;;5168:21:1;5225:2;5205:18;;;5198:30;5264:33;5244:18;;;5237:61;5315:18;;19030:65:0;5158:181:1;19030:65:0;19185:12;;:24;;19202:6;19185:16;:24::i;:::-;19170:12;:39;-1:-1:-1;;;;;19241:18:0;;:9;:18;;;;;;;;;;;:30;;19264:6;19241:22;:30::i;:::-;-1:-1:-1;;;;;19220:18:0;;:9;:18;;;;;;;;;;;:51;;;;19287:37;;5490:25:1;;;19220:18:0;;:9;;19287:37;;5463:18:1;19287:37:0;;;;;;;18954:378;;:::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:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;3812:356::-;4014:2;3996:21;;;4033:18;;;4026:30;4092:34;4087:2;4072:18;;4065:62;4159:2;4144:18;;3986:182::o;5715:128::-;5755:3;5786:1;5782:6;5779:1;5776:13;5773:2;;;5792:18;;:::i;:::-;-1:-1:-1;5828:9:1;;5763:80::o;5848:125::-;5888:4;5916:1;5913;5910:8;5907:2;;;5921:18;;:::i;:::-;-1:-1:-1;5958:9:1;;5897:76::o;5978:380::-;6057:1;6053:12;;;;6100;;;6121:2;;6175:4;6167:6;6163:17;6153:27;;6121:2;6228;6220:6;6217:14;6197:18;6194:38;6191:2;;;6274:10;6269:3;6265:20;6262:1;6255:31;6309:4;6306:1;6299:15;6337:4;6334:1;6327:15;6191:2;;6033:325;;;:::o;6363:127::-;6424:10;6419:3;6415:20;6412:1;6405:31;6455:4;6452:1;6445:15;6479:4;6476:1;6469:15

Swarm Source

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