ETH Price: $3,098.52 (-0.41%)
Gas: 2 Gwei

Contract

0xd7c302fc3ac829C7E896a32c4Bd126f3e8Bd0a1f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Bit2Me (B2M) (@$0.0097)
Transaction Hash
Method
Block
From
To
Value
Transfer202769122024-07-10 15:11:3514 hrs ago1720624295IN
Bit2Me: B2M Token
0 ETH0.0008168415.84792374
Transfer202695612024-07-09 14:34:3539 hrs ago1720535675IN
Bit2Me: B2M Token
0 ETH0.000330677.07442289
Transfer202684492024-07-09 10:50:1143 hrs ago1720522211IN
Bit2Me: B2M Token
0 ETH0.000195563.79326679
Transfer202611562024-07-08 10:20:112 days ago1720434011IN
Bit2Me: B2M Token
0 ETH0.000115863.9071269
Approve202539282024-07-07 10:05:593 days ago1720346759IN
Bit2Me: B2M Token
0 ETH0.000064881.39455871
Transfer202531552024-07-07 7:30:353 days ago1720337435IN
Bit2Me: B2M Token
0 ETH0.000068312.30445141
Transfer202531102024-07-07 7:21:353 days ago1720336895IN
Bit2Me: B2M Token
0 ETH0.000108582.1062248
Transfer202318982024-07-04 8:16:476 days ago1720081007IN
Bit2Me: B2M Token
0 ETH0.000245617.12846374
Transfer202189222024-07-02 12:46:358 days ago1719924395IN
Bit2Me: B2M Token
0 ETH0.000408347.92234821
Transfer202138022024-07-01 19:37:119 days ago1719862631IN
Bit2Me: B2M Token
0 ETH0.0003681312.4139056
Transfer202130272024-07-01 17:01:359 days ago1719853295IN
Bit2Me: B2M Token
0 ETH0.000496499.63033437
Transfer202076192024-06-30 22:53:5910 days ago1719788039IN
Bit2Me: B2M Token
0 ETH0.000278185.94994108
Transfer202074902024-06-30 22:27:5910 days ago1719786479IN
Bit2Me: B2M Token
0 ETH0.000194294.15551161
Transfer201613022024-06-24 11:40:2316 days ago1719229223IN
Bit2Me: B2M Token
0 ETH0.000165053.53101633
Transfer201612302024-06-24 11:25:3516 days ago1719228335IN
Bit2Me: B2M Token
0 ETH0.000189593.67831484
Transfer201579092024-06-24 0:16:4717 days ago1719188207IN
Bit2Me: B2M Token
0 ETH0.000140353.00352383
Transfer200927752024-06-14 21:36:4726 days ago1718401007IN
Bit2Me: B2M Token
0 ETH0.0004603413.36549767
Transfer200850372024-06-13 19:39:3527 days ago1718307575IN
Bit2Me: B2M Token
0 ETH0.0003574612.05890287
Transfer200842862024-06-13 17:07:2327 days ago1718298443IN
Bit2Me: B2M Token
0 ETH0.0009949121.27934939
Transfer200601022024-06-10 8:00:4730 days ago1718006447IN
Bit2Me: B2M Token
0 ETH0.00023386.78585323
Transfer200425512024-06-07 21:11:4733 days ago1717794707IN
Bit2Me: B2M Token
0 ETH0.0004676810.00025669
Transfer200330202024-06-06 13:15:1134 days ago1717679711IN
Bit2Me: B2M Token
0 ETH0.0010894821.13735404
Transfer200312972024-06-06 7:28:3534 days ago1717658915IN
Bit2Me: B2M Token
0 ETH0.0005695812.18236141
Transfer200263082024-06-05 14:45:1135 days ago1717598711IN
Bit2Me: B2M Token
0 ETH0.0010195821.80134501
Transfer200229732024-06-05 3:35:3536 days ago1717558535IN
Bit2Me: B2M Token
0 ETH0.000351076.80978056
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
132302392021-09-15 12:18:141029 days ago1631708294  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-15
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;



// Part: OpenZeppelin/[email protected]/Context

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

// Part: OpenZeppelin/[email protected]/IERC20

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// Part: OpenZeppelin/[email protected]/IERC20Metadata

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

// Part: OpenZeppelin/[email protected]/Ownable

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// Part: OpenZeppelin/[email protected]/ERC20

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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: Token.sol

