ETH Price: $3,267.07 (+0.41%)
Gas: 1 Gwei

Token

$bombs ($bombs)
 

Overview

Max Total Supply

100,015.241666666666669663 $bombs

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,500 $bombs

Value
$0.00
0x4f049e44304de36c6c020eabb09680470c39e4fe
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:
$bombs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-12
*/

// SPDX-License-Identifier: GPL-3.0

/*

 ########  ########   #######  ##     ## ########   ######     ########  #######  ##    ## ######## ##    ## 
##  ##  ## ##     ## ##     ## ###   ### ##     ## ##    ##       ##    ##     ## ##   ##  ##       ###   ## 
##  ##     ##     ## ##     ## #### #### ##     ## ##             ##    ##     ## ##  ##   ##       ####  ## 
 ########  ########  ##     ## ## ### ## ########   ######        ##    ##     ## #####    ######   ## ## ## 
    ##  ## ##     ## ##     ## ##     ## ##     ##       ##       ##    ##     ## ##  ##   ##       ##  #### 
##  ##  ## ##     ## ##     ## ##     ## ##     ## ##    ##       ##    ##     ## ##   ##  ##       ##   ### 
 ########  ########   #######  ##     ## ########   ######        ##     #######  ##    ## ######## ##    ## 

*/

// File: @openzeppelin/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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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


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

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

pragma solidity ^0.8.0;

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

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


// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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: contracts/BOMB_TOKEN.sol

pragma solidity ^0.8.0;

contract $bombs is ERC20, ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => uint256) private _balances;
  mapping(address => bool) controllers;

  uint256 private _totalSupply;
  uint256 constant MAX_SUPPLY = 100000000 * 10 ** 18;
  uint256 public CAP_SUPPLY = 30000000 * 10 ** 18;

  constructor() ERC20( "$bombs", "$bombs" ) {}

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    require((_totalSupply + amount) <= MAX_SUPPLY, "Max supply has been reached.");

    _totalSupply = _totalSupply.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function mintToAddress(address to, uint256 amount) public onlyOwner {
    require((_totalSupply + amount) <= CAP_SUPPLY, "Max supply has been reached.");

    _totalSupply = _totalSupply.add(amount);
    _balances[to] = _balances[to].add(amount);
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public override {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
          super.burnFrom(account, amount);
      }
  }

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
  
  function totalSupply() public override view returns (uint256) {
    return _totalSupply;
  }

  function maxSupply() public pure returns (uint256) {
    return MAX_SUPPLY;
  }

  // SET CAP MAX SUPPLY
  function setMaxSupply(uint256 _capSupply) public onlyOwner {
    CAP_SUPPLY = _capSupply;
  }

}

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":[],"name":"CAP_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_capSupply","type":"uint256"}],"name":"setMaxSupply","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"}]

