ETH Price: $2,628.48 (+1.46%)

Token

Obsidian 1919 (OBSID)
 

Overview

Max Total Supply

191,919,191,919 OBSID

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
depayday.eth
Balance
2,927,170,554.437773203844539692 OBSID

Value
$0.00
0xaD94D09e73F65cE0458bAdE8D3709f79E15b6892
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:
OBSID1919

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-06
*/

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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: erc1919.sol


pragma solidity ^0.8.20;



contract OBSID1919 is ERC20, Ownable {
    uint256 private constant MAX_SUPPLY = 191919191919 * 10**18; 
    mapping(address => uint256) private _levels;

    event LevelUp(address indexed account, uint256 newLevel);
    event SupplyAdjusted(uint256 newSupply);

    constructor(address initialOwner) ERC20("Obsidian 1919", "OBSID") Ownable(initialOwner) {
        _mint(initialOwner, MAX_SUPPLY);
    }

    function levelUp(address account) external onlyOwner {
        _levels[account] += 1;
        emit LevelUp(account, _levels[account]);
    }

    function adjustSupply(uint256 newSupply) external onlyOwner {
        emit SupplyAdjusted(newSupply);
    }


    function ERCLevel(address account) external view returns (uint256) {
        return _levels[account];
    }

    function _update(address from, address to, uint256 value) internal override {
        super._update(from, to, value);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        return super.transferFrom(sender, recipient, amount);
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        return super.approve(spender, amount);
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return super.allowance(owner, spender);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"newLevel","type":"uint256"}],"name":"LevelUp","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":false,"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"SupplyAdjusted","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":"account","type":"address"}],"name":"ERCLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"adjustSupply","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":"account","type":"address"}],"name":"levelUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051611c51380380611c5183398181016040528101906100319190610538565b806040518060400160405280600d81526020017f4f6273696469616e2031393139000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f4253494400000000000000000000000000000000000000000000000000000081525081600390816100ad919061079d565b5080600490816100bd919061079d565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610127919061087b565b60405180910390fd5b61013f8161016360201b60201c565b5061015d816c026c1fd5b10319dc0d105c000061022660201b60201c565b50610951565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610296575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161028d919061087b565b60405180910390fd5b6102a75f83836102ab60201b60201c565b5050565b6102bc8383836102c160201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610311578060025f82825461030591906108c1565b925050819055506103df565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561039a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161039193929190610903565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610426578060025f8282540392505081905550610470565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104cd9190610938565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610507826104de565b9050919050565b610517816104fd565b8114610521575f80fd5b50565b5f815190506105328161050e565b92915050565b5f6020828403121561054d5761054c6104da565b5b5f61055a84828501610524565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105de57607f821691505b6020821081036105f1576105f061059a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610618565b61065d8683610618565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106a161069c61069784610675565b61067e565b610675565b9050919050565b5f819050919050565b6106ba83610687565b6106ce6106c6826106a8565b848454610624565b825550505050565b5f90565b6106e26106d6565b6106ed8184846106b1565b505050565b5b81811015610710576107055f826106da565b6001810190506106f3565b5050565b601f82111561075557610726816105f7565b61072f84610609565b8101602085101561073e578190505b61075261074a85610609565b8301826106f2565b50505b505050565b5f82821c905092915050565b5f6107755f198460080261075a565b1980831691505092915050565b5f61078d8383610766565b9150826002028217905092915050565b6107a682610563565b67ffffffffffffffff8111156107bf576107be61056d565b5b6107c982546105c7565b6107d4828285610714565b5f60209050601f831160018114610805575f84156107f3578287015190505b6107fd8582610782565b865550610864565b601f198416610813866105f7565b5f5b8281101561083a57848901518255600182019150602085019450602081019050610815565b868310156108575784890151610853601f891682610766565b8355505b6001600288020188555050505b505050505050565b610875816104fd565b82525050565b5f60208201905061088e5f83018461086c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108cb82610675565b91506108d683610675565b92508282019050808211156108ee576108ed610894565b5b92915050565b6108fd81610675565b82525050565b5f6060820190506109165f83018661086c565b61092360208301856108f4565b61093060408301846108f4565b949350505050565b5f60208201905061094b5f8301846108f4565b92915050565b6112f38061095e5f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063bc3574d411610064578063bc3574d414610287578063dd62ed3e146102a3578063e18b551c146102d3578063f2fde38b146102ef576100f3565b8063715018a6146102115780638da5cb5b1461021b57806395d89b4114610239578063a9059cbb14610257576100f3565b806318160ddd116100d157806318160ddd1461017557806323b872dd14610193578063313ce567146101c357806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b3146101155780630961b4ee14610145575b5f80fd5b6100ff61030b565b60405161010c9190610f41565b60405180910390f35b61012f600480360381019061012a9190610ff2565b61039b565b60405161013c919061104a565b60405180910390f35b61015f600480360381019061015a9190611063565b6103ae565b60405161016c919061109d565b60405180910390f35b61017d6103f4565b60405161018a919061109d565b60405180910390f35b6101ad60048036038101906101a891906110b6565b6103fd565b6040516101ba919061104a565b60405180910390f35b6101cb610412565b6040516101d89190611121565b60405180910390f35b6101fb60048036038101906101f69190611063565b61041a565b604051610208919061109d565b60405180910390f35b61021961045f565b005b610223610472565b6040516102309190611149565b60405180910390f35b61024161049a565b60405161024e9190610f41565b60405180910390f35b610271600480360381019061026c9190610ff2565b61052a565b60405161027e919061104a565b60405180910390f35b6102a1600480360381019061029c9190611162565b61053d565b005b6102bd60048036038101906102b8919061118d565b61057f565b6040516102ca919061109d565b60405180910390f35b6102ed60048036038101906102e89190611063565b610592565b005b61030960048036038101906103049190611063565b61067c565b005b60606003805461031a906111f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610346906111f8565b80156103915780601f1061036857610100808354040283529160200191610391565b820191905f5260205f20905b81548152906001019060200180831161037457829003601f168201915b5050505050905090565b5f6103a68383610700565b905092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600254905090565b5f610409848484610722565b90509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610467610750565b6104705f6107d7565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104a9906111f8565b80601f01602080910402602001604051908101604052809291908181526020018280546104d5906111f8565b80156105205780601f106104f757610100808354040283529160200191610520565b820191905f5260205f20905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b5f610535838361089a565b905092915050565b610545610750565b7f5d5a30d467f9edd150996612791341200f3bd8d513b8d46dc3d9f63a43d6c9ce81604051610574919061109d565b60405180910390a150565b5f61058a83836108bc565b905092915050565b61059a610750565b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105e79190611255565b925050819055508073ffffffffffffffffffffffffffffffffffffffff167f91e51c29e7e87a74ad3b8ccba98538970f50a4309242735467f41e27c6b0fbac60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051610671919061109d565b60405180910390a250565b610684610750565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106f4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106eb9190611149565b60405180910390fd5b6106fd816107d7565b50565b5f8061070a61093e565b9050610717818585610945565b600191505092915050565b5f8061072c61093e565b9050610739858285610957565b6107448585856109e9565b60019150509392505050565b61075861093e565b73ffffffffffffffffffffffffffffffffffffffff16610776610472565b73ffffffffffffffffffffffffffffffffffffffff16146107d55761079961093e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107cc9190611149565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f806108a461093e565b90506108b18185856109e9565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6109528383836001610ad9565b505050565b5f610962848461057f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109e357818110156109d4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109cb93929190611288565b60405180910390fd5b6109e284848484035f610ad9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a59575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a509190611149565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ac9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ac09190611149565b60405180910390fd5b610ad4838383610ca8565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b49575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b409190611149565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bb09190611149565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ca2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c99919061109d565b60405180910390a35b50505050565b610cb3838383610cb8565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d08578060025f828254610cfc9190611255565b92505081905550610dd6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d91578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d8893929190611288565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1d578060025f8282540392505081905550610e67565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec4919061109d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f1382610ed1565b610f1d8185610edb565b9350610f2d818560208601610eeb565b610f3681610ef9565b840191505092915050565b5f6020820190508181035f830152610f598184610f09565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f8e82610f65565b9050919050565b610f9e81610f84565b8114610fa8575f80fd5b50565b5f81359050610fb981610f95565b92915050565b5f819050919050565b610fd181610fbf565b8114610fdb575f80fd5b50565b5f81359050610fec81610fc8565b92915050565b5f806040838503121561100857611007610f61565b5b5f61101585828601610fab565b925050602061102685828601610fde565b9150509250929050565b5f8115159050919050565b61104481611030565b82525050565b5f60208201905061105d5f83018461103b565b92915050565b5f6020828403121561107857611077610f61565b5b5f61108584828501610fab565b91505092915050565b61109781610fbf565b82525050565b5f6020820190506110b05f83018461108e565b92915050565b5f805f606084860312156110cd576110cc610f61565b5b5f6110da86828701610fab565b93505060206110eb86828701610fab565b92505060406110fc86828701610fde565b9150509250925092565b5f60ff82169050919050565b61111b81611106565b82525050565b5f6020820190506111345f830184611112565b92915050565b61114381610f84565b82525050565b5f60208201905061115c5f83018461113a565b92915050565b5f6020828403121561117757611176610f61565b5b5f61118484828501610fde565b91505092915050565b5f80604083850312156111a3576111a2610f61565b5b5f6111b085828601610fab565b92505060206111c185828601610fab565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061120f57607f821691505b602082108103611222576112216111cb565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61125f82610fbf565b915061126a83610fbf565b925082820190508082111561128257611281611228565b5b92915050565b5f60608201905061129b5f83018661113a565b6112a8602083018561108e565b6112b5604083018461108e565b94935050505056fea2646970667358221220eb0fd863b8efd8f737f64d631baedd38790021ce09decaac067f4905883cead364736f6c6343000819003300000000000000000000000005982784e76520484cf98402738dc8732c78f258

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063bc3574d411610064578063bc3574d414610287578063dd62ed3e146102a3578063e18b551c146102d3578063f2fde38b146102ef576100f3565b8063715018a6146102115780638da5cb5b1461021b57806395d89b4114610239578063a9059cbb14610257576100f3565b806318160ddd116100d157806318160ddd1461017557806323b872dd14610193578063313ce567146101c357806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b3146101155780630961b4ee14610145575b5f80fd5b6100ff61030b565b60405161010c9190610f41565b60405180910390f35b61012f600480360381019061012a9190610ff2565b61039b565b60405161013c919061104a565b60405180910390f35b61015f600480360381019061015a9190611063565b6103ae565b60405161016c919061109d565b60405180910390f35b61017d6103f4565b60405161018a919061109d565b60405180910390f35b6101ad60048036038101906101a891906110b6565b6103fd565b6040516101ba919061104a565b60405180910390f35b6101cb610412565b6040516101d89190611121565b60405180910390f35b6101fb60048036038101906101f69190611063565b61041a565b604051610208919061109d565b60405180910390f35b61021961045f565b005b610223610472565b6040516102309190611149565b60405180910390f35b61024161049a565b60405161024e9190610f41565b60405180910390f35b610271600480360381019061026c9190610ff2565b61052a565b60405161027e919061104a565b60405180910390f35b6102a1600480360381019061029c9190611162565b61053d565b005b6102bd60048036038101906102b8919061118d565b61057f565b6040516102ca919061109d565b60405180910390f35b6102ed60048036038101906102e89190611063565b610592565b005b61030960048036038101906103049190611063565b61067c565b005b60606003805461031a906111f8565b80601f0160208091040260200160405190810160405280929190818152602001828054610346906111f8565b80156103915780601f1061036857610100808354040283529160200191610391565b820191905f5260205f20905b81548152906001019060200180831161037457829003601f168201915b5050505050905090565b5f6103a68383610700565b905092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600254905090565b5f610409848484610722565b90509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610467610750565b6104705f6107d7565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104a9906111f8565b80601f01602080910402602001604051908101604052809291908181526020018280546104d5906111f8565b80156105205780601f106104f757610100808354040283529160200191610520565b820191905f5260205f20905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b5f610535838361089a565b905092915050565b610545610750565b7f5d5a30d467f9edd150996612791341200f3bd8d513b8d46dc3d9f63a43d6c9ce81604051610574919061109d565b60405180910390a150565b5f61058a83836108bc565b905092915050565b61059a610750565b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546105e79190611255565b925050819055508073ffffffffffffffffffffffffffffffffffffffff167f91e51c29e7e87a74ad3b8ccba98538970f50a4309242735467f41e27c6b0fbac60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051610671919061109d565b60405180910390a250565b610684610750565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106f4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106eb9190611149565b60405180910390fd5b6106fd816107d7565b50565b5f8061070a61093e565b9050610717818585610945565b600191505092915050565b5f8061072c61093e565b9050610739858285610957565b6107448585856109e9565b60019150509392505050565b61075861093e565b73ffffffffffffffffffffffffffffffffffffffff16610776610472565b73ffffffffffffffffffffffffffffffffffffffff16146107d55761079961093e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107cc9190611149565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f806108a461093e565b90506108b18185856109e9565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6109528383836001610ad9565b505050565b5f610962848461057f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109e357818110156109d4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109cb93929190611288565b60405180910390fd5b6109e284848484035f610ad9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a59575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a509190611149565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ac9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ac09190611149565b60405180910390fd5b610ad4838383610ca8565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b49575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b409190611149565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bb09190611149565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ca2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c99919061109d565b60405180910390a35b50505050565b610cb3838383610cb8565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d08578060025f828254610cfc9190611255565b92505081905550610dd6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d91578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d8893929190611288565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e1d578060025f8282540392505081905550610e67565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec4919061109d565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610f1382610ed1565b610f1d8185610edb565b9350610f2d818560208601610eeb565b610f3681610ef9565b840191505092915050565b5f6020820190508181035f830152610f598184610f09565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f8e82610f65565b9050919050565b610f9e81610f84565b8114610fa8575f80fd5b50565b5f81359050610fb981610f95565b92915050565b5f819050919050565b610fd181610fbf565b8114610fdb575f80fd5b50565b5f81359050610fec81610fc8565b92915050565b5f806040838503121561100857611007610f61565b5b5f61101585828601610fab565b925050602061102685828601610fde565b9150509250929050565b5f8115159050919050565b61104481611030565b82525050565b5f60208201905061105d5f83018461103b565b92915050565b5f6020828403121561107857611077610f61565b5b5f61108584828501610fab565b91505092915050565b61109781610fbf565b82525050565b5f6020820190506110b05f83018461108e565b92915050565b5f805f606084860312156110cd576110cc610f61565b5b5f6110da86828701610fab565b93505060206110eb86828701610fab565b92505060406110fc86828701610fde565b9150509250925092565b5f60ff82169050919050565b61111b81611106565b82525050565b5f6020820190506111345f830184611112565b92915050565b61114381610f84565b82525050565b5f60208201905061115c5f83018461113a565b92915050565b5f6020828403121561117757611176610f61565b5b5f61118484828501610fde565b91505092915050565b5f80604083850312156111a3576111a2610f61565b5b5f6111b085828601610fab565b92505060206111c185828601610fab565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061120f57607f821691505b602082108103611222576112216111cb565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61125f82610fbf565b915061126a83610fbf565b925082820190508082111561128257611281611228565b5b92915050565b5f60608201905061129b5f83018661113a565b6112a8602083018561108e565b6112b5604083018461108e565b94935050505056fea2646970667358221220eb0fd863b8efd8f737f64d631baedd38790021ce09decaac067f4905883cead364736f6c63430008190033

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

