ETH Price: $3,410.43 (+2.85%)

Contract

0x6F1E92fb8a685AaA0710BAD194D7B1aa839F7F8a
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw214699512024-12-24 4:29:2349 mins ago1735014563IN
0x6F1E92fb...a839F7F8a
0 ETH0.000576367.22418604
Deposit214686542024-12-24 0:07:475 hrs ago1734998867IN
0x6F1E92fb...a839F7F8a
0 ETH0.0007325211.0067009
Add Reward214667222024-12-23 17:37:5911 hrs ago1734975479IN
0x6F1E92fb...a839F7F8a
0 ETH0.0006365712.85717574
Withdraw214659322024-12-23 14:58:4714 hrs ago1734965927IN
0x6F1E92fb...a839F7F8a
0 ETH0.0021034726.36896874
Withdraw214653252024-12-23 12:56:2316 hrs ago1734958583IN
0x6F1E92fb...a839F7F8a
0 ETH0.000588877.38203233
Deposit214653142024-12-23 12:54:1116 hrs ago1734958451IN
0x6F1E92fb...a839F7F8a
0 ETH0.000662496.57618511
Deposit214652132024-12-23 12:33:5916 hrs ago1734957239IN
0x6F1E92fb...a839F7F8a
0 ETH0.000815898.10087015
Deposit214639542024-12-23 8:20:5920 hrs ago1734942059IN
0x6F1E92fb...a839F7F8a
0 ETH0.000369945.56072897
Add Reward214631462024-12-23 5:37:3523 hrs ago1734932255IN
0x6F1E92fb...a839F7F8a
0 ETH0.000227934.60369889
Deposit214601922024-12-22 19:41:5933 hrs ago1734896519IN
0x6F1E92fb...a839F7F8a
0 ETH0.000581978.16046026
Add Reward214595742024-12-22 17:37:3535 hrs ago1734889055IN
0x6F1E92fb...a839F7F8a
0 ETH0.000290535.86815259
Add Reward214559922024-12-22 5:37:3547 hrs ago1734845855IN
0x6F1E92fb...a839F7F8a
0 ETH0.000294875.95572499
Add Reward214524242024-12-21 17:37:352 days ago1734802655IN
0x6F1E92fb...a839F7F8a
0 ETH0.000359557.2621356
Withdraw214519452024-12-21 16:01:232 days ago1734796883IN
0x6F1E92fb...a839F7F8a
0 ETH0.000708748.88474941
Deposit214496932024-12-21 8:29:112 days ago1734769751IN
0x6F1E92fb...a839F7F8a
0 ETH0.0007803310.93811107
Add Reward214488402024-12-21 5:37:352 days ago1734759455IN
0x6F1E92fb...a839F7F8a
0 ETH0.000316626.39506049
Add Reward214452692024-12-20 17:37:353 days ago1734716255IN
0x6F1E92fb...a839F7F8a
0 ETH0.0009810819.81557559
Deposit214432822024-12-20 10:57:473 days ago1734692267IN
0x6F1E92fb...a839F7F8a
0 ETH0.0030237628.6533929
Add Reward214416922024-12-20 5:37:473 days ago1734673067IN
0x6F1E92fb...a839F7F8a
0 ETH0.0005102710.30639312
Add Reward214381052024-12-19 17:37:354 days ago1734629855IN
0x6F1E92fb...a839F7F8a
0 ETH0.0014485129.25640688
Withdraw214363502024-12-19 11:44:594 days ago1734608699IN
0x6F1E92fb...a839F7F8a
0 ETH0.0007015813.6594118
Withdraw214363462024-12-19 11:44:114 days ago1734608651IN
0x6F1E92fb...a839F7F8a
0 ETH0.0010072413.43515693
Add Reward214345272024-12-19 5:37:354 days ago1734586655IN
0x6F1E92fb...a839F7F8a
0 ETH0.00048399.77372313
Add Reward214309522024-12-18 17:37:475 days ago1734543467IN
0x6F1E92fb...a839F7F8a
0 ETH0.0010589521.38829519
Add Reward214273772024-12-18 5:37:355 days ago1734500255IN
0x6F1E92fb...a839F7F8a
0 ETH0.0005224710.5527583
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:
OceanStaking

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 7: OceanStaking.sol
pragma solidity >=0.8.0<0.9.0;

import "./SafeMath.sol";
import "./ERC20.sol";
import "./ReentrancyGuard.sol";

