ETH Price: $3,412.10 (-0.95%)
Gas: 2 Gwei

Token

LMEOW (LMEOW)
 

Overview

Max Total Supply

420,690,000 LMEOW

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
75,390.077706371530000124 LMEOW

Value
$0.00
0x6a52310142be12fbf527bdf29eda6983b14a63a4
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:
LMEOW

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
.__                               
|  |   _____   ____  ______  _  __
|  |  /     \_/ __ \/  _ \ \/ \/ /
|  |_|  Y Y  \  ___(  <_> )     / 
|____/__|_|  /\___  >____/ \/\_/  
           \/     \/              


website: https://lmeow.netlify.app/
telegram: https://t.me/lmeowofficial
twitter: https://twitter.com/lmeowofficial

*/


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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: contracts/LMEOWToken.sol

pragma solidity ^0.8.4;

contract LMEOW is ERC20, Ownable {

    mapping(address => bool) public blacklistWallet;
   
    constructor() ERC20("LMEOW", "LMEOW") {
        _mint(msg.sender, 420690000e18);
    }

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


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

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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f4c4d454f570000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4d454f5700000000000000000000000000000000000000000000000000000081525081600390816200008f91906200068e565b508060049081620000a191906200068e565b505050620000c4620000b8620000e860201b60201c565b620000f060201b60201c565b620000e2336b015bfc9298de952e2f400000620001b660201b60201c565b62000902565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f90620007d6565b60405180910390fd5b6200023c600083836200032360201b60201c565b806002600082825462000250919062000827565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000303919062000873565b60405180910390a36200031f600083836200040f60201b60201c565b5050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003c85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200040a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040190620008e0565b60405180910390fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049657607f821691505b602082108103620004ac57620004ab6200044e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d7565b620005228683620004d7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200056f6200056962000563846200053a565b62000544565b6200053a565b9050919050565b6000819050919050565b6200058b836200054e565b620005a36200059a8262000576565b848454620004e4565b825550505050565b600090565b620005ba620005ab565b620005c781848462000580565b505050565b5b81811015620005ef57620005e3600082620005b0565b600181019050620005cd565b5050565b601f8211156200063e576200060881620004b2565b6200061384620004c7565b8101602085101562000623578190505b6200063b6200063285620004c7565b830182620005cc565b50505b505050565b600082821c905092915050565b6000620006636000198460080262000643565b1980831691505092915050565b60006200067e838362000650565b9150826002028217905092915050565b620006998262000414565b67ffffffffffffffff811115620006b557620006b46200041f565b5b620006c182546200047d565b620006ce828285620005f3565b600060209050601f831160018114620007065760008415620006f1578287015190505b620006fd858262000670565b8655506200076d565b601f1984166200071686620004b2565b60005b82811015620007405784890151825560018201915060208501945060208101905062000719565b868310156200076057848901516200075c601f89168262000650565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007be601f8362000775565b9150620007cb8262000786565b602082019050919050565b60006020820190508181036000830152620007f181620007af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000834826200053a565b915062000841836200053a565b92508282019050808211156200085c576200085b620007f8565b5b92915050565b6200086d816200053a565b82525050565b60006020820190506200088a600083018462000862565b92915050565b7f426c61636b6c69737465642057616c6c65740000000000000000000000000000600082015250565b6000620008c860128362000775565b9150620008d58262000890565b602082019050919050565b60006020820190508181036000830152620008fb81620008b9565b9050919050565b61188180620009126000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf578063404e5129146101ef57806362441bf61461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190610f5e565b60405180910390f35b61013d60048036038101906101389190611019565b6103ef565b60405161014a9190611074565b60405180910390f35b61015b610412565b604051610168919061109e565b60405180910390f35b61018b600480360381019061018691906110b9565b61041c565b6040516101989190611074565b60405180910390f35b6101a961044b565b6040516101b69190611128565b60405180910390f35b6101d960048036038101906101d49190611019565b610454565b6040516101e69190611074565b60405180910390f35b6102096004803603810190610204919061116f565b61048b565b005b610225600480360381019061022091906111af565b6104ee565b6040516102329190611074565b60405180910390f35b610255600480360381019061025091906111af565b61050e565b604051610262919061109e565b60405180910390f35b610273610556565b005b61027d61056a565b60405161028a91906111eb565b60405180910390f35b61029b610594565b6040516102a89190610f5e565b60405180910390f35b6102cb60048036038101906102c69190611019565b610626565b6040516102d89190611074565b60405180910390f35b6102fb60048036038101906102f69190611019565b61069d565b6040516103089190611074565b60405180910390f35b61032b60048036038101906103269190611206565b6106c0565b604051610338919061109e565b60405180910390f35b61035b600480360381019061035691906111af565b610747565b005b60606003805461036c90611275565b80601f016020809104026020016040519081016040528092919081815260200182805461039890611275565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa6107ca565b90506104078185856107d2565b600191505092915050565b6000600254905090565b6000806104276107ca565b905061043485828561099b565b61043f858585610a27565b60019150509392505050565b60006012905090565b60008061045f6107ca565b905061048081858561047185896106c0565b61047b91906112d5565b6107d2565b600191505092915050565b610493610c9d565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61055e610c9d565b6105686000610d1b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a390611275565b80601f01602080910402602001604051908101604052809291908181526020018280546105cf90611275565b801561061c5780601f106105f15761010080835404028352916020019161061c565b820191906000526020600020905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b6000806106316107ca565b9050600061063f82866106c0565b905083811015610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b9061137b565b60405180910390fd5b61069182868684036107d2565b60019250505092915050565b6000806106a86107ca565b90506106b5818585610a27565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61074f610c9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b59061140d565b60405180910390fd5b6107c781610d1b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108389061149f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611531565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161098e919061109e565b60405180910390a3505050565b60006109a784846106c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a215781811015610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061159d565b60405180910390fd5b610a2084848484036107d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061162f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906116c1565b60405180910390fd5b610b10838383610de1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611753565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c84919061109e565b60405180910390a3610c97848484610ec9565b50505050565b610ca56107ca565b73ffffffffffffffffffffffffffffffffffffffff16610cc361056a565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d10906117bf565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e855750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061182b565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f08578082015181840152602081019050610eed565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f3082610ece565b610f3a8185610ed9565b9350610f4a818560208601610eea565b610f5381610f14565b840191505092915050565b60006020820190508181036000830152610f788184610f25565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fb082610f85565b9050919050565b610fc081610fa5565b8114610fcb57600080fd5b50565b600081359050610fdd81610fb7565b92915050565b6000819050919050565b610ff681610fe3565b811461100157600080fd5b50565b60008135905061101381610fed565b92915050565b600080604083850312156110305761102f610f80565b5b600061103e85828601610fce565b925050602061104f85828601611004565b9150509250929050565b60008115159050919050565b61106e81611059565b82525050565b60006020820190506110896000830184611065565b92915050565b61109881610fe3565b82525050565b60006020820190506110b3600083018461108f565b92915050565b6000806000606084860312156110d2576110d1610f80565b5b60006110e086828701610fce565b93505060206110f186828701610fce565b925050604061110286828701611004565b9150509250925092565b600060ff82169050919050565b6111228161110c565b82525050565b600060208201905061113d6000830184611119565b92915050565b61114c81611059565b811461115757600080fd5b50565b60008135905061116981611143565b92915050565b6000806040838503121561118657611185610f80565b5b600061119485828601610fce565b92505060206111a58582860161115a565b9150509250929050565b6000602082840312156111c5576111c4610f80565b5b60006111d384828501610fce565b91505092915050565b6111e581610fa5565b82525050565b600060208201905061120060008301846111dc565b92915050565b6000806040838503121561121d5761121c610f80565b5b600061122b85828601610fce565b925050602061123c85828601610fce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061128d57607f821691505b6020821081036112a05761129f611246565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112e082610fe3565b91506112eb83610fe3565b9250828201905080821115611303576113026112a6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611365602583610ed9565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113f7602683610ed9565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611489602483610ed9565b91506114948261142d565b604082019050919050565b600060208201905081810360008301526114b88161147c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061151b602283610ed9565b9150611526826114bf565b604082019050919050565b6000602082019050818103600083015261154a8161150e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611587601d83610ed9565b915061159282611551565b602082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611619602583610ed9565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006116ab602383610ed9565b91506116b68261164f565b604082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061173d602683610ed9565b9150611748826116e1565b604082019050919050565b6000602082019050818103600083015261176c81611730565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117a9602083610ed9565b91506117b482611773565b602082019050919050565b600060208201905081810360008301526117d88161179c565b9050919050565b7f426c61636b6c69737465642057616c6c65740000000000000000000000000000600082015250565b6000611815601283610ed9565b9150611820826117df565b602082019050919050565b6000602082019050818103600083015261184481611808565b905091905056fea2646970667358221220669a2d2fffccd7d071e75dd02d2d46f49389e9e217bb6619b076473aa23513c064736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf578063404e5129146101ef57806362441bf61461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190610f5e565b60405180910390f35b61013d60048036038101906101389190611019565b6103ef565b60405161014a9190611074565b60405180910390f35b61015b610412565b604051610168919061109e565b60405180910390f35b61018b600480360381019061018691906110b9565b61041c565b6040516101989190611074565b60405180910390f35b6101a961044b565b6040516101b69190611128565b60405180910390f35b6101d960048036038101906101d49190611019565b610454565b6040516101e69190611074565b60405180910390f35b6102096004803603810190610204919061116f565b61048b565b005b610225600480360381019061022091906111af565b6104ee565b6040516102329190611074565b60405180910390f35b610255600480360381019061025091906111af565b61050e565b604051610262919061109e565b60405180910390f35b610273610556565b005b61027d61056a565b60405161028a91906111eb565b60405180910390f35b61029b610594565b6040516102a89190610f5e565b60405180910390f35b6102cb60048036038101906102c69190611019565b610626565b6040516102d89190611074565b60405180910390f35b6102fb60048036038101906102f69190611019565b61069d565b6040516103089190611074565b60405180910390f35b61032b60048036038101906103269190611206565b6106c0565b604051610338919061109e565b60405180910390f35b61035b600480360381019061035691906111af565b610747565b005b60606003805461036c90611275565b80601f016020809104026020016040519081016040528092919081815260200182805461039890611275565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa6107ca565b90506104078185856107d2565b600191505092915050565b6000600254905090565b6000806104276107ca565b905061043485828561099b565b61043f858585610a27565b60019150509392505050565b60006012905090565b60008061045f6107ca565b905061048081858561047185896106c0565b61047b91906112d5565b6107d2565b600191505092915050565b610493610c9d565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60066020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61055e610c9d565b6105686000610d1b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105a390611275565b80601f01602080910402602001604051908101604052809291908181526020018280546105cf90611275565b801561061c5780601f106105f15761010080835404028352916020019161061c565b820191906000526020600020905b8154815290600101906020018083116105ff57829003601f168201915b5050505050905090565b6000806106316107ca565b9050600061063f82866106c0565b905083811015610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067b9061137b565b60405180910390fd5b61069182868684036107d2565b60019250505092915050565b6000806106a86107ca565b90506106b5818585610a27565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61074f610c9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b59061140d565b60405180910390fd5b6107c781610d1b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108389061149f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611531565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161098e919061109e565b60405180910390a3505050565b60006109a784846106c0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a215781811015610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061159d565b60405180910390fd5b610a2084848484036107d2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d9061162f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906116c1565b60405180910390fd5b610b10838383610de1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611753565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c84919061109e565b60405180910390a3610c97848484610ec9565b50505050565b610ca56107ca565b73ffffffffffffffffffffffffffffffffffffffff16610cc361056a565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d10906117bf565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610e855750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061182b565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f08578082015181840152602081019050610eed565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f3082610ece565b610f3a8185610ed9565b9350610f4a818560208601610eea565b610f5381610f14565b840191505092915050565b60006020820190508181036000830152610f788184610f25565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fb082610f85565b9050919050565b610fc081610fa5565b8114610fcb57600080fd5b50565b600081359050610fdd81610fb7565b92915050565b6000819050919050565b610ff681610fe3565b811461100157600080fd5b50565b60008135905061101381610fed565b92915050565b600080604083850312156110305761102f610f80565b5b600061103e85828601610fce565b925050602061104f85828601611004565b9150509250929050565b60008115159050919050565b61106e81611059565b82525050565b60006020820190506110896000830184611065565b92915050565b61109881610fe3565b82525050565b60006020820190506110b3600083018461108f565b92915050565b6000806000606084860312156110d2576110d1610f80565b5b60006110e086828701610fce565b93505060206110f186828701610fce565b925050604061110286828701611004565b9150509250925092565b600060ff82169050919050565b6111228161110c565b82525050565b600060208201905061113d6000830184611119565b92915050565b61114c81611059565b811461115757600080fd5b50565b60008135905061116981611143565b92915050565b6000806040838503121561118657611185610f80565b5b600061119485828601610fce565b92505060206111a58582860161115a565b9150509250929050565b6000602082840312156111c5576111c4610f80565b5b60006111d384828501610fce565b91505092915050565b6111e581610fa5565b82525050565b600060208201905061120060008301846111dc565b92915050565b6000806040838503121561121d5761121c610f80565b5b600061122b85828601610fce565b925050602061123c85828601610fce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061128d57607f821691505b6020821081036112a05761129f611246565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112e082610fe3565b91506112eb83610fe3565b9250828201905080821115611303576113026112a6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611365602583610ed9565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113f7602683610ed9565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611489602483610ed9565b91506114948261142d565b604082019050919050565b600060208201905081810360008301526114b88161147c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061151b602283610ed9565b9150611526826114bf565b604082019050919050565b6000602082019050818103600083015261154a8161150e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611587601d83610ed9565b915061159282611551565b602082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611619602583610ed9565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006116ab602383610ed9565b91506116b68261164f565b604082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061173d602683610ed9565b9150611748826116e1565b604082019050919050565b6000602082019050818103600083015261176c81611730565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117a9602083610ed9565b91506117b482611773565b602082019050919050565b600060208201905081810360008301526117d88161179c565b9050919050565b7f426c61636b6c69737465642057616c6c65740000000000000000000000000000600082015250565b6000611815601283610ed9565b9150611820826117df565b602082019050919050565b6000602082019050818103600083015261184481611808565b905091905056fea2646970667358221220669a2d2fffccd7d071e75dd02d2d46f49389e9e217bb6619b076473aa23513c064736f6c63430008120033

Deployed Bytecode Sourcemap

28016:577:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16959:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19319:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18088:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20100:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17930:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20770:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28214:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28058:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18259:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10255:103;;;:::i;:::-;;9614:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17178:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21511:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18592:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18848:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10513:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16959:100;17013:13;17046:5;17039:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16959:100;:::o;19319:201::-;19402:4;19419:13;19435:12;:10;:12::i;:::-;19419:28;;19458:32;19467:5;19474:7;19483:6;19458:8;:32::i;:::-;19508:4;19501:11;;;19319:201;;;;:::o;18088:108::-;18149:7;18176:12;;18169:19;;18088:108;:::o;20100:261::-;20197:4;20214:15;20232:12;:10;:12::i;:::-;20214:30;;20255:38;20271:4;20277:7;20286:6;20255:15;:38::i;:::-;20304:27;20314:4;20320:2;20324:6;20304:9;:27::i;:::-;20349:4;20342:11;;;20100:261;;;;;:::o;17930:93::-;17988:5;18013:2;18006:9;;17930:93;:::o;20770:238::-;20858:4;20875:13;20891:12;:10;:12::i;:::-;20875:28;;20914:64;20923:5;20930:7;20967:10;20939:25;20949:5;20956:7;20939:9;:25::i;:::-;:38;;;;:::i;:::-;20914:8;:64::i;:::-;20996:4;20989:11;;;20770:238;;;;:::o;28214:138::-;9500:13;:11;:13::i;:::-;28330:14:::1;28302:15;:25;28318:8;28302:25;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;28214:138:::0;;:::o;28058:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;18259:127::-;18333:7;18360:9;:18;18370:7;18360:18;;;;;;;;;;;;;;;;18353:25;;18259:127;;;:::o;10255:103::-;9500:13;:11;:13::i;:::-;10320:30:::1;10347:1;10320:18;:30::i;:::-;10255:103::o:0;9614:87::-;9660:7;9687:6;;;;;;;;;;;9680:13;;9614:87;:::o;17178:104::-;17234:13;17267:7;17260:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17178:104;:::o;21511:436::-;21604:4;21621:13;21637:12;:10;:12::i;:::-;21621:28;;21660:24;21687:25;21697:5;21704:7;21687:9;:25::i;:::-;21660:52;;21751:15;21731:16;:35;;21723:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21844:60;21853:5;21860:7;21888:15;21869:16;:34;21844:8;:60::i;:::-;21935:4;21928:11;;;;21511:436;;;;:::o;18592:193::-;18671:4;18688:13;18704:12;:10;:12::i;:::-;18688:28;;18727;18737:5;18744:2;18748:6;18727:9;:28::i;:::-;18773:4;18766:11;;;18592:193;;;;:::o;18848:151::-;18937:7;18964:11;:18;18976:5;18964:18;;;;;;;;;;;;;;;:27;18983:7;18964:27;;;;;;;;;;;;;;;;18957:34;;18848:151;;;;:::o;10513:201::-;9500:13;:11;:13::i;:::-;10622:1:::1;10602:22;;:8;:22;;::::0;10594:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10678:28;10697:8;10678:18;:28::i;:::-;10513:201:::0;:::o;8112:98::-;8165:7;8192:10;8185:17;;8112:98;:::o;25504:346::-;25623:1;25606:19;;:5;:19;;;25598:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25704:1;25685:21;;:7;:21;;;25677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25788:6;25758:11;:18;25770:5;25758:18;;;;;;;;;;;;;;;:27;25777:7;25758:27;;;;;;;;;;;;;;;:36;;;;25826:7;25810:32;;25819:5;25810:32;;;25835:6;25810:32;;;;;;:::i;:::-;;;;;;;;25504:346;;;:::o;26141:419::-;26242:24;26269:25;26279:5;26286:7;26269:9;:25::i;:::-;26242:52;;26329:17;26309:16;:37;26305:248;;26391:6;26371:16;:26;;26363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26475:51;26484:5;26491:7;26519:6;26500:16;:25;26475:8;:51::i;:::-;26305:248;26231:329;26141:419;;;:::o;22417:806::-;22530:1;22514:18;;:4;:18;;;22506:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22607:1;22593:16;;:2;:16;;;22585:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22662:38;22683:4;22689:2;22693:6;22662:20;:38::i;:::-;22713:19;22735:9;:15;22745:4;22735:15;;;;;;;;;;;;;;;;22713:37;;22784:6;22769:11;:21;;22761:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22901:6;22887:11;:20;22869:9;:15;22879:4;22869:15;;;;;;;;;;;;;;;:38;;;;23104:6;23087:9;:13;23097:2;23087:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;23154:2;23139:26;;23148:4;23139:26;;;23158:6;23139:26;;;;;;:::i;:::-;;;;;;;;23178:37;23198:4;23204:2;23208:6;23178:19;:37::i;:::-;22495:728;22417:806;;;:::o;9779:132::-;9854:12;:10;:12::i;:::-;9843:23;;:7;:5;:7::i;:::-;:23;;;9835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9779:132::o;10874:191::-;10948:16;10967:6;;;;;;;;;;;10948:25;;10993:8;10984:6;;:17;;;;;;;;;;;;;;;;;;11048:8;11017:40;;11038:8;11017:40;;;;;;;;;;;;10937:128;10874:191;:::o;28362:228::-;28514:15;:19;28530:2;28514:19;;;;;;;;;;;;;;;;;;;;;;;;;28513:20;:46;;;;;28538:15;:21;28554:4;28538:21;;;;;;;;;;;;;;;;;;;;;;;;;28537:22;28513:46;28505:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;28362:228;;;:::o;27855:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:468::-;5179:6;5187;5236:2;5224:9;5215:7;5211:23;5207:32;5204:119;;;5242:79;;:::i;:::-;5204:119;5362:1;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5333:117;5489:2;5515:50;5557:7;5548:6;5537:9;5533:22;5515:50;:::i;:::-;5505:60;;5460:115;5114:468;;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:474::-;6343:6;6351;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6497:117;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6275:474;;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:320;6985:6;7022:1;7016:4;7012:12;7002:22;;7069:1;7063:4;7059:12;7090:18;7080:81;;7146:4;7138:6;7134:17;7124:27;;7080:81;7208:2;7200:6;7197:14;7177:18;7174:38;7171:84;;7227:18;;:::i;:::-;7171:84;6992:269;6941:320;;;:::o;7267:180::-;7315:77;7312:1;7305:88;7412:4;7409:1;7402:15;7436:4;7433:1;7426:15;7453:191;7493:3;7512:20;7530:1;7512:20;:::i;:::-;7507:25;;7546:20;7564:1;7546:20;:::i;:::-;7541:25;;7589:1;7586;7582:9;7575:16;;7610:3;7607:1;7604:10;7601:36;;;7617:18;;:::i;:::-;7601:36;7453:191;;;;:::o;7650:224::-;7790:34;7786:1;7778:6;7774:14;7767:58;7859:7;7854:2;7846:6;7842:15;7835:32;7650:224;:::o;7880:366::-;8022:3;8043:67;8107:2;8102:3;8043:67;:::i;:::-;8036:74;;8119:93;8208:3;8119:93;:::i;:::-;8237:2;8232:3;8228:12;8221:19;;7880:366;;;:::o;8252:419::-;8418:4;8456:2;8445:9;8441:18;8433:26;;8505:9;8499:4;8495:20;8491:1;8480:9;8476:17;8469:47;8533:131;8659:4;8533:131;:::i;:::-;8525:139;;8252:419;;;:::o;8677:225::-;8817:34;8813:1;8805:6;8801:14;8794:58;8886:8;8881:2;8873:6;8869:15;8862:33;8677:225;:::o;8908:366::-;9050:3;9071:67;9135:2;9130:3;9071:67;:::i;:::-;9064:74;;9147:93;9236:3;9147:93;:::i;:::-;9265:2;9260:3;9256:12;9249:19;;8908:366;;;:::o;9280:419::-;9446:4;9484:2;9473:9;9469:18;9461:26;;9533:9;9527:4;9523:20;9519:1;9508:9;9504:17;9497:47;9561:131;9687:4;9561:131;:::i;:::-;9553:139;;9280:419;;;:::o;9705:223::-;9845:34;9841:1;9833:6;9829:14;9822:58;9914:6;9909:2;9901:6;9897:15;9890:31;9705:223;:::o;9934:366::-;10076:3;10097:67;10161:2;10156:3;10097:67;:::i;:::-;10090:74;;10173:93;10262:3;10173:93;:::i;:::-;10291:2;10286:3;10282:12;10275:19;;9934:366;;;:::o;10306:419::-;10472:4;10510:2;10499:9;10495:18;10487:26;;10559:9;10553:4;10549:20;10545:1;10534:9;10530:17;10523:47;10587:131;10713:4;10587:131;:::i;:::-;10579:139;;10306:419;;;:::o;10731:221::-;10871:34;10867:1;10859:6;10855:14;10848:58;10940:4;10935:2;10927:6;10923:15;10916:29;10731:221;:::o;10958:366::-;11100:3;11121:67;11185:2;11180:3;11121:67;:::i;:::-;11114:74;;11197:93;11286:3;11197:93;:::i;:::-;11315:2;11310:3;11306:12;11299:19;;10958:366;;;:::o;11330:419::-;11496:4;11534:2;11523:9;11519:18;11511:26;;11583:9;11577:4;11573:20;11569:1;11558:9;11554:17;11547:47;11611:131;11737:4;11611:131;:::i;:::-;11603:139;;11330:419;;;:::o;11755:179::-;11895:31;11891:1;11883:6;11879:14;11872:55;11755:179;:::o;11940:366::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;11940:366;;;:::o;12312:419::-;12478:4;12516:2;12505:9;12501:18;12493:26;;12565:9;12559:4;12555:20;12551:1;12540:9;12536:17;12529:47;12593:131;12719:4;12593:131;:::i;:::-;12585:139;;12312:419;;;:::o;12737:224::-;12877:34;12873:1;12865:6;12861:14;12854:58;12946:7;12941:2;12933:6;12929:15;12922:32;12737:224;:::o;12967:366::-;13109:3;13130:67;13194:2;13189:3;13130:67;:::i;:::-;13123:74;;13206:93;13295:3;13206:93;:::i;:::-;13324:2;13319:3;13315:12;13308:19;;12967:366;;;:::o;13339:419::-;13505:4;13543:2;13532:9;13528:18;13520:26;;13592:9;13586:4;13582:20;13578:1;13567:9;13563:17;13556:47;13620:131;13746:4;13620:131;:::i;:::-;13612:139;;13339:419;;;:::o;13764:222::-;13904:34;13900:1;13892:6;13888:14;13881:58;13973:5;13968:2;13960:6;13956:15;13949:30;13764:222;:::o;13992:366::-;14134:3;14155:67;14219:2;14214:3;14155:67;:::i;:::-;14148:74;;14231:93;14320:3;14231:93;:::i;:::-;14349:2;14344:3;14340:12;14333:19;;13992:366;;;:::o;14364:419::-;14530:4;14568:2;14557:9;14553:18;14545:26;;14617:9;14611:4;14607:20;14603:1;14592:9;14588:17;14581:47;14645:131;14771:4;14645:131;:::i;:::-;14637:139;;14364:419;;;:::o;14789:225::-;14929:34;14925:1;14917:6;14913:14;14906:58;14998:8;14993:2;14985:6;14981:15;14974:33;14789:225;:::o;15020:366::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:419::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:131;15799:4;15673:131;:::i;:::-;15665:139;;15392:419;;;:::o;15817:182::-;15957:34;15953:1;15945:6;15941:14;15934:58;15817:182;:::o;16005:366::-;16147:3;16168:67;16232:2;16227:3;16168:67;:::i;:::-;16161:74;;16244:93;16333:3;16244:93;:::i;:::-;16362:2;16357:3;16353:12;16346:19;;16005:366;;;:::o;16377:419::-;16543:4;16581:2;16570:9;16566:18;16558:26;;16630:9;16624:4;16620:20;16616:1;16605:9;16601:17;16594:47;16658:131;16784:4;16658:131;:::i;:::-;16650:139;;16377:419;;;:::o;16802:168::-;16942:20;16938:1;16930:6;16926:14;16919:44;16802:168;:::o;16976:366::-;17118:3;17139:67;17203:2;17198:3;17139:67;:::i;:::-;17132:74;;17215:93;17304:3;17215:93;:::i;:::-;17333:2;17328:3;17324:12;17317:19;;16976:366;;;:::o;17348:419::-;17514:4;17552:2;17541:9;17537:18;17529:26;;17601:9;17595:4;17591:20;17587:1;17576:9;17572:17;17565:47;17629:131;17755:4;17629:131;:::i;:::-;17621:139;;17348:419;;;:::o

Swarm Source

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