00000000000000000000000005982784e76520484cf98402738dc8732c78f258

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x05982784e76520484Cf98402738DC8732c78f258

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000005982784e76520484cf98402738dc8732c78f258


Deployed Bytecode Sourcemap

25729:1569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13160:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27003:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26419:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14262:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26820:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14113:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14424:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24835:103;;;:::i;:::-;;24160:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13370:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26669:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26300:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27148:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26149:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25093:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13160:91;13205:13;13238:5;13231:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13160:91;:::o;27003:137::-;27078:4;27102:30;27116:7;27125:6;27102:13;:30::i;:::-;27095:37;;27003:137;;;;:::o;26419:109::-;26477:7;26504;:16;26512:7;26504:16;;;;;;;;;;;;;;;;26497:23;;26419:109;;;:::o;14262:99::-;14314:7;14341:12;;14334:19;;14262:99;:::o;26820:175::-;26918:4;26942:45;26961:6;26969:9;26980:6;26942:18;:45::i;:::-;26935:52;;26820:175;;;;;:::o;14113:84::-;14162:5;14187:2;14180:9;;14113:84;:::o;14424:118::-;14489:7;14516:9;:18;14526:7;14516:18;;;;;;;;;;;;;;;;14509:25;;14424:118;;;:::o;24835:103::-;24046:13;:11;:13::i;:::-;24900:30:::1;24927:1;24900:18;:30::i;:::-;24835:103::o:0;24160:87::-;24206:7;24233:6;;;;;;;;;;;24226:13;;24160:87;:::o;13370:95::-;13417:13;13450:7;13443:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13370:95;:::o;26669:143::-;26747:4;26771:33;26786:9;26797:6;26771:14;:33::i;:::-;26764:40;;26669:143;;;;:::o;26300:109::-;24046:13;:11;:13::i;:::-;26376:25:::1;26391:9;26376:25;;;;;;:::i;:::-;;;;;;;;26300:109:::0;:::o;27148:147::-;27229:7;27256:31;27272:5;27279:7;27256:15;:31::i;:::-;27249:38;;27148:147;;;;:::o;26149:143::-;24046:13;:11;:13::i;:::-;26233:1:::1;26213:7;:16;26221:7;26213:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;26258:7;26250:34;;;26267:7;:16;26275:7;26267:16;;;;;;;;;;;;;;;;26250:34;;;;;;:::i;:::-;;;;;;;;26149:143:::0;:::o;25093:220::-;24046:13;:11;:13::i;:::-;25198:1:::1;25178:22;;:8;:22;;::::0;25174:93:::1;;25252:1;25224:31;;;;;;;;;;;:::i;:::-;;;;;;;;25174:93;25277:28;25296:8;25277:18;:28::i;:::-;25093:220:::0;:::o;15453:190::-;15526:4;15543:13;15559:12;:10;:12::i;:::-;15543:28;;15582:31;15591:5;15598:7;15607:5;15582:8;:31::i;:::-;15631:4;15624:11;;;15453:190;;;;:::o;16221:249::-;16308:4;16325:15;16343:12;:10;:12::i;:::-;16325:30;;16366:37;16382:4;16388:7;16397:5;16366:15;:37::i;:::-;16414:26;16424:4;16430:2;16434:5;16414:9;:26::i;:::-;16458:4;16451:11;;;16221:249;;;;;:::o;24325:166::-;24396:12;:10;:12::i;:::-;24385:23;;:7;:5;:7::i;:::-;:23;;;24381:103;;24459:12;:10;:12::i;:::-;24432:40;;;;;;;;;;;:::i;:::-;;;;;;;;24381:103;24325:166::o;25473:191::-;25547:16;25566:6;;;;;;;;;;;25547:25;;25592:8;25583:6;;:17;;;;;;;;;;;;;;;;;;25647:8;25616:40;;25637:8;25616:40;;;;;;;;;;;;25536:128;25473:191;:::o;14747:182::-;14816:4;14833:13;14849:12;:10;:12::i;:::-;14833:28;;14872:27;14882:5;14889:2;14893:5;14872:9;:27::i;:::-;14917:4;14910:11;;;14747:182;;;;:::o;14992:142::-;15072:7;15099:11;:18;15111:5;15099:18;;;;;;;;;;;;;;;:27;15118:7;15099:27;;;;;;;;;;;;;;;;15092:34;;14992:142;;;;:::o;4165:98::-;4218:7;4245:10;4238:17;;4165:98;:::o;20280:130::-;20365:37;20374:5;20381:7;20390:5;20397:4;20365:8;:37::i;:::-;20280:130;;;:::o;21996:487::-;22096:24;22123:25;22133:5;22140:7;22123:9;:25::i;:::-;22096:52;;22183:17;22163:16;:37;22159:317;;22240:5;22221:16;:24;22217:132;;;22300:7;22309:16;22327:5;22273:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22217:132;22392:57;22401:5;22408:7;22436:5;22417:16;:24;22443:5;22392:8;:57::i;:::-;22159:317;22085:398;21996:487;;;:::o;16855:308::-;16955:1;16939:18;;:4;:18;;;16935:88;;17008:1;16981:30;;;;;;;;;;;:::i;:::-;;;;;;;;16935:88;17051:1;17037:16;;:2;:16;;;17033:88;;17106:1;17077:32;;;;;;;;;;;:::i;:::-;;;;;;;;17033:88;17131:24;17139:4;17145:2;17149:5;17131:7;:24::i;:::-;16855:308;;;:::o;21261:443::-;21391:1;21374:19;;:5;:19;;;21370:91;;21446:1;21417:32;;;;;;;;;;;:::i;:::-;;;;;;;;21370:91;21494:1;21475:21;;:7;:21;;;21471:92;;21548:1;21520:31;;;;;;;;;;;:::i;:::-;;;;;;;;21471:92;21603:5;21573:11;:18;21585:5;21573:18;;;;;;;;;;;;;;;:27;21592:7;21573:27;;;;;;;;;;;;;;;:35;;;;21623:9;21619:78;;;21670:7;21654:31;;21663:5;21654:31;;;21679:5;21654:31;;;;;;:::i;:::-;;;;;;;;21619:78;21261:443;;;;:::o;26536:125::-;26623:30;26637:4;26643:2;26647:5;26623:13;:30::i;:::-;26536:125;;;:::o;17487:1135::-;17593:1;17577:18;;:4;:18;;;17573:552;;17731:5;17715:12;;:21;;;;;;;:::i;:::-;;;;;;;;17573:552;;;17769:19;17791:9;:15;17801:4;17791:15;;;;;;;;;;;;;;;;17769:37;;17839:5;17825:11;:19;17821:117;;;17897:4;17903:11;17916:5;17872:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17821:117;18093:5;18079:11;:19;18061:9;:15;18071:4;18061:15;;;;;;;;;;;;;;;:37;;;;17754:371;17573:552;18155:1;18141:16;;:2;:16;;;18137:435;;18323:5;18307:12;;:21;;;;;;;;;;;18137:435;;;18540:5;18523:9;:13;18533:2;18523:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18137:435;18604:2;18589:25;;18598:4;18589:25;;;18608:5;18589:25;;;;;;:::i;:::-;;;;;;;;17487:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:329::-;5492:6;5541:2;5529:9;5520:7;5516:23;5512:32;5509:119;;;5547:79;;:::i;:::-;5509:119;5667:1;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5638:117;5433:329;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:180::-;6808:77;6805:1;6798:88;6905:4;6902:1;6895:15;6929:4;6926:1;6919:15;6946:191;6986:3;7005:20;7023:1;7005:20;:::i;:::-;7000:25;;7039:20;7057:1;7039:20;:::i;:::-;7034:25;;7082:1;7079;7075:9;7068:16;;7103:3;7100:1;7097:10;7094:36;;;7110:18;;:::i;:::-;7094:36;6946:191;;;;:::o;7143:442::-;7292:4;7330:2;7319:9;7315:18;7307:26;;7343:71;7411:1;7400:9;7396:17;7387:6;7343:71;:::i;:::-;7424:72;7492:2;7481:9;7477:18;7468:6;7424:72;:::i;:::-;7506;7574:2;7563:9;7559:18;7550:6;7506:72;:::i;:::-;7143:442;;;;;;:::o

Swarm Source

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