contract OceanStaking is ERC20, ReentrancyGuard {
    using SafeMath for uint256;
    IERC20 private _bst;

    uint256 private constant LOCK_DURATION = 60 * 60 * 24 * 2;

    mapping(address => uint256) _lockedUntil;

    event Deposit(address indexed owner, uint256 in_amount, uint256 out_amount);
    event Withdraw(address indexed owner, uint256 in_amount, uint256 out_amount);
    event Reward(address indexed from, uint256 amount);

    constructor(address bst) ERC20("sBlocksquareToken", "sBST") {
        _bst = IERC20(bst);
    }

    function deposit(uint256 amount) public nonReentrant {
        uint256 bstBalance = _bst.balanceOf((address(this)));
        uint256 sbstSupply = totalSupply();
        uint256 amountToMint = (sbstSupply == 0 || bstBalance == 0) ? amount : amount.mul(sbstSupply).div(bstBalance);
        require(_bst.transferFrom(_msgSender(), address(this), amount));
        _mint(_msgSender(), amountToMint);
        _lockedUntil[_msgSender()] = block.timestamp + LOCK_DURATION;
        emit Deposit(_msgSender(), amount, amountToMint);
    }

    function withdraw(uint256 amount) public nonReentrant {
        require(_lockedUntil[_msgSender()] < block.timestamp, "OceanStaking: You need to wait for time lock to expire.");
        uint256 bstBalance = _bst.balanceOf((address(this)));
        uint256 sbstSupply = totalSupply();
        uint256 amountToSend = amount.mul(bstBalance).div(sbstSupply);
        _burn(_msgSender(), amount);
        require(_bst.transfer(_msgSender(), amountToSend));
        emit Withdraw(_msgSender(), amount, amountToSend);
    }

    function addReward(uint256 amount) public {
        require(_bst.transferFrom(_msgSender(), address(this), amount));
        emit Reward(_msgSender(), amount);
    }

    function lockedUntil(address wallet) public view returns(uint256) {
        return _lockedUntil[wallet];
    }

    receive() external payable {
        // Don't allow ether transfers
        revert();
    }
}



File 2 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


File 3 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

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

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


File 5 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


