ETH Price: $2,525.84 (+2.39%)

Contract

0xa03a3d3E1402fa1BCBBba5d1DC8d900C6CD89038
 

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
Approve197201272024-04-23 19:17:35187 days ago1713899855IN
0xa03a3d3E...C6CD89038
0 ETH0.0003973816.40581315
Approve197201232024-04-23 19:16:47187 days ago1713899807IN
0xa03a3d3E...C6CD89038
0 ETH0.000396816.38218016
Approve169173732023-03-27 7:55:59581 days ago1679903759IN
0xa03a3d3E...C6CD89038
0 ETH0.0008447718.25918659
Approve168833532023-03-22 13:12:59585 days ago1679490779IN
0xa03a3d3E...C6CD89038
0 ETH0.0004107316.95701382
Approve168833532023-03-22 13:12:59585 days ago1679490779IN
0xa03a3d3E...C6CD89038
0 ETH0.0004107316.95701382
Approve168828382023-03-22 11:28:11586 days ago1679484491IN
0xa03a3d3E...C6CD89038
0 ETH0.0005593112.08921947
Approve168634162023-03-19 18:03:47588 days ago1679249027IN
0xa03a3d3E...C6CD89038
0 ETH0.0023050849.84825201
Approve168494352023-03-17 18:54:11590 days ago1679079251IN
0xa03a3d3E...C6CD89038
0 ETH0.0011370124.57561653
Transfer168347242023-03-15 17:17:11592 days ago1678900631IN
0xa03a3d3E...C6CD89038
0 ETH0.0018192438.86190384
Transfer168345892023-03-15 16:50:11592 days ago1678899011IN
0xa03a3d3E...C6CD89038
0 ETH0.002303749.21079765
Approve168345712023-03-15 16:46:35592 days ago1678898795IN
0xa03a3d3E...C6CD89038
0 ETH0.0013503651.21606402
Approve168345692023-03-15 16:46:11592 days ago1678898771IN
0xa03a3d3E...C6CD89038
0 ETH0.0024296552.51494737
Transfer168345622023-03-15 16:44:47592 days ago1678898687IN
0xa03a3d3E...C6CD89038
0 ETH0.0024825853.03194727
Mint168345562023-03-15 16:43:35592 days ago1678898615IN
0xa03a3d3E...C6CD89038
0 ETH0.0018595750.97512068
Approve168328802023-03-15 11:04:11593 days ago1678878251IN
0xa03a3d3E...C6CD89038
0 ETH0.001065623.03222971
Approve168328002023-03-15 10:47:23593 days ago1678877243IN
0xa03a3d3E...C6CD89038
0 ETH0.00109623.68929767
Approve168321802023-03-15 8:41:47593 days ago1678869707IN
0xa03a3d3E...C6CD89038
0 ETH0.0009735621.0427347
Approve168263972023-03-14 13:10:35593 days ago1678799435IN
0xa03a3d3E...C6CD89038
0 ETH0.0021409781.20204953
Approve168263942023-03-14 13:09:59593 days ago1678799399IN
0xa03a3d3E...C6CD89038
0 ETH0.0041299689.26567056
Mint168253082023-03-14 9:31:11594 days ago1678786271IN
0xa03a3d3E...C6CD89038
0 ETH0.0006775918.57447133
Approve168252982023-03-14 9:29:11594 days ago1678786151IN
0xa03a3d3E...C6CD89038
0 ETH0.0007771916.79833343
Mint168252942023-03-14 9:28:23594 days ago1678786103IN
0xa03a3d3E...C6CD89038
0 ETH0.0009067416.92320695
Approve168229512023-03-14 1:33:23594 days ago1678757603IN
0xa03a3d3E...C6CD89038
0 ETH0.0008706818.81900751
Approve168218492023-03-13 21:49:59594 days ago1678744199IN
0xa03a3d3E...C6CD89038
0 ETH0.0011144724.088435
Transfer Ownersh...168213042023-03-13 20:00:23594 days ago1678737623IN
0xa03a3d3E...C6CD89038
0 ETH0.0009714233.84178535
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
xBTC

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-10
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