60806040526a18d0bf423c03d8de0000006009553480156200002057600080fd5b5060408051808201825260068082526524626f6d627360d01b6020808401828152855180870190965292855284015281519192916200006291600391620000f1565b50805162000078906004906020840190620000f1565b505050620000956200008f6200009b60201b60201c565b6200009f565b620001d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b61103b80620001e46000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a7fc7a071161007c578063a7fc7a07146102af578063a9059cbb146102c2578063d5abeb01146102d5578063dd62ed3e146102e6578063f2fde38b146102f9578063f6a74ed71461030c57600080fd5b806370a0823114610235578063715018a61461025e57806379cc6790146102665780638da5cb5b1461027957806395d89b4114610294578063a457c2d71461029c57600080fd5b806323b872dd1161011557806323b872dd146101c7578063313ce567146101da57806339509351146101e957806340c10f19146101fc57806342966c681461020f5780636f8b44b01461022257600080fd5b806306fdde0314610152578063070c0c4e14610170578063095ea7b31461018757806318160ddd146101aa57806321ca4236146101b2575b600080fd5b61015a61031f565b6040516101679190610efb565b60405180910390f35b61017960095481565b604051908152602001610167565b61019a610195366004610eb8565b6103b1565b6040519015158152602001610167565b600854610179565b6101c56101c0366004610eb8565b6103c9565b005b61019a6101d5366004610e7c565b6104b5565b60405160128152602001610167565b61019a6101f7366004610eb8565b6104d9565b6101c561020a366004610eb8565b6104fb565b6101c561021d366004610ee2565b610574565b6101c5610230366004610ee2565b610581565b610179610243366004610e2e565b6001600160a01b031660009081526020819052604090205490565b6101c56105b0565b6101c5610274366004610eb8565b6105e6565b6005546040516001600160a01b039091168152602001610167565b61015a610612565b61019a6102aa366004610eb8565b610621565b6101c56102bd366004610e2e565b61069c565b61019a6102d0366004610eb8565b6106ea565b6a52b7d2dcc80cd2e4000000610179565b6101796102f4366004610e49565b6106f8565b6101c5610307366004610e2e565b610723565b6101c561031a366004610e2e565b6107bb565b60606003805461032e90610fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610fb4565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf818585610806565b5060019392505050565b6005546001600160a01b031633146103fc5760405162461bcd60e51b81526004016103f390610f50565b60405180910390fd5b6009548160085461040d9190610f85565b111561045b5760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920686173206265656e20726561636865642e0000000060448201526064016103f3565b600854610468908261092b565b6008556001600160a01b03821660009081526006602052604090205461048e908261092b565b6001600160a01b0383166000908152600660205260409020556104b1828261093e565b5050565b6000336104c3858285610a1d565b6104ce858585610a97565b506001949350505050565b6000336103bf8185856104ec83836106f8565b6104f69190610f85565b610806565b3360009081526007602052604090205460ff1661055a5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064016103f3565b6a52b7d2dcc80cd2e40000008160085461040d9190610f85565b61057e3382610c65565b50565b6005546001600160a01b031633146105ab5760405162461bcd60e51b81526004016103f390610f50565b600955565b6005546001600160a01b031633146105da5760405162461bcd60e51b81526004016103f390610f50565b6105e46000610dab565b565b3360009081526007602052604090205460ff1615610608576104b18282610c65565b6104b18282610dfd565b60606004805461032e90610fb4565b6000338161062f82866106f8565b90508381101561068f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6104ce8286868403610806565b6005546001600160a01b031633146106c65760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000336103bf818585610a97565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461074d5760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b0381166107b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61057e81610dab565b6005546001600160a01b031633146107e55760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b0383166108685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109378284610f85565b9392505050565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103f3565b80600260008282546109a69190610f85565b90915550506001600160a01b038216600090815260208190526040812080548392906109d3908490610f85565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000610a2984846106f8565b90506000198114610a915781811015610a845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b610a918484848403610806565b50505050565b6001600160a01b038316610afb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b038216610b5d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b03831660009081526020819052604090205481811015610bd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c0c908490610f85565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c5891815260200190565b60405180910390a3610a91565b6001600160a01b038216610cc55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f3565b6001600160a01b03821660009081526020819052604090205481811015610d395760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d68908490610f9d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161091e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e08823383610a1d565b6104b18282610c65565b80356001600160a01b0381168114610e2957600080fd5b919050565b600060208284031215610e4057600080fd5b61093782610e12565b60008060408385031215610e5c57600080fd5b610e6583610e12565b9150610e7360208401610e12565b90509250929050565b600080600060608486031215610e9157600080fd5b610e9a84610e12565b9250610ea860208501610e12565b9150604084013590509250925092565b60008060408385031215610ecb57600080fd5b610ed483610e12565b946020939093013593505050565b600060208284031215610ef457600080fd5b5035919050565b600060208083528351808285015260005b81811015610f2857858101830151858201604001528201610f0c565b81811115610f3a576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610f9857610f98610fef565b500190565b600082821015610faf57610faf610fef565b500390565b600181811c90821680610fc857607f821691505b60208210811415610fe957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ad13862073e76b2a7bf7d7a600a2a532a46f957efd27a3f2a9f3924b40b5846b64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a7fc7a071161007c578063a7fc7a07146102af578063a9059cbb146102c2578063d5abeb01146102d5578063dd62ed3e146102e6578063f2fde38b146102f9578063f6a74ed71461030c57600080fd5b806370a0823114610235578063715018a61461025e57806379cc6790146102665780638da5cb5b1461027957806395d89b4114610294578063a457c2d71461029c57600080fd5b806323b872dd1161011557806323b872dd146101c7578063313ce567146101da57806339509351146101e957806340c10f19146101fc57806342966c681461020f5780636f8b44b01461022257600080fd5b806306fdde0314610152578063070c0c4e14610170578063095ea7b31461018757806318160ddd146101aa57806321ca4236146101b2575b600080fd5b61015a61031f565b6040516101679190610efb565b60405180910390f35b61017960095481565b604051908152602001610167565b61019a610195366004610eb8565b6103b1565b6040519015158152602001610167565b600854610179565b6101c56101c0366004610eb8565b6103c9565b005b61019a6101d5366004610e7c565b6104b5565b60405160128152602001610167565b61019a6101f7366004610eb8565b6104d9565b6101c561020a366004610eb8565b6104fb565b6101c561021d366004610ee2565b610574565b6101c5610230366004610ee2565b610581565b610179610243366004610e2e565b6001600160a01b031660009081526020819052604090205490565b6101c56105b0565b6101c5610274366004610eb8565b6105e6565b6005546040516001600160a01b039091168152602001610167565b61015a610612565b61019a6102aa366004610eb8565b610621565b6101c56102bd366004610e2e565b61069c565b61019a6102d0366004610eb8565b6106ea565b6a52b7d2dcc80cd2e4000000610179565b6101796102f4366004610e49565b6106f8565b6101c5610307366004610e2e565b610723565b6101c561031a366004610e2e565b6107bb565b60606003805461032e90610fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610fb4565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf818585610806565b5060019392505050565b6005546001600160a01b031633146103fc5760405162461bcd60e51b81526004016103f390610f50565b60405180910390fd5b6009548160085461040d9190610f85565b111561045b5760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920686173206265656e20726561636865642e0000000060448201526064016103f3565b600854610468908261092b565b6008556001600160a01b03821660009081526006602052604090205461048e908261092b565b6001600160a01b0383166000908152600660205260409020556104b1828261093e565b5050565b6000336104c3858285610a1d565b6104ce858585610a97565b506001949350505050565b6000336103bf8185856104ec83836106f8565b6104f69190610f85565b610806565b3360009081526007602052604090205460ff1661055a5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064016103f3565b6a52b7d2dcc80cd2e40000008160085461040d9190610f85565b61057e3382610c65565b50565b6005546001600160a01b031633146105ab5760405162461bcd60e51b81526004016103f390610f50565b600955565b6005546001600160a01b031633146105da5760405162461bcd60e51b81526004016103f390610f50565b6105e46000610dab565b565b3360009081526007602052604090205460ff1615610608576104b18282610c65565b6104b18282610dfd565b60606004805461032e90610fb4565b6000338161062f82866106f8565b90508381101561068f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6104ce8286868403610806565b6005546001600160a01b031633146106c65760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000336103bf818585610a97565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461074d5760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b0381166107b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61057e81610dab565b6005546001600160a01b031633146107e55760405162461bcd60e51b81526004016103f390610f50565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b0383166108685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109378284610f85565b9392505050565b6001600160a01b0382166109945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103f3565b80600260008282546109a69190610f85565b90915550506001600160a01b038216600090815260208190526040812080548392906109d3908490610f85565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000610a2984846106f8565b90506000198114610a915781811015610a845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b610a918484848403610806565b50505050565b6001600160a01b038316610afb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b038216610b5d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b03831660009081526020819052604090205481811015610bd55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c0c908490610f85565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c5891815260200190565b60405180910390a3610a91565b6001600160a01b038216610cc55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f3565b6001600160a01b03821660009081526020819052604090205481811015610d395760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103f3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d68908490610f9d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161091e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e08823383610a1d565b6104b18282610c65565b80356001600160a01b0381168114610e2957600080fd5b919050565b600060208284031215610e4057600080fd5b61093782610e12565b60008060408385031215610e5c57600080fd5b610e6583610e12565b9150610e7360208401610e12565b90509250929050565b600080600060608486031215610e9157600080fd5b610e9a84610e12565b9250610ea860208501610e12565b9150604084013590509250925092565b60008060408385031215610ecb57600080fd5b610ed483610e12565b946020939093013593505050565b600060208284031215610ef457600080fd5b5035919050565b600060208083528351808285015260005b81811015610f2857858101830151858201604001528201610f0c565b81811115610f3a576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610f9857610f98610fef565b500190565b600082821015610faf57610faf610fef565b500390565b600181811c90821680610fc857607f821691505b60208210811415610fe957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220ad13862073e76b2a7bf7d7a600a2a532a46f957efd27a3f2a9f3924b40b5846b64736f6c63430008070033