File 6 of 7: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards 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).
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"bst","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"in_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"out_amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Reward","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":false,"internalType":"uint256","name":"in_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"out_amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addReward","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":[],"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":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"lockedUntil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200172038038062001720833981016040819052620000349162000173565b604080518082018252601181527039a13637b1b5b9b8bab0b932aa37b5b2b760791b6020808301918252835180850190945260048452631cd094d560e21b9084015281519192916200008991600391620000cd565b5080516200009f906004906020840190620000cd565b5050600160055550600680546001600160a01b0319166001600160a01b0392909216919091179055620001e0565b828054620000db90620001a3565b90600052602060002090601f016020900481019282620000ff57600085556200014a565b82601f106200011a57805160ff19168380011785556200014a565b828001600101855582156200014a579182015b828111156200014a5782518255916020019190600101906200012d565b50620001589291506200015c565b5090565b5b808211156200015857600081556001016200015d565b60006020828403121562000185578081fd5b81516001600160a01b03811681146200019c578182fd5b9392505050565b600281046001821680620001b857607f821691505b60208210811415620001da57634e487b7160e01b600052602260045260246000fd5b50919050565b61153080620001f06000396000f3fe6080604052600436106100ec5760003560e01c806370a082311161008a578063a457c2d711610059578063a457c2d71461026e578063a9059cbb1461028e578063b6b55f25146102ae578063dd62ed3e146102ce576100f6565b806370a08231146101f957806374de4ec41461021957806395d89b41146102395780639bc289f11461024e576100f6565b806323b872dd116100c657806323b872dd146101755780632e1a7d4d14610195578063313ce567146101b757806339509351146101d9576100f6565b806306fdde03146100fb578063095ea7b31461012657806318160ddd14610153576100f6565b366100f657600080fd5b600080fd5b34801561010757600080fd5b506101106102ee565b60405161011d9190610fb3565b60405180910390f35b34801561013257600080fd5b50610146610141366004610ede565b610380565b60405161011d9190610fa8565b34801561015f57600080fd5b5061016861039d565b60405161011d9190611416565b34801561018157600080fd5b50610146610190366004610ea3565b6103a3565b3480156101a157600080fd5b506101b56101b0366004610f27565b61043c565b005b3480156101c357600080fd5b506101cc61064e565b60405161011d919061142d565b3480156101e557600080fd5b506101466101f4366004610ede565b610653565b34801561020557600080fd5b50610168610214366004610e57565b6106a7565b34801561022557600080fd5b506101b5610234366004610f27565b6106c6565b34801561024557600080fd5b506101106107a5565b34801561025a57600080fd5b50610168610269366004610e57565b6107b4565b34801561027a57600080fd5b50610146610289366004610ede565b6107cf565b34801561029a57600080fd5b506101466102a9366004610ede565b610848565b3480156102ba57600080fd5b506101b56102c9366004610f27565b61085c565b3480156102da57600080fd5b506101686102e9366004610e71565b610a56565b6060600380546102fd906114a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610329906114a9565b80156103765780601f1061034b57610100808354040283529160200191610376565b820191906000526020600020905b81548152906001019060200180831161035957829003601f168201915b5050505050905090565b600061039461038d610a81565b8484610a85565b50600192915050565b60025490565b60006103b0848484610b39565b6001600160a01b0384166000908152600160205260408120816103d1610a81565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561041d5760405162461bcd60e51b8152600401610414906111d7565b60405180910390fd5b61043185610429610a81565b858403610a85565b506001949350505050565b6002600554141561045f5760405162461bcd60e51b81526004016104149061134b565b60026005554260076000610471610a81565b6001600160a01b03166001600160a01b0316815260200190815260200160002054106104af5760405162461bcd60e51b81526004016104149061117a565b6006546040516370a0823160e01b81526000916001600160a01b0316906370a08231906104e0903090600401610f57565b60206040518083038186803b1580156104f857600080fd5b505afa15801561050c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105309190610f3f565b9050600061053c61039d565b905060006105548261054e8686610c63565b90610c76565b9050610567610561610a81565b85610c82565b6006546001600160a01b031663a9059cbb610580610a81565b836040518363ffffffff1660e01b815260040161059e929190610f8f565b602060405180830381600087803b1580156105b857600080fd5b505af11580156105cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f09190610f07565b6105f957600080fd5b610601610a81565b6001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568858360405161063b92919061141f565b60405180910390a2505060016005555050565b601290565b6000610394610660610a81565b84846001600061066e610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546106a2919061143b565b610a85565b6001600160a01b0381166000908152602081905260409020545b919050565b6006546001600160a01b03166323b872dd6106df610a81565b30846040518463ffffffff1660e01b81526004016106ff93929190610f6b565b602060405180830381600087803b15801561071957600080fd5b505af115801561072d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107519190610f07565b61075a57600080fd5b610762610a81565b6001600160a01b03167f619caafabdd75649b302ba8419e48cccf64f37f1983ac4727cfb38b57703ffc98260405161079a9190611416565b60405180910390a250565b6060600480546102fd906114a9565b6001600160a01b031660009081526007602052604090205490565b600080600160006107de610a81565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561082a5760405162461bcd60e51b815260040161041490611382565b61083e610835610a81565b85858403610a85565b5060019392505050565b6000610394610855610a81565b8484610b39565b6002600554141561087f5760405162461bcd60e51b81526004016104149061134b565b60026005556006546040516370a0823160e01b81526000916001600160a01b0316906370a08231906108b5903090600401610f57565b60206040518083038186803b1580156108cd57600080fd5b505afa1580156108e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109059190610f3f565b9050600061091161039d565b90506000811580610920575082155b610937576109328361054e8685610c63565b610939565b835b6006549091506001600160a01b03166323b872dd610955610a81565b30876040518463ffffffff1660e01b815260040161097593929190610f6b565b602060405180830381600087803b15801561098f57600080fd5b505af11580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190610f07565b6109d057600080fd5b6109e16109db610a81565b82610d74565b6109ee6202a3004261143b565b600760006109fa610a81565b6001600160a01b03168152602081019190915260400160002055610a1c610a81565b6001600160a01b03167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15858360405161063b92919061141f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610aab5760405162461bcd60e51b8152600401610414906112ee565b6001600160a01b038216610ad15760405162461bcd60e51b8152600401610414906110c0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b2c908590611416565b60405180910390a3505050565b6001600160a01b038316610b5f5760405162461bcd60e51b815260040161041490611291565b6001600160a01b038216610b855760405162461bcd60e51b815260040161041490611006565b610b90838383610d6f565b6001600160a01b03831660009081526020819052604090205481811015610bc95760405162461bcd60e51b81526004016104149061111d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c0090849061143b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611416565b60405180910390a3610c5d848484610d6f565b50505050565b6000610c6f8284611473565b9392505050565b6000610c6f8284611453565b6001600160a01b038216610ca85760405162461bcd60e51b815260040161041490611234565b610cb482600083610d6f565b6001600160a01b03821660009081526020819052604090205481811015610ced5760405162461bcd60e51b815260040161041490611063565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d1c908490611492565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d5f908690611416565b60405180910390a3610d6f836000845b505050565b6001600160a01b038216610d9a5760405162461bcd60e51b8152600401610414906113df565b610da660008383610d6f565b8060026000828254610db8919061143b565b90915550506001600160a01b03821660009081526020819052604081208054839290610de590849061143b565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e28908590611416565b60405180910390a3610e3c60008383610d6f565b5050565b80356001600160a01b03811681146106c157600080fd5b600060208284031215610e68578081fd5b610c6f82610e40565b60008060408385031215610e83578081fd5b610e8c83610e40565b9150610e9a60208401610e40565b90509250929050565b600080600060608486031215610eb7578081fd5b610ec084610e40565b9250610ece60208501610e40565b9150604084013590509250925092565b60008060408385031215610ef0578182fd5b610ef983610e40565b946020939093013593505050565b600060208284031215610f18578081fd5b81518015158114610c6f578182fd5b600060208284031215610f38578081fd5b5035919050565b600060208284031215610f50578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610fdf57858101830151858201604001528201610fc3565b81811115610ff05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526037908201527f4f6365616e5374616b696e673a20596f75206e65656420746f2077616974206660408201527f6f722074696d65206c6f636b20746f206578706972652e000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b6000821982111561144e5761144e6114e4565b500190565b60008261146e57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561148d5761148d6114e4565b500290565b6000828210156114a4576114a46114e4565b500390565b6002810460018216806114bd57607f821691505b602082108114156114de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e73acd96a244bc4d7c25cd261e9f1d81749ffce1efcaeece72898231b6d936fd64736f6c63430008000033000000000000000000000000509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c806370a082311161008a578063a457c2d711610059578063a457c2d71461026e578063a9059cbb1461028e578063b6b55f25146102ae578063dd62ed3e146102ce576100f6565b806370a08231146101f957806374de4ec41461021957806395d89b41146102395780639bc289f11461024e576100f6565b806323b872dd116100c657806323b872dd146101755780632e1a7d4d14610195578063313ce567146101b757806339509351146101d9576100f6565b806306fdde03146100fb578063095ea7b31461012657806318160ddd14610153576100f6565b366100f657600080fd5b600080fd5b34801561010757600080fd5b506101106102ee565b60405161011d9190610fb3565b60405180910390f35b34801561013257600080fd5b50610146610141366004610ede565b610380565b60405161011d9190610fa8565b34801561015f57600080fd5b5061016861039d565b60405161011d9190611416565b34801561018157600080fd5b50610146610190366004610ea3565b6103a3565b3480156101a157600080fd5b506101b56101b0366004610f27565b61043c565b005b3480156101c357600080fd5b506101cc61064e565b60405161011d919061142d565b3480156101e557600080fd5b506101466101f4366004610ede565b610653565b34801561020557600080fd5b50610168610214366004610e57565b6106a7565b34801561022557600080fd5b506101b5610234366004610f27565b6106c6565b34801561024557600080fd5b506101106107a5565b34801561025a57600080fd5b50610168610269366004610e57565b6107b4565b34801561027a57600080fd5b50610146610289366004610ede565b6107cf565b34801561029a57600080fd5b506101466102a9366004610ede565b610848565b3480156102ba57600080fd5b506101b56102c9366004610f27565b61085c565b3480156102da57600080fd5b506101686102e9366004610e71565b610a56565b6060600380546102fd906114a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610329906114a9565b80156103765780601f1061034b57610100808354040283529160200191610376565b820191906000526020600020905b81548152906001019060200180831161035957829003601f168201915b5050505050905090565b600061039461038d610a81565b8484610a85565b50600192915050565b60025490565b60006103b0848484610b39565b6001600160a01b0384166000908152600160205260408120816103d1610a81565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561041d5760405162461bcd60e51b8152600401610414906111d7565b60405180910390fd5b61043185610429610a81565b858403610a85565b506001949350505050565b6002600554141561045f5760405162461bcd60e51b81526004016104149061134b565b60026005554260076000610471610a81565b6001600160a01b03166001600160a01b0316815260200190815260200160002054106104af5760405162461bcd60e51b81526004016104149061117a565b6006546040516370a0823160e01b81526000916001600160a01b0316906370a08231906104e0903090600401610f57565b60206040518083038186803b1580156104f857600080fd5b505afa15801561050c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105309190610f3f565b9050600061053c61039d565b905060006105548261054e8686610c63565b90610c76565b9050610567610561610a81565b85610c82565b6006546001600160a01b031663a9059cbb610580610a81565b836040518363ffffffff1660e01b815260040161059e929190610f8f565b602060405180830381600087803b1580156105b857600080fd5b505af11580156105cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f09190610f07565b6105f957600080fd5b610601610a81565b6001600160a01b03167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568858360405161063b92919061141f565b60405180910390a2505060016005555050565b601290565b6000610394610660610a81565b84846001600061066e610a81565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546106a2919061143b565b610a85565b6001600160a01b0381166000908152602081905260409020545b919050565b6006546001600160a01b03166323b872dd6106df610a81565b30846040518463ffffffff1660e01b81526004016106ff93929190610f6b565b602060405180830381600087803b15801561071957600080fd5b505af115801561072d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107519190610f07565b61075a57600080fd5b610762610a81565b6001600160a01b03167f619caafabdd75649b302ba8419e48cccf64f37f1983ac4727cfb38b57703ffc98260405161079a9190611416565b60405180910390a250565b6060600480546102fd906114a9565b6001600160a01b031660009081526007602052604090205490565b600080600160006107de610a81565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561082a5760405162461bcd60e51b815260040161041490611382565b61083e610835610a81565b85858403610a85565b5060019392505050565b6000610394610855610a81565b8484610b39565b6002600554141561087f5760405162461bcd60e51b81526004016104149061134b565b60026005556006546040516370a0823160e01b81526000916001600160a01b0316906370a08231906108b5903090600401610f57565b60206040518083038186803b1580156108cd57600080fd5b505afa1580156108e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109059190610f3f565b9050600061091161039d565b90506000811580610920575082155b610937576109328361054e8685610c63565b610939565b835b6006549091506001600160a01b03166323b872dd610955610a81565b30876040518463ffffffff1660e01b815260040161097593929190610f6b565b602060405180830381600087803b15801561098f57600080fd5b505af11580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190610f07565b6109d057600080fd5b6109e16109db610a81565b82610d74565b6109ee6202a3004261143b565b600760006109fa610a81565b6001600160a01b03168152602081019190915260400160002055610a1c610a81565b6001600160a01b03167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15858360405161063b92919061141f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610aab5760405162461bcd60e51b8152600401610414906112ee565b6001600160a01b038216610ad15760405162461bcd60e51b8152600401610414906110c0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610b2c908590611416565b60405180910390a3505050565b6001600160a01b038316610b5f5760405162461bcd60e51b815260040161041490611291565b6001600160a01b038216610b855760405162461bcd60e51b815260040161041490611006565b610b90838383610d6f565b6001600160a01b03831660009081526020819052604090205481811015610bc95760405162461bcd60e51b81526004016104149061111d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c0090849061143b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c4a9190611416565b60405180910390a3610c5d848484610d6f565b50505050565b6000610c6f8284611473565b9392505050565b6000610c6f8284611453565b6001600160a01b038216610ca85760405162461bcd60e51b815260040161041490611234565b610cb482600083610d6f565b6001600160a01b03821660009081526020819052604090205481811015610ced5760405162461bcd60e51b815260040161041490611063565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d1c908490611492565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d5f908690611416565b60405180910390a3610d6f836000845b505050565b6001600160a01b038216610d9a5760405162461bcd60e51b8152600401610414906113df565b610da660008383610d6f565b8060026000828254610db8919061143b565b90915550506001600160a01b03821660009081526020819052604081208054839290610de590849061143b565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e28908590611416565b60405180910390a3610e3c60008383610d6f565b5050565b80356001600160a01b03811681146106c157600080fd5b600060208284031215610e68578081fd5b610c6f82610e40565b60008060408385031215610e83578081fd5b610e8c83610e40565b9150610e9a60208401610e40565b90509250929050565b600080600060608486031215610eb7578081fd5b610ec084610e40565b9250610ece60208501610e40565b9150604084013590509250925092565b60008060408385031215610ef0578182fd5b610ef983610e40565b946020939093013593505050565b600060208284031215610f18578081fd5b81518015158114610c6f578182fd5b600060208284031215610f38578081fd5b5035919050565b600060208284031215610f50578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015610fdf57858101830151858201604001528201610fc3565b81811115610ff05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526037908201527f4f6365616e5374616b696e673a20596f75206e65656420746f2077616974206660408201527f6f722074696d65206c6f636b20746f206578706972652e000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b6000821982111561144e5761144e6114e4565b500190565b60008261146e57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561148d5761148d6114e4565b500290565b6000828210156114a4576114a46114e4565b500390565b6002810460018216806114bd57607f821691505b602082108114156114de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e73acd96a244bc4d7c25cd261e9f1d81749ffce1efcaeece72898231b6d936fd64736f6c63430008000033

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