/**
 * @title BalancerRole
 * @dev Implementation of the {BalancerRole} interface.
 */
contract BalancerRole {
    using Roles for Roles.Role;

    event BalancerAdded(address indexed account);
    event BalancerRemoved(address indexed account);

    Roles.Role private _Balancers;

    constructor () internal {
        _addBalancer(msg.sender);
    }

    modifier onlyBalancer() {
        require(isBalancer(msg.sender), "BalancerRole: caller does not have the Balancer role");
        _;
    }

    function isBalancer(address account) public view returns (bool) {
        return _Balancers.has(account);
    }

    function addBalancer(address account) public onlyBalancer {
        _addBalancer(account);
    }

    function removeBalancer(address account) public onlyBalancer {
        _removeBalancer(account);
    }

    function renounceBalancer() public {
        _removeBalancer(msg.sender);
    }

    function _addBalancer(address account) internal {
        _Balancers.add(account);
        emit BalancerAdded(account);
    }

    function _removeBalancer(address account) internal {
        _Balancers.remove(account);
        emit BalancerRemoved(account);
    }
}

/**
 * @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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external view returns (address);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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 {ERC20PresetBalancerPauser}.
 *
 * 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, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external override view returns (address) {
        return owner();
    }

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

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

    /**
    * @dev Returns the number of decimals used to get its user representation.
    */
    function decimals() public override view returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {ERC20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {ERC20-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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, 'ERC20: transfer amount exceeds allowance')
        );
        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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {ERC20-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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero'));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 {
        require(sender != address(0), 'ERC20: transfer from the zero address');
        require(recipient != address(0), 'ERC20: transfer to the zero address');

        _balances[sender] = _balances[sender].sub(amount, 'ERC20: transfer amount exceeds balance');
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), 'ERC20: mint to the zero address');

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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 {
        require(account != address(0), 'ERC20: burn from the zero address');

        _balances[account] = _balances[account].sub(amount, 'ERC20: burn amount exceeds balance');
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        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);
    }
}