contract Token is ERC20, Ownable {
    address public bit2me;
    uint256 public maxSupply = 5000000000 ether;

    constructor(address bit2me_) ERC20("Bit2Me", "B2M") {
        bit2me = bit2me_;
        _mint(bit2me, maxSupply);
    }

    function burn(uint256 amount) public onlyOwner {
        _burn(bit2me, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"bit2me_","type":"address"}],"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":[],"name":"bit2me","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040526b1027e72f1f128130880000006007553480156200002157600080fd5b506040516200102b3803806200102b8339810160408190526200004491620002e2565b60405180604001604052806006815260200165426974324d6560d01b8152506040518060400160405280600381526020016242324d60e81b8152508160039080519060200190620000979291906200023c565b508051620000ad9060049060208401906200023c565b505050620000ca620000c4620000fe60201b60201c565b62000102565b600680546001600160a01b0319166001600160a01b038316908117909155600754620000f7919062000154565b5062000374565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c3919062000312565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f290849062000312565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200024a9062000337565b90600052602060002090601f0160209004810192826200026e5760008555620002b9565b82601f106200028957805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b95782518255916020019190600101906200029c565b50620002c7929150620002cb565b5090565b5b80821115620002c75760008155600101620002cc565b600060208284031215620002f4578081fd5b81516001600160a01b03811681146200030b578182fd5b9392505050565b600082198211156200033257634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b610ca780620003846000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461021e578063d5abeb0114610231578063dd62ed3e1461023a578063f2fde38b14610273578063f3cba6a81461028657600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b4114610203578063a457c2d71461020b57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806342966c681461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610b69565b60405180910390f35b61014161013c366004610b28565b61032b565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610aed565b610341565b60405160128152602001610125565b610141610193366004610b28565b6103f0565b6101ab6101a6366004610b51565b61042c565b005b6101556101bb366004610a9a565b6001600160a01b031660009081526020819052604090205490565b6101ab61046f565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101186104a5565b610141610219366004610b28565b6104b4565b61014161022c366004610b28565b61054d565b61015560075481565b610155610248366004610abb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab610281366004610a9a565b61055a565b6006546101eb906001600160a01b031681565b6060600380546102a890610c20565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610c20565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105f2565b50600192915050565b600061034e848484610717565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e585338584036105f2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610338918590610427908690610bf1565b6105f2565b6005546001600160a01b031633146104565760405162461bcd60e51b81526004016103cf90610bbc565b60065461046c906001600160a01b0316826108e6565b50565b6005546001600160a01b031633146104995760405162461bcd60e51b81526004016103cf90610bbc565b6104a36000610a2c565b565b6060600480546102a890610c20565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cf565b61054333858584036105f2565b5060019392505050565b6000610338338484610717565b6005546001600160a01b031633146105845760405162461bcd60e51b81526004016103cf90610bbc565b6001600160a01b0381166105e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cf565b61046c81610a2c565b6001600160a01b0383166106545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cf565b6001600160a01b0382166106b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661077b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cf565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cf565b6001600160a01b038316600090815260208190526040902054818110156108555760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cf565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061088c908490610bf1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d891815260200190565b60405180910390a350505050565b6001600160a01b0382166109465760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103cf565b6001600160a01b038216600090815260208190526040902054818110156109ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103cf565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109e9908490610c09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161070a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610a9557600080fd5b919050565b600060208284031215610aab578081fd5b610ab482610a7e565b9392505050565b60008060408385031215610acd578081fd5b610ad683610a7e565b9150610ae460208401610a7e565b90509250929050565b600080600060608486031215610b01578081fd5b610b0a84610a7e565b9250610b1860208501610a7e565b9150604084013590509250925092565b60008060408385031215610b3a578182fd5b610b4383610a7e565b946020939093013593505050565b600060208284031215610b62578081fd5b5035919050565b6000602080835283518082850152825b81811015610b9557858101830151858201604001528201610b79565b81811115610ba65783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c0457610c04610c5b565b500190565b600082821015610c1b57610c1b610c5b565b500390565b600181811c90821680610c3457607f821691505b60208210811415610c5557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202eafa3d2b52f616c50304fcbab398ae3b7a080e83ffa7c007bd896cab5bc20eb64736f6c63430008040033000000000000000000000000f7e2d2ba320020fe1b6975b049a8afff4a5ac6c7

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461021e578063d5abeb0114610231578063dd62ed3e1461023a578063f2fde38b14610273578063f3cba6a81461028657600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b4114610203578063a457c2d71461020b57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018557806342966c681461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b6040516101259190610b69565b60405180910390f35b61014161013c366004610b28565b61032b565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610aed565b610341565b60405160128152602001610125565b610141610193366004610b28565b6103f0565b6101ab6101a6366004610b51565b61042c565b005b6101556101bb366004610a9a565b6001600160a01b031660009081526020819052604090205490565b6101ab61046f565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101186104a5565b610141610219366004610b28565b6104b4565b61014161022c366004610b28565b61054d565b61015560075481565b610155610248366004610abb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab610281366004610a9a565b61055a565b6006546101eb906001600160a01b031681565b6060600380546102a890610c20565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610c20565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105f2565b50600192915050565b600061034e848484610717565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103e585338584036105f2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610338918590610427908690610bf1565b6105f2565b6005546001600160a01b031633146104565760405162461bcd60e51b81526004016103cf90610bbc565b60065461046c906001600160a01b0316826108e6565b50565b6005546001600160a01b031633146104995760405162461bcd60e51b81526004016103cf90610bbc565b6104a36000610a2c565b565b6060600480546102a890610c20565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103cf565b61054333858584036105f2565b5060019392505050565b6000610338338484610717565b6005546001600160a01b031633146105845760405162461bcd60e51b81526004016103cf90610bbc565b6001600160a01b0381166105e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103cf565b61046c81610a2c565b6001600160a01b0383166106545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103cf565b6001600160a01b0382166106b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661077b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103cf565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103cf565b6001600160a01b038316600090815260208190526040902054818110156108555760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103cf565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061088c908490610bf1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108d891815260200190565b60405180910390a350505050565b6001600160a01b0382166109465760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103cf565b6001600160a01b038216600090815260208190526040902054818110156109ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103cf565b6001600160a01b03831660009081526020819052604081208383039055600280548492906109e9908490610c09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161070a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610a9557600080fd5b919050565b600060208284031215610aab578081fd5b610ab482610a7e565b9392505050565b60008060408385031215610acd578081fd5b610ad683610a7e565b9150610ae460208401610a7e565b90509250929050565b600080600060608486031215610b01578081fd5b610b0a84610a7e565b9250610b1860208501610a7e565b9150604084013590509250925092565b60008060408385031215610b3a578182fd5b610b4383610a7e565b946020939093013593505050565b600060208284031215610b62578081fd5b5035919050565b6000602080835283518082850152825b81811015610b9557858101830151858201604001528201610b79565b81811115610ba65783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c0457610c04610c5b565b500190565b600082821015610c1b57610c1b610c5b565b500390565b600181811c90821680610c3457607f821691505b60208210811415610c5557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202eafa3d2b52f616c50304fcbab398ae3b7a080e83ffa7c007bd896cab5bc20eb64736f6c63430008040033

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

000000000000000000000000f7e2d2ba320020fe1b6975b049a8afff4a5ac6c7

-----Decoded View---------------
Arg [0] : bit2me_ (address): 0xF7E2D2bA320020fE1B6975b049a8afff4a5aC6C7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f7e2d2ba320020fe1b6975b049a8afff4a5ac6c7


Deployed Bytecode Sourcemap

18565:340:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8582:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10749:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;10749:169:0;1778:92:1;9702:108:0;9790:12;;9702:108;;;7042:25:1;;;7030:2;7015:18;9702:108:0;6997:76:1;11400:492:0;;;;;;:::i;:::-;;:::i;9544:93::-;;;9627:2;7220:36:1;;7208:2;7193:18;9544:93:0;7175:87:1;12301:215:0;;;;;;:::i;:::-;;:::i;18815:87::-;;;;;;:::i;:::-;;:::i;:::-;;9873:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9974:18:0;9947:7;9974:18;;;;;;;;;;;;9873:127;5926:94;;;:::i;5275:87::-;5348:6;;-1:-1:-1;;;;;5348:6:0;5275:87;;;-1:-1:-1;;;;;1639:32:1;;;1621:51;;1609:2;1594:18;5275:87:0;1576:102:1;8801:104:0;;;:::i;13019:413::-;;;;;;:::i;:::-;;:::i;10213:175::-;;;;;;:::i;:::-;;:::i;18633:43::-;;;;;;10451:151;;;;;;:::i;:::-;-1:-1:-1;;;;;10567:18:0;;;10540:7;10567:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10451:151;6175:192;;;;;;:::i;:::-;;:::i;18605:21::-;;;;;-1:-1:-1;;;;;18605:21:0;;;8582:100;8636:13;8669:5;8662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8582:100;:::o;10749:169::-;10832:4;10849:39;746:10;10872:7;10881:6;10849:8;:39::i;:::-;-1:-1:-1;10906:4:0;10749:169;;;;:::o;11400:492::-;11540:4;11557:36;11567:6;11575:9;11586:6;11557:9;:36::i;:::-;-1:-1:-1;;;;;11633:19:0;;11606:24;11633:19;;;:11;:19;;;;;;;;746:10;11633:33;;;;;;;;11685:26;;;;11677:79;;;;-1:-1:-1;;;11677:79:0;;4709:2:1;11677:79:0;;;4691:21:1;4748:2;4728:18;;;4721:30;4787:34;4767:18;;;4760:62;-1:-1:-1;;;4838:18:1;;;4831:38;4886:19;;11677:79:0;;;;;;;;;11792:57;11801:6;746:10;11842:6;11823:16;:25;11792:8;:57::i;:::-;-1:-1:-1;11880:4:0;;11400:492;-1:-1:-1;;;;11400:492:0:o;12301:215::-;746:10;12389:4;12438:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12438:34:0;;;;;;;;;;12389:4;;12406:80;;12429:7;;12438:47;;12475:10;;12438:47;:::i;:::-;12406:8;:80::i;18815:87::-;5348:6;;-1:-1:-1;;;;;5348:6:0;746:10;5495:23;5487:68;;;;-1:-1:-1;;;5487:68:0;;;;;;;:::i;:::-;18879:6:::1;::::0;18873:21:::1;::::0;-1:-1:-1;;;;;18879:6:0::1;18887::::0;18873:5:::1;:21::i;:::-;18815:87:::0;:::o;5926:94::-;5348:6;;-1:-1:-1;;;;;5348:6:0;746:10;5495:23;5487:68;;;;-1:-1:-1;;;5487:68:0;;;;;;;:::i;:::-;5991:21:::1;6009:1;5991:9;:21::i;:::-;5926:94::o:0;8801:104::-;8857:13;8890:7;8883:14;;;;;:::i;13019:413::-;746:10;13112:4;13156:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13156:34:0;;;;;;;;;;13209:35;;;;13201:85;;;;-1:-1:-1;;;13201:85:0;;6692:2:1;13201:85:0;;;6674:21:1;6731:2;6711:18;;;6704:30;6770:34;6750:18;;;6743:62;-1:-1:-1;;;6821:18:1;;;6814:35;6866:19;;13201:85:0;6664:227:1;13201:85:0;13322:67;746:10;13345:7;13373:15;13354:16;:34;13322:8;:67::i;:::-;-1:-1:-1;13420:4:0;;13019:413;-1:-1:-1;;;13019:413:0:o;10213:175::-;10299:4;10316:42;746:10;10340:9;10351:6;10316:9;:42::i;6175:192::-;5348:6;;-1:-1:-1;;;;;5348:6:0;746:10;5495:23;5487:68;;;;-1:-1:-1;;;5487:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6264:22:0;::::1;6256:73;;;::::0;-1:-1:-1;;;6256:73:0;;3492:2:1;6256:73:0::1;::::0;::::1;3474:21:1::0;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:36;3667:19;;6256:73:0::1;3464:228:1::0;6256:73:0::1;6340:19;6350:8;6340:9;:19::i;16703:380::-:0;-1:-1:-1;;;;;16839:19:0;;16831:68;;;;-1:-1:-1;;;16831:68:0;;6287:2:1;16831:68:0;;;6269:21:1;6326:2;6306:18;;;6299:30;6365:34;6345:18;;;6338:62;-1:-1:-1;;;6416:18:1;;;6409:34;6460:19;;16831:68:0;6259:226:1;16831:68:0;-1:-1:-1;;;;;16918:21:0;;16910:68;;;;-1:-1:-1;;;16910:68:0;;3899:2:1;16910:68:0;;;3881:21:1;3938:2;3918:18;;;3911:30;3977:34;3957:18;;;3950:62;-1:-1:-1;;;4028:18:1;;;4021:32;4070:19;;16910:68:0;3871:224:1;16910:68:0;-1:-1:-1;;;;;16991:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17043:32;;7042:25:1;;;17043:32:0;;7015:18:1;17043:32:0;;;;;;;;16703:380;;;:::o;13922:733::-;-1:-1:-1;;;;;14062:20:0;;14054:70;;;;-1:-1:-1;;;14054:70:0;;5881:2:1;14054:70:0;;;5863:21:1;5920:2;5900:18;;;5893:30;5959:34;5939:18;;;5932:62;-1:-1:-1;;;6010:18:1;;;6003:35;6055:19;;14054:70:0;5853:227:1;14054:70:0;-1:-1:-1;;;;;14143:23:0;;14135:71;;;;-1:-1:-1;;;14135:71:0;;2685:2:1;14135:71:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;14135:71:0;2657:225:1;14135:71:0;-1:-1:-1;;;;;14303:17:0;;14279:21;14303:17;;;;;;;;;;;14339:23;;;;14331:74;;;;-1:-1:-1;;;14331:74:0;;4302:2:1;14331:74:0;;;4284:21:1;4341:2;4321:18;;;4314:30;4380:34;4360:18;;;4353:62;-1:-1:-1;;;4431:18:1;;;4424:36;4477:19;;14331:74:0;4274:228:1;14331:74:0;-1:-1:-1;;;;;14441:17:0;;;:9;:17;;;;;;;;;;;14461:22;;;14441:42;;14505:20;;;;;;;;:30;;14477:6;;14441:9;14505:30;;14477:6;;14505:30;:::i;:::-;;;;;;;;14570:9;-1:-1:-1;;;;;14553:35:0;14562:6;-1:-1:-1;;;;;14553:35:0;;14581:6;14553:35;;;;7042:25:1;;7030:2;7015:18;;6997:76;14553:35:0;;;;;;;;13922:733;;;;:::o;15674:591::-;-1:-1:-1;;;;;15758:21:0;;15750:67;;;;-1:-1:-1;;;15750:67:0;;5479:2:1;15750:67:0;;;5461:21:1;5518:2;5498:18;;;5491:30;5557:34;5537:18;;;5530:62;-1:-1:-1;;;5608:18:1;;;5601:31;5649:19;;15750:67:0;5451:223:1;15750:67:0;-1:-1:-1;;;;;15917:18:0;;15892:22;15917:18;;;;;;;;;;;15954:24;;;;15946:71;;;;-1:-1:-1;;;15946:71:0;;3089:2:1;15946:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;15946:71:0;3061:224:1;15946:71:0;-1:-1:-1;;;;;16053:18:0;;:9;:18;;;;;;;;;;16074:23;;;16053:44;;16119:12;:22;;16091:6;;16053:9;16119:22;;16091:6;;16119:22;:::i;:::-;;;;-1:-1:-1;;16159:37:0;;7042:25:1;;;16185:1:0;;-1:-1:-1;;;;;16159:37:0;;;;;7030:2:1;7015:18;16159:37:0;6997:76:1;6375:173:0;6450:6;;;-1:-1:-1;;;;;6467:17:0;;;-1:-1:-1;;;;;;6467:17:0;;;;;;;6500:40;;6450:6;;;6467:17;6450:6;;6500:40;;6431:16;;6500:40;6375:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;4916:356::-;5118:2;5100:21;;;5137:18;;;5130:30;5196:34;5191:2;5176:18;;5169:62;5263:2;5248:18;;5090:182::o;7267:128::-;7307:3;7338:1;7334:6;7331:1;7328:13;7325:2;;;7344:18;;:::i;:::-;-1:-1:-1;7380:9:1;;7315:80::o;7400:125::-;7440:4;7468:1;7465;7462:8;7459:2;;;7473:18;;:::i;:::-;-1:-1:-1;7510:9:1;;7449:76::o;7530:380::-;7609:1;7605:12;;;;7652;;;7673:2;;7727:4;7719:6;7715:17;7705:27;;7673:2;7780;7772:6;7769:14;7749:18;7746:38;7743:2;;;7826:10;7821:3;7817:20;7814:1;7807:31;7861:4;7858:1;7851:15;7889:4;7886:1;7879:15;7743:2;;7585:325;;;:::o;7915:127::-;7976:10;7971:3;7967:20;7964:1;7957:31;8007:4;8004:1;7997:15;8031:4;8028:1;8021:15

Swarm Source

ipfs://2eafa3d2b52f616c50304fcbab398ae3b7a080e83ffa7c007bd896cab5bc20eb

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

Bit2Me is an international ecosystem of cryptocurrency solutions that has been growing since 2014. Bit2Me has a wallet, trading platform, otc, staking, loan, crypto card, explorer, academy, and much more.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.