000000000000000000000000509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a

-----Decoded View---------------
Arg [0] : bst (address): 0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000509a38b7a1cc0dcd83aa9d06214663d9ec7c7f4a


Deployed Bytecode Sourcemap

112:1981:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2076:8;;;112:1981;;;;2120:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4217:166;;;;;;;;;;-1:-1:-1;4217:166:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3208:106::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4850:478::-;;;;;;;;;;-1:-1:-1;4850:478:1;;;;;:::i;:::-;;:::i;1191:516:4:-;;;;;;;;;;-1:-1:-1;1191:516:4;;;;;:::i;:::-;;:::i;:::-;;3057:91:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5723:212::-;;;;;;;;;;-1:-1:-1;5723:212:1;;;;;:::i;:::-;;:::i;3372:125::-;;;;;;;;;;-1:-1:-1;3372:125:1;;;;;:::i;:::-;;:::i;1713:165:4:-;;;;;;;;;;-1:-1:-1;1713:165:4;;;;;:::i;:::-;;:::i;2331:102:1:-;;;;;;;;;;;;;:::i;1884:110:4:-;;;;;;;;;;-1:-1:-1;1884:110:4;;;;;:::i;:::-;;:::i;6422:405:1:-;;;;;;;;;;-1:-1:-1;6422:405:1;;;;;:::i;:::-;;:::i;3700:172::-;;;;;;;;;;-1:-1:-1;3700:172:1;;;;;:::i;:::-;;:::i;656:529:4:-;;;;;;;;;;-1:-1:-1;656:529:4;;;;;:::i;:::-;;:::i;3930:149:1:-;;;;;;;;;;-1:-1:-1;3930:149:1;;;;;:::i;:::-;;:::i;2120:98::-;2174:13;2206:5;2199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2120:98;:::o;4217:166::-;4300:4;4316:39;4325:12;:10;:12::i;:::-;4339:7;4348:6;4316:8;:39::i;:::-;-1:-1:-1;4372:4:1;4217:166;;;;:::o;3208:106::-;3295:12;;3208:106;:::o;4850:478::-;4986:4;5002:36;5012:6;5020:9;5031:6;5002:9;:36::i;:::-;-1:-1:-1;;;;;5076:19:1;;5049:24;5076:19;;;:11;:19;;;;;5049:24;5096:12;:10;:12::i;:::-;-1:-1:-1;;;;;5076:33:1;-1:-1:-1;;;;;5076:33:1;;;;;;;;;;;;;5049:60;;5147:6;5127:16;:26;;5119:79;;;;-1:-1:-1;;;5119:79:1;;;;;;;:::i;:::-;;;;;;;;;5232:57;5241:6;5249:12;:10;:12::i;:::-;5282:6;5263:16;:25;5232:8;:57::i;:::-;-1:-1:-1;5317:4:1;;4850:478;-1:-1:-1;;;;4850:478:1:o;1191:516:4:-;1744:1:5;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:5;;;;;;;:::i;:::-;1744:1;2455:7;:18;1292:15:4::1;1263:12;:26;1276:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;1263:26:4::1;-1:-1:-1::0;;;;;1263:26:4::1;;;;;;;;;;;;;:44;1255:112;;;;-1:-1:-1::0;;;1255:112:4::1;;;;;;;:::i;:::-;1398:4;::::0;:31:::1;::::0;-1:-1:-1;;;1398:31:4;;1377:18:::1;::::0;-1:-1:-1;;;;;1398:4:4::1;::::0;:14:::1;::::0;:31:::1;::::0;1422:4:::1;::::0;1398:31:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1377:52;;1439:18;1460:13;:11;:13::i;:::-;1439:34:::0;-1:-1:-1;1483:20:4::1;1506:38;1439:34:::0;1506:22:::1;:6:::0;1517:10;1506::::1;:22::i;:::-;:26:::0;::::1;:38::i;:::-;1483:61;;1554:27;1560:12;:10;:12::i;:::-;1574:6;1554:5;:27::i;:::-;1599:4;::::0;-1:-1:-1;;;;;1599:4:4::1;:13;1613:12;:10;:12::i;:::-;1627;1599:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1591:50;;;::::0;::::1;;1665:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;1656:44:4::1;;1679:6;1687:12;1656:44;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1701:1:5;2628:7;:22;-1:-1:-1;;1191:516:4:o;3057:91:1:-;3139:2;3057:91;:::o;5723:212::-;5811:4;5827:80;5836:12;:10;:12::i;:::-;5850:7;5896:10;5859:11;:25;5871:12;:10;:12::i;:::-;-1:-1:-1;;;;;5859:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;5859:25:1;;;:34;;;;;;;;;;:47;;;;:::i;:::-;5827:8;:80::i;3372:125::-;-1:-1:-1;;;;;3472:18:1;;3446:7;3472:18;;;;;;;;;;;3372:125;;;;:::o;1713:165:4:-;1773:4;;-1:-1:-1;;;;;1773:4:4;:17;1791:12;:10;:12::i;:::-;1813:4;1820:6;1773:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1765:63;;;;;;1850:12;:10;:12::i;:::-;-1:-1:-1;;;;;1843:28:4;;1864:6;1843:28;;;;;;:::i;:::-;;;;;;;;1713:165;:::o;2331:102:1:-;2387:13;2419:7;2412:14;;;;;:::i;1884:110:4:-;-1:-1:-1;;;;;1967:20:4;1941:7;1967:20;;;:12;:20;;;;;;;1884:110::o;6422:405:1:-;6515:4;6531:24;6558:11;:25;6570:12;:10;:12::i;:::-;-1:-1:-1;;;;;6558:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;6558:25:1;;;:34;;;;;;;;;;;-1:-1:-1;6610:35:1;;;;6602:85;;;;-1:-1:-1;;;6602:85:1;;;;;;;:::i;:::-;6721:67;6730:12;:10;:12::i;:::-;6744:7;6772:15;6753:16;:34;6721:8;:67::i;:::-;-1:-1:-1;6816:4:1;;6422:405;-1:-1:-1;;;6422:405:1:o;3700:172::-;3786:4;3802:42;3812:12;:10;:12::i;:::-;3826:9;3837:6;3802:9;:42::i;656:529:4:-;1744:1:5;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:5;;;;;;;:::i;:::-;1744:1;2455:7;:18;740:4:4::1;::::0;:31:::1;::::0;-1:-1:-1;;;740:31:4;;719:18:::1;::::0;-1:-1:-1;;;;;740:4:4::1;::::0;:14:::1;::::0;:31:::1;::::0;764:4:::1;::::0;740:31:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;719:52;;781:18;802:13;:11;:13::i;:::-;781:34:::0;-1:-1:-1;825:20:4::1;849:15:::0;;;:34:::1;;-1:-1:-1::0;868:15:4;;849:34:::1;848:86;;896:38;923:10:::0;896:22:::1;:6:::0;907:10;896::::1;:22::i;:38::-;848:86;;;887:6;848:86;952:4;::::0;825:109;;-1:-1:-1;;;;;;952:4:4::1;:17;970:12;:10;:12::i;:::-;992:4;999:6;952:54;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;944:63;;;::::0;::::1;;1017:33;1023:12;:10;:12::i;:::-;1037;1017:5;:33::i;:::-;1089:31;265:16;1089:15;:31;:::i;:::-;1060:12;:26;1073:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;1060:26:4::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;1060:26:4;:60;1143:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1135:43:4::1;;1157:6;1165:12;1135:43;;;;;;;:::i;3930:149:1:-:0;-1:-1:-1;;;;;4045:18:1;;;4019:7;4045:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3930:149::o;640:96:0:-;719:10;640:96;:::o;9998:370:1:-;-1:-1:-1;;;;;10129:19:1;;10121:68;;;;-1:-1:-1;;;10121:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;10207:21:1;;10199:68;;;;-1:-1:-1;;;10199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;10278:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10329:32;;;;;10308:6;;10329:32;:::i;:::-;;;;;;;;9998:370;;;:::o;7301:713::-;-1:-1:-1;;;;;7436:20:1;;7428:70;;;;-1:-1:-1;;;7428:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7516:23:1;;7508:71;;;;-1:-1:-1;;;7508:71:1;;;;;;;:::i;:::-;7590:47;7611:6;7619:9;7630:6;7590:20;:47::i;:::-;-1:-1:-1;;;;;7672:17:1;;7648:21;7672:17;;;;;;;;;;;7707:23;;;;7699:74;;;;-1:-1:-1;;;7699:74:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;7807:17:1;;;:9;:17;;;;;;;;;;;7827:22;;;7807:42;;7869:20;;;;;;;;:30;;7843:6;;7807:9;7869:30;;7843:6;;7869:30;:::i;:::-;;;;;;;;7932:9;-1:-1:-1;;;;;7915:35:1;7924:6;-1:-1:-1;;;;;7915:35:1;;7943:6;7915:35;;;;;;:::i;:::-;;;;;;;;7961:46;7981:6;7989:9;8000:6;7961:19;:46::i;:::-;7301:713;;;;:::o;3382:96:6:-;3440:7;3466:5;3470:1;3466;:5;:::i;:::-;3459:12;3382:96;-1:-1:-1;;;3382:96:6:o;3767:::-;3825:7;3851:5;3855:1;3851;:5;:::i;8999:576:1:-;-1:-1:-1;;;;;9082:21:1;;9074:67;;;;-1:-1:-1;;;9074:67:1;;;;;;;:::i;:::-;9152:49;9173:7;9190:1;9194:6;9152:20;:49::i;:::-;-1:-1:-1;;;;;9237:18:1;;9212:22;9237:18;;;;;;;;;;;9273:24;;;;9265:71;;;;-1:-1:-1;;;9265:71:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;9370:18:1;;:9;:18;;;;;;;;;;9391:23;;;9370:44;;9434:12;:22;;9408:6;;9370:9;9434:22;;9408:6;;9434:22;:::i;:::-;;;;-1:-1:-1;;9472:37:1;;9498:1;;-1:-1:-1;;;;;9472:37:1;;;;;;;9502:6;;9472:37;:::i;:::-;;;;;;;;9520:48;9540:7;9557:1;9561:6;9520:48;8999:576;;;:::o;8290:389::-;-1:-1:-1;;;;;8373:21:1;;8365:65;;;;-1:-1:-1;;;8365:65:1;;;;;;;:::i;:::-;8441:49;8470:1;8474:7;8483:6;8441:20;:49::i;:::-;8517:6;8501:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8533:18:1;;:9;:18;;;;;;;;;;:28;;8555:6;;8533:9;:28;;8555:6;;8533:28;:::i;:::-;;;;-1:-1:-1;;8576:37:1;;-1:-1:-1;;;;;8576:37:1;;;8593:1;;8576:37;;;;8606:6;;8576:37;:::i;:::-;;;;;;;;8624:48;8652:1;8656:7;8665:6;8624:19;:48::i;:::-;8290:389;;:::o;14:198:7:-;84:20;;-1:-1:-1;;;;;133:54:7;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:7:o;1317:297::-;;1437:2;1425:9;1416:7;1412:23;1408:32;1405:2;;;1458:6;1450;1443:22;1405:2;1495:9;1489:16;1548:5;1541:13;1534:21;1527:5;1524:32;1514:2;;1575:6;1567;1560:22;1619:190;;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;-1:-1:-1;1780:23:7;;1689:120;-1:-1:-1;1689:120:7:o;1814:194::-;;1937:2;1925:9;1916:7;1912:23;1908:32;1905:2;;;1958:6;1950;1943:22;1905:2;-1:-1:-1;1986:16:7;;1895:113;-1:-1:-1;1895:113:7:o;2013:226::-;-1:-1:-1;;;;;2177:55:7;;;;2159:74;;2147:2;2132:18;;2114:125::o;2244:398::-;-1:-1:-1;;;;;2525:15:7;;;2507:34;;2577:15;;;;2572:2;2557:18;;2550:43;2624:2;2609:18;;2602:34;;;;2434:2;2419:18;;2401:241::o;2647:297::-;-1:-1:-1;;;;;2839:55:7;;;;2821:74;;2926:2;2911:18;;2904:34;2809:2;2794:18;;2776:168::o;2949:187::-;3114:14;;3107:22;3089:41;;3077:2;3062:18;;3044:92::o;3141:603::-;;3282:2;3311;3300:9;3293:21;3343:6;3337:13;3386:6;3381:2;3370:9;3366:18;3359:34;3411:4;3424:140;3438:6;3435:1;3432:13;3424:140;;;3533:14;;;3529:23;;3523:30;3499:17;;;3518:2;3495:26;3488:66;3453:10;;3424:140;;;3582:6;3579:1;3576:13;3573:2;;;3652:4;3647:2;3638:6;3627:9;3623:22;3619:31;3612:45;3573:2;-1:-1:-1;3728:2:7;3707:15;-1:-1:-1;;3703:29:7;3688:45;;;;3735:2;3684:54;;3262:482;-1:-1:-1;;;3262:482:7:o;3749:399::-;3951:2;3933:21;;;3990:2;3970:18;;;3963:30;4029:34;4024:2;4009:18;;4002:62;4100:5;4095:2;4080:18;;4073:33;4138:3;4123:19;;3923:225::o;4153:398::-;4355:2;4337:21;;;4394:2;4374:18;;;4367:30;4433:34;4428:2;4413:18;;4406:62;4504:4;4499:2;4484:18;;4477:32;4541:3;4526:19;;4327:224::o;4556:398::-;4758:2;4740:21;;;4797:2;4777:18;;;4770:30;4836:34;4831:2;4816:18;;4809:62;4907:4;4902:2;4887:18;;4880:32;4944:3;4929:19;;4730:224::o;4959:402::-;5161:2;5143:21;;;5200:2;5180:18;;;5173:30;5239:34;5234:2;5219:18;;5212:62;5310:8;5305:2;5290:18;;5283:36;5351:3;5336:19;;5133:228::o;5366:419::-;5568:2;5550:21;;;5607:2;5587:18;;;5580:30;5646:34;5641:2;5626:18;;5619:62;5717:25;5712:2;5697:18;;5690:53;5775:3;5760:19;;5540:245::o;5790:404::-;5992:2;5974:21;;;6031:2;6011:18;;;6004:30;6070:34;6065:2;6050:18;;6043:62;6141:10;6136:2;6121:18;;6114:38;6184:3;6169:19;;5964:230::o;6199:397::-;6401:2;6383:21;;;6440:2;6420:18;;;6413:30;6479:34;6474:2;6459:18;;6452:62;6550:3;6545:2;6530:18;;6523:31;6586:3;6571:19;;6373:223::o;6601:401::-;6803:2;6785:21;;;6842:2;6822:18;;;6815:30;6881:34;6876:2;6861:18;;6854:62;6952:7;6947:2;6932:18;;6925:35;6992:3;6977:19;;6775:227::o;7007:400::-;7209:2;7191:21;;;7248:2;7228:18;;;7221:30;7287:34;7282:2;7267:18;;7260:62;7358:6;7353:2;7338:18;;7331:34;7397:3;7382:19;;7181:226::o;7412:355::-;7614:2;7596:21;;;7653:2;7633:18;;;7626:30;7692:33;7687:2;7672:18;;7665:61;7758:2;7743:18;;7586:181::o;7772:401::-;7974:2;7956:21;;;8013:2;7993:18;;;7986:30;8052:34;8047:2;8032:18;;8025:62;8123:7;8118:2;8103:18;;8096:35;8163:3;8148:19;;7946:227::o;8178:355::-;8380:2;8362:21;;;8419:2;8399:18;;;8392:30;8458:33;8453:2;8438:18;;8431:61;8524:2;8509:18;;8352:181::o;8538:177::-;8684:25;;;8672:2;8657:18;;8639:76::o;8720:248::-;8894:25;;;8950:2;8935:18;;8928:34;8882:2;8867:18;;8849:119::o;8973:184::-;9145:4;9133:17;;;;9115:36;;9103:2;9088:18;;9070:87::o;9162:128::-;;9233:1;9229:6;9226:1;9223:13;9220:2;;;9239:18;;:::i;:::-;-1:-1:-1;9275:9:7;;9210:80::o;9295:274::-;;9361:1;9351:2;;-1:-1:-1;;;9393:1:7;9386:88;9497:4;9494:1;9487:15;9525:4;9522:1;9515:15;9351:2;-1:-1:-1;9554:9:7;;9341:228::o;9574:168::-;;9680:1;9676;9672:6;9668:14;9665:1;9662:21;9657:1;9650:9;9643:17;9639:45;9636:2;;;9687:18;;:::i;:::-;-1:-1:-1;9727:9:7;;9626:116::o;9747:125::-;;9815:1;9812;9809:8;9806:2;;;9820:18;;:::i;:::-;-1:-1:-1;9857:9:7;;9796:76::o;9877:437::-;9962:1;9952:12;;10009:1;9999:12;;;10020:2;;10074:4;10066:6;10062:17;10052:27;;10020:2;10127;10119:6;10116:14;10096:18;10093:38;10090:2;;;-1:-1:-1;;;10161:1:7;10154:88;10265:4;10262:1;10255:15;10293:4;10290:1;10283:15;10090:2;;9932:382;;;:::o;10319:184::-;-1:-1:-1;;;10368:1:7;10361:88;10468:4;10465:1;10458:15;10492:4;10489:1;10482:15

Swarm Source

ipfs://e73acd96a244bc4d7c25cd261e9f1d81749ffce1efcaeece72898231b6d936fd

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.