Deployed Bytecode Sourcemap

29063:1761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14514:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29331:47;;;;;;;;;8006:25:1;;;7994:2;7979:18;29331:47:0;7860:177:1;16865:201:0;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;16865:201:0;1633:187:1;30512:94:0;30588:12;;30512:94;;29771:279;;;;;;:::i;:::-;;:::i;:::-;;17646:295;;;;;;:::i;:::-;;:::i;15476:93::-;;;15559:2;8184:36:1;;8172:2;8157:18;15476:93:0;8042:184:1;18350:238:0;;;;;;:::i;:::-;;:::i;29435:330::-;;;;;;:::i;:::-;;:::i;25888:91::-;;;;;;:::i;:::-;;:::i;30724:95::-;;;;;;:::i;:::-;;:::i;15805:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15906:18:0;15879:7;15906:18;;;;;;;;;;;;15805:127;28180:103;;;:::i;30056:222::-;;;;;;:::i;:::-;;:::i;27529:87::-;27602:6;;27529:87;;-1:-1:-1;;;;;27602:6:0;;;1571:51:1;;1559:2;1544:18;27529:87:0;1425:203:1;14733:104:0;;;:::i;19091:436::-;;;;;;:::i;:::-;;:::i;30284:105::-;;;;;;:::i;:::-;;:::i;16138:193::-;;;;;;:::i;:::-;;:::i;30612:81::-;29306:20;30612:81;;16394:151;;;;;;:::i;:::-;;:::i;28438:201::-;;;;;;:::i;:::-;;:::i;30395:109::-;;;;;;:::i;:::-;;:::i;14514:100::-;14568:13;14601:5;14594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14514:100;:::o;16865:201::-;16948:4;12240:10;17004:32;12240:10;17020:7;17029:6;17004:8;:32::i;:::-;-1:-1:-1;17054:4:0;;16865:201;-1:-1:-1;;;16865:201:0:o;29771:279::-;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;;;;;;;;;29881:10:::1;;29870:6;29855:12;;:21;;;;:::i;:::-;29854:37;;29846:78;;;::::0;-1:-1:-1;;;29846:78:0;;4246:2:1;29846:78:0::1;::::0;::::1;4228:21:1::0;4285:2;4265:18;;;4258:30;4324;4304:18;;;4297:58;4372:18;;29846:78:0::1;4044:352:1::0;29846:78:0::1;29948:12;::::0;:24:::1;::::0;29965:6;29948:16:::1;:24::i;:::-;29933:12;:39:::0;-1:-1:-1;;;;;29995:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;;:25:::1;::::0;30013:6;29995:17:::1;:25::i;:::-;-1:-1:-1::0;;;;;29979:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;:41;30027:17:::1;29989:2:::0;30037:6;30027:5:::1;:17::i;:::-;29771:279:::0;;:::o;17646:295::-;17777:4;12240:10;17835:38;17851:4;12240:10;17866:6;17835:15;:38::i;:::-;17884:27;17894:4;17900:2;17904:6;17884:9;:27::i;:::-;-1:-1:-1;17929:4:0;;17646:295;-1:-1:-1;;;;17646:295:0:o;18350:238::-;18438:4;12240:10;18494:64;12240:10;18510:7;18547:10;18519:25;12240:10;18510:7;18519:9;:25::i;:::-;:38;;;;:::i;:::-;18494:8;:64::i;29435:330::-;29513:10;29501:23;;;;:11;:23;;;;;;;;29493:61;;;;-1:-1:-1;;;29493:61:0;;5368:2:1;29493:61:0;;;5350:21:1;5407:2;5387:18;;;5380:30;5446:27;5426:18;;;5419:55;5491:18;;29493:61:0;5166:349:1;29493:61:0;29306:20;29585:6;29570:12;;:21;;;;:::i;25888:91::-;25944:27;12240:10;25964:6;25944:5;:27::i;:::-;25888:91;:::o;30724:95::-;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;30790:10:::1;:23:::0;30724:95::o;28180:103::-;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;28245:30:::1;28272:1;28245:18;:30::i;:::-;28180:103::o:0;30056:222::-;30148:10;30136:23;;;;:11;:23;;;;;;;;30132:141;;;30174:22;30180:7;30189:6;30174:5;:22::i;30132:141::-;30232:31;30247:7;30256:6;30232:14;:31::i;14733:104::-;14789:13;14822:7;14815:14;;;;;:::i;19091:436::-;19184:4;12240:10;19184:4;19267:25;12240:10;19284:7;19267:9;:25::i;:::-;19240:52;;19331:15;19311:16;:35;;19303:85;;;;-1:-1:-1;;;19303:85:0;;7296:2:1;19303:85:0;;;7278:21:1;7335:2;7315:18;;;7308:30;7374:34;7354:18;;;7347:62;-1:-1:-1;;;7425:18:1;;;7418:35;7470:19;;19303:85:0;7094:401:1;19303:85:0;19424:60;19433:5;19440:7;19468:15;19449:16;:34;19424:8;:60::i;30284:105::-;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30353:23:0::1;;::::0;;;:11:::1;:23;::::0;;;;:30;;-1:-1:-1;;30353:30:0::1;30379:4;30353:30;::::0;;30284:105::o;16138:193::-;16217:4;12240:10;16273:28;12240:10;16290:2;16294:6;16273:9;:28::i;16394:151::-;-1:-1:-1;;;;;16510:18:0;;;16483:7;16510:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16394:151::o;28438:201::-;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28527:22:0;::::1;28519:73;;;::::0;-1:-1:-1;;;28519:73:0;;3436:2:1;28519:73:0::1;::::0;::::1;3418:21:1::0;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:36;3611:19;;28519:73:0::1;3234:402:1::0;28519:73:0::1;28603:28;28622:8;28603:18;:28::i;30395:109::-:0;27602:6;;-1:-1:-1;;;;;27602:6:0;12240:10;27749:23;27741:68;;;;-1:-1:-1;;;27741:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30467:23:0::1;30493:5;30467:23:::0;;;:11:::1;:23;::::0;;;;:31;;-1:-1:-1;;30467:31:0::1;::::0;;30395:109::o;22725:380::-;-1:-1:-1;;;;;22861:19:0;;22853:68;;;;-1:-1:-1;;;22853:68:0;;6891:2:1;22853:68:0;;;6873:21:1;6930:2;6910:18;;;6903:30;6969:34;6949:18;;;6942:62;-1:-1:-1;;;7020:18:1;;;7013:34;7064:19;;22853:68:0;6689:400:1;22853:68:0;-1:-1:-1;;;;;22940:21:0;;22932:68;;;;-1:-1:-1;;;22932:68:0;;3843:2:1;22932:68:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:32;4014:19;;22932:68:0;3641:398:1;22932:68:0;-1:-1:-1;;;;;23013:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23065:32;;8006:25:1;;;23065:32:0;;7979:18:1;23065:32:0;;;;;;;;22725:380;;;:::o;7316:98::-;7374:7;7401:5;7405:1;7401;:5;:::i;:::-;7394:12;7316:98;-1:-1:-1;;;7316:98:0:o;20964:399::-;-1:-1:-1;;;;;21048:21:0;;21040:65;;;;-1:-1:-1;;;21040:65:0;;7702:2:1;21040:65:0;;;7684:21:1;7741:2;7721:18;;;7714:30;7780:33;7760:18;;;7753:61;7831:18;;21040:65:0;7500:355:1;21040:65:0;21196:6;21180:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21213:18:0;;:9;:18;;;;;;;;;;:28;;21235:6;;21213:9;:28;;21235:6;;21213:28;:::i;:::-;;;;-1:-1:-1;;21257:37:0;;8006:25:1;;;-1:-1:-1;;;;;21257:37:0;;;21274:1;;21257:37;;7994:2:1;7979:18;21257:37:0;;;;;;;29771:279;;:::o;23396:453::-;23531:24;23558:25;23568:5;23575:7;23558:9;:25::i;:::-;23531:52;;-1:-1:-1;;23598:16:0;:37;23594:248;;23680:6;23660:16;:26;;23652:68;;;;-1:-1:-1;;;23652:68:0;;4603:2:1;23652:68:0;;;4585:21:1;4642:2;4622:18;;;4615:30;4681:31;4661:18;;;4654:59;4730:18;;23652:68:0;4401:353:1;23652:68:0;23764:51;23773:5;23780:7;23808:6;23789:16;:25;23764:8;:51::i;:::-;23520:329;23396:453;;;:::o;20006:671::-;-1:-1:-1;;;;;20137:18:0;;20129:68;;;;-1:-1:-1;;;20129:68:0;;6485:2:1;20129:68:0;;;6467:21:1;6524:2;6504:18;;;6497:30;6563:34;6543:18;;;6536:62;-1:-1:-1;;;6614:18:1;;;6607:35;6659:19;;20129:68:0;6283:401:1;20129:68:0;-1:-1:-1;;;;;20216:16:0;;20208:64;;;;-1:-1:-1;;;20208:64:0;;2629:2:1;20208:64:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;20208:64:0;2427:399:1;20208:64:0;-1:-1:-1;;;;;20358:15:0;;20336:19;20358:15;;;;;;;;;;;20392:21;;;;20384:72;;;;-1:-1:-1;;;20384:72:0;;4961:2:1;20384:72:0;;;4943:21:1;5000:2;4980:18;;;4973:30;5039:34;5019:18;;;5012:62;-1:-1:-1;;;5090:18:1;;;5083:36;5136:19;;20384:72:0;4759:402:1;20384:72:0;-1:-1:-1;;;;;20492:15:0;;;:9;:15;;;;;;;;;;;20510:20;;;20492:38;;20552:13;;;;;;;;:23;;20524:6;;20492:9;20552:23;;20524:6;;20552:23;:::i;:::-;;;;;;;;20608:2;-1:-1:-1;;;;;20593:26:0;20602:4;-1:-1:-1;;;;;20593:26:0;;20612:6;20593:26;;;;8006:25:1;;7994:2;7979:18;;7860:177;20593:26:0;;;;;;;;20632:37;21696:591;;-1:-1:-1;;;;;21780:21:0;;21772:67;;;;-1:-1:-1;;;21772:67:0;;6083:2:1;21772:67:0;;;6065:21:1;6122:2;6102:18;;;6095:30;6161:34;6141:18;;;6134:62;-1:-1:-1;;;6212:18:1;;;6205:31;6253:19;;21772:67:0;5881:397:1;21772:67:0;-1:-1:-1;;;;;21939:18:0;;21914:22;21939:18;;;;;;;;;;;21976:24;;;;21968:71;;;;-1:-1:-1;;;21968:71:0;;3033:2:1;21968:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;21968:71:0;2831:398:1;21968:71:0;-1:-1:-1;;;;;22075:18:0;;:9;:18;;;;;;;;;;22096:23;;;22075:44;;22141:12;:22;;22113:6;;22075:9;22141:22;;22113:6;;22141:22;:::i;:::-;;;;-1:-1:-1;;22181:37:0;;8006:25:1;;;22207:1:0;;-1:-1:-1;;;;;22181:37:0;;;;;7994:2:1;7979:18;22181:37:0;7860:177:1;28799:191:0;28892:6;;;-1:-1:-1;;;;;28909:17:0;;;-1:-1:-1;;;;;;28909:17:0;;;;;;;28942:40;;28892:6;;;28909:17;28892:6;;28942:40;;28873:16;;28942:40;28862:128;28799:191;:::o;26298:164::-;26375:46;26391:7;12240:10;26414:6;26375:15;:46::i;:::-;26432:22;26438:7;26447:6;26432:5;:22::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;5520:356::-;5722:2;5704:21;;;5741:18;;;5734:30;5800:34;5795:2;5780:18;;5773:62;5867:2;5852:18;;5520:356::o;8231:128::-;8271:3;8302:1;8298:6;8295:1;8292:13;8289:39;;;8308:18;;:::i;:::-;-1:-1:-1;8344:9:1;;8231:128::o;8364:125::-;8404:4;8432:1;8429;8426:8;8423:34;;;8437:18;;:::i;:::-;-1:-1:-1;8474:9:1;;8364:125::o;8494:380::-;8573:1;8569:12;;;;8616;;;8637:61;;8691:4;8683:6;8679:17;8669:27;;8637:61;8744:2;8736:6;8733:14;8713:18;8710:38;8707:161;;;8790:10;8785:3;8781:20;8778:1;8771:31;8825:4;8822:1;8815:15;8853:4;8850:1;8843:15;8707:161;;8494:380;;;:::o;8879:127::-;8940:10;8935:3;8931:20;8928:1;8921:31;8971:4;8968:1;8961:15;8995:4;8992:1;8985:15

Swarm Source

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