contract xBTC is ERC20("BPEGd BTC", "xBTC"), BalancerRole {
    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner.
    function mint(address _to, uint256 _amount) public onlyBalancer {
        _mint(_to, _amount);
    }

    /// @notice Burns `_amount` token fromo `_from`. Must only be called by the owner.
    function burn(address _from, uint256 _amount) public onlyBalancer {
        _burn(_from, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BalancerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BalancerRemoved","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":"account","type":"address"}],"name":"addBalancer","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":"address","name":"_from","type":"address"},{"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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBalancer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"removeBalancer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBalancer","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020016842504547642042544360b81b815250604051806040016040528060048152602001637842544360e01b815250600062000063620000f960201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000c29060049060208501906200023c565b508051620000d89060059060208401906200023c565b50506006805460ff1916601217905550620000f333620000fd565b620002d8565b3390565b620001188160076200014f60201b62000a661790919060201c565b6040516001600160a01b038216907fdb01981fed1194568b2b052edaf163bb5a120a6f8ab4faab75d2915e9540a08790600090a250565b6200015b8282620001d3565b15620001ae576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200021c5760405162461bcd60e51b81526004018080602001828103825260228152602001806200168a6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027f57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002af57825182559160200191906001019062000292565b50620002bd929150620002c1565b5090565b5b80821115620002bd5760008155600101620002c2565b6113a280620002e86000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063893d20e8116100b8578063a457c2d71161007c578063a457c2d71461037d578063a9059cbb146103a9578063ade518e3146103d5578063cdb53205146103fb578063dd62ed3e14610421578063f2fde38b1461044f57610137565b8063893d20e8146102f75780638da5cb5b1461031b5780638ec127ed1461032357806395d89b41146103495780639dc29fac1461035157610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806370a08231146102c1578063715018a6146102e757806377d9b916146102ef57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610475565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050b565b604080519115158252519081900360200190f35b610201610528565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561052e565b6102516105b5565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105be565b6102bf600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561060c565b005b610201600480360360208110156102d757600080fd5b50356001600160a01b031661065e565b6102bf610679565b6102bf61072d565b6102ff610738565b604080516001600160a01b039092168252519081900360200190f35b6102ff610747565b6102bf6004803603602081101561033957600080fd5b50356001600160a01b0316610756565b6101446107a6565b6102bf6004803603604081101561036757600080fd5b506001600160a01b038135169060200135610807565b6101e56004803603604081101561039357600080fd5b506001600160a01b038135169060200135610855565b6101e5600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356108bd565b6102bf600480360360208110156103eb57600080fd5b50356001600160a01b03166108d1565b6101e56004803603602081101561041157600080fd5b50356001600160a01b031661091e565b6102016004803603604081101561043757600080fd5b506001600160a01b0381358116916020013516610931565b6102bf6004803603602081101561046557600080fd5b50356001600160a01b031661095c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105015780601f106104d657610100808354040283529160200191610501565b820191906000526020600020905b8154815290600101906020018083116104e457829003601f168201915b5050505050905090565b600061051f610518610ae7565b8484610aeb565b50600192915050565b60035490565b600061053b848484610bd7565b6105ab84610547610ae7565b6105a685604051806060016040528060288152602001611260602891396001600160a01b038a16600090815260026020526040812090610585610ae7565b6001600160a01b031681526020810191909152604001600020549190610d29565b610aeb565b5060019392505050565b60065460ff1690565b600061051f6105cb610ae7565b846105a685600260006105dc610ae7565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dc0565b6106153361091e565b6106505760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b61065a8282610e21565b5050565b6001600160a01b031660009081526001602052604090205490565b610681610ae7565b6000546001600160a01b039081169116146106e3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61073633610f07565b565b6000610742610747565b905090565b6000546001600160a01b031690565b61075f3361091e565b61079a5760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b6107a381610f07565b50565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105015780601f106104d657610100808354040283529160200191610501565b6108103361091e565b61084b5760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b61065a8282610f49565b600061051f610862610ae7565b846105a685604051806060016040528060258152602001611348602591396002600061088c610ae7565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d29565b600061051f6108ca610ae7565b8484610bd7565b6108da3361091e565b6109155760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b6107a381611039565b600061092b60078361107b565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610964610ae7565b6000546001600160a01b039081169116146109c6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610a0b5760405162461bcd60e51b81526004018080602001828103825260268152602001806111d16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610a70828261107b565b15610ac2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3390565b6001600160a01b038316610b305760405162461bcd60e51b81526004018080602001828103825260248152602001806112f06024913960400191505060405180910390fd5b6001600160a01b038216610b755760405162461bcd60e51b81526004018080602001828103825260228152602001806111f76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c1c5760405162461bcd60e51b81526004018080602001828103825260258152602001806112cb6025913960400191505060405180910390fd5b6001600160a01b038216610c615760405162461bcd60e51b815260040180806020018281038252602381526020018061118c6023913960400191505060405180910390fd5b610c9e81604051806060016040528060268152602001611219602691396001600160a01b0386166000908152600160205260409020549190610d29565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ccd9082610dc0565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610db85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d7d578181015183820152602001610d65565b50505050905090810190601f168015610daa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e7c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e899082610dc0565b6003556001600160a01b038216600090815260016020526040902054610eaf9082610dc0565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610f126007826110e2565b6040516001600160a01b038216907fe4e3308125d2bc616cc0b0c59ff43b072aad6a1c044540740971eea49f0cf3a590600090a250565b6001600160a01b038216610f8e5760405162461bcd60e51b81526004018080602001828103825260218152602001806112aa6021913960400191505060405180910390fd5b610fcb816040518060600160405280602281526020016111af602291396001600160a01b0385166000908152600160205260409020549190610d29565b6001600160a01b038316600090815260016020526040902055600354610ff19082611149565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b611044600782610a66565b6040516001600160a01b038216907fdb01981fed1194568b2b052edaf163bb5a120a6f8ab4faab75d2915e9540a08790600090a250565b60006001600160a01b0382166110c25760405162461bcd60e51b81526004018080602001828103825260228152602001806112886022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6110ec828261107b565b6111275760405162461bcd60e51b815260040180806020018281038252602181526020018061123f6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000610e1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342616c616e636572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652042616c616e63657220726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207da12311fba3502d5bb327e0e1b8f7cfb228b604d346deaa4ef6f3560152575464736f6c634300060c0033526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063893d20e8116100b8578063a457c2d71161007c578063a457c2d71461037d578063a9059cbb146103a9578063ade518e3146103d5578063cdb53205146103fb578063dd62ed3e14610421578063f2fde38b1461044f57610137565b8063893d20e8146102f75780638da5cb5b1461031b5780638ec127ed1461032357806395d89b41146103495780639dc29fac1461035157610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806370a08231146102c1578063715018a6146102e757806377d9b916146102ef57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610475565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050b565b604080519115158252519081900360200190f35b610201610528565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561052e565b6102516105b5565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105be565b6102bf600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561060c565b005b610201600480360360208110156102d757600080fd5b50356001600160a01b031661065e565b6102bf610679565b6102bf61072d565b6102ff610738565b604080516001600160a01b039092168252519081900360200190f35b6102ff610747565b6102bf6004803603602081101561033957600080fd5b50356001600160a01b0316610756565b6101446107a6565b6102bf6004803603604081101561036757600080fd5b506001600160a01b038135169060200135610807565b6101e56004803603604081101561039357600080fd5b506001600160a01b038135169060200135610855565b6101e5600480360360408110156103bf57600080fd5b506001600160a01b0381351690602001356108bd565b6102bf600480360360208110156103eb57600080fd5b50356001600160a01b03166108d1565b6101e56004803603602081101561041157600080fd5b50356001600160a01b031661091e565b6102016004803603604081101561043757600080fd5b506001600160a01b0381358116916020013516610931565b6102bf6004803603602081101561046557600080fd5b50356001600160a01b031661095c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105015780601f106104d657610100808354040283529160200191610501565b820191906000526020600020905b8154815290600101906020018083116104e457829003601f168201915b5050505050905090565b600061051f610518610ae7565b8484610aeb565b50600192915050565b60035490565b600061053b848484610bd7565b6105ab84610547610ae7565b6105a685604051806060016040528060288152602001611260602891396001600160a01b038a16600090815260026020526040812090610585610ae7565b6001600160a01b031681526020810191909152604001600020549190610d29565b610aeb565b5060019392505050565b60065460ff1690565b600061051f6105cb610ae7565b846105a685600260006105dc610ae7565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dc0565b6106153361091e565b6106505760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b61065a8282610e21565b5050565b6001600160a01b031660009081526001602052604090205490565b610681610ae7565b6000546001600160a01b039081169116146106e3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61073633610f07565b565b6000610742610747565b905090565b6000546001600160a01b031690565b61075f3361091e565b61079a5760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b6107a381610f07565b50565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105015780601f106104d657610100808354040283529160200191610501565b6108103361091e565b61084b5760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b61065a8282610f49565b600061051f610862610ae7565b846105a685604051806060016040528060258152602001611348602591396002600061088c610ae7565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d29565b600061051f6108ca610ae7565b8484610bd7565b6108da3361091e565b6109155760405162461bcd60e51b81526004018080602001828103825260348152602001806113146034913960400191505060405180910390fd5b6107a381611039565b600061092b60078361107b565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610964610ae7565b6000546001600160a01b039081169116146109c6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610a0b5760405162461bcd60e51b81526004018080602001828103825260268152602001806111d16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610a70828261107b565b15610ac2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3390565b6001600160a01b038316610b305760405162461bcd60e51b81526004018080602001828103825260248152602001806112f06024913960400191505060405180910390fd5b6001600160a01b038216610b755760405162461bcd60e51b81526004018080602001828103825260228152602001806111f76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c1c5760405162461bcd60e51b81526004018080602001828103825260258152602001806112cb6025913960400191505060405180910390fd5b6001600160a01b038216610c615760405162461bcd60e51b815260040180806020018281038252602381526020018061118c6023913960400191505060405180910390fd5b610c9e81604051806060016040528060268152602001611219602691396001600160a01b0386166000908152600160205260409020549190610d29565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ccd9082610dc0565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610db85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d7d578181015183820152602001610d65565b50505050905090810190601f168015610daa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610e7c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610e899082610dc0565b6003556001600160a01b038216600090815260016020526040902054610eaf9082610dc0565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610f126007826110e2565b6040516001600160a01b038216907fe4e3308125d2bc616cc0b0c59ff43b072aad6a1c044540740971eea49f0cf3a590600090a250565b6001600160a01b038216610f8e5760405162461bcd60e51b81526004018080602001828103825260218152602001806112aa6021913960400191505060405180910390fd5b610fcb816040518060600160405280602281526020016111af602291396001600160a01b0385166000908152600160205260409020549190610d29565b6001600160a01b038316600090815260016020526040902055600354610ff19082611149565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b611044600782610a66565b6040516001600160a01b038216907fdb01981fed1194568b2b052edaf163bb5a120a6f8ab4faab75d2915e9540a08790600090a250565b60006001600160a01b0382166110c25760405162461bcd60e51b81526004018080602001828103825260228152602001806112886022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6110ec828261107b565b6111275760405162461bcd60e51b815260040180806020018281038252602181526020018061123f6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000610e1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342616c616e636572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652042616c616e63657220726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207da12311fba3502d5bb327e0e1b8f7cfb228b604d346deaa4ef6f3560152575464736f6c634300060c0033

Deployed Bytecode Sourcemap

23022:457:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16049:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17628:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17628:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16617:100;;;:::i;:::-;;;;;;;;;;;;;;;;18260:364;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18260:364:0;;;;;;;;;;;;;;;;;:::i;16461:92::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19032:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19032:210:0;;;;;;;;:::i;23172:102::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23172:102:0;;;;;;;;:::i;:::-;;16779:119;;;;;;;;;;;;;;;;-1:-1:-1;16779:119:0;-1:-1:-1;;;;;16779:119:0;;:::i;4850:148::-;;;:::i;2823:81::-;;;:::i;15885:94::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15885:94:0;;;;;;;;;;;;;;4208:79;;;:::i;2711:104::-;;;;;;;;;;;;;;;;-1:-1:-1;2711:104:0;-1:-1:-1;;;;;2711:104:0;;:::i;16260:96::-;;;:::i;23370:106::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23370:106:0;;;;;;;;:::i;19744:261::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19744:261:0;;;;;;;;:::i;17110:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17110:167:0;;;;;;;;:::i;2605:98::-;;;;;;;;;;;;;;;;-1:-1:-1;2605:98:0;-1:-1:-1;;;;;2605:98:0;;:::i;2484:113::-;;;;;;;;;;;;;;;;-1:-1:-1;2484:113:0;-1:-1:-1;;;;;2484:113:0;;:::i;17339:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17339:143:0;;;;;;;;;;:::i;5153:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5153:244:0;-1:-1:-1;;;;;5153:244:0;;:::i;16049:92::-;16128:5;16121:12;;;;;;;;-1:-1:-1;;16121:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16095:13;;16121:12;;16128:5;;16121:12;;16128:5;16121:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16049:92;:::o;17628:161::-;17703:4;17720:39;17729:12;:10;:12::i;:::-;17743:7;17752:6;17720:8;:39::i;:::-;-1:-1:-1;17777:4:0;17628:161;;;;:::o;16617:100::-;16697:12;;16617:100;:::o;18260:364::-;18359:4;18376:36;18386:6;18394:9;18405:6;18376:9;:36::i;:::-;18423:171;18446:6;18467:12;:10;:12::i;:::-;18494:89;18532:6;18494:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18494:19:0;;;;;;:11;:19;;;;;;18514:12;:10;:12::i;:::-;-1:-1:-1;;;;;18494:33:0;;;;;;;;;;;;-1:-1:-1;18494:33:0;;;:89;:37;:89::i;:::-;18423:8;:171::i;:::-;-1:-1:-1;18612:4:0;18260:364;;;;;:::o;16461:92::-;16536:9;;;;16461:92;:::o;19032:210::-;19112:4;19129:83;19138:12;:10;:12::i;:::-;19152:7;19161:50;19200:10;19161:11;:25;19173:12;:10;:12::i;:::-;-1:-1:-1;;;;;19161:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19161:25:0;;;:34;;;;;;;;;;;:38;:50::i;23172:102::-;2377:22;2388:10;2377;:22::i;:::-;2369:87;;;;-1:-1:-1;;;2369:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23247:19:::1;23253:3;23258:7;23247:5;:19::i;:::-;23172:102:::0;;:::o;16779:119::-;-1:-1:-1;;;;;16872:18:0;16845:7;16872:18;;;:9;:18;;;;;;;16779:119::o;4850:148::-;4430:12;:10;:12::i;:::-;4420:6;;-1:-1:-1;;;;;4420:6:0;;;:22;;;4412:67;;;;;-1:-1:-1;;;4412:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4957:1:::1;4941:6:::0;;4920:40:::1;::::0;-1:-1:-1;;;;;4941:6:0;;::::1;::::0;4920:40:::1;::::0;4957:1;;4920:40:::1;4988:1;4971:19:::0;;-1:-1:-1;;;;;;4971:19:0::1;::::0;;4850:148::o;2823:81::-;2869:27;2885:10;2869:15;:27::i;:::-;2823:81::o;15885:94::-;15937:7;15964;:5;:7::i;:::-;15957:14;;15885:94;:::o;4208:79::-;4246:7;4273:6;-1:-1:-1;;;;;4273:6:0;4208:79;:::o;2711:104::-;2377:22;2388:10;2377;:22::i;:::-;2369:87;;;;-1:-1:-1;;;2369:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2783:24:::1;2799:7;2783:15;:24::i;:::-;2711:104:::0;:::o;16260:96::-;16341:7;16334:14;;;;;;;;-1:-1:-1;;16334:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16308:13;;16334:14;;16341:7;;16334:14;;16341:7;16334:14;;;;;;;;;;;;;;;;;;;;;;;;23370:106;2377:22;2388:10;2377;:22::i;:::-;2369:87;;;;-1:-1:-1;;;2369:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23447:21:::1;23453:5;23460:7;23447:5;:21::i;19744:261::-:0;19829:4;19846:129;19855:12;:10;:12::i;:::-;19869:7;19878:96;19917:15;19878:96;;;;;;;;;;;;;;;;;:11;:25;19890:12;:10;:12::i;:::-;-1:-1:-1;;;;;19878:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19878:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17110:167::-;17188:4;17205:42;17215:12;:10;:12::i;:::-;17229:9;17240:6;17205:9;:42::i;2605:98::-;2377:22;2388:10;2377;:22::i;:::-;2369:87;;;;-1:-1:-1;;;2369:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2674:21:::1;2687:7;2674:12;:21::i;2484:113::-:0;2542:4;2566:23;:10;2581:7;2566:14;:23::i;:::-;2559:30;2484:113;-1:-1:-1;;2484:113:0:o;17339:143::-;-1:-1:-1;;;;;17447:18:0;;;17420:7;17447:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17339:143::o;5153:244::-;4430:12;:10;:12::i;:::-;4420:6;;-1:-1:-1;;;;;4420:6:0;;;:22;;;4412:67;;;;;-1:-1:-1;;;4412:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5242:22:0;::::1;5234:73;;;;-1:-1:-1::0;;;5234:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5344:6;::::0;;5323:38:::1;::::0;-1:-1:-1;;;;;5323:38:0;;::::1;::::0;5344:6;::::1;::::0;5323:38:::1;::::0;::::1;5372:6;:17:::0;;-1:-1:-1;;;;;;5372:17:0::1;-1:-1:-1::0;;;;;5372:17:0;;;::::1;::::0;;;::::1;::::0;;5153:244::o;1214:178::-;1292:18;1296:4;1302:7;1292:3;:18::i;:::-;1291:19;1283:63;;;;;-1:-1:-1;;;1283:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1357:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;1357:27:0;1380:4;1357:27;;;1214:178::o;611:106::-;699:10;611:106;:::o;22676:339::-;-1:-1:-1;;;;;22771:19:0;;22763:68;;;;-1:-1:-1;;;22763:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22850:21:0;;22842:68;;;;-1:-1:-1;;;22842:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22923:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22975:32;;;;;;;;;;;;;;;;;22676:339;;;:::o;20495:472::-;-1:-1:-1;;;;;20594:20:0;;20586:70;;;;-1:-1:-1;;;20586:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20675:23:0;;20667:71;;;;-1:-1:-1;;;20667:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20771;20793:6;20771:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20771:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;20751:17:0;;;;;;;:9;:17;;;;;;:91;;;;20876:20;;;;;;;:32;;20901:6;20876:24;:32::i;:::-;-1:-1:-1;;;;;20853:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;20924:35;;;;;;;20853:20;;20924:35;;;;;;;;;;;;;20495:472;;;:::o;10262:192::-;10348:7;10384:12;10376:6;;;;10368:29;;;;-1:-1:-1;;;10368:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10420:5:0;;;10262:192::o;9359:181::-;9417:7;9449:5;;;9473:6;;;;9465:46;;;;;-1:-1:-1;;;9465:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:1;9359:181;-1:-1:-1;;;9359:181:0:o;21248:308::-;-1:-1:-1;;;;;21324:21:0;;21316:65;;;;;-1:-1:-1;;;21316:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21409:12;;:24;;21426:6;21409:16;:24::i;:::-;21394:12;:39;-1:-1:-1;;;;;21465:18:0;;;;;;:9;:18;;;;;;:30;;21488:6;21465:22;:30::i;:::-;-1:-1:-1;;;;;21444:18:0;;;;;;:9;:18;;;;;;;;:51;;;;21511:37;;;;;;;21444:18;;;;21511:37;;;;;;;;;;21248:308;;:::o;3048:136::-;3110:26;:10;3128:7;3110:17;:26::i;:::-;3152:24;;-1:-1:-1;;;;;3152:24:0;;;;;;;;3048:136;:::o;21888:348::-;-1:-1:-1;;;;;21964:21:0;;21956:67;;;;-1:-1:-1;;;21956:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22057:68;22080:6;22057:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22057:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;22036:18:0;;;;;;:9;:18;;;;;:89;22151:12;;:24;;22168:6;22151:16;:24::i;:::-;22136:12;:39;22191:37;;;;;;;;22217:1;;-1:-1:-1;;;;;22191:37:0;;;;;;;;;;;;21888:348;;:::o;2912:128::-;2971:23;:10;2986:7;2971:14;:23::i;:::-;3010:22;;-1:-1:-1;;;;;3010:22:0;;;;;;;;2912:128;:::o;1750:203::-;1822:4;-1:-1:-1;;;;;1847:21:0;;1839:68;;;;-1:-1:-1;;;1839:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1925:20:0;:11;:20;;;;;;;;;;;;;;;1750:203::o;1472:183::-;1552:18;1556:4;1562:7;1552:3;:18::i;:::-;1544:64;;;;-1:-1:-1;;;1544:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1619:20:0;1642:5;1619:20;;;;;;;;;;;:28;;-1:-1:-1;;1619:28:0;;;1472:183::o;9823:136::-;9881:7;9908:43;9912:1;9915;9908:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://7da12311fba3502d5bb327e0e1b8f7cfb228b604d346deaa4ef6f35601525754

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.