ETH Price: $2,393.72 (-4.44%)

Contract

0x9BAdd738839434696974f374C1828b071290acdD
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer166347022023-02-15 14:21:11566 days ago1676470871IN
OERO: OEUR Token
0 ETH0.0020152154.71209337
Transfer166346722023-02-15 14:15:11566 days ago1676470511IN
OERO: OEUR Token
0 ETH0.0023129562.79584562
Transfer165846372023-02-08 14:24:59573 days ago1675866299IN
OERO: OEUR Token
0 ETH0.0013872437.66317011
Transfer165846242023-02-08 14:22:23573 days ago1675866143IN
OERO: OEUR Token
0 ETH0.0016738345.44389448
Transfer165846102023-02-08 14:19:35573 days ago1675865975IN
OERO: OEUR Token
0 ETH0.0015580642.30082712
Transfer165845892023-02-08 14:15:11573 days ago1675865711IN
OERO: OEUR Token
0 ETH0.0014869240.36928104
Transfer165842152023-02-08 12:59:35573 days ago1675861175IN
OERO: OEUR Token
0 ETH0.0010510428.53554715
Transfer165840882023-02-08 12:33:47573 days ago1675859627IN
OERO: OEUR Token
0 ETH0.0011842432.15163163
Transfer165840282023-02-08 12:21:23573 days ago1675858883IN
OERO: OEUR Token
0 ETH0.0011434731.04497799
Transfer165838772023-02-08 11:50:47573 days ago1675857047IN
OERO: OEUR Token
0 ETH0.0009745526.45874103
Transfer165703222023-02-06 14:23:59575 days ago1675693439IN
OERO: OEUR Token
0 ETH0.0009491225.76822546
Transfer165701652023-02-06 13:52:35575 days ago1675691555IN
OERO: OEUR Token
0 ETH0.000830922.55864529
Transfer165699302023-02-06 13:05:23575 days ago1675688723IN
OERO: OEUR Token
0 ETH0.0008826523.96370321
Transfer165689192023-02-06 9:42:23576 days ago1675676543IN
OERO: OEUR Token
0 ETH0.0006673218.11750396
Transfer165688872023-02-06 9:35:59576 days ago1675676159IN
OERO: OEUR Token
0 ETH0.0006655218.06874075
Transfer165688822023-02-06 9:34:59576 days ago1675676099IN
OERO: OEUR Token
0 ETH0.00067918.43463789
Transfer165498402023-02-03 17:46:23578 days ago1675446383IN
OERO: OEUR Token
0 ETH0.0012570734.1291522
Transfer165479212023-02-03 11:21:47578 days ago1675423307IN
OERO: OEUR Token
0 ETH0.0007004819.01779377
Transfer165478772023-02-03 11:12:59578 days ago1675422779IN
OERO: OEUR Token
0 ETH0.0008459522.96726188
Transfer165478672023-02-03 11:10:47578 days ago1675422647IN
OERO: OEUR Token
0 ETH0.0007779721.12155842
Transfer165478572023-02-03 11:08:35578 days ago1675422515IN
OERO: OEUR Token
0 ETH0.0006596217.90850401
Transfer165478522023-02-03 11:07:35578 days ago1675422455IN
OERO: OEUR Token
0 ETH0.0007175319.48069439
Transfer165478432023-02-03 11:05:47578 days ago1675422347IN
OERO: OEUR Token
0 ETH0.000635417.25103293
Transfer165478412023-02-03 11:05:23578 days ago1675422323IN
OERO: OEUR Token
0 ETH0.0006222416.89376789
Transfer165478342023-02-03 11:03:59578 days ago1675422239IN
OERO: OEUR Token
0 ETH0.0006772918.38827918
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OERO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-05
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-25
*/

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





pragma solidity ^0.8.0;

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

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

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

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

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




pragma solidity ^0.8.0;

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

    function maxTotalSupply() external view returns (uint256);

    // function _viewBlackList(address wallet) external view returns (bool);

    // function addBlackList(address wallet)  external returns (bool);

    // function removeBlackList(address wallet) external returns (bool);

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

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

    event ViewBlackList(address indexed owner, address indexed wallet, bool presenceInTheBlacklist);

    event BlackList(address indexed owner, address indexed wallet, bool presenceInTheBlacklist);
}



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);
}



pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _maxTotalSupply = 1000000000000000000;

    string private _name;
    string private _symbol;

    mapping(address => bool) private _blackList;


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

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

    function maxTotalSupply() public view virtual override returns (uint256) {
        return _maxTotalSupply;
    }
    /**
    * work blackList.
    */   
    // function addBlackList(address wallet) public view virtual override returns (bool) {
    //     _addBlackList(address wallet);
    //     return true;
    // } 
     
    // function removeBlackList(address wallet) public view virtual override returns {
    //     _removeBlackList(address wallet);
    //     return true;
    // }  

    function _addBlackList(address wallet) internal virtual {
        _blackList[wallet] = true;
        address owner = _msgSender();
        // event BlackList(address indexed owner, address indexed wallet, bool value);
        emit ViewBlackList(owner, wallet, true);
        // return true;
    } 
     
    function _removeBlackList(address wallet) internal virtual  {
        _blackList[wallet] = false;
        address owner = _msgSender();
        // event BlackList(address indexed owner, address indexed wallet, bool value);
        emit ViewBlackList(owner, wallet, false);
    }      

    function _viewBlackList(address wallet) internal virtual {
        address owner = _msgSender();
        // require(!_blackList[wallet], "ERC20: This address in black list.");

        bool result = _blackList[wallet];
        emit ViewBlackList(owner, wallet, result);

        // return _blackList[wallet];
    } 

    /**
     * @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();
        require(!_blackList[owner], "ERC20: This address in black list.");
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        require(!_blackList[owner], "ERC20: This address in black list.");
        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();
        require(!_blackList[owner], "ERC20: This address in black list.");
        _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) {
        require(!_blackList[from], "ERC20: This address in black list.");
        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();
        require(!_blackList[owner], "ERC20: This address in black list.");
        _approve(owner, spender, _allowances[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();
        require(!_blackList[owner], "ERC20: This address in black list.");
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _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");
        require(!_blackList[owner], "ERC20: This address in black list.");

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 {
        require(!_blackList[owner], "ERC20: This address in black list.");
        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 {}
}



pragma solidity ^0.8.0;

// import "../ERC20.sol";
// import "../../../utils/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);
    }
}



pragma solidity ^0.8.0;

// import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
// import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
// import "@openzeppelin/[email protected]/access/Ownable.sol";

contract OERO is ERC20, ERC20Burnable, Ownable {
    constructor() ERC20("OERO", "OEUR") {}

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

    function addBlackList(address wallet) public onlyOwner {
        _addBlackList(wallet);
    }

    function removeBlackList(address wallet) public onlyOwner {
        _removeBlackList(wallet);
    }    

    function viewBlackList(address wallet) public onlyOwner {
        _viewBlackList(wallet);
    }          
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"presenceInTheBlacklist","type":"bool"}],"name":"BlackList","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"presenceInTheBlacklist","type":"bool"}],"name":"ViewBlackList","type":"event"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"viewBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670de0b6b3a76400006003553480156200001d57600080fd5b506040805180820182526004808252634f45524f60e01b602080840191825284518086019095528285526327a2aaa960e11b90850152825192939262000065929190620000f4565b5080516200007b906005906020840190620000f4565b50505062000098620000926200009e60201b60201c565b620000a2565b620001d7565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000102906200019a565b90600052602060002090601f01602090048101928262000126576000855562000171565b82601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b506200017f92915062000183565b5090565b5b808211156200017f576000815560010162000184565b600181811c90821680620001af57607f821691505b60208210811415620001d157634e487b7160e01b600052602260045260246000fd5b50919050565b61126d80620001e76000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461026e578063a9059cbb14610281578063cc20967114610294578063dd62ed3e146102a7578063e4997dc5146102ba578063f2fde38b146102cd57600080fd5b806370a0823114610207578063715018a61461023057806379cc6790146102385780638da5cb5b1461024b57806395d89b411461026657600080fd5b80632ab4d052116100ff5780632ab4d052146101b7578063313ce567146101bf57806339509351146101ce57806340c10f19146101e157806342966c68146101f457600080fd5b806306fdde031461013c578063095ea7b31461015a5780630ecb93c01461017d57806318160ddd1461019257806323b872dd146101a4575b600080fd5b6101446102e0565b60405161015191906110eb565b60405180910390f35b61016d6101683660046110a8565b610372565b6040519015158152602001610151565b61019061018b366004611017565b6103c3565b005b6002545b604051908152602001610151565b61016d6101b236600461106c565b6103f9565b600354610196565b60405160068152602001610151565b61016d6101dc3660046110a8565b610454565b6101906101ef3660046110a8565b6104c5565b6101906102023660046110d2565b6104fd565b610196610215366004611017565b6001600160a01b031660009081526020819052604090205490565b610190610507565b6101906102463660046110a8565b61053d565b6007546040516001600160a01b039091168152602001610151565b610144610552565b61016d61027c3660046110a8565b610561565b61016d61028f3660046110a8565b610625565b6101906102a2366004611017565b610663565b6101966102b5366004611039565b610696565b6101906102c8366004611017565b6106fb565b6101906102db366004611017565b61072e565b6060600480546102ef906111e6565b80601f016020809104026020016040519081016040528092919081815260200182805461031b906111e6565b80156103685780601f1061033d57610100808354040283529160200191610368565b820191906000526020600020905b81548152906001019060200180831161034b57829003601f168201915b5050505050905090565b3360008181526006602052604081205490919060ff16156103ae5760405162461bcd60e51b81526004016103a590611140565b60405180910390fd5b6103b98185856107c6565b5060019392505050565b6007546001600160a01b031633146103ed5760405162461bcd60e51b81526004016103a590611182565b6103f681610924565b50565b6001600160a01b03831660009081526006602052604081205460ff16156104325760405162461bcd60e51b81526004016103a590611140565b3361043e8582856109a4565b610449858585610a57565b506001949350505050565b3360008181526006602052604081205490919060ff16156104875760405162461bcd60e51b81526004016103a590611140565b6001600160a01b038082166000908152600160209081526040808320938816835292905220546103b990829086906104c09087906111b7565b6107c6565b6007546001600160a01b031633146104ef5760405162461bcd60e51b81526004016103a590611182565b6104f98282610c5e565b5050565b6103f63382610db6565b6007546001600160a01b031633146105315760405162461bcd60e51b81526004016103a590611182565b61053b6000610efc565b565b6105488233836109a4565b6104f98282610db6565b6060600580546102ef906111e6565b3360008181526006602052604081205490919060ff16156105945760405162461bcd60e51b81526004016103a590611140565b6001600160a01b03808216600090815260016020908152604080832093881683529290522054838110156106185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a5565b61044982868684036107c6565b3360008181526006602052604081205490919060ff16156106585760405162461bcd60e51b81526004016103a590611140565b6103b9818585610a57565b6007546001600160a01b0316331461068d5760405162461bcd60e51b81526004016103a590611182565b6103f681610f4e565b6001600160a01b03821660009081526006602052604081205460ff16156106cf5760405162461bcd60e51b81526004016103a590611140565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031633146107255760405162461bcd60e51b81526004016103a590611182565b6103f681610fa7565b6007546001600160a01b031633146107585760405162461bcd60e51b81526004016103a590611182565b6001600160a01b0381166107bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a5565b6103f681610efc565b6001600160a01b0383166108285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a5565b6001600160a01b0382166108895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a5565b6001600160a01b03831660009081526006602052604090205460ff16156108c25760405162461bcd60e51b81526004016103a590611140565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0381166000908152600660205260408120805460ff1916600117905561094e3390565b9050816001600160a01b0316816001600160a01b03167fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b6001604051610998911515815260200190565b60405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff16156109dd5760405162461bcd60e51b81526004016103a590611140565b60006109e98484610696565b90506000198114610a515781811015610a445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a5565b610a5184848484036107c6565b50505050565b6001600160a01b038316610abb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a5565b6001600160a01b038216610b1d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a5565b6001600160a01b03831660009081526006602052604090205460ff1615610b565760405162461bcd60e51b81526004016103a590611140565b6001600160a01b03831660009081526020819052604090205481811015610bce5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c059084906111b7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c5191815260200190565b60405180910390a3610a51565b6001600160a01b038216610cb45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a5565b60035481600254610cc591906111b7565b1115610d2d5760405162461bcd60e51b815260206004820152603160248201527f45524332303a205f6d6178546f74616c537570706c79203d20312e3030302e3060448201527030302e30303020546f6b656e204f45524f60781b60648201526084016103a5565b8060026000828254610d3f91906111b7565b90915550506001600160a01b03821660009081526020819052604081208054839290610d6c9084906111b7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a5565b6001600160a01b03821660009081526020819052604090205481811015610e8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a5565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610eb99084906111cf565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610917565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03811660008181526006602090815260409182902054915160ff909216801515835233939092909184917fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b9101610917565b6001600160a01b0381166000818152600660209081526040808320805460ff191690555191825233929183917fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b9101610998565b80356001600160a01b038116811461101257600080fd5b919050565b60006020828403121561102957600080fd5b61103282610ffb565b9392505050565b6000806040838503121561104c57600080fd5b61105583610ffb565b915061106360208401610ffb565b90509250929050565b60008060006060848603121561108157600080fd5b61108a84610ffb565b925061109860208501610ffb565b9150604084013590509250925092565b600080604083850312156110bb57600080fd5b6110c483610ffb565b946020939093013593505050565b6000602082840312156110e457600080fd5b5035919050565b600060208083528351808285015260005b81811015611118578581018301518582016040015282016110fc565b8181111561112a576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f45524332303a2054686973206164647265737320696e20626c61636b206c69736040820152613a1760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156111ca576111ca611221565b500190565b6000828210156111e1576111e1611221565b500390565b600181811c908216806111fa57607f821691505b6020821081141561121b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122010778e9352455a100a0dcfda57b14ffbe34dcc63b6a2d93993b08c7352ec6fcf64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d71461026e578063a9059cbb14610281578063cc20967114610294578063dd62ed3e146102a7578063e4997dc5146102ba578063f2fde38b146102cd57600080fd5b806370a0823114610207578063715018a61461023057806379cc6790146102385780638da5cb5b1461024b57806395d89b411461026657600080fd5b80632ab4d052116100ff5780632ab4d052146101b7578063313ce567146101bf57806339509351146101ce57806340c10f19146101e157806342966c68146101f457600080fd5b806306fdde031461013c578063095ea7b31461015a5780630ecb93c01461017d57806318160ddd1461019257806323b872dd146101a4575b600080fd5b6101446102e0565b60405161015191906110eb565b60405180910390f35b61016d6101683660046110a8565b610372565b6040519015158152602001610151565b61019061018b366004611017565b6103c3565b005b6002545b604051908152602001610151565b61016d6101b236600461106c565b6103f9565b600354610196565b60405160068152602001610151565b61016d6101dc3660046110a8565b610454565b6101906101ef3660046110a8565b6104c5565b6101906102023660046110d2565b6104fd565b610196610215366004611017565b6001600160a01b031660009081526020819052604090205490565b610190610507565b6101906102463660046110a8565b61053d565b6007546040516001600160a01b039091168152602001610151565b610144610552565b61016d61027c3660046110a8565b610561565b61016d61028f3660046110a8565b610625565b6101906102a2366004611017565b610663565b6101966102b5366004611039565b610696565b6101906102c8366004611017565b6106fb565b6101906102db366004611017565b61072e565b6060600480546102ef906111e6565b80601f016020809104026020016040519081016040528092919081815260200182805461031b906111e6565b80156103685780601f1061033d57610100808354040283529160200191610368565b820191906000526020600020905b81548152906001019060200180831161034b57829003601f168201915b5050505050905090565b3360008181526006602052604081205490919060ff16156103ae5760405162461bcd60e51b81526004016103a590611140565b60405180910390fd5b6103b98185856107c6565b5060019392505050565b6007546001600160a01b031633146103ed5760405162461bcd60e51b81526004016103a590611182565b6103f681610924565b50565b6001600160a01b03831660009081526006602052604081205460ff16156104325760405162461bcd60e51b81526004016103a590611140565b3361043e8582856109a4565b610449858585610a57565b506001949350505050565b3360008181526006602052604081205490919060ff16156104875760405162461bcd60e51b81526004016103a590611140565b6001600160a01b038082166000908152600160209081526040808320938816835292905220546103b990829086906104c09087906111b7565b6107c6565b6007546001600160a01b031633146104ef5760405162461bcd60e51b81526004016103a590611182565b6104f98282610c5e565b5050565b6103f63382610db6565b6007546001600160a01b031633146105315760405162461bcd60e51b81526004016103a590611182565b61053b6000610efc565b565b6105488233836109a4565b6104f98282610db6565b6060600580546102ef906111e6565b3360008181526006602052604081205490919060ff16156105945760405162461bcd60e51b81526004016103a590611140565b6001600160a01b03808216600090815260016020908152604080832093881683529290522054838110156106185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a5565b61044982868684036107c6565b3360008181526006602052604081205490919060ff16156106585760405162461bcd60e51b81526004016103a590611140565b6103b9818585610a57565b6007546001600160a01b0316331461068d5760405162461bcd60e51b81526004016103a590611182565b6103f681610f4e565b6001600160a01b03821660009081526006602052604081205460ff16156106cf5760405162461bcd60e51b81526004016103a590611140565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031633146107255760405162461bcd60e51b81526004016103a590611182565b6103f681610fa7565b6007546001600160a01b031633146107585760405162461bcd60e51b81526004016103a590611182565b6001600160a01b0381166107bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a5565b6103f681610efc565b6001600160a01b0383166108285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a5565b6001600160a01b0382166108895760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a5565b6001600160a01b03831660009081526006602052604090205460ff16156108c25760405162461bcd60e51b81526004016103a590611140565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0381166000908152600660205260408120805460ff1916600117905561094e3390565b9050816001600160a01b0316816001600160a01b03167fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b6001604051610998911515815260200190565b60405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff16156109dd5760405162461bcd60e51b81526004016103a590611140565b60006109e98484610696565b90506000198114610a515781811015610a445760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103a5565b610a5184848484036107c6565b50505050565b6001600160a01b038316610abb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a5565b6001600160a01b038216610b1d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a5565b6001600160a01b03831660009081526006602052604090205460ff1615610b565760405162461bcd60e51b81526004016103a590611140565b6001600160a01b03831660009081526020819052604090205481811015610bce5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c059084906111b7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c5191815260200190565b60405180910390a3610a51565b6001600160a01b038216610cb45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a5565b60035481600254610cc591906111b7565b1115610d2d5760405162461bcd60e51b815260206004820152603160248201527f45524332303a205f6d6178546f74616c537570706c79203d20312e3030302e3060448201527030302e30303020546f6b656e204f45524f60781b60648201526084016103a5565b8060026000828254610d3f91906111b7565b90915550506001600160a01b03821660009081526020819052604081208054839290610d6c9084906111b7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610e165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a5565b6001600160a01b03821660009081526020819052604090205481811015610e8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a5565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610eb99084906111cf565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610917565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03811660008181526006602090815260409182902054915160ff909216801515835233939092909184917fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b9101610917565b6001600160a01b0381166000818152600660209081526040808320805460ff191690555191825233929183917fec19e96143923d468c9c2cabe1fdc868047fbba0fbaa36e89c0b74efe6e5a51b9101610998565b80356001600160a01b038116811461101257600080fd5b919050565b60006020828403121561102957600080fd5b61103282610ffb565b9392505050565b6000806040838503121561104c57600080fd5b61105583610ffb565b915061106360208401610ffb565b90509250929050565b60008060006060848603121561108157600080fd5b61108a84610ffb565b925061109860208501610ffb565b9150604084013590509250925092565b600080604083850312156110bb57600080fd5b6110c483610ffb565b946020939093013593505050565b6000602082840312156110e457600080fd5b5035919050565b600060208083528351808285015260005b81811015611118578581018301518582016040015282016110fc565b8181111561112a576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f45524332303a2054686973206164647265737320696e20626c61636b206c69736040820152613a1760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156111ca576111ca611221565b500190565b6000828210156111e1576111e1611221565b500390565b600181811c908216806111fa57607f821691505b6020821081141561121b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122010778e9352455a100a0dcfda57b14ffbe34dcc63b6a2d93993b08c7352ec6fcf64736f6c63430008070033

Deployed Bytecode Sourcemap

23847:529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9491:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13451:277;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;13451:277:0;1633:187:1;24050:95:0;;;;;;:::i;:::-;;:::i;:::-;;10610:108;10698:12;;10610:108;;;8116:25:1;;;8104:2;8089:18;10610:108:0;7970:177:1;14308:370:0;;;;;;:::i;:::-;;:::i;10726:114::-;10817:15;;10726:114;;10453:92;;;10536:1;8294:36:1;;8282:2;8267:18;10453:92:0;8152:184:1;15087:316:0;;;;;;:::i;:::-;;:::i;23947:95::-;;;;;;:::i;:::-;;:::i;23019:91::-;;;;;;:::i;:::-;;:::i;12239:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12340:18:0;12313:7;12340:18;;;;;;;;;;;;12239:127;2583:103;;;:::i;23429:164::-;;;;;;:::i;:::-;;:::i;1932:87::-;2005:6;;1932:87;;-1:-1:-1;;;;;2005:6:0;;;1571:51:1;;1559:2;1544:18;1932:87:0;1425:203:1;9710:104:0;;;:::i;15906:514::-;;;;;;:::i;:::-;;:::i;12572:269::-;;;;;;:::i;:::-;;:::i;24266:97::-;;;;;;:::i;:::-;;:::i;12904:227::-;;;;;;:::i;:::-;;:::i;24153:101::-;;;;;;:::i;:::-;;:::i;2841:201::-;;;;;;:::i;:::-;;:::i;9491:100::-;9545:13;9578:5;9571:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9491:100;:::o;13451:277::-;807:10;13534:4;13599:17;;;:10;:17;;;;;;13534:4;;807:10;13599:17;;13598:18;13590:65;;;;-1:-1:-1;;;13590:65:0;;;;;;;:::i;:::-;;;;;;;;;13666:32;13675:5;13682:7;13691:6;13666:8;:32::i;:::-;-1:-1:-1;13716:4:0;;13451:277;-1:-1:-1;;;13451:277:0:o;24050:95::-;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;24116:21:::1;24130:6;24116:13;:21::i;:::-;24050:95:::0;:::o;14308:370::-;-1:-1:-1;;;;;14465:16:0;;14439:4;14465:16;;;:10;:16;;;;;;;;14464:17;14456:64;;;;-1:-1:-1;;;14456:64:0;;;;;;;:::i;:::-;807:10;14572:38;14588:4;807:10;14603:6;14572:15;:38::i;:::-;14621:27;14631:4;14637:2;14641:6;14621:9;:27::i;:::-;-1:-1:-1;14666:4:0;;14308:370;-1:-1:-1;;;;14308:370:0:o;15087:316::-;807:10;15175:4;15240:17;;;:10;:17;;;;;;15175:4;;807:10;15240:17;;15239:18;15231:65;;;;-1:-1:-1;;;15231:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15332:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;15307:66;;15316:5;;15323:7;;15332:40;;15362:10;;15332:40;:::i;:::-;15307:8;:66::i;23947:95::-;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;24017:17:::1;24023:2;24027:6;24017:5;:17::i;:::-;23947:95:::0;;:::o;23019:91::-;23075:27;807:10;23095:6;23075:5;:27::i;2583:103::-;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;2648:30:::1;2675:1;2648:18;:30::i;:::-;2583:103::o:0;23429:164::-;23506:46;23522:7;807:10;23545:6;23506:15;:46::i;:::-;23563:22;23569:7;23578:6;23563:5;:22::i;9710:104::-;9766:13;9799:7;9792:14;;;;;:::i;15906:514::-;807:10;15999:4;16064:17;;;:10;:17;;;;;;15999:4;;807:10;16064:17;;16063:18;16055:65;;;;-1:-1:-1;;;16055:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16158:18:0;;;16131:24;16158:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;16204:35;;;;16196:85;;;;-1:-1:-1;;;16196:85:0;;7406:2:1;16196:85:0;;;7388:21:1;7445:2;7425:18;;;7418:30;7484:34;7464:18;;;7457:62;-1:-1:-1;;;7535:18:1;;;7528:35;7580:19;;16196:85:0;7204:401:1;16196:85:0;16317:60;16326:5;16333:7;16361:15;16342:16;:34;16317:8;:60::i;12572:269::-;807:10;12651:4;12716:17;;;:10;:17;;;;;;12651:4;;807:10;12716:17;;12715:18;12707:65;;;;-1:-1:-1;;;12707:65:0;;;;;;;:::i;:::-;12783:28;12793:5;12800:2;12804:6;12783:9;:28::i;24266:97::-;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;24333:22:::1;24348:6;24333:14;:22::i;12904:227::-:0;-1:-1:-1;;;;;13022:17:0;;12993:7;13022:17;;;:10;:17;;;;;;;;13021:18;13013:65;;;;-1:-1:-1;;;13013:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;13096:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12904:227::o;24153:101::-;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;24222:24:::1;24239:6;24222:16;:24::i;2841:201::-:0;2005:6;;-1:-1:-1;;;;;2005:6:0;807:10;2152:23;2144:68;;;;-1:-1:-1;;;2144:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2930:22:0;::::1;2922:73;;;::::0;-1:-1:-1;;;2922:73:0;;3436:2:1;2922:73:0::1;::::0;::::1;3418:21:1::0;3475:2;3455:18;;;3448:30;3514:34;3494:18;;;3487:62;-1:-1:-1;;;3565:18:1;;;3558:36;3611:19;;2922:73:0::1;3234:402:1::0;2922:73:0::1;3006:28;3025:8;3006:18;:28::i;19807:456::-:0;-1:-1:-1;;;;;19943:19:0;;19935:68;;;;-1:-1:-1;;;19935:68:0;;7001:2:1;19935:68:0;;;6983:21:1;7040:2;7020:18;;;7013:30;7079:34;7059:18;;;7052:62;-1:-1:-1;;;7130:18:1;;;7123:34;7174:19;;19935:68:0;6799:400:1;19935:68:0;-1:-1:-1;;;;;20022:21:0;;20014:68;;;;-1:-1:-1;;;20014:68:0;;3843:2:1;20014:68:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:32;4014:19;;20014:68:0;3641:398:1;20014:68:0;-1:-1:-1;;;;;20102:17:0;;;;;;:10;:17;;;;;;;;20101:18;20093:65;;;;-1:-1:-1;;;20093:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20171:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20223:32;;8116:25:1;;;20223:32:0;;8089:18:1;20223:32:0;;;;;;;;19807:456;;;:::o;11240:302::-;-1:-1:-1;;;;;11307:18:0;;;;;;:10;:18;;;;;:25;;-1:-1:-1;;11307:25:0;11328:4;11307:25;;;11359:12;807:10;;727:98;11359:12;11343:28;;11496:6;-1:-1:-1;;;;;11475:34:0;11489:5;-1:-1:-1;;;;;11475:34:0;;11504:4;11475:34;;;;1798:14:1;1791:22;1773:41;;1761:2;1746:18;;1633:187;11475:34:0;;;;;;;;11296:246;11240:302;:::o;20550:529::-;-1:-1:-1;;;;;20694:17:0;;;;;;:10;:17;;;;;;;;20693:18;20685:65;;;;-1:-1:-1;;;20685:65:0;;;;;;;:::i;:::-;20761:24;20788:25;20798:5;20805:7;20788:9;:25::i;:::-;20761:52;;-1:-1:-1;;20828:16:0;:37;20824:248;;20910:6;20890:16;:26;;20882:68;;;;-1:-1:-1;;;20882:68:0;;4649:2:1;20882:68:0;;;4631:21:1;4688:2;4668:18;;;4661:30;4727:31;4707:18;;;4700:59;4776:18;;20882:68:0;4447:353:1;20882:68:0;20994:51;21003:5;21010:7;21038:6;21019:16;:25;20994:8;:51::i;:::-;20674:405;20550:529;;;:::o;16899:746::-;-1:-1:-1;;;;;17030:18:0;;17022:68;;;;-1:-1:-1;;;17022:68:0;;6595:2:1;17022:68:0;;;6577:21:1;6634:2;6614:18;;;6607:30;6673:34;6653:18;;;6646:62;-1:-1:-1;;;6724:18:1;;;6717:35;6769:19;;17022:68:0;6393:401:1;17022:68:0;-1:-1:-1;;;;;17109:16:0;;17101:64;;;;-1:-1:-1;;;17101:64:0;;2629:2:1;17101:64:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;17101:64:0;2427:399:1;17101:64:0;-1:-1:-1;;;;;17185:16:0;;;;;;:10;:16;;;;;;;;17184:17;17176:64;;;;-1:-1:-1;;;17176:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17326:15:0;;17304:19;17326:15;;;;;;;;;;;17360:21;;;;17352:72;;;;-1:-1:-1;;;17352:72:0;;5007:2:1;17352:72:0;;;4989:21:1;5046:2;5026:18;;;5019:30;5085:34;5065:18;;;5058:62;-1:-1:-1;;;5136:18:1;;;5129:36;5182:19;;17352:72:0;4805:402:1;17352:72:0;-1:-1:-1;;;;;17460:15:0;;;:9;:15;;;;;;;;;;;17478:20;;;17460:38;;17520:13;;;;;;;;:23;;17492:6;;17460:9;17520:23;;17492:6;;17520:23;:::i;:::-;;;;;;;;17576:2;-1:-1:-1;;;;;17561:26:0;17570:4;-1:-1:-1;;;;;17561:26:0;;17580:6;17561:26;;;;8116:25:1;;8104:2;8089:18;;7970:177;17561:26:0;;;;;;;;17600:37;18778:591;17932:513;-1:-1:-1;;;;;18016:21:0;;18008:65;;;;-1:-1:-1;;;18008:65:0;;7812:2:1;18008:65:0;;;7794:21:1;7851:2;7831:18;;;7824:30;7890:33;7870:18;;;7863:61;7941:18;;18008:65:0;7610:355:1;18008:65:0;18117:15;;18107:6;18092:12;;:21;;;;:::i;:::-;:40;;18084:103;;;;-1:-1:-1;;;18084:103:0;;5414:2:1;18084:103:0;;;5396:21:1;5453:2;5433:18;;;5426:30;5492:34;5472:18;;;5465:62;-1:-1:-1;;;5543:18:1;;;5536:47;5600:19;;18084:103:0;5212:413:1;18084:103:0;18278:6;18262:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18295:18:0;;:9;:18;;;;;;;;;;:28;;18317:6;;18295:9;:28;;18317:6;;18295:28;:::i;:::-;;;;-1:-1:-1;;18339:37:0;;8116:25:1;;;-1:-1:-1;;;;;18339:37:0;;;18356:1;;18339:37;;8104:2:1;8089:18;18339:37:0;;;;;;;23947:95;;:::o;18778:591::-;-1:-1:-1;;;;;18862:21:0;;18854:67;;;;-1:-1:-1;;;18854:67:0;;6193:2:1;18854:67:0;;;6175:21:1;6232:2;6212:18;;;6205:30;6271:34;6251:18;;;6244:62;-1:-1:-1;;;6322:18:1;;;6315:31;6363:19;;18854:67:0;5991:397:1;18854:67:0;-1:-1:-1;;;;;19021:18:0;;18996:22;19021:18;;;;;;;;;;;19058:24;;;;19050:71;;;;-1:-1:-1;;;19050:71:0;;3033:2:1;19050:71:0;;;3015:21:1;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:32;3204:19;;19050:71:0;2831:398:1;19050:71:0;-1:-1:-1;;;;;19157:18:0;;:9;:18;;;;;;;;;;19178:23;;;19157:44;;19223:12;:22;;19195:6;;19157:9;19223:22;;19195:6;;19223:22;:::i;:::-;;;;-1:-1:-1;;19263:37:0;;8116:25:1;;;19289:1:0;;-1:-1:-1;;;;;19263:37:0;;;;;8104:2:1;8089:18;19263:37:0;7970:177:1;3202:191:0;3295:6;;;-1:-1:-1;;;;;3312:17:0;;;-1:-1:-1;;;;;;3312:17:0;;;;;;;3345:40;;3295:6;;;3312:17;3295:6;;3345:40;;3276:16;;3345:40;3265:128;3202:191;:::o;11853:322::-;-1:-1:-1;;;;;12056:18:0;;11921:13;12056:18;;;:10;:18;;;;;;;;;;12090:36;;12056:18;;;;1798:14:1;;1791:22;1773:41;;807:10:0;;12056:18;;;;807:10;;12090:36;;1746:18:1;12090:36:0;1633:187:1;11556:283:0;-1:-1:-1;;;;;11627:18:0;;11648:5;11627:18;;;:10;:18;;;;;;;;:26;;-1:-1:-1;;11627:26:0;;;11796:35;1773:41:1;;;807:10:0;;11627:18;807:10;;11796:35;;1746:18:1;11796:35:0;1633:187:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;4044:398::-;4246:2;4228:21;;;4285:2;4265:18;;;4258:30;4324:34;4319:2;4304:18;;4297:62;-1:-1:-1;;;4390:2:1;4375:18;;4368:32;4432:3;4417:19;;4044:398::o;5630:356::-;5832:2;5814:21;;;5851:18;;;5844:30;5910:34;5905:2;5890:18;;5883:62;5977:2;5962:18;;5630:356::o;8341:128::-;8381:3;8412:1;8408:6;8405:1;8402:13;8399:39;;;8418:18;;:::i;:::-;-1:-1:-1;8454:9:1;;8341:128::o;8474:125::-;8514:4;8542:1;8539;8536:8;8533:34;;;8547:18;;:::i;:::-;-1:-1:-1;8584:9:1;;8474:125::o;8604:380::-;8683:1;8679:12;;;;8726;;;8747:61;;8801:4;8793:6;8789:17;8779:27;;8747:61;8854:2;8846:6;8843:14;8823:18;8820:38;8817:161;;;8900:10;8895:3;8891:20;8888:1;8881:31;8935:4;8932:1;8925:15;8963:4;8960:1;8953:15;8817:161;;8604:380;;;:::o;8989:127::-;9050:10;9045:3;9041:20;9038:1;9031:31;9081:4;9078:1;9071:15;9105:4;9102:1;9095:15

Swarm Source

ipfs://10778e9352455a100a0dcfda57b14ffbe34dcc63b6a2d93993b08c7352ec6fcf

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.