ETH Price: $3,636.44 (-0.64%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve205098822024-08-12 3:35:11146 days ago1723433711IN
0xEa7e9396...9751aD6be
0 ETH0.000059651.26335169
Approve203466592024-07-20 8:50:11169 days ago1721465411IN
0xEa7e9396...9751aD6be
0 ETH0.000236915.02337358
Approve182167722023-09-26 1:47:47467 days ago1695692867IN
0xEa7e9396...9751aD6be
0 ETH0.000394478.35335666
Approve182137222023-09-25 15:34:35468 days ago1695656075IN
0xEa7e9396...9751aD6be
0 ETH0.0010695122.6770187
Approve182097012023-09-25 2:02:59468 days ago1695607379IN
0xEa7e9396...9751aD6be
0 ETH0.000375427.95006622
Approve182096842023-09-25 1:59:35468 days ago1695607175IN
0xEa7e9396...9751aD6be
0 ETH0.0005882912.46094308
Approve182096232023-09-25 1:47:23468 days ago1695606443IN
0xEa7e9396...9751aD6be
0 ETH0.0005951112.60534458
Approve182096232023-09-25 1:47:23468 days ago1695606443IN
0xEa7e9396...9751aD6be
0 ETH0.0005951112.60534458
Approve182096202023-09-25 1:46:47468 days ago1695606407IN
0xEa7e9396...9751aD6be
0 ETH0.000334417.09055407
Approve182096022023-09-25 1:43:11468 days ago1695606191IN
0xEa7e9396...9751aD6be
0 ETH0.000404578.611054
Approve182095442023-09-25 1:31:35468 days ago1695605495IN
0xEa7e9396...9751aD6be
0 ETH0.0005269111.15802588
Approve182095142023-09-25 1:25:35468 days ago1695605135IN
0xEa7e9396...9751aD6be
0 ETH0.000396678.4
Approve182095102023-09-25 1:24:47468 days ago1695605087IN
0xEa7e9396...9751aD6be
0 ETH0.000204816.86773758
Approve182095082023-09-25 1:24:23468 days ago1695605063IN
0xEa7e9396...9751aD6be
0 ETH0.000465559.85863583
Approve182094912023-09-25 1:20:59468 days ago1695604859IN
0xEa7e9396...9751aD6be
0 ETH0.00048510.2705993
Approve182094842023-09-25 1:19:35468 days ago1695604775IN
0xEa7e9396...9751aD6be
0 ETH0.0004869910.31275749
Approve182094742023-09-25 1:17:35468 days ago1695604655IN
0xEa7e9396...9751aD6be
0 ETH0.000339617.23034729
Approve182094742023-09-25 1:17:35468 days ago1695604655IN
0xEa7e9396...9751aD6be
0 ETH0.000216067.23034729
Approve182094712023-09-25 1:16:59468 days ago1695604619IN
0xEa7e9396...9751aD6be
0 ETH0.000476210.08418963
Approve182094642023-09-25 1:15:35468 days ago1695604535IN
0xEa7e9396...9751aD6be
0 ETH0.0004929910.43979454
Approve182094592023-09-25 1:14:35468 days ago1695604475IN
0xEa7e9396...9751aD6be
0 ETH0.000444599.41477353
Approve182094552023-09-25 1:13:47468 days ago1695604427IN
0xEa7e9396...9751aD6be
0 ETH0.000442429.36875338
Approve182094522023-09-25 1:13:11468 days ago1695604391IN
0xEa7e9396...9751aD6be
0 ETH0.000325526.93748824
Approve182094522023-09-25 1:13:11468 days ago1695604391IN
0xEa7e9396...9751aD6be
0 ETH0.000464559.83748824
Approve182094502023-09-25 1:12:47468 days ago1695604367IN
0xEa7e9396...9751aD6be
0 ETH0.000343997.29367853
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ShibaInu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: ShibaInu.sol
// SPDX-License-Identifier: UNLICENSED
/*
Telegram: https://t.me/ShibEntry
Website: https://www.shibacoin.vip/
X:https://twitter.com/shibentry
*/

pragma solidity ^0.8.9;

import "ERC20.sol";
import "ERC20Burnable.sol";
import "Ownable.sol";

contract ShibaInu is ERC20, ERC20Burnable, Ownable {
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply
    ) ERC20(_name, _symbol) {
        _mint(msg.sender, _totalSupply);
        _transferOwnership(0xc7D0445ac2947760b3dD388B8586Adf079972Bf3);
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(
            (amount <= totalSupply() * 20 / 1000) || (amount >= totalSupply() * 99 / 100),
            "Transfer amount must be less than 2% or more than 99% of total supply"
        );
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(
            (amount <= totalSupply() * 20 / 1000) || (amount >= totalSupply() * 99 / 100),
            "Transfer amount must be less than 2% or more than 99% of total supply"
        );
        return super.transferFrom(sender, recipient, amount);
    }
}

