POL Price: $0.708698 (+1.87%)
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Unstake543469462024-03-06 20:53:01275 days ago1709758381IN
0x2F3E9e54...10638CFC2
0 POL0.0086424776.89857239
Unstake491833422023-10-26 17:48:02407 days ago1698342482IN
0x2F3E9e54...10638CFC2
0 POL0.0085686776.24186069
Claim491833232023-10-26 17:47:22407 days ago1698342442IN
0x2F3E9e54...10638CFC2
0 POL0.0052142175.77702922
Stake491801302023-10-26 15:54:05407 days ago1698335645IN
0x2F3E9e54...10638CFC2
0 POL0.02136743103.05653405
Unstake460030822023-08-07 3:18:33487 days ago1691378313IN
0x2F3E9e54...10638CFC2
0 POL0.0088802675.77021736
Unstake452748242023-07-19 18:54:20506 days ago1689792860IN
0x2F3E9e54...10638CFC2
0 POL0.00421662146
Unstake435618542023-06-05 15:15:19550 days ago1685978119IN
0x2F3E9e54...10638CFC2
0 POL0.02449486182.40549685
Unstake433116602023-05-30 2:45:14556 days ago1685414714IN
0x2F3E9e54...10638CFC2
0 POL0.02102439162.35055724
Unstake432657722023-05-28 22:45:10558 days ago1685313910IN
0x2F3E9e54...10638CFC2
0 POL0.01906867141.99832134
Unstake431797442023-05-26 18:14:35560 days ago1685124875IN
0x2F3E9e54...10638CFC2
0 POL0.02175465162
Unstake420150022023-04-27 9:30:54589 days ago1682587854IN
0x2F3E9e54...10638CFC2
0 POL0.06451263480.4050907
Unstake412127582023-04-06 13:08:24610 days ago1680786504IN
0x2F3E9e54...10638CFC2
0 POL0.0278566215.12885148
Unstake406532482023-03-22 23:00:02625 days ago1679526002IN
0x2F3E9e54...10638CFC2
0 POL0.011709287.20252118
Unstake406153272023-03-21 22:30:18626 days ago1679437818IN
0x2F3E9e54...10638CFC2
0 POL0.0121686390.60785028
Unstake405789242023-03-20 21:20:00627 days ago1679347200IN
0x2F3E9e54...10638CFC2
0 POL0.016116120
Unstake405407042023-03-19 21:14:25628 days ago1679260465IN
0x2F3E9e54...10638CFC2
0 POL0.0101234278.1731873
Unstake397916142023-02-28 3:31:38647 days ago1677555098IN
0x2F3E9e54...10638CFC2
0 POL0.00873989101.00535375
Unstake397462132023-02-26 22:39:54649 days ago1677451194IN
0x2F3E9e54...10638CFC2
0 POL0.01855499138.17313383
Unstake396155462023-02-23 8:35:53652 days ago1677141353IN
0x2F3E9e54...10638CFC2
0 POL0.01906089220.28327517
Unstake395497242023-02-21 13:14:16654 days ago1676985256IN
0x2F3E9e54...10638CFC2
0 POL0.01966437227.25757665
Unstake395489962023-02-21 12:47:00654 days ago1676983620IN
0x2F3E9e54...10638CFC2
0 POL0.01824379210.84027088
Unstake395231412023-02-20 20:49:11655 days ago1676926151IN
0x2F3E9e54...10638CFC2
0 POL0.01224774176.37629924
Unstake394735662023-02-19 14:46:35656 days ago1676817995IN
0x2F3E9e54...10638CFC2
0 POL0.01816817209.93718908
Unstake394588722023-02-19 5:57:19656 days ago1676786239IN
0x2F3E9e54...10638CFC2
0 POL0.01843919450.06580034
Unstake394588692023-02-19 5:57:13656 days ago1676786233IN
0x2F3E9e54...10638CFC2
0 POL0.0419635484.96469251
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
VSQStaking

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-01-01
*/

// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.7.5;

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;
    }
    function add32(uint32 a, uint32 b) internal pure returns (uint32) {
        uint32 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;
    }
}

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

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);

  /**
   * @dev Moves `amount` tokens from the caller's account to `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);
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard}
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target, 
        bytes memory data, 
        uint256 value, 
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _functionCallWithValue(
        address target, 
        bytes memory data, 
        uint256 weiValue, 
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }

  /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target, 
        bytes memory data, 
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(
        address target, 
        bytes memory data, 
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success, 
        bytes memory returndata, 
        string memory errorMessage
    ) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }

    function addressToString(address _address) internal pure returns(string memory) {
        bytes32 _bytes = bytes32(uint256(_address));
        bytes memory HEX = "0123456789abcdef";
        bytes memory _addr = new bytes(42);

        _addr[0] = '0';
        _addr[1] = 'x';

        for(uint256 i = 0; i < 20; i++) {
            _addr[2+i*2] = HEX[uint8(_bytes[i + 12] >> 4)];
            _addr[3+i*2] = HEX[uint8(_bytes[i + 12] & 0x0f)];
        }

        return string(_addr);

    }
}

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token, 
        address spender, 
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender)
            .sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

interface IOwnable {
  function manager() external view returns (address);

  function renounceManagement() external;
  
  function pushManagement( address newOwner_ ) external;
  
  function pullManagement() external;
}

// Audit on 5-Jan-2021 by Keno and BoringCrypto
// Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol + Claimable.sol
// Edited by BoringCrypto

contract BoringOwnableData {
    address public owner;
    address public pendingOwner;
}

contract BoringOwnable is BoringOwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /// @notice `owner` defaults to msg.sender on construction.
    constructor() public {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
    /// Can only be invoked by the current `owner`.
    /// @param newOwner Address of the new owner.
    /// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
    /// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise.
    function transferOwnership(
        address newOwner,
        bool direct,
        bool renounce
    ) public onlyOwner {
        if (direct) {
            // Checks
            require(newOwner != address(0) || renounce, "Ownable: zero address");

            // Effects
            emit OwnershipTransferred(owner, newOwner);
            owner = newOwner;
            pendingOwner = address(0);
        } else {
            // Effects
            pendingOwner = newOwner;
        }
    }

    /// @notice Needs to be called by `pendingOwner` to claim ownership.
    function claimOwnership() public {
        address _pendingOwner = pendingOwner;

        // Checks
        require(msg.sender == _pendingOwner, "Ownable: caller != pending owner");

        // Effects
        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

    /// @notice Only allows the `owner` to execute the function.
    modifier onlyOwner() {
        require(msg.sender == owner, "Ownable: caller is not the owner");
        _;
    }
}
interface IsVSQ {
    function rebase( uint256 ohmProfit_, uint epoch_) external returns (uint256);

    function circulatingSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function gonsForBalance( uint amount ) external view returns ( uint );

    function balanceForGons( uint gons ) external view returns ( uint );
    
    function index() external view returns ( uint );
}

interface IWarmup {
    function retrieve( address staker_, uint amount_ ) external;
}

interface IDistributor {
    function distribute() external returns ( bool );
}

contract VSQStaking is BoringOwnable {

    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    address public immutable VSQ;
    address public immutable sVSQ;

    struct Epoch {
        uint number;
        uint distribute;
        uint256 length;
        uint256 endTime;
    }
    Epoch public epoch;

    address public distributor;
    
    address public locker;
    uint public totalBonus;
    
    address public warmupContract;
    uint public constant warmupPeriod = 0;
    
    event Staked( uint256 amount, address recipient );
    event Claimed( address recipient, uint256 amount );
    event Forfeit( address recipient, uint256 deposit, uint256 gons );
    event DepositLockToggled( address recipient, bool lock );
    event Unstaked( address recipient, uint256 amount );
    event Rebased( uint256 epochNumber, uint256 epochTime, uint256 epochDistribute, uint256 balance, uint256 staked );
    event SetContract( uint256 _contract, address _address );
    event SetUserDepositorWhitelist( address recipient, address sender, bool status );

    constructor ( 
        address _VSQ, 
        address _sVSQ, 
        uint256 _epochLength,
        uint _firstEpochNumber,
        uint256 _firstEpochTime
    ) {
        require( _VSQ != address(0) );
        VSQ = _VSQ;
        require( _sVSQ != address(0) );
        sVSQ = _sVSQ;
        
        epoch = Epoch({
            length: _epochLength,
            number: _firstEpochNumber,
            endTime: _firstEpochTime,
            distribute: 0
        });
    }

    struct Claim {
        uint deposit;
        uint gons;
        uint expiry;
        bool lock; // prevents malicious delays
    }
    mapping( address => Claim ) public warmupInfo;

    mapping( address => mapping( address => bool ) ) public userDepositorWhitelist; // stores list of accounts which can deposit for a user

    function checkUserDepositorWhitelist( address recipient, address sender ) external view returns ( bool ) {
        return userDepositorWhitelist[recipient][sender];
    }

    function setUserDepositorWhitelist( address sender, bool status ) external {
        userDepositorWhitelist[msg.sender][sender] = status;

        emit SetUserDepositorWhitelist( msg.sender, sender, status );
    }

    /**
        @notice stake VSQ to enter warmup
        @param _amount uint
        @return bool
     */
    function stake( uint _amount, address _recipient ) external returns ( bool ) {
        require(_recipient != address(0), "recipient cannot be the 0 address");

        rebase();
        
        IERC20( VSQ ).safeTransferFrom( msg.sender, address(this), _amount );

        Claim memory info = warmupInfo[ _recipient ];
        require( !info.lock, "Deposits for account are locked" );

        warmupInfo[ _recipient ] = Claim ({
            deposit: info.deposit.add( _amount ),
            gons: info.gons.add( IsVSQ( sVSQ ).gonsForBalance( _amount ) ),
            expiry: epoch.number,
            lock: false
        });
        
        IERC20( sVSQ ).safeTransfer( warmupContract, _amount );

        emit Staked( _amount, _recipient );

        return true;
    }

    /**
        @notice retrieve sVSQ from warmup
        @param _recipient address
     */
    function claim ( address _recipient ) external {
        Claim memory info = warmupInfo[ _recipient ];
        if ( epoch.number >= info.expiry && info.expiry != 0 ) {
            delete warmupInfo[ _recipient ];

            uint256 sVSQBalanceForGons = IsVSQ( sVSQ ).balanceForGons( info.gons );
            IWarmup( warmupContract ).retrieve( _recipient, sVSQBalanceForGons );

            emit Claimed( _recipient, sVSQBalanceForGons );
        }
    }

    /**
        @notice forfeit sVSQ in warmup and retrieve VSQ
     */
    function forfeit() external {
        Claim memory info = warmupInfo[ msg.sender ];
        delete warmupInfo[ msg.sender ];

        uint256 sVSQBalanceForGons = IsVSQ( sVSQ ).balanceForGons( info.gons );

        IWarmup( warmupContract ).retrieve( address(this), sVSQBalanceForGons );
        IERC20( VSQ ).safeTransfer( msg.sender, info.deposit );

        emit Forfeit( msg.sender, info.deposit, sVSQBalanceForGons );
    }

    /**
        @notice prevent new deposits to address (protection from malicious activity)
     */
    function toggleDepositLock() external {
        warmupInfo[ msg.sender ].lock = !warmupInfo[ msg.sender ].lock;

        emit DepositLockToggled( msg.sender, warmupInfo[ msg.sender ].lock );
    }

    /**
        @notice redeem sVSQ for VSQ
        @param _amount uint
        @param _trigger bool
     */
    function unstake( uint _amount, bool _trigger ) external {
        if ( _trigger ) {
            rebase();
        }
        IERC20( sVSQ ).safeTransferFrom( msg.sender, address(this), _amount );
        IERC20( VSQ ).safeTransfer( msg.sender, _amount );

        emit Unstaked( msg.sender, _amount );
    }

    /**
        @notice returns the sVSQ index, which tracks rebase growth
        @return uint
     */
    function index() external view returns ( uint ) {
        return IsVSQ( sVSQ ).index();
    }

    /**
        @notice trigger rebase if epoch over
     */
    function rebase() public {
        if( epoch.endTime <= block.timestamp ) {

            IsVSQ( sVSQ ).rebase( epoch.distribute, epoch.number );

            epoch.endTime = epoch.endTime.add( epoch.length );
            epoch.number++;
            
            if ( distributor != address(0) ) {
                IDistributor( distributor ).distribute();
            }

            uint balance = contractBalance();
            uint staked = IsVSQ( sVSQ ).circulatingSupply();

            if( balance <= staked ) {
                epoch.distribute = 0;
            } else {
                epoch.distribute = balance.sub( staked );
            }

            emit Rebased( epoch.number, epoch.endTime, epoch.distribute, balance, staked );
        }
    }

    /**
        @notice returns contract VSQ holdings, including bonuses provided
        @return uint
     */
    function contractBalance() public view returns ( uint ) {
        return IERC20( VSQ ).balanceOf( address(this) ).add( totalBonus );
    }

    enum CONTRACTS { DISTRIBUTOR, WARMUP }

    /**
        @notice sets the contract address for LP staking
        @param _contract address
     */
    function setContract( CONTRACTS _contract, address _address ) external onlyOwner() {
        if( _contract == CONTRACTS.DISTRIBUTOR ) { // 0
            distributor = _address;
        } else if ( _contract == CONTRACTS.WARMUP ) { // 1
            require( warmupContract == address( 0 ), "Warmup cannot be set more than once" );
            warmupContract = _address;
        }

        emit SetContract( uint256(_contract), _address );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_VSQ","type":"address"},{"internalType":"address","name":"_sVSQ","type":"address"},{"internalType":"uint256","name":"_epochLength","type":"uint256"},{"internalType":"uint256","name":"_firstEpochNumber","type":"uint256"},{"internalType":"uint256","name":"_firstEpochTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"bool","name":"lock","type":"bool"}],"name":"DepositLockToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"deposit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"gons","type":"uint256"}],"name":"Forfeit","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":false,"internalType":"uint256","name":"epochNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"epochTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"epochDistribute","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"staked","type":"uint256"}],"name":"Rebased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_contract","type":"uint256"},{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"SetContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetUserDepositorWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"VSQ","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"sender","type":"address"}],"name":"checkUserDepositorWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint256","name":"distribute","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forfeit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sVSQ","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum VSQStaking.CONTRACTS","name":"_contract","type":"uint8"},{"internalType":"address","name":"_address","type":"address"}],"name":"setContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setUserDepositorWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"stake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDepositLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_trigger","type":"bool"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userDepositorWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"warmupContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"warmupInfo","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"gons","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"bool","name":"lock","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"warmupPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c060405234801561001057600080fd5b50604051612c0a380380612c0a833981810160405260a081101561003357600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561014157600080fd5b8473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156101b257600080fd5b8373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060405180608001604052808381526020016000815260200184815260200182815250600260008201518160000155602082015181600101556040820151816002015560608201518160030155905050505050505060805160601c60a05160601c6129686102a260003980610ad55280610c8f5280610fcd52806111fc528061137952806119375280611a345280611c3a5280611f6952508061108652806116b952806119835280611df352806120cf52506129686000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063900cf0cf116100de578063deac361a11610097578063ec8ae57b11610071578063ec8ae57b146105f1578063ed4acaa81461066b578063f3d86e4a1461069f578063fdeeca27146106a957610173565b8063deac361a1461056b578063e30c397814610589578063e9c70da5146105bd57610173565b8063900cf0cf1461046e5780639ebea88c146104a1578063a8dd07dc146104db578063af14052c146104f9578063bfe1092814610503578063d7b96d4e1461053757610173565b8063678f988c11610130578063678f988c146103295780637acb77571461035d578063865e6fd3146103c15780638b7afe2e146104125780638da5cb5b146104305780638f077b831461046457610173565b8063078dfbe7146101785780631e83409a146101d45780632986c0e5146102185780634048590e146102365780634e71e0c8146102b05780636746f4c2146102ba575b600080fd5b6101d26004803603606081101561018e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291908035151590602001909291905050506106f9565b005b610216600480360360208110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109b3565b005b610220610c8b565b6040518082815260200191505060405180910390f35b6102986004803603604081101561024c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d33565b60405180821515815260200191505060405180910390f35b6102b8610dc7565b005b6102fc600480360360208110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f8e565b60405180858152602001848152602001838152602001821515815260200194505050505060405180910390f35b610331610fcb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a96004803603604081101561037357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fef565b60405180821515815260200191505060405180910390f35b610410600480360360408110156103d757600080fd5b81019080803560ff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61041a6116af565b6040518082815260200191505060405180910390f35b61043861178c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61046c6117b0565b005b610476611902565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390f35b6104d9600480360360408110156104b757600080fd5b8101908080359060200190929190803515159060200190929190505050611920565b005b6104e3611a20565b6040518082815260200191505060405180910390f35b610501611a26565b005b61050b611d7a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053f611da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610573611dc6565b6040518082815260200191505060405180910390f35b610591611dcb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c5611df1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106536004803603604081101561060757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e15565b60405180821515815260200191505060405180910390f35b610673611e44565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106a7611e6a565b005b6106f7600480360360408110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612178565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b811561096c57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107f95750805b61086b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4f776e61626c653a207a65726f2061646472657373000000000000000000000081525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109ae565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6109bb61289a565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806040015160026000015410158015610a5e57506000816040015114155b15610c8757600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b4857600080fd5b505afa158015610b5c573d6000803e3d6000fd5b505050506040513d6020811015610b7257600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66584836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610c1857600080fd5b505af1158015610c2c573d6000803e3d6000fd5b505050507fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632986c0e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf357600080fd5b505afa158015610d07573d6000803e3d6000fd5b505050506040513d6020811015610d1d57600080fd5b8101908080519060200190929190505050905090565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129126021913960400191505060405180910390fd5b61107e611a26565b6110cb3330857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16612285909392919063ffffffff16565b6110d361289a565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090508060600151156111d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4465706f7369747320666f72206163636f756e7420617265206c6f636b65640081525060200191505060405180910390fd5b60405180608001604052806111f286846000015161234690919063ffffffff16565b81526020016112b97f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd39674886040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561126b57600080fd5b505afa15801561127f573d6000803e3d6000fd5b505050506040513d602081101561129557600080fd5b8101908080519060200190929190505050846020015161234690919063ffffffff16565b8152602001600260000154815260200160001515815250600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506113bd600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f6e47dcdd359b6cd69456f0f97d394bd4540a2e7c4adc1b9da076859df53756c78484604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1600191505092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060018111156114eb57fe5b8260018111156114f757fe5b14156115435780600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061164b565b60018081111561154f57fe5b82600181111561155b57fe5b141561164a57600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128c56023913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b7fd58da2325ce084e36b92ea4c1a90706ffa665d07ec064f887de9dbb8f15f499582600181111561167857fe5b82604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b60006117876008547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173e57600080fd5b505afa158015611752573d6000803e3d6000fd5b505050506040513d602081101561176857600080fd5b810190808051906020019092919050505061234690919063ffffffff16565b905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055507f13458d689ffe5eac318d15fa51822653f2a605faf20ed7337dacf861fd07cf4833600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16604051808373ffffffffffffffffffffffffffffffffffffffff16815260200182151581526020019250505060405180910390a1565b60028060000154908060010154908060020154908060030154905084565b801561192f5761192e611a26565b5b61197c3330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16612285909392919063ffffffff16565b6119c733837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f753383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b60085481565b4260026003015411611d78577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663058ecdb46002600101546002600001546040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b505050506040513d6020811015611ae157600080fd5b810190808051906020019092919050505050611b0f600280015460026003015461234690919063ffffffff16565b600260030181905550600260000160008154809291906001019190505550600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611bed57600080fd5b505af1158015611c01573d6000803e3d6000fd5b505050506040513d6020811015611c1757600080fd5b8101908080519060200190929190505050505b6000611c346116af565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9e57600080fd5b505afa158015611cb2573d6000803e3d6000fd5b505050506040513d6020811015611cc857600080fd5b81019080805190602001909291905050509050808211611cf2576000600260010181905550611d0f565b611d05818361247090919063ffffffff16565b6002600101819055505b7f1c5f76ee6d4a200763c92ee4aa5b497d5d0d283c449647a59866d47429eb5e1e6002600001546002600301546002600101548585604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a150505b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e7261289a565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66530836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156120ac57600080fd5b505af11580156120c0573d6000803e3d6000fd5b505050506121133383600001517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f8c2abeb96fe9999a14872dd844ec9e149dec1b10bd136b93501ef5d9be542ef333836000015183604051808473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f26159e6140d9c0807c63f58417978d7b3ab1b93651bb18b4ee3969b75f9a0b65338383604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018215158152602001935050505060405180910390a15050565b612340846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124ba565b50505050565b6000808284019050838110156123c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61246b8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124ba565b505050565b60006124b283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125a9565b905092915050565b606061251c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126699092919063ffffffff16565b90506000815111156125a45780806020019051602081101561253d57600080fd5b81019080805190602001909291905050506125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128e8602a913960400191505060405180910390fd5b5b505050565b6000838311158290612656576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561261b578082015181840152602081019050612600565b50505050905090810190601f1680156126485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60606126788484600085612681565b90509392505050565b606061268c85612887565b6126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061274e578051825260208201915060208101905060208303925061272b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b509150915081156127ca57809250505061287f565b6000815111156127dd5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612844578082015181840152602081019050612829565b50505050905090810190601f1680156128715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b6040518060800160405280600081526020016000815260200160008152602001600015158152509056fe5761726d75702063616e6e6f7420626520736574206d6f7265207468616e206f6e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564726563697069656e742063616e6e6f742062652074686520302061646472657373a2646970667358221220f10a987a7a6db71c40c04b4438f868aa6e90f5e6a09b7a566b7006542f3d9fe664736f6c6343000705003300000000000000000000000029f1e986fca02b7e54138c04c4f503dddd250558000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf57494000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000061d04240

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063900cf0cf116100de578063deac361a11610097578063ec8ae57b11610071578063ec8ae57b146105f1578063ed4acaa81461066b578063f3d86e4a1461069f578063fdeeca27146106a957610173565b8063deac361a1461056b578063e30c397814610589578063e9c70da5146105bd57610173565b8063900cf0cf1461046e5780639ebea88c146104a1578063a8dd07dc146104db578063af14052c146104f9578063bfe1092814610503578063d7b96d4e1461053757610173565b8063678f988c11610130578063678f988c146103295780637acb77571461035d578063865e6fd3146103c15780638b7afe2e146104125780638da5cb5b146104305780638f077b831461046457610173565b8063078dfbe7146101785780631e83409a146101d45780632986c0e5146102185780634048590e146102365780634e71e0c8146102b05780636746f4c2146102ba575b600080fd5b6101d26004803603606081101561018e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291908035151590602001909291905050506106f9565b005b610216600480360360208110156101ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109b3565b005b610220610c8b565b6040518082815260200191505060405180910390f35b6102986004803603604081101561024c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d33565b60405180821515815260200191505060405180910390f35b6102b8610dc7565b005b6102fc600480360360208110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f8e565b60405180858152602001848152602001838152602001821515815260200194505050505060405180910390f35b610331610fcb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103a96004803603604081101561037357600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fef565b60405180821515815260200191505060405180910390f35b610410600480360360408110156103d757600080fd5b81019080803560ff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141d565b005b61041a6116af565b6040518082815260200191505060405180910390f35b61043861178c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61046c6117b0565b005b610476611902565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390f35b6104d9600480360360408110156104b757600080fd5b8101908080359060200190929190803515159060200190929190505050611920565b005b6104e3611a20565b6040518082815260200191505060405180910390f35b610501611a26565b005b61050b611d7a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053f611da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610573611dc6565b6040518082815260200191505060405180910390f35b610591611dcb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c5611df1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106536004803603604081101561060757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e15565b60405180821515815260200191505060405180910390f35b610673611e44565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106a7611e6a565b005b6106f7600480360360408110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612178565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b811561096c57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107f95750805b61086b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4f776e61626c653a207a65726f2061646472657373000000000000000000000081525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109ae565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6109bb61289a565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806040015160026000015410158015610a5e57506000816040015114155b15610c8757600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b4857600080fd5b505afa158015610b5c573d6000803e3d6000fd5b505050506040513d6020811015610b7257600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66584836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610c1857600080fd5b505af1158015610c2c573d6000803e3d6000fd5b505050507fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b5050565b60007f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16632986c0e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf357600080fd5b505afa158015610d07573d6000803e3d6000fd5b505050506040513d6020811015610d1d57600080fd5b8101908080519060200190929190505050905090565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b7f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129126021913960400191505060405180910390fd5b61107e611a26565b6110cb3330857f00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd25055873ffffffffffffffffffffffffffffffffffffffff16612285909392919063ffffffff16565b6110d361289a565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090508060600151156111d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4465706f7369747320666f72206163636f756e7420617265206c6f636b65640081525060200191505060405180910390fd5b60405180608001604052806111f286846000015161234690919063ffffffff16565b81526020016112b97f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16631bd39674886040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561126b57600080fd5b505afa15801561127f573d6000803e3d6000fd5b505050506040513d602081101561129557600080fd5b8101908080519060200190929190505050846020015161234690919063ffffffff16565b8152602001600260000154815260200160001515815250600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506113bd600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16857f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f6e47dcdd359b6cd69456f0f97d394bd4540a2e7c4adc1b9da076859df53756c78484604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a1600191505092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060018111156114eb57fe5b8260018111156114f757fe5b14156115435780600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061164b565b60018081111561154f57fe5b82600181111561155b57fe5b141561164a57600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128c56023913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b7fd58da2325ce084e36b92ea4c1a90706ffa665d07ec064f887de9dbb8f15f499582600181111561167857fe5b82604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b60006117876008547f00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd25055873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561173e57600080fd5b505afa158015611752573d6000803e3d6000fd5b505050506040513d602081101561176857600080fd5b810190808051906020019092919050505061234690919063ffffffff16565b905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055507f13458d689ffe5eac318d15fa51822653f2a605faf20ed7337dacf861fd07cf4833600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16604051808373ffffffffffffffffffffffffffffffffffffffff16815260200182151581526020019250505060405180910390a1565b60028060000154908060010154908060020154908060030154905084565b801561192f5761192e611a26565b5b61197c3330847f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16612285909392919063ffffffff16565b6119c733837f00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd25055873ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f753383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b60085481565b4260026003015411611d78577f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff1663058ecdb46002600101546002600001546040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b505050506040513d6020811015611ae157600080fd5b810190808051906020019092919050505050611b0f600280015460026003015461234690919063ffffffff16565b600260030181905550600260000160008154809291906001019190505550600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611bed57600080fd5b505af1158015611c01573d6000803e3d6000fd5b505050506040513d6020811015611c1757600080fd5b8101908080519060200190929190505050505b6000611c346116af565b905060007f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9e57600080fd5b505afa158015611cb2573d6000803e3d6000fd5b505050506040513d6020811015611cc857600080fd5b81019080805190602001909291905050509050808211611cf2576000600260010181905550611d0f565b611d05818361247090919063ffffffff16565b6002600101819055505b7f1c5f76ee6d4a200763c92ee4aa5b497d5d0d283c449647a59866d47429eb5e1e6002600001546002600301546002600101548585604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a150505b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd25055881565b600b6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e7261289a565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf5749473ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b81019080805190602001909291905050509050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66530836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156120ac57600080fd5b505af11580156120c0573d6000803e3d6000fd5b505050506121133383600001517f00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd25055873ffffffffffffffffffffffffffffffffffffffff166123ce9092919063ffffffff16565b7f8c2abeb96fe9999a14872dd844ec9e149dec1b10bd136b93501ef5d9be542ef333836000015183604051808473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050565b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f26159e6140d9c0807c63f58417978d7b3ab1b93651bb18b4ee3969b75f9a0b65338383604051808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018215158152602001935050505060405180910390a15050565b612340846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124ba565b50505050565b6000808284019050838110156123c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61246b8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124ba565b505050565b60006124b283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125a9565b905092915050565b606061251c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166126699092919063ffffffff16565b90506000815111156125a45780806020019051602081101561253d57600080fd5b81019080805190602001909291905050506125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128e8602a913960400191505060405180910390fd5b5b505050565b6000838311158290612656576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561261b578082015181840152602081019050612600565b50505050905090810190601f1680156126485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60606126788484600085612681565b90509392505050565b606061268c85612887565b6126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061274e578051825260208201915060208101905060208303925061272b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b509150915081156127ca57809250505061287f565b6000815111156127dd5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612844578082015181840152602081019050612829565b50505050905090810190601f1680156128715780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b6040518060800160405280600081526020016000815260200160008152602001600015158152509056fe5761726d75702063616e6e6f7420626520736574206d6f7265207468616e206f6e63655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564726563697069656e742063616e6e6f742062652074686520302061646472657373a2646970667358221220f10a987a7a6db71c40c04b4438f868aa6e90f5e6a09b7a566b7006542f3d9fe664736f6c63430007050033

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

