ETH Price: $2,862.89 (-2.93%)
 

Overview

Max Total Supply

777,777,777 LOTTO

Holders

130,262 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 4 Decimals)

Balance
0.7777 LOTTO

Value
$0.00
0xbfa04e5d6ac1163b7da3e873e5b9c969e91a0ac0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$LOTTO is part of a system for the BASE L2 that allows you to participate in shared wealth gains. Hold 30000 $LOTTO and you're eligible to gain wealth from the sharing, no sign up required. Hold with peace of mind knowing you can sell your $LOTTO anytime, no taxes.

Contract Source Code Verified (Exact Match)

Contract Name:
LOTTO

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 777 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-07-12
*/

// https://basedlotto.xyz/

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 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 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 returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: contracts/MyToken.sol


pragma solidity ^0.8.20;


// https://basedlotto.xyz/ - the only real website for the Base Chain Lotto.
// First Wealth Share on 7/19/2024. A historical date.


abstract contract ReentrancyGuard {
    
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

   
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
      
        _status = _NOT_ENTERED;
    }

    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }


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

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

 
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }


    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }


    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

 
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


contract LOTTO is IERC20, ReentrancyGuard {
    using SafeMath for uint256;

    address private _owner;

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

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

    constructor(string memory name_, string memory symbol_, uint256 totalSupply_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _totalSupply = totalSupply_ * (10 ** uint256(decimals_));
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender; // Set the contract creator as the owner
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override nonReentrant returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public nonReentrant returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public nonReentrant returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function renounceOwnership() public {
        require(msg.sender == _owner, "Only the owner can renounce ownership");
        _owner = address(0); // Set the owner to the zero address, effectively renouncing ownership
    }

    function airdrop(address[] memory recipients, uint256 amount) public nonReentrant {
        require(amount > 0, "Airdrop amount must be greater than zero");
        require(recipients.length > 0, "Recipient list is empty");

        uint256 totalAmount = amount * recipients.length;
        require(totalAmount <= balanceOf(msg.sender), "Insufficient balance for airdrop");

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(msg.sender, recipients[i], amount);
        }
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        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);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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"}]

608060405234801561000f575f80fd5b506040516110c63803806110c683398101604081905261002e91610177565b60015f55600561003e8582610280565b50600661004b8482610280565b506007805460ff191660ff831690811790915561006990600a610433565b6100739083610445565b6004819055335f818152600260209081526040808320859055600180546001600160a01b0319168517905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505061045c565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126100fd575f80fd5b81516001600160401b03811115610116576101166100da565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610144576101446100da565b60405281815283820160200185101561015b575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f805f806080858703121561018a575f80fd5b84516001600160401b0381111561019f575f80fd5b6101ab878288016100ee565b602087015190955090506001600160401b038111156101c8575f80fd5b6101d4878288016100ee565b93505060408501519150606085015160ff811681146101f1575f80fd5b939692955090935050565b600181811c9082168061021057607f821691505b60208210810361022e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561027b57805f5260205f20601f840160051c810160208510156102595750805b601f840160051c820191505b81811015610278575f8155600101610265565b50505b505050565b81516001600160401b03811115610299576102996100da565b6102ad816102a784546101fc565b84610234565b6020601f8211600181146102df575f83156102c85750848201515b5f19600385901b1c1916600184901b178455610278565b5f84815260208120601f198516915b8281101561030e57878501518255602094850194600190920191016102ee565b508482101561032b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156103895780850481111561036d5761036d61033a565b600184161561037b57908102905b60019390931c928002610352565b935093915050565b5f8261039f5750600161042d565b816103ab57505f61042d565b81600181146103c157600281146103cb576103e7565b600191505061042d565b60ff8411156103dc576103dc61033a565b50506001821b61042d565b5060208310610133831016604e8410600b841016171561040a575081810a61042d565b6104165f19848461034e565b805f19048211156104295761042961033a565b0290505b92915050565b5f61043e8383610391565b9392505050565b808202811582820484141761042d5761042d61033a565b610c5d806104695f395ff3fe608060405234801561000f575f80fd5b50600436106100da575f3560e01c806370a0823111610088578063a457c2d711610063578063a457c2d7146101a6578063a9059cbb146101b9578063c204642c146101cc578063dd62ed3e146101df575f80fd5b806370a082311461016c578063715018a61461019457806395d89b411461019e575f80fd5b806323b872dd116100b857806323b872dd14610131578063313ce567146101445780633950935114610159575f80fd5b806306fdde03146100de578063095ea7b3146100fc57806318160ddd1461011f575b5f80fd5b6100e6610217565b6040516100f39190610947565b60405180910390f35b61010f61010a366004610997565b6102a7565b60405190151581526020016100f3565b6004545b6040519081526020016100f3565b61010f61013f3660046109bf565b6102cd565b60075460405160ff90911681526020016100f3565b61010f610167366004610997565b610345565b61012361017a3660046109f9565b6001600160a01b03165f9081526002602052604090205490565b61019c610382565b005b6100e6610419565b61010f6101b4366004610997565b610428565b61010f6101c7366004610997565b61047d565b61019c6101da366004610a26565b610491565b6101236101ed366004610af9565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b60606005805461022690610b2a565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610b2a565b801561029d5780601f106102745761010080835404028352916020019161029d565b820191905f5260205f20905b81548152906001019060200180831161028057829003601f168201915b5050505050905090565b5f6102b0610613565b6102bb33848461066a565b5060016102c760015f55565b92915050565b5f6102d6610613565b6102e184848461078e565b610332843361032d85604051806060016040528060288152602001610bdb602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190610911565b61066a565b50600161033e60015f55565b9392505050565b5f61034e610613565b335f8181526003602090815260408083206001600160a01b03881684529091529020546102bb9190859061032d908661093c565b6001546001600160a01b031633146103ef5760405162461bcd60e51b815260206004820152602560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206f776e65604482015264072736869760dc1b60648201526084015b60405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606006805461022690610b2a565b5f610431610613565b6102bb338461032d85604051806060016040528060258152602001610c0360259139335f9081526003602090815260408083206001600160a01b038d1684529091529020549190610911565b5f610486610613565b6102bb33848461078e565b610499610613565b5f811161050e5760405162461bcd60e51b815260206004820152602860248201527f41697264726f7020616d6f756e74206d7573742062652067726561746572207460448201527f68616e207a65726f00000000000000000000000000000000000000000000000060648201526084016103e6565b5f82511161055e5760405162461bcd60e51b815260206004820152601760248201527f526563697069656e74206c69737420697320656d70747900000000000000000060448201526064016103e6565b5f82518261056c9190610b76565b335f908152600260205260409020549091508111156105cd5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e636520666f722061697264726f7060448201526064016103e6565b5f5b8351811015610604576105fc338583815181106105ee576105ee610b8d565b60200260200101518561078e565b6001016105cf565b505061060f60015f55565b5050565b60025f54036106645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103e6565b60025f55565b6001600160a01b0383166106cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b6001600160a01b03821661072d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e6565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e6565b6001600160a01b0382166108545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e6565b61089081604051806060016040528060268152602001610bb5602691396001600160a01b0386165f908152600260205260409020549190610911565b6001600160a01b038085165f9081526002602052604080822093909355908416815220546108be908261093c565b6001600160a01b038084165f8181526002602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107819085815260200190565b5f81848411156109345760405162461bcd60e51b81526004016103e69190610947565b505050900390565b5f61033e8284610ba1565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610992575f80fd5b919050565b5f80604083850312156109a8575f80fd5b6109b18361097c565b946020939093013593505050565b5f805f606084860312156109d1575f80fd5b6109da8461097c565b92506109e86020850161097c565b929592945050506040919091013590565b5f60208284031215610a09575f80fd5b61033e8261097c565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215610a37575f80fd5b823567ffffffffffffffff811115610a4d575f80fd5b8301601f81018513610a5d575f80fd5b803567ffffffffffffffff811115610a7757610a77610a12565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610aa457610aa4610a12565b604052918252602081840181019290810188841115610ac1575f80fd5b6020850194505b83851015610ae757610ad98561097c565b815260209485019401610ac8565b50976020969096013596505050505050565b5f8060408385031215610b0a575f80fd5b610b138361097c565b9150610b216020840161097c565b90509250929050565b600181811c90821680610b3e57607f821691505b602082108103610b5c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176102c7576102c7610b62565b634e487b7160e01b5f52603260045260245ffd5b808201808211156102c7576102c7610b6256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033414186af03491a0a4fd5cd59da543c82a8069f8c0d8f20adf7df9aa15f05a464736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000002e5bf27100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000011546865204c6f74746f204f6e204261736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54544f000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100da575f3560e01c806370a0823111610088578063a457c2d711610063578063a457c2d7146101a6578063a9059cbb146101b9578063c204642c146101cc578063dd62ed3e146101df575f80fd5b806370a082311461016c578063715018a61461019457806395d89b411461019e575f80fd5b806323b872dd116100b857806323b872dd14610131578063313ce567146101445780633950935114610159575f80fd5b806306fdde03146100de578063095ea7b3146100fc57806318160ddd1461011f575b5f80fd5b6100e6610217565b6040516100f39190610947565b60405180910390f35b61010f61010a366004610997565b6102a7565b60405190151581526020016100f3565b6004545b6040519081526020016100f3565b61010f61013f3660046109bf565b6102cd565b60075460405160ff90911681526020016100f3565b61010f610167366004610997565b610345565b61012361017a3660046109f9565b6001600160a01b03165f9081526002602052604090205490565b61019c610382565b005b6100e6610419565b61010f6101b4366004610997565b610428565b61010f6101c7366004610997565b61047d565b61019c6101da366004610a26565b610491565b6101236101ed366004610af9565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b60606005805461022690610b2a565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610b2a565b801561029d5780601f106102745761010080835404028352916020019161029d565b820191905f5260205f20905b81548152906001019060200180831161028057829003601f168201915b5050505050905090565b5f6102b0610613565b6102bb33848461066a565b5060016102c760015f55565b92915050565b5f6102d6610613565b6102e184848461078e565b610332843361032d85604051806060016040528060288152602001610bdb602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190610911565b61066a565b50600161033e60015f55565b9392505050565b5f61034e610613565b335f8181526003602090815260408083206001600160a01b03881684529091529020546102bb9190859061032d908661093c565b6001546001600160a01b031633146103ef5760405162461bcd60e51b815260206004820152602560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206f776e65604482015264072736869760dc1b60648201526084015b60405180910390fd5b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606006805461022690610b2a565b5f610431610613565b6102bb338461032d85604051806060016040528060258152602001610c0360259139335f9081526003602090815260408083206001600160a01b038d1684529091529020549190610911565b5f610486610613565b6102bb33848461078e565b610499610613565b5f811161050e5760405162461bcd60e51b815260206004820152602860248201527f41697264726f7020616d6f756e74206d7573742062652067726561746572207460448201527f68616e207a65726f00000000000000000000000000000000000000000000000060648201526084016103e6565b5f82511161055e5760405162461bcd60e51b815260206004820152601760248201527f526563697069656e74206c69737420697320656d70747900000000000000000060448201526064016103e6565b5f82518261056c9190610b76565b335f908152600260205260409020549091508111156105cd5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e636520666f722061697264726f7060448201526064016103e6565b5f5b8351811015610604576105fc338583815181106105ee576105ee610b8d565b60200260200101518561078e565b6001016105cf565b505061060f60015f55565b5050565b60025f54036106645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103e6565b60025f55565b6001600160a01b0383166106cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b6001600160a01b03821661072d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e6565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107f25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e6565b6001600160a01b0382166108545760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e6565b61089081604051806060016040528060268152602001610bb5602691396001600160a01b0386165f908152600260205260409020549190610911565b6001600160a01b038085165f9081526002602052604080822093909355908416815220546108be908261093c565b6001600160a01b038084165f8181526002602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107819085815260200190565b5f81848411156109345760405162461bcd60e51b81526004016103e69190610947565b505050900390565b5f61033e8284610ba1565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610992575f80fd5b919050565b5f80604083850312156109a8575f80fd5b6109b18361097c565b946020939093013593505050565b5f805f606084860312156109d1575f80fd5b6109da8461097c565b92506109e86020850161097c565b929592945050506040919091013590565b5f60208284031215610a09575f80fd5b61033e8261097c565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215610a37575f80fd5b823567ffffffffffffffff811115610a4d575f80fd5b8301601f81018513610a5d575f80fd5b803567ffffffffffffffff811115610a7757610a77610a12565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610aa457610aa4610a12565b604052918252602081840181019290810188841115610ac1575f80fd5b6020850194505b83851015610ae757610ad98561097c565b815260209485019401610ac8565b50976020969096013596505050505050565b5f8060408385031215610b0a575f80fd5b610b138361097c565b9150610b216020840161097c565b90509250929050565b600181811c90821680610b3e57607f821691505b602082108103610b5c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176102c7576102c7610b62565b634e487b7160e01b5f52603260045260245ffd5b808201808211156102c7576102c7610b6256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033414186af03491a0a4fd5cd59da543c82a8069f8c0d8f20adf7df9aa15f05a464736f6c634300081a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000002e5bf27100000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000011546865204c6f74746f204f6e204261736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f54544f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): The Lotto On Base
Arg [1] : symbol_ (string): LOTTO
Arg [2] : totalSupply_ (uint256): 777777777
Arg [3] : decimals_ (uint8): 4

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000002e5bf271
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 546865204c6f74746f204f6e2042617365000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4c4f54544f000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26291:4250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27099:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27948:172;;;;;;:::i;:::-;;:::i;:::-;;;1108:14:1;;1101:22;1083:41;;1071:2;1056:18;27948:172:0;943:187:1;27376:100:0;27456:12;;27376:100;;;1281:25:1;;;1269:2;1254:18;27376:100:0;1135:177:1;28128:322:0;;;;;;:::i;:::-;;:::i;27285:83::-;27351:9;;27285:83;;27351:9;;;;1838:36:1;;1826:2;1811:18;27285:83:0;1696:184:1;28458:219:0;;;;;;:::i;:::-;;:::i;27484:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27577:18:0;27550:7;27577:18;;;:9;:18;;;;;;;27484:119;28963:226;;;:::i;:::-;;27190:87;;;:::i;28685:270::-;;;;;;:::i;:::-;;:::i;27611:178::-;;;;;;:::i;:::-;;:::i;29197:516::-;;;;;;:::i;:::-;;:::i;27797:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27905:18:0;;;27878:7;27905:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27797:143;27099:83;27136:13;27169:5;27162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27099:83;:::o;27948:172::-;28036:4;23137:21;:19;:21::i;:::-;28053:37:::1;28062:10;28074:7;28083:6;28053:8;:37::i;:::-;-1:-1:-1::0;28108:4:0::1;23181:20:::0;22948:1;23575:7;:22;23518:87;23181:20;27948:172;;;;:::o;28128:322::-;28239:4;23137:21;:19;:21::i;:::-;28256:36:::1;28266:6;28274:9;28285:6;28256:9;:36::i;:::-;28303:117;28312:6;28320:10;28332:87;28368:6;28332:87;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;28332:19:0;::::1;;::::0;;;:11:::1;:19;::::0;;;;;;;28352:10:::1;28332:31:::0;;;;;;;;;:87;:35:::1;:87::i;:::-;28303:8;:117::i;:::-;-1:-1:-1::0;28438:4:0::1;23181:20:::0;22948:1;23575:7;:22;23518:87;23181:20;28128:322;;;;;:::o;28458:219::-;28551:4;23137:21;:19;:21::i;:::-;28577:10:::1;28598:23;::::0;;;:11:::1;:23;::::0;;;;;;;-1:-1:-1;;;;;28598:32:0;::::1;::::0;;;;;;;;28568:79:::1;::::0;28577:10;28589:7;;28598:48:::1;::::0;28635:10;28598:36:::1;:48::i;28963:226::-:0;29032:6;;-1:-1:-1;;;;;29032:6:0;29018:10;:20;29010:70;;;;-1:-1:-1;;;29010:70:0;;4318:2:1;29010:70:0;;;4300:21:1;4357:2;4337:18;;;4330:30;4396:34;4376:18;;;4369:62;-1:-1:-1;;;4447:18:1;;;4440:35;4492:19;;29010:70:0;;;;;;;;;29091:6;:19;;;;;;28963:226::o;27190:87::-;27229:13;27262:7;27255:14;;;;;:::i;28685:270::-;28783:4;23137:21;:19;:21::i;:::-;28800:125:::1;28809:10;28821:7;28830:94;28867:15;28830:94;;;;;;;;;;;;;;;;;28842:10;28830:23;::::0;;;:11:::1;:23;::::0;;;;;;;-1:-1:-1;;;;;28830:32:0;::::1;::::0;;;;;;;;;:94;:36:::1;:94::i;27611:178::-:0;27702:4;23137:21;:19;:21::i;:::-;27719:40:::1;27729:10;27741:9;27752:6;27719:9;:40::i;29197:516::-:0;23137:21;:19;:21::i;:::-;29307:1:::1;29298:6;:10;29290:63;;;::::0;-1:-1:-1;;;29290:63:0;;4724:2:1;29290:63:0::1;::::0;::::1;4706:21:1::0;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;4873:10;4853:18;;;4846:38;4901:19;;29290:63:0::1;4522:404:1::0;29290:63:0::1;29392:1;29372:10;:17;:21;29364:57;;;::::0;-1:-1:-1;;;29364:57:0;;5133:2:1;29364:57:0::1;::::0;::::1;5115:21:1::0;5172:2;5152:18;;;5145:30;5211:25;5191:18;;;5184:53;5254:18;;29364:57:0::1;4931:347:1::0;29364:57:0::1;29434:19;29465:10;:17;29456:6;:26;;;;:::i;:::-;29526:10;27550:7:::0;27577:18;;;:9;:18;;;;;;29434:48;;-1:-1:-1;29501:11:0::1;:36;;29493:81;;;::::0;-1:-1:-1;;;29493:81:0;;5790:2:1;29493:81:0::1;::::0;::::1;5772:21:1::0;;;5809:18;;;5802:30;5868:34;5848:18;;;5841:62;5920:18;;29493:81:0::1;5588:356:1::0;29493:81:0::1;29592:9;29587:119;29611:10;:17;29607:1;:21;29587:119;;;29650:44;29660:10;29672;29683:1;29672:13;;;;;;;;:::i;:::-;;;;;;;29687:6;29650:9;:44::i;:::-;29630:3;;29587:119;;;;29279:434;23181:20:::0;22948:1;23575:7;:22;23518:87;23181:20;29197:516;;:::o;23217:293::-;22992:1;23351:7;;:19;23343:63;;;;-1:-1:-1;;;23343:63:0;;6283:2:1;23343:63:0;;;6265:21:1;6322:2;6302:18;;;6295:30;6361:33;6341:18;;;6334:61;6412:18;;23343:63:0;6081:355:1;23343:63:0;22992:1;23484:7;:18;23217:293::o;30200:338::-;-1:-1:-1;;;;;30294:19:0;;30286:68;;;;-1:-1:-1;;;30286:68:0;;6643:2:1;30286:68:0;;;6625:21:1;6682:2;6662:18;;;6655:30;6721:34;6701:18;;;6694:62;-1:-1:-1;;;6772:18:1;;;6765:34;6816:19;;30286:68:0;6441:400:1;30286:68:0;-1:-1:-1;;;;;30373:21:0;;30365:68;;;;-1:-1:-1;;;30365:68:0;;7048:2:1;30365:68:0;;;7030:21:1;7087:2;7067:18;;;7060:30;7126:34;7106:18;;;7099:62;-1:-1:-1;;;7177:18:1;;;7170:32;7219:19;;30365:68:0;6846:398:1;30365:68:0;-1:-1:-1;;;;;30446:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30498:32;;1281:25:1;;;30498:32:0;;1254:18:1;30498:32:0;;;;;;;;30200:338;;;:::o;29721:471::-;-1:-1:-1;;;;;29819:20:0;;29811:70;;;;-1:-1:-1;;;29811:70:0;;7451:2:1;29811:70:0;;;7433:21:1;7490:2;7470:18;;;7463:30;7529:34;7509:18;;;7502:62;-1:-1:-1;;;7580:18:1;;;7573:35;7625:19;;29811:70:0;7249:401:1;29811:70:0;-1:-1:-1;;;;;29900:23:0;;29892:71;;;;-1:-1:-1;;;29892:71:0;;7857:2:1;29892:71:0;;;7839:21:1;7896:2;7876:18;;;7869:30;7935:34;7915:18;;;7908:62;-1:-1:-1;;;7986:18:1;;;7979:33;8029:19;;29892:71:0;7655:399:1;29892:71:0;29996;30018:6;29996:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29996:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29976:17:0;;;;;;;:9;:17;;;;;;:91;;;;30101:20;;;;;;;:32;;30126:6;30101:24;:32::i;:::-;-1:-1:-1;;;;;30078:20:0;;;;;;;:9;:20;;;;;;;:55;;;;30149:35;;;;;;;;;;30177:6;1281:25:1;;1269:2;1254:18;;1135:177;25641:206:0;25727:7;25788:12;25780:6;;;;25772:29;;;;-1:-1:-1;;;25772:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;25823:5:0;;;25641:206::o;25109:98::-;25167:7;25194:5;25198:1;25194;:5;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:196::-;505:20;;-1:-1:-1;;;;;554:54:1;;544:65;;534:93;;623:1;620;613:12;534:93;437:196;;;:::o;638:300::-;706:6;714;767:2;755:9;746:7;742:23;738:32;735:52;;;783:1;780;773:12;735:52;806:29;825:9;806:29;:::i;:::-;796:39;904:2;889:18;;;;876:32;;-1:-1:-1;;;638:300:1:o;1317:374::-;1394:6;1402;1410;1463:2;1451:9;1442:7;1438:23;1434:32;1431:52;;;1479:1;1476;1469:12;1431:52;1502:29;1521:9;1502:29;:::i;:::-;1492:39;;1550:38;1584:2;1573:9;1569:18;1550:38;:::i;:::-;1317:374;;1540:48;;-1:-1:-1;;;1657:2:1;1642:18;;;;1629:32;;1317:374::o;1885:186::-;1944:6;1997:2;1985:9;1976:7;1972:23;1968:32;1965:52;;;2013:1;2010;2003:12;1965:52;2036:29;2055:9;2036:29;:::i;2076:127::-;2137:10;2132:3;2128:20;2125:1;2118:31;2168:4;2165:1;2158:15;2192:4;2189:1;2182:15;2208:1253;2301:6;2309;2362:2;2350:9;2341:7;2337:23;2333:32;2330:52;;;2378:1;2375;2368:12;2330:52;2418:9;2405:23;2451:18;2443:6;2440:30;2437:50;;;2483:1;2480;2473:12;2437:50;2506:22;;2559:4;2551:13;;2547:27;-1:-1:-1;2537:55:1;;2588:1;2585;2578:12;2537:55;2628:2;2615:16;2654:18;2646:6;2643:30;2640:56;;;2676:18;;:::i;:::-;2722:6;2719:1;2715:14;2758:2;2752:9;2821:2;2817:7;2812:2;2808;2804:11;2800:25;2792:6;2788:38;2892:6;2880:10;2877:22;2856:18;2844:10;2841:34;2838:62;2835:88;;;2903:18;;:::i;:::-;2939:2;2932:22;2989;;;3039:4;3071:11;;;3067:22;;;2989;3027:17;;3101:19;;;3098:39;;;3133:1;3130;3123:12;3098:39;3165:4;3161:2;3157:13;3146:24;;3179:152;3195:6;3190:3;3187:15;3179:152;;;3263:23;3282:3;3263:23;:::i;:::-;3251:36;;3316:4;3212:14;;;;3307;3179:152;;;-1:-1:-1;3350:6:1;3425:4;3410:20;;;;3397:34;;-1:-1:-1;;;;;;2208:1253:1:o;3466:260::-;3534:6;3542;3595:2;3583:9;3574:7;3570:23;3566:32;3563:52;;;3611:1;3608;3601:12;3563:52;3634:29;3653:9;3634:29;:::i;:::-;3624:39;;3682:38;3716:2;3705:9;3701:18;3682:38;:::i;:::-;3672:48;;3466:260;;;;;:::o;3731:380::-;3810:1;3806:12;;;;3853;;;3874:61;;3928:4;3920:6;3916:17;3906:27;;3874:61;3981:2;3973:6;3970:14;3950:18;3947:38;3944:161;;4027:10;4022:3;4018:20;4015:1;4008:31;4062:4;4059:1;4052:15;4090:4;4087:1;4080:15;3944:161;;3731:380;;;:::o;5283:127::-;5344:10;5339:3;5335:20;5332:1;5325:31;5375:4;5372:1;5365:15;5399:4;5396:1;5389:15;5415:168;5488:9;;;5519;;5536:15;;;5530:22;;5516:37;5506:71;;5557:18;;:::i;5949:127::-;6010:10;6005:3;6001:20;5998:1;5991:31;6041:4;6038:1;6031:15;6065:4;6062:1;6055:15;8059:125;8124:9;;;8145:10;;;8142:36;;;8158:18;;:::i

Swarm Source

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