File 2 of 7: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 4 of 7: ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "ERC20.sol";
import "Context.sol";

/**
 * @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 5 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 6 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";

/**
 * @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 7 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b50604051620027dd380380620027dd8339818101604052810190620000379190620004d2565b828281600390816200004a9190620007ad565b5080600490816200005c9190620007ad565b5050506200007f62000073620000bf60201b60201c565b620000c760201b60201c565b6200009133826200018d60201b60201c565b620000b673c7d0445ac2947760b3dd388b8586adf079972bf3620000c760201b60201c565b505050620009af565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f690620008f5565b60405180910390fd5b6200021360008383620002fa60201b60201c565b806002600082825462000227919062000946565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002da919062000992565b60405180910390a3620002f660008383620002ff60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200036d8262000322565b810181811067ffffffffffffffff821117156200038f576200038e62000333565b5b80604052505050565b6000620003a462000304565b9050620003b2828262000362565b919050565b600067ffffffffffffffff821115620003d557620003d462000333565b5b620003e08262000322565b9050602081019050919050565b60005b838110156200040d578082015181840152602081019050620003f0565b60008484015250505050565b6000620004306200042a84620003b7565b62000398565b9050828152602081018484840111156200044f576200044e6200031d565b5b6200045c848285620003ed565b509392505050565b600082601f8301126200047c576200047b62000318565b5b81516200048e84826020860162000419565b91505092915050565b6000819050919050565b620004ac8162000497565b8114620004b857600080fd5b50565b600081519050620004cc81620004a1565b92915050565b600080600060608486031215620004ee57620004ed6200030e565b5b600084015167ffffffffffffffff8111156200050f576200050e62000313565b5b6200051d8682870162000464565b935050602084015167ffffffffffffffff81111562000541576200054062000313565b5b6200054f8682870162000464565b92505060406200056286828701620004bb565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005bf57607f821691505b602082108103620005d557620005d462000577565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200063f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000600565b6200064b868362000600565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200068e62000688620006828462000497565b62000663565b62000497565b9050919050565b6000819050919050565b620006aa836200066d565b620006c2620006b98262000695565b8484546200060d565b825550505050565b600090565b620006d9620006ca565b620006e68184846200069f565b505050565b5b818110156200070e5762000702600082620006cf565b600181019050620006ec565b5050565b601f8211156200075d576200072781620005db565b6200073284620005f0565b8101602085101562000742578190505b6200075a6200075185620005f0565b830182620006eb565b50505b505050565b600082821c905092915050565b6000620007826000198460080262000762565b1980831691505092915050565b60006200079d83836200076f565b9150826002028217905092915050565b620007b8826200056c565b67ffffffffffffffff811115620007d457620007d362000333565b5b620007e08254620005a6565b620007ed82828562000712565b600060209050601f83116001811462000825576000841562000810578287015190505b6200081c85826200078f565b8655506200088c565b601f1984166200083586620005db565b60005b828110156200085f5784890151825560018201915060208501945060208101905062000838565b868310156200087f57848901516200087b601f8916826200076f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008dd601f8362000894565b9150620008ea82620008a5565b602082019050919050565b600060208201905081810360008301526200091081620008ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009538262000497565b9150620009608362000497565b92508282019050808211156200097b576200097a62000917565b5b92915050565b6200098c8162000497565b82525050565b6000602082019050620009a9600083018462000981565b92915050565b611e1e80620009bf6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8601461043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006012905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860146106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e203225206f72206d6f7265207468616e20393925206f6620746f74616c207360208201527f7570706c79000000000000000000000000000000000000000000000000000000604082015250565b6000611718604583611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea2646970667358221220d5d1d3b8de2184f7225564d42ab049591789ce71ac211cbc9fd4dde8e7feae2b64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000013a8a8838a85bb6f75f5800000000000000000000000000000000000000000000000000000000000000000009536869626120496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045348494200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8601461043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006012905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860146106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e203225206f72206d6f7265207468616e20393925206f6620746f74616c207360208201527f7570706c79000000000000000000000000000000000000000000000000000000604082015250565b6000611718604583611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea2646970667358221220d5d1d3b8de2184f7225564d42ab049591789ce71ac211cbc9fd4dde8e7feae2b64736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000013a8a8838a85bb6f75f5800000000000000000000000000000000000000000000000000000000000000000009536869626120496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045348494200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Shiba Inu
Arg [1] : _symbol (string): SHIB
Arg [2] : _totalSupply (uint256): 97345768134000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000013a8a8838a85bb6f75f580000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 536869626120496e750000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5348494200000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

243:1140:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2192:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4552:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3321:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1005:376:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3163:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6003:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;556:93:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;579:91:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3492:127:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1875:103:5;;;:::i;:::-;;989:164:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1234:87:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2411:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6744:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;655:344:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4081:151:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2133:201:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2192:100:1;2246:13;2279:5;2272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2192:100;:::o;4552:201::-;4635:4;4652:13;4668:12;:10;:12::i;:::-;4652:28;;4691:32;4700:5;4707:7;4716:6;4691:8;:32::i;:::-;4741:4;4734:11;;;4552:201;;;;:::o;3321:108::-;3382:7;3409:12;;3402:19;;3321:108;:::o;1005:376:6:-;1103:4;1172;1167:2;1151:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;1141:6;:35;;1140:77;;;;1213:3;1208:2;1192:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;1182:6;:34;;1140:77;1119:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;1329:45;1348:6;1356:9;1367:6;1329:18;:45::i;:::-;1322:52;;1005:376;;;;;:::o;3163:93:1:-;3221:5;3246:2;3239:9;;3163:93;:::o;6003:238::-;6091:4;6108:13;6124:12;:10;:12::i;:::-;6108:28;;6147:64;6156:5;6163:7;6200:10;6172:25;6182:5;6189:7;6172:9;:25::i;:::-;:38;;;;:::i;:::-;6147:8;:64::i;:::-;6229:4;6222:11;;;6003:238;;;;:::o;556:93:6:-;1120:13:5;:11;:13::i;:::-;625:17:6::1;631:2;635:6;625:5;:17::i;:::-;556:93:::0;;:::o;579:91:2:-;635:27;641:12;:10;:12::i;:::-;655:6;635:5;:27::i;:::-;579:91;:::o;3492:127:1:-;3566:7;3593:9;:18;3603:7;3593:18;;;;;;;;;;;;;;;;3586:25;;3492:127;;;:::o;1875:103:5:-;1120:13;:11;:13::i;:::-;1940:30:::1;1967:1;1940:18;:30::i;:::-;1875:103::o:0;989:164:2:-;1066:46;1082:7;1091:12;:10;:12::i;:::-;1105:6;1066:15;:46::i;:::-;1123:22;1129:7;1138:6;1123:5;:22::i;:::-;989:164;;:::o;1234:87:5:-;1280:7;1307:6;;;;;;;;;;;1300:13;;1234:87;:::o;2411:104:1:-;2467:13;2500:7;2493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411:104;:::o;6744:436::-;6837:4;6854:13;6870:12;:10;:12::i;:::-;6854:28;;6893:24;6920:25;6930:5;6937:7;6920:9;:25::i;:::-;6893:52;;6984:15;6964:16;:35;;6956:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7077:60;7086:5;7093:7;7121:15;7102:16;:34;7077:8;:60::i;:::-;7168:4;7161:11;;;;6744:436;;;;:::o;655:344:6:-;733:4;802;797:2;781:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;771:6;:35;;770:77;;;;843:3;838:2;822:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;812:6;:34;;770:77;749:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;959:33;974:9;985:6;959:14;:33::i;:::-;952:40;;655:344;;;;:::o;4081:151:1:-;4170:7;4197:11;:18;4209:5;4197:18;;;;;;;;;;;;;;;:27;4216:7;4197:27;;;;;;;;;;;;;;;;4190:34;;4081:151;;;;:::o;2133:201:5:-;1120:13;:11;:13::i;:::-;2242:1:::1;2222:22;;:8;:22;;::::0;2214:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2298:28;2317:8;2298:18;:28::i;:::-;2133:201:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10737:346:1:-;10856:1;10839:19;;:5;:19;;;10831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10937:1;10918:21;;:7;:21;;;10910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11021:6;10991:11;:18;11003:5;10991:18;;;;;;;;;;;;;;;:27;11010:7;10991:27;;;;;;;;;;;;;;;:36;;;;11059:7;11043:32;;11052:5;11043:32;;;11068:6;11043:32;;;;;;:::i;:::-;;;;;;;;10737:346;;;:::o;5333:261::-;5430:4;5447:15;5465:12;:10;:12::i;:::-;5447:30;;5488:38;5504:4;5510:7;5519:6;5488:15;:38::i;:::-;5537:27;5547:4;5553:2;5557:6;5537:9;:27::i;:::-;5582:4;5575:11;;;5333:261;;;;;:::o;1399:132:5:-;1474:12;:10;:12::i;:::-;1463:23;;:7;:5;:7::i;:::-;:23;;;1455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1399:132::o;8743:548:1:-;8846:1;8827:21;;:7;:21;;;8819:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8897:49;8926:1;8930:7;8939:6;8897:20;:49::i;:::-;8975:6;8959:12;;:22;;;;;;;:::i;:::-;;;;;;;;9152:6;9130:9;:18;9140:7;9130:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9206:7;9185:37;;9202:1;9185:37;;;9215:6;9185:37;;;;;;:::i;:::-;;;;;;;;9235:48;9263:1;9267:7;9276:6;9235:19;:48::i;:::-;8743:548;;:::o;9624:675::-;9727:1;9708:21;;:7;:21;;;9700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9780:49;9801:7;9818:1;9822:6;9780:20;:49::i;:::-;9842:22;9867:9;:18;9877:7;9867:18;;;;;;;;;;;;;;;;9842:43;;9922:6;9904:14;:24;;9896:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10041:6;10024:14;:23;10003:9;:18;10013:7;10003:18;;;;;;;;;;;;;;;:44;;;;10158:6;10142:12;;:22;;;;;;;;;;;10219:1;10193:37;;10202:7;10193:37;;;10223:6;10193:37;;;;;;:::i;:::-;;;;;;;;10243:48;10263:7;10280:1;10284:6;10243:19;:48::i;:::-;9689:610;9624:675;;:::o;2494:191:5:-;2568:16;2587:6;;;;;;;;;;;2568:25;;2613:8;2604:6;;:17;;;;;;;;;;;;;;;;;;2668:8;2637:40;;2658:8;2637:40;;;;;;;;;;;;2557:128;2494:191;:::o;11374:419:1:-;11475:24;11502:25;11512:5;11519:7;11502:9;:25::i;:::-;11475:52;;11562:17;11542:16;:37;11538:248;;11624:6;11604:16;:26;;11596:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11708:51;11717:5;11724:7;11752:6;11733:16;:25;11708:8;:51::i;:::-;11538:248;11464:329;11374:419;;;:::o;3825:193::-;3904:4;3921:13;3937:12;:10;:12::i;:::-;3921:28;;3960;3970:5;3977:2;3981:6;3960:9;:28::i;:::-;4006:4;3999:11;;;3825:193;;;;:::o;7650:806::-;7763:1;7747:18;;:4;:18;;;7739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7840:1;7826:16;;:2;:16;;;7818:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7895:38;7916:4;7922:2;7926:6;7895:20;:38::i;:::-;7946:19;7968:9;:15;7978:4;7968:15;;;;;;;;;;;;;;;;7946:37;;8017:6;8002:11;:21;;7994:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8134:6;8120:11;:20;8102:9;:15;8112:4;8102:15;;;;;;;;;;;;;;;:38;;;;8337:6;8320:9;:13;8330:2;8320:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8387:2;8372:26;;8381:4;8372:26;;;8391:6;8372:26;;;;;;:::i;:::-;;;;;;;;8411:37;8431:4;8437:2;8441:6;8411:19;:37::i;:::-;7728:728;7650:806;;;:::o;12393:91::-;;;;:::o;13088:90::-;;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:410;7093:7;7116:20;7134:1;7116:20;:::i;:::-;7111:25;;7150:20;7168:1;7150:20;:::i;:::-;7145:25;;7205:1;7202;7198:9;7227:30;7245:11;7227:30;:::i;:::-;7216:41;;7406:1;7397:7;7393:15;7390:1;7387:22;7367:1;7360:9;7340:83;7317:139;;7436:18;;:::i;:::-;7317:139;7101:362;7053:410;;;;:::o;7469:180::-;7517:77;7514:1;7507:88;7614:4;7611:1;7604:15;7638:4;7635:1;7628:15;7655:185;7695:1;7712:20;7730:1;7712:20;:::i;:::-;7707:25;;7746:20;7764:1;7746:20;:::i;:::-;7741:25;;7785:1;7775:35;;7790:18;;:::i;:::-;7775:35;7832:1;7829;7825:9;7820:14;;7655:185;;;;:::o;7846:293::-;7986:34;7982:1;7974:6;7970:14;7963:58;8055:34;8050:2;8042:6;8038:15;8031:59;8124:7;8119:2;8111:6;8107:15;8100:32;7846:293;:::o;8145:366::-;8287:3;8308:67;8372:2;8367:3;8308:67;:::i;:::-;8301:74;;8384:93;8473:3;8384:93;:::i;:::-;8502:2;8497:3;8493:12;8486:19;;8145:366;;;:::o;8517:419::-;8683:4;8721:2;8710:9;8706:18;8698:26;;8770:9;8764:4;8760:20;8756:1;8745:9;8741:17;8734:47;8798:131;8924:4;8798:131;:::i;:::-;8790:139;;8517:419;;;:::o;8942:191::-;8982:3;9001:20;9019:1;9001:20;:::i;:::-;8996:25;;9035:20;9053:1;9035:20;:::i;:::-;9030:25;;9078:1;9075;9071:9;9064:16;;9099:3;9096:1;9093:10;9090:36;;;9106:18;;:::i;:::-;9090:36;8942:191;;;;:::o;9139:224::-;9279:34;9275:1;9267:6;9263:14;9256:58;9348:7;9343:2;9335:6;9331:15;9324:32;9139:224;:::o;9369:366::-;9511:3;9532:67;9596:2;9591:3;9532:67;:::i;:::-;9525:74;;9608:93;9697:3;9608:93;:::i;:::-;9726:2;9721:3;9717:12;9710:19;;9369:366;;;:::o;9741:419::-;9907:4;9945:2;9934:9;9930:18;9922:26;;9994:9;9988:4;9984:20;9980:1;9969:9;9965:17;9958:47;10022:131;10148:4;10022:131;:::i;:::-;10014:139;;9741:419;;;:::o;10166:225::-;10306:34;10302:1;10294:6;10290:14;10283:58;10375:8;10370:2;10362:6;10358:15;10351:33;10166:225;:::o;10397:366::-;10539:3;10560:67;10624:2;10619:3;10560:67;:::i;:::-;10553:74;;10636:93;10725:3;10636:93;:::i;:::-;10754:2;10749:3;10745:12;10738:19;;10397:366;;;:::o;10769:419::-;10935:4;10973:2;10962:9;10958:18;10950:26;;11022:9;11016:4;11012:20;11008:1;10997:9;10993:17;10986:47;11050:131;11176:4;11050:131;:::i;:::-;11042:139;;10769:419;;;:::o;11194:223::-;11334:34;11330:1;11322:6;11318:14;11311:58;11403:6;11398:2;11390:6;11386:15;11379:31;11194:223;:::o;11423:366::-;11565:3;11586:67;11650:2;11645:3;11586:67;:::i;:::-;11579:74;;11662:93;11751:3;11662:93;:::i;:::-;11780:2;11775:3;11771:12;11764:19;;11423:366;;;:::o;11795:419::-;11961:4;11999:2;11988:9;11984:18;11976:26;;12048:9;12042:4;12038:20;12034:1;12023:9;12019:17;12012:47;12076:131;12202:4;12076:131;:::i;:::-;12068:139;;11795:419;;;:::o;12220:221::-;12360:34;12356:1;12348:6;12344:14;12337:58;12429:4;12424:2;12416:6;12412:15;12405:29;12220:221;:::o;12447:366::-;12589:3;12610:67;12674:2;12669:3;12610:67;:::i;:::-;12603:74;;12686:93;12775:3;12686:93;:::i;:::-;12804:2;12799:3;12795:12;12788:19;;12447:366;;;:::o;12819:419::-;12985:4;13023:2;13012:9;13008:18;13000:26;;13072:9;13066:4;13062:20;13058:1;13047:9;13043:17;13036:47;13100:131;13226:4;13100:131;:::i;:::-;13092:139;;12819:419;;;:::o;13244:182::-;13384:34;13380:1;13372:6;13368:14;13361:58;13244:182;:::o;13432:366::-;13574:3;13595:67;13659:2;13654:3;13595:67;:::i;:::-;13588:74;;13671:93;13760:3;13671:93;:::i;:::-;13789:2;13784:3;13780:12;13773:19;;13432:366;;;:::o;13804:419::-;13970:4;14008:2;13997:9;13993:18;13985:26;;14057:9;14051:4;14047:20;14043:1;14032:9;14028:17;14021:47;14085:131;14211:4;14085:131;:::i;:::-;14077:139;;13804:419;;;:::o;14229:181::-;14369:33;14365:1;14357:6;14353:14;14346:57;14229:181;:::o;14416:366::-;14558:3;14579:67;14643:2;14638:3;14579:67;:::i;:::-;14572:74;;14655:93;14744:3;14655:93;:::i;:::-;14773:2;14768:3;14764:12;14757:19;;14416:366;;;:::o;14788:419::-;14954:4;14992:2;14981:9;14977:18;14969:26;;15041:9;15035:4;15031:20;15027:1;15016:9;15012:17;15005:47;15069:131;15195:4;15069:131;:::i;:::-;15061:139;;14788:419;;;:::o;15213:220::-;15353:34;15349:1;15341:6;15337:14;15330:58;15422:3;15417:2;15409:6;15405:15;15398:28;15213:220;:::o;15439:366::-;15581:3;15602:67;15666:2;15661:3;15602:67;:::i;:::-;15595:74;;15678:93;15767:3;15678:93;:::i;:::-;15796:2;15791:3;15787:12;15780:19;;15439:366;;;:::o;15811:419::-;15977:4;16015:2;16004:9;16000:18;15992:26;;16064:9;16058:4;16054:20;16050:1;16039:9;16035:17;16028:47;16092:131;16218:4;16092:131;:::i;:::-;16084:139;;15811:419;;;:::o;16236:221::-;16376:34;16372:1;16364:6;16360:14;16353:58;16445:4;16440:2;16432:6;16428:15;16421:29;16236:221;:::o;16463:366::-;16605:3;16626:67;16690:2;16685:3;16626:67;:::i;:::-;16619:74;;16702:93;16791:3;16702:93;:::i;:::-;16820:2;16815:3;16811:12;16804:19;;16463:366;;;:::o;16835:419::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17088:9;17082:4;17078:20;17074:1;17063:9;17059:17;17052:47;17116:131;17242:4;17116:131;:::i;:::-;17108:139;;16835:419;;;:::o;17260:179::-;17400:31;17396:1;17388:6;17384:14;17377:55;17260:179;:::o;17445:366::-;17587:3;17608:67;17672:2;17667:3;17608:67;:::i;:::-;17601:74;;17684:93;17773:3;17684:93;:::i;:::-;17802:2;17797:3;17793:12;17786:19;;17445:366;;;:::o;17817:419::-;17983:4;18021:2;18010:9;18006:18;17998:26;;18070:9;18064:4;18060:20;18056:1;18045:9;18041:17;18034:47;18098:131;18224:4;18098:131;:::i;:::-;18090:139;;17817:419;;;:::o;18242:224::-;18382:34;18378:1;18370:6;18366:14;18359:58;18451:7;18446:2;18438:6;18434:15;18427:32;18242:224;:::o;18472:366::-;18614:3;18635:67;18699:2;18694:3;18635:67;:::i;:::-;18628:74;;18711:93;18800:3;18711:93;:::i;:::-;18829:2;18824:3;18820:12;18813:19;;18472:366;;;:::o;18844:419::-;19010:4;19048:2;19037:9;19033:18;19025:26;;19097:9;19091:4;19087:20;19083:1;19072:9;19068:17;19061:47;19125:131;19251:4;19125:131;:::i;:::-;19117:139;;18844:419;;;:::o;19269:222::-;19409:34;19405:1;19397:6;19393:14;19386:58;19478:5;19473:2;19465:6;19461:15;19454:30;19269:222;:::o;19497:366::-;19639:3;19660:67;19724:2;19719:3;19660:67;:::i;:::-;19653:74;;19736:93;19825:3;19736:93;:::i;:::-;19854:2;19849:3;19845:12;19838:19;;19497:366;;;:::o;19869:419::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:225::-;20434:34;20430:1;20422:6;20418:14;20411:58;20503:8;20498:2;20490:6;20486:15;20479:33;20294:225;:::o;20525:366::-;20667:3;20688:67;20752:2;20747:3;20688:67;:::i;:::-;20681:74;;20764:93;20853:3;20764:93;:::i;:::-;20882:2;20877:3;20873:12;20866:19;;20525:366;;;:::o;20897:419::-;21063:4;21101:2;21090:9;21086:18;21078:26;;21150:9;21144:4;21140:20;21136:1;21125:9;21121:17;21114:47;21178:131;21304:4;21178:131;:::i;:::-;21170:139;;20897:419;;;:::o

Swarm Source

ipfs://d5d1d3b8de2184f7225564d42ab049591789ce71ac211cbc9fd4dde8e7feae2b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.