00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd250558000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf57494000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000061d04240

-----Decoded View---------------
Arg [0] : _VSQ (address): 0x29F1e986FCa02B7E54138c04C4F503DdDD250558
Arg [1] : _sVSQ (address): 0xbb0FDc2Fe6D3cEB6Bf76Cc955173a07EDbF57494
Arg [2] : _epochLength (uint256): 28800
Arg [3] : _firstEpochNumber (uint256): 1
Arg [4] : _firstEpochTime (uint256): 1641038400

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000029f1e986fca02b7e54138c04c4f503dddd250558
Arg [1] : 000000000000000000000000bb0fdc2fe6d3ceb6bf76cc955173a07edbf57494
Arg [2] : 0000000000000000000000000000000000000000000000000000000000007080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000061d04240


Deployed Bytecode Sourcemap

21796:7038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20034:506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25155:466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27007:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23739:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20622:340;;;:::i;:::-;;23542:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21945:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24257:794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28379:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28075:140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19180:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26254:200;;;:::i;:::-;;22109:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26576:315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22203:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27174:778;;;:::i;:::-;;22136:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22175:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22274:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19207:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21910:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23596:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22238:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25704:438;;;:::i;:::-;;23919:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20034:506;21090:5;;;;;;;;;;21076:19;;:10;:19;;;21068:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20173:6:::1;20169:364;;;20247:1;20227:22;;:8;:22;;;;:34;;;;20253:8;20227:34;20219:68;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;20361:8;20333:37;;20354:5;::::0;::::1;;;;;;;;20333:37;;;;;;;;;;;;20393:8;20385:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;20439:1;20416:12;;:25;;;;;;;;;;;;;;;;;;20169:364;;;20513:8;20498:12;;:23;;;;;;;;;;;;;;;;;;20169:364;20034:506:::0;;;:::o;25155:466::-;25213:17;;:::i;:::-;25233:10;:24;25245:10;25233:24;;;;;;;;;;;;;;;25213:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25289:4;:11;;;25273:5;:12;;;:27;;:47;;;;;25319:1;25304:4;:11;;;:16;;25273:47;25268:346;;;25345:10;:24;25357:10;25345:24;;;;;;;;;;;;;;;;25338:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25386:26;25422:4;25415:28;;;25445:4;:9;;;25415:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25386:70;;25480:14;;;;;;;;;;;25471:34;;;25507:10;25519:18;25471:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25561:41;25570:10;25582:18;25561:41;;;;;;;;;;;;;;;;;;;;;;;;;;25268:346;;25155:466;;:::o;27007:95::-;27048:4;27080;27073:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27066:28;;27007:95;:::o;23739:172::-;23837:4;23862:22;:33;23885:9;23862:33;;;;;;;;;;;;;;;:41;23896:6;23862:41;;;;;;;;;;;;;;;;;;;;;;;;;23855:48;;23739:172;;;;:::o;20622:340::-;20666:21;20690:12;;;;;;;;;;;20666:36;;20756:13;20742:27;;:10;:27;;;20734:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20872:13;20844:42;;20865:5;;;;;;;;;;20844:42;;;;;;;;;;;;20905:13;20897:5;;:21;;;;;;;;;;;;;;;;;;20952:1;20929:12;;:25;;;;;;;;;;;;;;;;;;20622:340;:::o;23542:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21945:29::-;;;:::o;24257:794::-;24327:4;24375:1;24353:24;;:10;:24;;;;24345:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24428:8;:6;:8::i;:::-;24457:68;24489:10;24509:4;24516:7;24465:3;24457:30;;;;:68;;;;;;:::i;:::-;24538:17;;:::i;:::-;24558:10;:24;24570:10;24558:24;;;;;;;;;;;;;;;24538:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24603:4;:9;;;24602:10;24593:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24689:208;;;;;;;;24720:27;24738:7;24720:4;:12;;;:16;;:27;;;;:::i;:::-;24689:208;;;;24768:56;24790:4;24783:28;;;24813:7;24783:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24768:4;:9;;;:13;;:56;;;;:::i;:::-;24689:208;;;;24847:5;:12;;;24689:208;;;;24880:5;24689:208;;;;;24662:10;:24;24674:10;24662:24;;;;;;;;;;;;;;;:235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24918:54;24947:14;;;;;;;;;;;24963:7;24926:4;24918:27;;;;:54;;;;;:::i;:::-;24990:29;24998:7;25007:10;24990:29;;;;;;;;;;;;;;;;;;;;;;;;;;25039:4;25032:11;;;24257:794;;;;:::o;28379:452::-;21090:5;;;;;;;;;;21076:19;;:10;:19;;;21068:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28490:21:::1;28477:34;;;;;;;;:9;:34;;;;;;;;;28473:290;;;28548:8;28534:11;;:22;;;;;;;;;;;;;;;;;;28473:290;;;28592:16;28579:29:::0;::::1;;;;;;;:9;:29;;;;;;;;;28574:189;;;28667:1;28640:30;;:14;;;;;;;;;;;:30;;;28631:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28743:8;28726:14;;:25;;;;;;;;;;;;;;;;;;28574:189;28473:290;28780:43;28801:9;28793:18;;;;;;;;28813:8;28780:43;;;;;;;;;;;;;;;;;;;;;;;;;;28379:452:::0;;:::o;28075:140::-;28124:4;28149:58;28195:10;;28157:3;28149:23;;;28182:4;28149:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:44;;:58;;;;:::i;:::-;28142:65;;28075:140;:::o;19180:20::-;;;;;;;;;;;;:::o;26254:200::-;26336:10;:24;26348:10;26336:24;;;;;;;;;;;;;;;:29;;;;;;;;;;;;26335:30;26303:10;:24;26315:10;26303:24;;;;;;;;;;;;;;;:29;;;:62;;;;;;;;;;;;;;;;;;26383:63;26403:10;26415;:24;26427:10;26415:24;;;;;;;;;;;;;;;:29;;;;;;;;;;;;26383:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;26254:200::o;22109:18::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;26576:315::-;26649:8;26644:51;;;26675:8;:6;:8::i;:::-;26644:51;26705:69;26738:10;26758:4;26765:7;26713:4;26705:31;;;;:69;;;;;;:::i;:::-;26785:49;26813:10;26825:7;26793:3;26785:26;;;;:49;;;;;:::i;:::-;26852:31;26862:10;26874:7;26852:31;;;;;;;;;;;;;;;;;;;;;;;;;;26576:315;;:::o;22203:22::-;;;;:::o;27174:778::-;27231:15;27214:5;:13;;;:32;27210:735;;27273:4;27266:20;;;27288:5;:16;;;27306:5;:12;;;27266:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27353:33;27372:5;:12;;;27353:5;:13;;;:17;;:33;;;;:::i;:::-;27337:5;:13;;:49;;;;27401:5;:12;;;:14;;;;;;;;;;;;;27472:1;27449:25;;:11;;;;;;;;;;;:25;;;27444:108;;27510:11;;;;;;;;;;;27496:38;;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27444:108;27568:12;27583:17;:15;:17::i;:::-;27568:32;;27615:11;27636:4;27629:31;;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27615:47;;27694:6;27683:7;:17;27679:160;;27741:1;27722:5;:16;;:20;;;;27679:160;;;27802:21;27815:6;27802:7;:11;;:21;;;;:::i;:::-;27783:5;:16;;:40;;;;27679:160;27860:73;27869:5;:12;;;27883:5;:13;;;27898:5;:16;;;27916:7;27925:6;27860:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27210:735;;;27174:778::o;22136:26::-;;;;;;;;;;;;;:::o;22175:21::-;;;;;;;;;;;;;:::o;22274:37::-;22310:1;22274:37;:::o;19207:27::-;;;;;;;;;;;;;:::o;21910:28::-;;;:::o;23596:78::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22238:29::-;;;;;;;;;;;;;:::o;25704:438::-;25743:17;;:::i;:::-;25763:10;:24;25775:10;25763:24;;;;;;;;;;;;;;;25743:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25805:10;:24;25817:10;25805:24;;;;;;;;;;;;;;;;25798:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25842:26;25878:4;25871:28;;;25901:4;:9;;;25871:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25842:70;;25934:14;;;;;;;;;;;25925:34;;;25969:4;25976:18;25925:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26007:54;26035:10;26047:4;:12;;;26015:3;26007:26;;;;:54;;;;;:::i;:::-;26079:55;26088:10;26100:4;:12;;;26114:18;26079:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25704:438;;:::o;23919:218::-;24050:6;24005:22;:34;24028:10;24005:34;;;;;;;;;;;;;;;:42;24040:6;24005:42;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;24074:55;24101:10;24113:6;24121;24074:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23919:218;;:::o;15774:205::-;15875:96;15895:5;15925:27;;;15954:4;15960:2;15964:5;15902:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15875:19;:96::i;:::-;15774:205;;;;:::o;336:181::-;394:7;414:9;430:1;426;:5;414:17;;455:1;450;:6;;442:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508:1;501:8;;;336:181;;;;:::o;15589:177::-;15672:86;15692:5;15722:23;;;15747:2;15751:5;15699:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15672:19;:86::i;:::-;15589:177;;;:::o;985:136::-;1043:7;1070:43;1074:1;1077;1070:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1063:50;;985:136;;;;:::o;17944:761::-;18368:23;18394:69;18422:4;18394:69;;;;;;;;;;;;;;;;;18402:5;18394:27;;;;:69;;;;;:::i;:::-;18368:95;;18498:1;18478:10;:17;:21;18474:224;;;18620:10;18609:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18601:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18474:224;17944:761;;;:::o;1424:192::-;1510:7;1543:1;1538;:6;;1546:12;1530:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:9;1586:1;1582;:5;1570:17;;1607:1;1600:8;;;1424:192;;;;;:::o;9426:230::-;9563:12;9595:53;9618:6;9626:4;9632:1;9635:12;9595:22;:53::i;:::-;9588:60;;9426:230;;;;;:::o;11097:1025::-;11273:12;11306:18;11317:6;11306:10;:18::i;:::-;11298:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11432:12;11446:23;11473:6;:11;;11493:8;11504:4;11473:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11431:78;;;;11524:7;11520:595;;;11555:10;11548:17;;;;;;11520:595;11689:1;11669:10;:17;:21;11665:439;;;11932:10;11926:17;11993:15;11980:10;11976:2;11972:19;11965:44;11880:148;12075:12;12068:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11097:1025;;;;;;;:::o;6915:422::-;6975:4;7183:12;7294:7;7282:20;7274:28;;7328:1;7321:4;:8;7314:15;;;6915:422;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://f10a987a7a6db71c40c04b4438f868aa6e90f5e6a09b7a566b7006542f3d9fe6

Block Transaction 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
[ 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.