ETH Price: $3,099.18 (+0.51%)
Gas: 9 Gwei

Contract

0x0dbA21F1e0a7F164a6F4072822F969ad7d4c255D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60806040106040482020-08-06 4:32:031434 days ago1596688323IN
 Create: LidStaking
0 ETH0.1347946261

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LidStaking

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-17
*/

pragma solidity 0.5.16;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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


/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}


/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context is Initializable {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Initializable, Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function initialize(address sender) public initializer {
        _owner = sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    uint256[50] private ______gap;
}


library BasisPoints {
    using SafeMath for uint;

    uint constant private BASIS_POINTS = 10000;

    function mulBP(uint amt, uint bp) internal pure returns (uint) {
        if (amt == 0) return 0;
        return amt.mul(bp).div(BASIS_POINTS);
    }

    function divBP(uint amt, uint bp) internal pure returns (uint) {
        require(bp > 0, "Cannot divide by zero.");
        if (amt == 0) return 0;
        return amt.mul(BASIS_POINTS).div(bp);
    }

    function addBP(uint amt, uint bp) internal pure returns (uint) {
        if (amt == 0) return 0;
        if (bp == 0) return amt;
        return amt.add(mulBP(amt, bp));
    }

    function subBP(uint amt, uint bp) internal pure returns (uint) {
        if (amt == 0) return 0;
        if (bp == 0) return amt;
        return amt.sub(mulBP(amt, bp));
    }
}


interface IStakeHandler {
    function handleStake(address staker, uint stakerDeltaValue, uint stakerFinalValue) external;
    function handleUnstake(address staker, uint stakerDeltaValue, uint stakerFinalValue) external;
}


interface ILidCertifiableToken {
    function activateTransfers() external;
    function activateTax() external;
    function mint(address account, uint256 amount) external returns (bool);
    function addMinter(address account) external;
    function renounceMinter() external;
    function transfer(address recipient, uint256 amount) external returns (bool);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function isMinter(address account) external view returns (bool);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

}


contract LidStaking is Initializable, Ownable {
    using BasisPoints for uint;
    using SafeMath for uint;

    uint256 constant internal DISTRIBUTION_MULTIPLIER = 2 ** 64;

    uint public stakingTaxBP;
    uint public unstakingTaxBP;
    ILidCertifiableToken private lidToken;

    mapping(address => uint) public stakeValue;
    mapping(address => int) public stakerPayouts;


    uint public totalDistributions;
    uint public totalStaked;
    uint public totalStakers;
    uint public profitPerShare;
    uint private emptyStakeTokens; //These are tokens given to the contract when there are no stakers.

    IStakeHandler[] public stakeHandlers;
    uint public startTime;

    uint public registrationFeeWithReferrer;
    uint public registrationFeeWithoutReferrer;
    mapping(address => uint) public accountReferrals;
    mapping(address => bool) public stakerIsRegistered;

    event OnDistribute(address sender, uint amountSent);
    event OnStake(address sender, uint amount, uint tax);
    event OnUnstake(address sender, uint amount, uint tax);
    event OnReinvest(address sender, uint amount, uint tax);
    event OnWithdraw(address sender, uint amount);

    modifier onlyLidToken {
        require(msg.sender == address(lidToken), "Can only be called by LidToken contract.");
        _;
    }

    modifier whenStakingActive {
        require(startTime != 0 && now > startTime, "Staking not yet started.");
        _;
    }

    function initialize(
        uint _stakingTaxBP,
        uint _ustakingTaxBP,
        uint _registrationFeeWithReferrer,
        uint _registrationFeeWithoutReferrer,
        address owner,
        ILidCertifiableToken _lidToken
    ) external initializer {
        Ownable.initialize(msg.sender);
        stakingTaxBP = _stakingTaxBP;
        unstakingTaxBP = _ustakingTaxBP;
        lidToken = _lidToken;
        registrationFeeWithReferrer = _registrationFeeWithReferrer;
        registrationFeeWithoutReferrer = _registrationFeeWithoutReferrer;
        //Due to issue in oz testing suite, the msg.sender might not be owner
        _transferOwnership(owner);
    }

    function registerAndStake(uint amount) public {
        registerAndStake(amount, address(0x0));
    }

    function registerAndStake(uint amount, address referrer) public whenStakingActive {
        require(!stakerIsRegistered[msg.sender], "Staker must not be registered");
        require(lidToken.balanceOf(msg.sender) >= amount, "Must have enough balance to stake amount");
        uint finalAmount;
        if(address(0x0) == referrer) {
            //No referrer
            require(amount >= registrationFeeWithoutReferrer, "Must send at least enough LID to pay registration fee.");
            distribute(registrationFeeWithoutReferrer);
            finalAmount = amount.sub(registrationFeeWithoutReferrer);
        } else {
            //has referrer
            require(amount >= registrationFeeWithReferrer, "Must send at least enough LID to pay registration fee.");
            require(lidToken.transferFrom(msg.sender, referrer, registrationFeeWithReferrer), "Stake failed due to failed referral transfer.");
            accountReferrals[referrer] = accountReferrals[referrer].add(1);
            finalAmount = amount.sub(registrationFeeWithReferrer);
        }
        stakerIsRegistered[msg.sender] = true;
        stake(finalAmount);
    }

    function stake(uint amount) public whenStakingActive {
        require(stakerIsRegistered[msg.sender] == true, "Must be registered to stake.");
        require(amount >= 1e18, "Must stake at least one LID.");
        require(lidToken.balanceOf(msg.sender) >= amount, "Cannot stake more LID than you hold unstaked.");
        if (stakeValue[msg.sender] == 0) totalStakers = totalStakers.add(1);
        uint tax = _addStake(amount);
        require(lidToken.transferFrom(msg.sender, address(this), amount), "Stake failed due to failed transfer.");
        emit OnStake(msg.sender, amount, tax);
    }

    function unstake(uint amount) external whenStakingActive {
        require(amount >= 1e18, "Must unstake at least one LID.");
        require(stakeValue[msg.sender] >= amount, "Cannot unstake more LID than you have staked.");
        //must withdraw all dividends, to prevent overflows
        withdraw(dividendsOf(msg.sender));
        if (stakeValue[msg.sender] == amount) totalStakers = totalStakers.sub(1);
        totalStaked = totalStaked.sub(amount);
        stakeValue[msg.sender] = stakeValue[msg.sender].sub(amount);

        uint tax = findTaxAmount(amount, unstakingTaxBP);
        uint earnings = amount.sub(tax);
        _increaseProfitPerShare(tax);
        stakerPayouts[msg.sender] = uintToInt(profitPerShare.mul(stakeValue[msg.sender]));

        for (uint i=0; i < stakeHandlers.length; i++) {
            stakeHandlers[i].handleUnstake(msg.sender, amount, stakeValue[msg.sender]);
        }

        require(lidToken.transferFrom(address(this), msg.sender, earnings), "Unstake failed due to failed transfer.");
        emit OnUnstake(msg.sender, amount, tax);
    }

    function withdraw(uint amount) public whenStakingActive {
        require(dividendsOf(msg.sender) >= amount, "Cannot withdraw more dividends than you have earned.");
        stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(amount.mul(DISTRIBUTION_MULTIPLIER));
        lidToken.transfer(msg.sender, amount);
        emit OnWithdraw(msg.sender, amount);
    }

    function reinvest(uint amount) external whenStakingActive {
        require(dividendsOf(msg.sender) >= amount, "Cannot reinvest more dividends than you have earned.");
        uint payout = amount.mul(DISTRIBUTION_MULTIPLIER);
        stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(payout);
        uint tax = _addStake(amount);
        emit OnReinvest(msg.sender, amount, tax);
    }

    function distribute(uint amount) public {
        require(lidToken.balanceOf(msg.sender) >= amount, "Cannot distribute more LID than you hold unstaked.");
        totalDistributions = totalDistributions.add(amount);
        _increaseProfitPerShare(amount);
        require(
            lidToken.transferFrom(msg.sender, address(this), amount),
            "Distribution failed due to failed transfer."
        );
        emit OnDistribute(msg.sender, amount);
    }

    function handleTaxDistribution(uint amount) external onlyLidToken {
        totalDistributions = totalDistributions.add(amount);
        _increaseProfitPerShare(amount);
        emit OnDistribute(msg.sender, amount);
    }

    function dividendsOf(address staker) public view returns (uint) {
        int divPayout = uintToInt(profitPerShare.mul(stakeValue[staker]));
        require(divPayout >= stakerPayouts[staker], "dividend calc overflow");
        return uint(divPayout - stakerPayouts[staker])
            .div(DISTRIBUTION_MULTIPLIER);
    }

    function findTaxAmount(uint value, uint taxBP) public pure returns (uint) {
        return value.mulBP(taxBP);
    }

    function numberStakeHandlersRegistered() external view returns (uint) {
        return stakeHandlers.length;
    }

    function registerStakeHandler(IStakeHandler sc) external onlyOwner {
        stakeHandlers.push(sc);
    }

    function unregisterStakeHandler(uint index) external onlyOwner {
        IStakeHandler sc = stakeHandlers[stakeHandlers.length-1];
        stakeHandlers.pop();
        stakeHandlers[index] = sc;
    }

    function setStakingBP(uint valueBP) external onlyOwner {
        require(valueBP < 10000, "Tax connot be over 100% (10000 BP)");
        stakingTaxBP = valueBP;
    }

    function setUnstakingBP(uint valueBP) external onlyOwner {
        require(valueBP < 10000, "Tax connot be over 100% (10000 BP)");
        unstakingTaxBP = valueBP;
    }

    function setStartTime(uint _startTime) external onlyOwner {
        startTime = _startTime;
    }

    function setRegistrationFees(uint valueWithReferrer, uint valueWithoutReferrer) external onlyOwner {
        registrationFeeWithReferrer = valueWithReferrer;
        registrationFeeWithoutReferrer = valueWithoutReferrer;
    }

    function uintToInt(uint val) internal pure returns (int) {
        if (val >= uint(-1).div(2)) {
            require(false, "Overflow. Cannot convert uint to int.");
        } else {
            return int(val);
        }
    }

    function _addStake(uint amount) internal returns (uint tax) {
        tax = findTaxAmount(amount, stakingTaxBP);
        uint stakeAmount = amount.sub(tax);
        totalStaked = totalStaked.add(stakeAmount);
        stakeValue[msg.sender] = stakeValue[msg.sender].add(stakeAmount);
        for (uint i=0; i < stakeHandlers.length; i++) {
            stakeHandlers[i].handleStake(msg.sender, stakeAmount, stakeValue[msg.sender]);
        }
        uint payout = profitPerShare.mul(stakeAmount);
        stakerPayouts[msg.sender] = stakerPayouts[msg.sender] + uintToInt(payout);
        _increaseProfitPerShare(tax);
    }

    function _increaseProfitPerShare(uint amount) internal {
        if (totalStaked != 0) {
            if (emptyStakeTokens != 0) {
                amount = amount.add(emptyStakeTokens);
                emptyStakeTokens = 0;
            }
            profitPerShare = profitPerShare.add(amount.mul(DISTRIBUTION_MULTIPLIER).div(totalStaked));
        } else {
            emptyStakeTokens = emptyStakeTokens.add(amount);
        }
    }

}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountSent","type":"uint256"}],"name":"OnDistribute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"OnReinvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"OnStake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"OnUnstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OnWithdraw","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"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountReferrals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"dividendsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"taxBP","type":"uint256"}],"name":"findTaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"handleTaxDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_stakingTaxBP","type":"uint256"},{"internalType":"uint256","name":"_ustakingTaxBP","type":"uint256"},{"internalType":"uint256","name":"_registrationFeeWithReferrer","type":"uint256"},{"internalType":"uint256","name":"_registrationFeeWithoutReferrer","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"contract ILidCertifiableToken","name":"_lidToken","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"numberStakeHandlersRegistered","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"profitPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"registerAndStake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"registerAndStake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IStakeHandler","name":"sc","type":"address"}],"name":"registerStakeHandler","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrationFeeWithReferrer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"registrationFeeWithoutReferrer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"valueWithReferrer","type":"uint256"},{"internalType":"uint256","name":"valueWithoutReferrer","type":"uint256"}],"name":"setRegistrationFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"valueBP","type":"uint256"}],"name":"setStakingBP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"valueBP","type":"uint256"}],"name":"setUnstakingBP","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakeHandlers","outputs":[{"internalType":"contract IStakeHandler","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerIsRegistered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerPayouts","outputs":[{"internalType":"int256","name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingTaxBP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"unregisterStakeHandler","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"unstakingTaxBP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405261270f806100136000396000f3fe608060405234801561001057600080fd5b5060043610610243576000357c010000000000000000000000000000000000000000000000000000000090048063869890381161014d578063a830a78b116100d5578063e7d643cf11610099578063e7d643cf14610577578063ee3e3acf1461059a578063f24ee7d3146105c0578063f2fde38b146105ec578063fc8690a21461061257610243565b8063a830a78b146104e9578063c4d66de8146104f1578063c52d47f014610517578063c5acdb7a14610534578063d7a88e3c1461055157610243565b8063903ca8cb1161011c578063903ca8cb1461045b57806391c05b0b14610481578063947f9a811461049e5780639d58b00c146104a6578063a694fc3a146104cc57610243565b806386989038146104125780638cb3c6611461041a5780638da5cb5b146104375780638f32d59b1461043f57610243565b80634feba02a116101d0578063715018a61161019f578063715018a6146103d557806378e97925146103dd578063817b1cd2146103e557806383b4918b146103ed5780638650e92a1461040a57610243565b80634feba02a1461038b5780635632fe2a14610393578063568b19ed1461039b57806361879df3146103b857610243565b80633a8ec83e116102175780633a8ec83e146102c45780633e0a322d146102e7578063439cc54c146103045780634a1523dd1461034a5780634bd5fd5d1461035257610243565b806265318b14610248578063163db71b146102805780632e17de78146102885780632e1a7d4d146102a7575b600080fd5b61026e6004803603602081101561025e57600080fd5b5035600160a060020a0316610638565b60408051918252519081900360200190f35b61026e61071e565b6102a56004803603602081101561029e57600080fd5b5035610724565b005b6102a5600480360360208110156102bd57600080fd5b5035610ae7565b61026e600480360360408110156102da57600080fd5b5080359060200135610c8e565b6102a5600480360360208110156102fd57600080fd5b5035610ca9565b6102a5600480360360c081101561031a57600080fd5b50803590602081013590604081013590606081013590600160a060020a03608082013581169160a0013516610cf8565b61026e610df1565b61036f6004803603602081101561036857600080fd5b5035610df7565b60408051600160a060020a039092168252519081900360200190f35b61026e610e1e565b61026e610e24565b6102a5600480360360208110156103b157600080fd5b5035610e2a565b6102a5600480360360208110156103ce57600080fd5b5035610f21565b6102a5610fb3565b61026e611054565b61026e61105a565b6102a56004803603602081101561040357600080fd5b5035611060565b61026e61118e565b61026e611194565b6102a56004803603602081101561043057600080fd5b503561119a565b61036f611243565b610447611252565b604080519115158252519081900360200190f35b6102a56004803603602081101561047157600080fd5b5035600160a060020a0316611278565b6102a56004803603602081101561049757600080fd5b5035611321565b61026e6114d6565b610447600480360360208110156104bc57600080fd5b5035600160a060020a03166114dc565b6102a5600480360360208110156104e257600080fd5b50356114f1565b61026e611825565b6102a56004803603602081101561050757600080fd5b5035600160a060020a031661182b565b6102a56004803603602081101561052d57600080fd5b503561192d565b6102a56004803603602081101561054a57600080fd5b503561193b565b61026e6004803603602081101561056757600080fd5b5035600160a060020a03166119cd565b6102a56004803603604081101561058d57600080fd5b50803590602001356119df565b61026e600480360360208110156105b057600080fd5b5035600160a060020a0316611a34565b6102a5600480360360408110156105d657600080fd5b5080359060200135600160a060020a0316611a46565b6102a56004803603602081101561060257600080fd5b5035600160a060020a0316611dde565b61026e6004803603602081101561062857600080fd5b5035600160a060020a0316611e31565b600160a060020a038116600090815260696020526040812054606e54829161066e916106699163ffffffff611e4316565b611e9f565b600160a060020a0384166000908152606a60205260409020549091508112156106e1576040805160e560020a62461bcd02815260206004820152601660248201527f6469766964656e642063616c63206f766572666c6f7700000000000000000000604482015290519081900360640190fd5b600160a060020a0383166000908152606a60205260409020546107159082036801000000000000000063ffffffff611efb16565b9150505b919050565b606b5481565b60715415801590610736575060715442115b610778576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b670de0b6b3a76400008110156107d8576040805160e560020a62461bcd02815260206004820152601e60248201527f4d75737420756e7374616b65206174206c65617374206f6e65204c49442e0000604482015290519081900360640190fd5b336000908152606960205260409020548111156108295760405160e560020a62461bcd02815260040180806020018281038252602d8152602001806125f7602d913960400191505060405180910390fd5b61083a61083533610638565b610ae7565b3360009081526069602052604090205481141561086957606d5461086590600163ffffffff611f3d16565b606d555b606c5461087c908263ffffffff611f3d16565b606c553360009081526069602052604090205461089f908263ffffffff611f3d16565b336000908152606960205260408120919091556067546108c0908390610c8e565b905060006108d4838363ffffffff611f3d16565b90506108df82611f7f565b33600090815260696020526040902054606e5461090691610669919063ffffffff611e4316565b336000908152606a60205260408120919091555b6070548110156109da576070818154811061093157fe5b600091825260208083209091015433808452606990925260408084205481517f63863e6f000000000000000000000000000000000000000000000000000000008152600481019490945260248401899052604484015251600160a060020a03909116926363863e6f926064808201939182900301818387803b1580156109b657600080fd5b505af11580156109ca573d6000803e3d6000fd5b50506001909201915061091a9050565b506068546040805160e060020a6323b872dd028152306004820152336024820152604481018490529051600160a060020a03909216916323b872dd916064808201926020929091908290030181600087803b158015610a3857600080fd5b505af1158015610a4c573d6000803e3d6000fd5b505050506040513d6020811015610a6257600080fd5b5051610aa25760405160e560020a62461bcd0281526004018080602001828103825260268152602001806125d16026913960400191505060405180910390fd5b604080513381526020810185905280820184905290517fefe5e683dfe58f596b38874c815bc9599676515f5e641a3305c40aba31c822a79181900360600190a1505050565b60715415801590610af9575060715442115b610b3b576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b80610b4533610638565b1015610b855760405160e560020a62461bcd0281526004018080602001828103825260348152602001806124a76034913960400191505060405180910390fd5b610ba1610669826801000000000000000063ffffffff611e4316565b336000818152606a6020908152604080832080549590950190945560685484517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018690529351600160a060020a039094169363a9059cbb93604480820194918390030190829087803b158015610c2457600080fd5b505af1158015610c38573d6000803e3d6000fd5b505050506040513d6020811015610c4e57600080fd5b5050604080513381526020810183905281517fbace9fd79d5ea02ed8b43fa96af07e4e8f859a2f71ff878c748f5c22c5780284929181900390910190a150565b6000610ca0838363ffffffff61200b16565b90505b92915050565b610cb1611252565b610cf3576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607155565b600054610100900460ff1680610d115750610d11612030565b80610d1f575060005460ff16155b610d5d5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612665602e913960400191505060405180910390fd5b600054610100900460ff16158015610d88576000805460ff1961ff0019909116610100171660011790555b610d913361182b565b606687905560678690556068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841617905560728590556073849055610dd683612036565b8015610de8576000805461ff00191690555b50505050505050565b60705490565b60708181548110610e0457fe5b600091825260209091200154600160a060020a0316905081565b60735481565b60725481565b610e32611252565b610e74576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b60708054600091906000198101908110610e8a57fe5b60009182526020909120015460708054600160a060020a0390921692509080610eaf57fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190556070805482919084908110610eef57fe5b9060005260206000200160006101000a815481600160a060020a030219169083600160a060020a031602179055505050565b610f29611252565b610f6b576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b6127108110610fae5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125af6022913960400191505060405180910390fd5b606755565b610fbb611252565b610ffd576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b603354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36033805473ffffffffffffffffffffffffffffffffffffffff19169055565b60715481565b606c5481565b60715415801590611072575060715442115b6110b4576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b806110be33610638565b10156110fe5760405160e560020a62461bcd02815260040180806020018281038252603481526020018061257b6034913960400191505060405180910390fd5b6000611119826801000000000000000063ffffffff611e4316565b905061112481611e9f565b336000908152606a60205260408120805492909201909155611145836120e7565b604080513381526020810186905280820183905290519192507fc7baba15468fd1418314fb422f04b4c098e4537c6272e621667aff807222a480919081900360600190a1505050565b606e5481565b606d5481565b606854600160a060020a031633146111e65760405160e560020a62461bcd0281526004018080602001828103825260288152602001806125016028913960400191505060405180910390fd5b606b546111f9908263ffffffff61225f16565b606b5561120581611f7f565b604080513381526020810183905281517f3b5b764958bcf10eae6e214b635b729c52c8a4962688629cf597c3167cca2022929181900390910190a150565b603354600160a060020a031690565b603354600090600160a060020a03166112696122bc565b600160a060020a031614905090565b611280611252565b6112c2576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607080546001810182556000919091527f8f6b23ffa15f0465e3176e15ca644cf24f86dc1312fe715484e3c4aead5eb78b01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518392600160a060020a0316916370a08231916024808301926020929190829003018186803b15801561138457600080fd5b505afa158015611398573d6000803e3d6000fd5b505050506040513d60208110156113ae57600080fd5b505110156113f05760405160e560020a62461bcd0281526004018080602001828103825260328152602001806124486032913960400191505060405180910390fd5b606b54611403908263ffffffff61225f16565b606b5561140f81611f7f565b6068546040805160e060020a6323b872dd028152336004820152306024820152604481018490529051600160a060020a03909216916323b872dd916064808201926020929091908290030181600087803b15801561146c57600080fd5b505af1158015611480573d6000803e3d6000fd5b505050506040513d602081101561149657600080fd5b50516112055760405160e560020a62461bcd02815260040180806020018281038252602b8152602001806123c3602b913960400191505060405180910390fd5b60675481565b60756020526000908152604090205460ff1681565b60715415801590611503575060715442115b611545576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b3360009081526075602052604090205460ff1615156001146115b1576040805160e560020a62461bcd02815260206004820152601c60248201527f4d757374206265207265676973746572656420746f207374616b652e00000000604482015290519081900360640190fd5b670de0b6b3a7640000811015611611576040805160e560020a62461bcd02815260206004820152601c60248201527f4d757374207374616b65206174206c65617374206f6e65204c49442e00000000604482015290519081900360640190fd5b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518392600160a060020a0316916370a08231916024808301926020929190829003018186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d602081101561169e57600080fd5b505110156116e05760405160e560020a62461bcd02815260040180806020018281038252602d81526020018061247a602d913960400191505060405180910390fd5b3360009081526069602052604090205461170c57606d5461170890600163ffffffff61225f16565b606d555b6000611717826120e7565b6068546040805160e060020a6323b872dd028152336004820152306024820152604481018690529051929350600160a060020a03909116916323b872dd916064808201926020929091908290030181600087803b15801561177757600080fd5b505af115801561178b573d6000803e3d6000fd5b505050506040513d60208110156117a157600080fd5b50516117e15760405160e560020a62461bcd0281526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b604080513381526020810184905280820183905290517ffeb41de252fbc1de97d95a27ed44f6044e66e11df6ca319955eef830b598fdb49181900360600190a15050565b60665481565b600054610100900460ff16806118445750611844612030565b80611852575060005460ff16155b6118905760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612665602e913960400191505060405180910390fd5b600054610100900460ff161580156118bb576000805460ff1961ff0019909116610100171660011790555b6033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015611929576000805461ff00191690555b5050565b611938816000611a46565b50565b611943611252565b611985576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b61271081106119c85760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125af6022913960400191505060405180910390fd5b606655565b60696020526000908152604090205481565b6119e7611252565b611a29576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607291909155607355565b60746020526000908152604090205481565b60715415801590611a58575060715442115b611a9a576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b3360009081526075602052604090205460ff1615611b02576040805160e560020a62461bcd02815260206004820152601d60248201527f5374616b6572206d757374206e6f742062652072656769737465726564000000604482015290519081900360640190fd5b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518492600160a060020a0316916370a08231916024808301926020929190829003018186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d6020811015611b8f57600080fd5b50511015611bd15760405160e560020a62461bcd0281526004018080602001828103825260288152602001806126b36028913960400191505060405180910390fd5b6000600160a060020a038216611c4b57607354831015611c255760405160e560020a62461bcd0281526004018080602001828103825260368152602001806123ee6036913960400191505060405180910390fd5b611c30607354611321565b607354611c4490849063ffffffff611f3d16565b9050611db6565b607254831015611c8f5760405160e560020a62461bcd0281526004018080602001828103825260368152602001806123ee6036913960400191505060405180910390fd5b6068546072546040805160e060020a6323b872dd028152336004820152600160a060020a0386811660248301526044820193909352905191909216916323b872dd9160648083019260209291908290030181600087803b158015611cf257600080fd5b505af1158015611d06573d6000803e3d6000fd5b505050506040513d6020811015611d1c57600080fd5b5051611d5c5760405160e560020a62461bcd02815260040180806020018281038252602d815260200180612529602d913960400191505060405180910390fd5b600160a060020a038216600090815260746020526040902054611d8690600163ffffffff61225f16565b600160a060020a038316600090815260746020526040902055607254611db390849063ffffffff611f3d16565b90505b336000908152607560205260409020805460ff19166001179055611dd9816114f1565b505050565b611de6611252565b611e28576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b61193881612036565b606a6020526000908152604090205481565b600082611e5257506000610ca3565b82820282848281611e5f57fe5b0414610ca05760405160e560020a62461bcd0281526004018080602001828103825260218152602001806126246021913960400191505060405180910390fd5b6000611eb4600019600263ffffffff611efb16565b8210611ef45760405160e560020a62461bcd0281526004018080602001828103825260258152602001806125566025913960400191505060405180910390fd5b5080610719565b6000610ca083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122c0565b6000610ca083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612365565b606c5415611ff257606f5415611fab57606f54611fa390829063ffffffff61225f16565b6000606f5590505b606c54611fea90611fdb90611fcf846801000000000000000063ffffffff611e4316565b9063ffffffff611efb16565b606e549063ffffffff61225f16565b606e55611938565b606f54612005908263ffffffff61225f16565b606f5550565b60008261201a57506000610ca3565b610ca0612710611fcf858563ffffffff611e4316565b303b1590565b600160a060020a03811661207e5760405160e560020a62461bcd0281526004018080602001828103825260268152602001806124db6026913960400191505060405180910390fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006120f582606654610c8e565b90506000612109838363ffffffff611f3d16565b606c5490915061211f908263ffffffff61225f16565b606c5533600090815260696020526040902054612142908263ffffffff61225f16565b336000908152606960205260408120919091555b607054811015612216576070818154811061216d57fe5b600091825260208083209091015433808452606990925260408084205481517f71d7278e000000000000000000000000000000000000000000000000000000008152600481019490945260248401879052604484015251600160a060020a03909116926371d7278e926064808201939182900301818387803b1580156121f257600080fd5b505af1158015612206573d6000803e3d6000fd5b5050600190920191506121569050565b50606e5460009061222d908363ffffffff611e4316565b905061223881611e9f565b336000908152606a60205260409020805491909101905561225883611f7f565b5050919050565b600082820183811015610ca0576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6000818361234f5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123145781810151838201526020016122fc565b50505050905090810190601f1680156123415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161235b57fe5b0495945050505050565b600081848411156123ba5760405160e560020a62461bcd0281526020600482018181528351602484015283519092839260449091019190850190808383600083156123145781810151838201526020016122fc565b50505090039056fe446973747269627574696f6e206661696c65642064756520746f206661696c6564207472616e736665722e4d7573742073656e64206174206c6561737420656e6f756768204c494420746f2070617920726567697374726174696f6e206665652e5374616b65206661696c65642064756520746f206661696c6564207472616e736665722e43616e6e6f742064697374726962757465206d6f7265204c4944207468616e20796f7520686f6c6420756e7374616b65642e43616e6e6f74207374616b65206d6f7265204c4944207468616e20796f7520686f6c6420756e7374616b65642e43616e6e6f74207769746864726177206d6f7265206469766964656e6473207468616e20796f752068617665206561726e65642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e206f6e6c792062652063616c6c6564206279204c6964546f6b656e20636f6e74726163742e5374616b65206661696c65642064756520746f206661696c656420726566657272616c207472616e736665722e4f766572666c6f772e2043616e6e6f7420636f6e766572742075696e7420746f20696e742e43616e6e6f74207265696e76657374206d6f7265206469766964656e6473207468616e20796f752068617665206561726e65642e54617820636f6e6e6f74206265206f76657220313030252028313030303020425029556e7374616b65206661696c65642064756520746f206661696c6564207472616e736665722e43616e6e6f7420756e7374616b65206d6f7265204c4944207468616e20796f752068617665207374616b65642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65645374616b696e67206e6f742079657420737461727465642e00000000000000004d757374206861766520656e6f7567682062616c616e636520746f207374616b6520616d6f756e74a265627a7a723158206bc59d4c7dd5f850d7f5c2cc36e6969d041a8ac781ca47a904613eb0dcf7ee3864736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610243576000357c010000000000000000000000000000000000000000000000000000000090048063869890381161014d578063a830a78b116100d5578063e7d643cf11610099578063e7d643cf14610577578063ee3e3acf1461059a578063f24ee7d3146105c0578063f2fde38b146105ec578063fc8690a21461061257610243565b8063a830a78b146104e9578063c4d66de8146104f1578063c52d47f014610517578063c5acdb7a14610534578063d7a88e3c1461055157610243565b8063903ca8cb1161011c578063903ca8cb1461045b57806391c05b0b14610481578063947f9a811461049e5780639d58b00c146104a6578063a694fc3a146104cc57610243565b806386989038146104125780638cb3c6611461041a5780638da5cb5b146104375780638f32d59b1461043f57610243565b80634feba02a116101d0578063715018a61161019f578063715018a6146103d557806378e97925146103dd578063817b1cd2146103e557806383b4918b146103ed5780638650e92a1461040a57610243565b80634feba02a1461038b5780635632fe2a14610393578063568b19ed1461039b57806361879df3146103b857610243565b80633a8ec83e116102175780633a8ec83e146102c45780633e0a322d146102e7578063439cc54c146103045780634a1523dd1461034a5780634bd5fd5d1461035257610243565b806265318b14610248578063163db71b146102805780632e17de78146102885780632e1a7d4d146102a7575b600080fd5b61026e6004803603602081101561025e57600080fd5b5035600160a060020a0316610638565b60408051918252519081900360200190f35b61026e61071e565b6102a56004803603602081101561029e57600080fd5b5035610724565b005b6102a5600480360360208110156102bd57600080fd5b5035610ae7565b61026e600480360360408110156102da57600080fd5b5080359060200135610c8e565b6102a5600480360360208110156102fd57600080fd5b5035610ca9565b6102a5600480360360c081101561031a57600080fd5b50803590602081013590604081013590606081013590600160a060020a03608082013581169160a0013516610cf8565b61026e610df1565b61036f6004803603602081101561036857600080fd5b5035610df7565b60408051600160a060020a039092168252519081900360200190f35b61026e610e1e565b61026e610e24565b6102a5600480360360208110156103b157600080fd5b5035610e2a565b6102a5600480360360208110156103ce57600080fd5b5035610f21565b6102a5610fb3565b61026e611054565b61026e61105a565b6102a56004803603602081101561040357600080fd5b5035611060565b61026e61118e565b61026e611194565b6102a56004803603602081101561043057600080fd5b503561119a565b61036f611243565b610447611252565b604080519115158252519081900360200190f35b6102a56004803603602081101561047157600080fd5b5035600160a060020a0316611278565b6102a56004803603602081101561049757600080fd5b5035611321565b61026e6114d6565b610447600480360360208110156104bc57600080fd5b5035600160a060020a03166114dc565b6102a5600480360360208110156104e257600080fd5b50356114f1565b61026e611825565b6102a56004803603602081101561050757600080fd5b5035600160a060020a031661182b565b6102a56004803603602081101561052d57600080fd5b503561192d565b6102a56004803603602081101561054a57600080fd5b503561193b565b61026e6004803603602081101561056757600080fd5b5035600160a060020a03166119cd565b6102a56004803603604081101561058d57600080fd5b50803590602001356119df565b61026e600480360360208110156105b057600080fd5b5035600160a060020a0316611a34565b6102a5600480360360408110156105d657600080fd5b5080359060200135600160a060020a0316611a46565b6102a56004803603602081101561060257600080fd5b5035600160a060020a0316611dde565b61026e6004803603602081101561062857600080fd5b5035600160a060020a0316611e31565b600160a060020a038116600090815260696020526040812054606e54829161066e916106699163ffffffff611e4316565b611e9f565b600160a060020a0384166000908152606a60205260409020549091508112156106e1576040805160e560020a62461bcd02815260206004820152601660248201527f6469766964656e642063616c63206f766572666c6f7700000000000000000000604482015290519081900360640190fd5b600160a060020a0383166000908152606a60205260409020546107159082036801000000000000000063ffffffff611efb16565b9150505b919050565b606b5481565b60715415801590610736575060715442115b610778576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b670de0b6b3a76400008110156107d8576040805160e560020a62461bcd02815260206004820152601e60248201527f4d75737420756e7374616b65206174206c65617374206f6e65204c49442e0000604482015290519081900360640190fd5b336000908152606960205260409020548111156108295760405160e560020a62461bcd02815260040180806020018281038252602d8152602001806125f7602d913960400191505060405180910390fd5b61083a61083533610638565b610ae7565b3360009081526069602052604090205481141561086957606d5461086590600163ffffffff611f3d16565b606d555b606c5461087c908263ffffffff611f3d16565b606c553360009081526069602052604090205461089f908263ffffffff611f3d16565b336000908152606960205260408120919091556067546108c0908390610c8e565b905060006108d4838363ffffffff611f3d16565b90506108df82611f7f565b33600090815260696020526040902054606e5461090691610669919063ffffffff611e4316565b336000908152606a60205260408120919091555b6070548110156109da576070818154811061093157fe5b600091825260208083209091015433808452606990925260408084205481517f63863e6f000000000000000000000000000000000000000000000000000000008152600481019490945260248401899052604484015251600160a060020a03909116926363863e6f926064808201939182900301818387803b1580156109b657600080fd5b505af11580156109ca573d6000803e3d6000fd5b50506001909201915061091a9050565b506068546040805160e060020a6323b872dd028152306004820152336024820152604481018490529051600160a060020a03909216916323b872dd916064808201926020929091908290030181600087803b158015610a3857600080fd5b505af1158015610a4c573d6000803e3d6000fd5b505050506040513d6020811015610a6257600080fd5b5051610aa25760405160e560020a62461bcd0281526004018080602001828103825260268152602001806125d16026913960400191505060405180910390fd5b604080513381526020810185905280820184905290517fefe5e683dfe58f596b38874c815bc9599676515f5e641a3305c40aba31c822a79181900360600190a1505050565b60715415801590610af9575060715442115b610b3b576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b80610b4533610638565b1015610b855760405160e560020a62461bcd0281526004018080602001828103825260348152602001806124a76034913960400191505060405180910390fd5b610ba1610669826801000000000000000063ffffffff611e4316565b336000818152606a6020908152604080832080549590950190945560685484517fa9059cbb0000000000000000000000000000000000000000000000000000000081526004810194909452602484018690529351600160a060020a039094169363a9059cbb93604480820194918390030190829087803b158015610c2457600080fd5b505af1158015610c38573d6000803e3d6000fd5b505050506040513d6020811015610c4e57600080fd5b5050604080513381526020810183905281517fbace9fd79d5ea02ed8b43fa96af07e4e8f859a2f71ff878c748f5c22c5780284929181900390910190a150565b6000610ca0838363ffffffff61200b16565b90505b92915050565b610cb1611252565b610cf3576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607155565b600054610100900460ff1680610d115750610d11612030565b80610d1f575060005460ff16155b610d5d5760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612665602e913960400191505060405180910390fd5b600054610100900460ff16158015610d88576000805460ff1961ff0019909116610100171660011790555b610d913361182b565b606687905560678690556068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841617905560728590556073849055610dd683612036565b8015610de8576000805461ff00191690555b50505050505050565b60705490565b60708181548110610e0457fe5b600091825260209091200154600160a060020a0316905081565b60735481565b60725481565b610e32611252565b610e74576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b60708054600091906000198101908110610e8a57fe5b60009182526020909120015460708054600160a060020a0390921692509080610eaf57fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff191690550190556070805482919084908110610eef57fe5b9060005260206000200160006101000a815481600160a060020a030219169083600160a060020a031602179055505050565b610f29611252565b610f6b576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b6127108110610fae5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125af6022913960400191505060405180910390fd5b606755565b610fbb611252565b610ffd576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b603354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36033805473ffffffffffffffffffffffffffffffffffffffff19169055565b60715481565b606c5481565b60715415801590611072575060715442115b6110b4576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b806110be33610638565b10156110fe5760405160e560020a62461bcd02815260040180806020018281038252603481526020018061257b6034913960400191505060405180910390fd5b6000611119826801000000000000000063ffffffff611e4316565b905061112481611e9f565b336000908152606a60205260408120805492909201909155611145836120e7565b604080513381526020810186905280820183905290519192507fc7baba15468fd1418314fb422f04b4c098e4537c6272e621667aff807222a480919081900360600190a1505050565b606e5481565b606d5481565b606854600160a060020a031633146111e65760405160e560020a62461bcd0281526004018080602001828103825260288152602001806125016028913960400191505060405180910390fd5b606b546111f9908263ffffffff61225f16565b606b5561120581611f7f565b604080513381526020810183905281517f3b5b764958bcf10eae6e214b635b729c52c8a4962688629cf597c3167cca2022929181900390910190a150565b603354600160a060020a031690565b603354600090600160a060020a03166112696122bc565b600160a060020a031614905090565b611280611252565b6112c2576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607080546001810182556000919091527f8f6b23ffa15f0465e3176e15ca644cf24f86dc1312fe715484e3c4aead5eb78b01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518392600160a060020a0316916370a08231916024808301926020929190829003018186803b15801561138457600080fd5b505afa158015611398573d6000803e3d6000fd5b505050506040513d60208110156113ae57600080fd5b505110156113f05760405160e560020a62461bcd0281526004018080602001828103825260328152602001806124486032913960400191505060405180910390fd5b606b54611403908263ffffffff61225f16565b606b5561140f81611f7f565b6068546040805160e060020a6323b872dd028152336004820152306024820152604481018490529051600160a060020a03909216916323b872dd916064808201926020929091908290030181600087803b15801561146c57600080fd5b505af1158015611480573d6000803e3d6000fd5b505050506040513d602081101561149657600080fd5b50516112055760405160e560020a62461bcd02815260040180806020018281038252602b8152602001806123c3602b913960400191505060405180910390fd5b60675481565b60756020526000908152604090205460ff1681565b60715415801590611503575060715442115b611545576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b3360009081526075602052604090205460ff1615156001146115b1576040805160e560020a62461bcd02815260206004820152601c60248201527f4d757374206265207265676973746572656420746f207374616b652e00000000604482015290519081900360640190fd5b670de0b6b3a7640000811015611611576040805160e560020a62461bcd02815260206004820152601c60248201527f4d757374207374616b65206174206c65617374206f6e65204c49442e00000000604482015290519081900360640190fd5b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518392600160a060020a0316916370a08231916024808301926020929190829003018186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d602081101561169e57600080fd5b505110156116e05760405160e560020a62461bcd02815260040180806020018281038252602d81526020018061247a602d913960400191505060405180910390fd5b3360009081526069602052604090205461170c57606d5461170890600163ffffffff61225f16565b606d555b6000611717826120e7565b6068546040805160e060020a6323b872dd028152336004820152306024820152604481018690529051929350600160a060020a03909116916323b872dd916064808201926020929091908290030181600087803b15801561177757600080fd5b505af115801561178b573d6000803e3d6000fd5b505050506040513d60208110156117a157600080fd5b50516117e15760405160e560020a62461bcd0281526004018080602001828103825260248152602001806124246024913960400191505060405180910390fd5b604080513381526020810184905280820183905290517ffeb41de252fbc1de97d95a27ed44f6044e66e11df6ca319955eef830b598fdb49181900360600190a15050565b60665481565b600054610100900460ff16806118445750611844612030565b80611852575060005460ff16155b6118905760405160e560020a62461bcd02815260040180806020018281038252602e815260200180612665602e913960400191505060405180910390fd5b600054610100900460ff161580156118bb576000805460ff1961ff0019909116610100171660011790555b6033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015611929576000805461ff00191690555b5050565b611938816000611a46565b50565b611943611252565b611985576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b61271081106119c85760405160e560020a62461bcd0281526004018080602001828103825260228152602001806125af6022913960400191505060405180910390fd5b606655565b60696020526000908152604090205481565b6119e7611252565b611a29576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b607291909155607355565b60746020526000908152604090205481565b60715415801590611a58575060715442115b611a9a576040805160e560020a62461bcd0281526020600482015260186024820152600080516020612693833981519152604482015290519081900360640190fd5b3360009081526075602052604090205460ff1615611b02576040805160e560020a62461bcd02815260206004820152601d60248201527f5374616b6572206d757374206e6f742062652072656769737465726564000000604482015290519081900360640190fd5b606854604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290518492600160a060020a0316916370a08231916024808301926020929190829003018186803b158015611b6557600080fd5b505afa158015611b79573d6000803e3d6000fd5b505050506040513d6020811015611b8f57600080fd5b50511015611bd15760405160e560020a62461bcd0281526004018080602001828103825260288152602001806126b36028913960400191505060405180910390fd5b6000600160a060020a038216611c4b57607354831015611c255760405160e560020a62461bcd0281526004018080602001828103825260368152602001806123ee6036913960400191505060405180910390fd5b611c30607354611321565b607354611c4490849063ffffffff611f3d16565b9050611db6565b607254831015611c8f5760405160e560020a62461bcd0281526004018080602001828103825260368152602001806123ee6036913960400191505060405180910390fd5b6068546072546040805160e060020a6323b872dd028152336004820152600160a060020a0386811660248301526044820193909352905191909216916323b872dd9160648083019260209291908290030181600087803b158015611cf257600080fd5b505af1158015611d06573d6000803e3d6000fd5b505050506040513d6020811015611d1c57600080fd5b5051611d5c5760405160e560020a62461bcd02815260040180806020018281038252602d815260200180612529602d913960400191505060405180910390fd5b600160a060020a038216600090815260746020526040902054611d8690600163ffffffff61225f16565b600160a060020a038316600090815260746020526040902055607254611db390849063ffffffff611f3d16565b90505b336000908152607560205260409020805460ff19166001179055611dd9816114f1565b505050565b611de6611252565b611e28576040805160e560020a62461bcd0281526020600482018190526024820152600080516020612645833981519152604482015290519081900360640190fd5b61193881612036565b606a6020526000908152604090205481565b600082611e5257506000610ca3565b82820282848281611e5f57fe5b0414610ca05760405160e560020a62461bcd0281526004018080602001828103825260218152602001806126246021913960400191505060405180910390fd5b6000611eb4600019600263ffffffff611efb16565b8210611ef45760405160e560020a62461bcd0281526004018080602001828103825260258152602001806125566025913960400191505060405180910390fd5b5080610719565b6000610ca083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122c0565b6000610ca083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612365565b606c5415611ff257606f5415611fab57606f54611fa390829063ffffffff61225f16565b6000606f5590505b606c54611fea90611fdb90611fcf846801000000000000000063ffffffff611e4316565b9063ffffffff611efb16565b606e549063ffffffff61225f16565b606e55611938565b606f54612005908263ffffffff61225f16565b606f5550565b60008261201a57506000610ca3565b610ca0612710611fcf858563ffffffff611e4316565b303b1590565b600160a060020a03811661207e5760405160e560020a62461bcd0281526004018080602001828103825260268152602001806124db6026913960400191505060405180910390fd5b603354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36033805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006120f582606654610c8e565b90506000612109838363ffffffff611f3d16565b606c5490915061211f908263ffffffff61225f16565b606c5533600090815260696020526040902054612142908263ffffffff61225f16565b336000908152606960205260408120919091555b607054811015612216576070818154811061216d57fe5b600091825260208083209091015433808452606990925260408084205481517f71d7278e000000000000000000000000000000000000000000000000000000008152600481019490945260248401879052604484015251600160a060020a03909116926371d7278e926064808201939182900301818387803b1580156121f257600080fd5b505af1158015612206573d6000803e3d6000fd5b5050600190920191506121569050565b50606e5460009061222d908363ffffffff611e4316565b905061223881611e9f565b336000908152606a60205260409020805491909101905561225883611f7f565b5050919050565b600082820183811015610ca0576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6000818361234f5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123145781810151838201526020016122fc565b50505050905090810190601f1680156123415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161235b57fe5b0495945050505050565b600081848411156123ba5760405160e560020a62461bcd0281526020600482018181528351602484015283519092839260449091019190850190808383600083156123145781810151838201526020016122fc565b50505090039056fe446973747269627574696f6e206661696c65642064756520746f206661696c6564207472616e736665722e4d7573742073656e64206174206c6561737420656e6f756768204c494420746f2070617920726567697374726174696f6e206665652e5374616b65206661696c65642064756520746f206661696c6564207472616e736665722e43616e6e6f742064697374726962757465206d6f7265204c4944207468616e20796f7520686f6c6420756e7374616b65642e43616e6e6f74207374616b65206d6f7265204c4944207468616e20796f7520686f6c6420756e7374616b65642e43616e6e6f74207769746864726177206d6f7265206469766964656e6473207468616e20796f752068617665206561726e65642e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e206f6e6c792062652063616c6c6564206279204c6964546f6b656e20636f6e74726163742e5374616b65206661696c65642064756520746f206661696c656420726566657272616c207472616e736665722e4f766572666c6f772e2043616e6e6f7420636f6e766572742075696e7420746f20696e742e43616e6e6f74207265696e76657374206d6f7265206469766964656e6473207468616e20796f752068617665206561726e65642e54617820636f6e6e6f74206265206f76657220313030252028313030303020425029556e7374616b65206661696c65642064756520746f206661696c6564207472616e736665722e43616e6e6f7420756e7374616b65206d6f7265204c4944207468616e20796f752068617665207374616b65642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65645374616b696e67206e6f742079657420737461727465642e00000000000000004d757374206861766520656e6f7567682062616c616e636520746f207374616b6520616d6f756e74a265627a7a723158206bc59d4c7dd5f850d7f5c2cc36e6969d041a8ac781ca47a904613eb0dcf7ee3864736f6c63430005100032

Deployed Bytecode Sourcemap

13206:9663:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13206:9663:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19924:328;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19924:328:0;-1:-1:-1;;;;;19924:328:0;;:::i;:::-;;;;;;;;;;;;;;;;13606:30;;;:::i;17290:1105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17290:1105:0;;:::i;:::-;;18403:380;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18403:380:0;;:::i;20260:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20260:118:0;;;;;;;:::i;21196:99::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21196:99:0;;:::i;14700:683::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;14700:683:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14700:683:0;;;;;;;;;;;;:::i;20386:116::-;;;:::i;13843:36::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13843:36:0;;:::i;:::-;;;;-1:-1:-1;;;;;13843:36:0;;;;;;;;;;;;;;13962:42;;;:::i;13916:39::-;;;:::i;20626:204::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20626:204:0;;:::i;21015:173::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21015:173:0;;:::i;10317:140::-;;;:::i;13886:21::-;;;:::i;13643:23::-;;;:::i;18791:409::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18791:409:0;;:::i;13704:26::-;;;:::i;13673:24::-;;;:::i;19690:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19690:226:0;;:::i;9504:79::-;;;:::i;9870:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;20510:108;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20510:108:0;-1:-1:-1;;;;;20510:108:0;;:::i;19208:474::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19208:474:0;;:::i;13423:26::-;;;:::i;14066:50::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14066:50:0;-1:-1:-1;;;;;14066:50:0;;:::i;16675:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16675:607:0;;:::i;13392:24::-;;;:::i;9278:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9278:145:0;-1:-1:-1;;;;;9278:145:0;;:::i;15391:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15391:103:0;;:::i;20838:169::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20838:169:0;;:::i;13502:42::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13502:42:0;-1:-1:-1;;;;;13502:42:0;;:::i;21303:229::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21303:229:0;;;;;;;:::i;14011:48::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14011:48:0;-1:-1:-1;;;;;14011:48:0;;:::i;15502:1165::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15502:1165:0;;;;;;-1:-1:-1;;;;;15502:1165:0;;:::i;10612:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10612:109:0;-1:-1:-1;;;;;10612:109:0;;:::i;13551:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13551:44:0;-1:-1:-1;;;;;13551:44:0;;:::i;19924:328::-;-1:-1:-1;;;;;20044:18:0;;19982:4;20044:18;;;:10;:18;;;;;;20025:14;;19982:4;;20015:49;;20025:38;;;:18;:38;:::i;:::-;20015:9;:49::i;:::-;-1:-1:-1;;;;;20096:21:0;;;;;;:13;:21;;;;;;19999:65;;-1:-1:-1;20083:34:0;;;20075:69;;;;;-1:-1:-1;;;;;20075:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20179:21:0;;;;;;:13;:21;;;;;;20162:82;;20167:33;;13376:7;20162:82;:57;:82;:::i;:::-;20155:89;;;19924:328;;;;:::o;13606:30::-;;;;:::o;17290:1105::-;14610:9;;:14;;;;:33;;;14634:9;;14628:3;:15;14610:33;14602:70;;;;;-1:-1:-1;;;;;14602:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14602:70:0;;;;;;;;;;;;;;;17376:4;17366:6;:14;;17358:57;;;;;-1:-1:-1;;;;;17358:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17445:10;17434:22;;;;:10;:22;;;;;;:32;-1:-1:-1;17434:32:0;17426:90;;;;-1:-1:-1;;;;;17426:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17588:33;17597:23;17609:10;17597:11;:23::i;:::-;17588:8;:33::i;:::-;17647:10;17636:22;;;;:10;:22;;;;;;:32;;17632:72;;;17685:12;;:19;;17702:1;17685:19;:16;:19;:::i;:::-;17670:12;:34;17632:72;17729:11;;:23;;17745:6;17729:23;:15;:23;:::i;:::-;17715:11;:37;17799:10;17788:22;;;;:10;:22;;;;;;:34;;17815:6;17788:34;:26;:34;:::i;:::-;17774:10;17763:22;;;;:10;:22;;;;;:59;;;;17868:14;;17846:37;;17860:6;;17846:13;:37::i;:::-;17835:48;-1:-1:-1;17894:13:0;17910:15;:6;17835:48;17910:15;:10;:15;:::i;:::-;17894:31;;17936:28;17960:3;17936:23;:28::i;:::-;18043:10;18032:22;;;;:10;:22;;;;;;18013:14;;18003:53;;18013:42;;:14;:42;:18;:42;:::i;18003:53::-;17989:10;17975:25;;;;:13;:25;;;;;:81;;;;18069:147;18088:13;:20;18084:24;;18069:147;;;18130:13;18144:1;18130:16;;;;;;;;;;;;;;;;;;;;18161:10;18181:22;;;:10;:22;;;;;;;;18130:74;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18130:16:0;;;;:30;;:74;;;;;;;;;;;:16;;:74;;;5:2:-1;;;;30:1;27;20:12;5:2;18130:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;18110:3:0;;;;;-1:-1:-1;18069:147:0;;-1:-1:-1;18069:147:0;;-1:-1:-1;18236:8:0;;:58;;;-1:-1:-1;;;;;18236:58:0;;18266:4;18236:58;;;;18273:10;18236:58;;;;;;;;;;;;-1:-1:-1;;;;;18236:8:0;;;;:21;;:58;;;;;;;;;;;;;;;:8;;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;18236:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18236:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18236:58:0;18228:109;;;;-1:-1:-1;;;;;18228:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18353:34;;;18363:10;18353:34;;;;;;;;;;;;;;;;;;;;;;;;;14683:1;;17290:1105;:::o;18403:380::-;14610:9;;:14;;;;:33;;;14634:9;;14628:3;:15;14610:33;14602:70;;;;;-1:-1:-1;;;;;14602:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14602:70:0;;;;;;;;;;;;;;;18505:6;18478:23;18490:10;18478:11;:23::i;:::-;:33;;18470:98;;;;-1:-1:-1;;;;;18470:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18635:46;18645:35;:6;13376:7;18645:35;:10;:35;:::i;18635:46::-;18621:10;18607:25;;;;:13;:25;;;;;;;;;;:74;;;;18579:102;;;18692:8;;:37;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18692:8:0;;;;:17;;:37;;;;;;;;;;;;;:8;:37;;;5:2:-1;;;;30:1;27;20:12;5:2;18692:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18692:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;18745:30:0;;;18756:10;18745:30;;18692:37;18745:30;;;;;;;;;;;;;;;;;;18403:380;:::o;20260:118::-;20328:4;20352:18;:5;20364;20352:18;:11;:18;:::i;:::-;20345:25;;20260:118;;;;;:::o;21196:99::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;21265:9;:22;21196:99::o;14700:683::-;6475:12;;;;;;;;:31;;;6491:15;:13;:15::i;:::-;6475:47;;;-1:-1:-1;6511:11:0;;;;6510:12;6475:47;6467:106;;;;-1:-1:-1;;;;;6467:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6582:19;6605:12;;;;;;6604:13;6624:83;;;;6653:12;:19;;-1:-1:-1;;;;6653:19:0;;;;;6681:18;6668:4;6681:18;;;6624:83;14974:30;14993:10;14974:18;:30::i;:::-;15015:12;:28;;;15054:14;:31;;;15096:8;:20;;-1:-1:-1;;15096:20:0;-1:-1:-1;;;;;15096:20:0;;;;;15127:27;:58;;;15196:30;:64;;;15350:25;15369:5;15350:18;:25::i;:::-;6729:14;6725:57;;;6769:5;6754:20;;-1:-1:-1;;6754:20:0;;;6725:57;14700:683;;;;;;;:::o;20386:116::-;20474:13;:20;20386:116;:::o;13843:36::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13843:36:0;;-1:-1:-1;13843:36:0;:::o;13962:42::-;;;;:::o;13916:39::-;;;;:::o;20626:204::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;20719:13;20733:20;;20700:16;;20719:13;-1:-1:-1;;20733:22:0;;;20719:37;;;;;;;;;;;;;;;;20767:13;:19;;-1:-1:-1;;;;;20719:37:0;;;;-1:-1:-1;20767:13:0;:19;;;;;;;;;;;;;;-1:-1:-1;;20767:19:0;;;;;-1:-1:-1;;20767:19:0;;;;;;20797:13;:20;;20820:2;;20797:13;20811:5;;20797:20;;;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;20797:25:0;;;;;-1:-1:-1;;;;;20797:25:0;;;;;;9773:1;20626:204;:::o;21015:173::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;21101:5;21091:7;:15;21083:62;;;;-1:-1:-1;;;;;21083:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21156:14;:24;21015:173::o;10317:140::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;10400:6;;10379:40;;10416:1;;-1:-1:-1;;;;;10400:6:0;;10379:40;;10416:1;;10379:40;10430:6;:19;;-1:-1:-1;;10430:19:0;;;10317:140::o;13886:21::-;;;;:::o;13643:23::-;;;;:::o;18791:409::-;14610:9;;:14;;;;:33;;;14634:9;;14628:3;:15;14610:33;14602:70;;;;;-1:-1:-1;;;;;14602:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14602:70:0;;;;;;;;;;;;;;;18895:6;18868:23;18880:10;18868:11;:23::i;:::-;:33;;18860:98;;;;-1:-1:-1;;;;;18860:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18969:11;18983:35;:6;13376:7;18983:35;:10;:35;:::i;:::-;18969:49;;19085:17;19095:6;19085:9;:17::i;:::-;19071:10;19057:25;;;;:13;:25;;;;;;;:45;;;;19029:73;;;19124:17;19134:6;19124:9;:17::i;:::-;19157:35;;;19168:10;19157:35;;;;;;;;;;;;;;;;19113:28;;-1:-1:-1;19157:35:0;;;;;;;;;;14683:1;;18791:409;:::o;13704:26::-;;;;:::o;13673:24::-;;;;:::o;19690:226::-;14482:8;;-1:-1:-1;;;;;14482:8:0;14460:10;:31;14452:84;;;;-1:-1:-1;;;;;14452:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19788:18;;:30;;19811:6;19788:30;:22;:30;:::i;:::-;19767:18;:51;19829:31;19853:6;19829:23;:31::i;:::-;19876:32;;;19889:10;19876:32;;;;;;;;;;;;;;;;;;;;;19690:226;:::o;9504:79::-;9569:6;;-1:-1:-1;;;;;9569:6:0;9504:79;:::o;9870:94::-;9950:6;;9910:4;;-1:-1:-1;;;;;9950:6:0;9934:12;:10;:12::i;:::-;-1:-1:-1;;;;;9934:22:0;;9927:29;;9870:94;:::o;20510:108::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;20588:13;27:10:-1;;39:1;23:18;;45:23;;-1:-1;20588:22:0;;;;;;;;-1:-1:-1;;20588:22:0;-1:-1:-1;;;;;20588:22:0;;;;;;;;;;20510:108::o;19208:474::-;19267:8;;:30;;;;;;19286:10;19267:30;;;;;;19301:6;;-1:-1:-1;;;;;19267:8:0;;:18;;:30;;;;;;;;;;;;;;:8;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;19267:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19267:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19267:30:0;:40;;19259:103;;;;-1:-1:-1;;;;;19259:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19394:18;;:30;;19417:6;19394:30;:22;:30;:::i;:::-;19373:18;:51;19435:31;19459:6;19435:23;:31::i;:::-;19499:8;;:56;;;-1:-1:-1;;;;;19499:56:0;;19521:10;19499:56;;;;19541:4;19499:56;;;;;;;;;;;;-1:-1:-1;;;;;19499:8:0;;;;:21;;:56;;;;;;;;;;;;;;;:8;;:56;;;5:2:-1;;;;30:1;27;20:12;5:2;19499:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19499:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19499:56:0;19477:149;;;;-1:-1:-1;;;;;19477:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13423:26;;;;:::o;14066:50::-;;;;;;;;;;;;;;;:::o;16675:607::-;14610:9;;:14;;;;:33;;;14634:9;;14628:3;:15;14610:33;14602:70;;;;;-1:-1:-1;;;;;14602:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14602:70:0;;;;;;;;;;;;;;;16766:10;16747:30;;;;:18;:30;;;;;;;;:38;;:30;:38;16739:79;;;;;-1:-1:-1;;;;;16739:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16847:4;16837:6;:14;;16829:55;;;;;-1:-1:-1;;;;;16829:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16903:8;;:30;;;;;;16922:10;16903:30;;;;;;16937:6;;-1:-1:-1;;;;;16903:8:0;;:18;;:30;;;;;;;;;;;;;;:8;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16903:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16903:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16903:30:0;:40;;16895:98;;;;-1:-1:-1;;;;;16895:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17019:10;17008:22;;;;:10;:22;;;;;;17004:67;;17052:12;;:19;;17069:1;17052:19;:16;:19;:::i;:::-;17037:12;:34;17004:67;17082:8;17093:17;17103:6;17093:9;:17::i;:::-;17129:8;;:56;;;-1:-1:-1;;;;;17129:56:0;;17151:10;17129:56;;;;17171:4;17129:56;;;;;;;;;;;;17082:28;;-1:-1:-1;;;;;;17129:8:0;;;;:21;;:56;;;;;;;;;;;;;;;:8;;:56;;;5:2:-1;;;;30:1;27;20:12;5:2;17129:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17129:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17129:56:0;17121:105;;;;-1:-1:-1;;;;;17121:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17242:32;;;17250:10;17242:32;;;;;;;;;;;;;;;;;;;;;;;;;14683:1;16675:607;:::o;13392:24::-;;;;:::o;9278:145::-;6475:12;;;;;;;;:31;;;6491:15;:13;:15::i;:::-;6475:47;;;-1:-1:-1;6511:11:0;;;;6510:12;6475:47;6467:106;;;;-1:-1:-1;;;;;6467:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6582:19;6605:12;;;;;;6604:13;6624:83;;;;6653:12;:19;;-1:-1:-1;;;;6653:19:0;;;;;6681:18;6668:4;6681:18;;;6624:83;9344:6;:15;;-1:-1:-1;;9344:15:0;-1:-1:-1;;;;;9344:15:0;;;;;;;;;;;9375:40;;9408:6;;;-1:-1:-1;;9375:40:0;;-1:-1:-1;;9375:40:0;6729:14;6725:57;;;6769:5;6754:20;;-1:-1:-1;;6754:20:0;;;6725:57;9278:145;;:::o;15391:103::-;15448:38;15465:6;15481:3;15448:16;:38::i;:::-;15391:103;:::o;20838:169::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;20922:5;20912:7;:15;20904:62;;;;-1:-1:-1;;;;;20904:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20977:12;:22;20838:169::o;13502:42::-;;;;;;;;;;;;;:::o;21303:229::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;21413:27;:47;;;;21471:30;:53;21303:229::o;14011:48::-;;;;;;;;;;;;;:::o;15502:1165::-;14610:9;;:14;;;;:33;;;14634:9;;14628:3;:15;14610:33;14602:70;;;;;-1:-1:-1;;;;;14602:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14602:70:0;;;;;;;;;;;;;;;15623:10;15604:30;;;;:18;:30;;;;;;;;15603:31;15595:73;;;;;-1:-1:-1;;;;;15595:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15687:8;;:30;;;;;;15706:10;15687:30;;;;;;15721:6;;-1:-1:-1;;;;;15687:8:0;;:18;;:30;;;;;;;;;;;;;;:8;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;15687:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15687:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15687:30:0;:40;;15679:93;;;;-1:-1:-1;;;;;15679:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15783:16;-1:-1:-1;;;;;15813:24:0;;15810:773;;15899:30;;15889:6;:40;;15881:107;;;;-1:-1:-1;;;;;15881:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16003:42;16014:30;;16003:10;:42::i;:::-;16085:30;;16074:42;;:6;;:42;:10;:42;:::i;:::-;16060:56;;15810:773;;;16195:27;;16185:6;:37;;16177:104;;;;-1:-1:-1;;;;;16177:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16304:8;;16348:27;;16304:72;;;-1:-1:-1;;;;;16304:72:0;;16326:10;16304:72;;;;-1:-1:-1;;;;;16304:72:0;;;;;;;;;;;;;;;;:8;;;;;:21;;:72;;;;;;;;;;;;;;:8;;:72;;;5:2:-1;;;;30:1;27;20:12;5:2;16304:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16304:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16304:72:0;16296:130;;;;-1:-1:-1;;;;;16296:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16470:26:0;;;;;;:16;:26;;;;;;:33;;16501:1;16470:33;:30;:33;:::i;:::-;-1:-1:-1;;;;;16441:26:0;;;;;;:16;:26;;;;;:62;16543:27;;16532:39;;:6;;:39;:10;:39;:::i;:::-;16518:53;;15810:773;16612:10;16593:30;;;;:18;:30;;;;;:37;;-1:-1:-1;;16593:37:0;16626:4;16593:37;;;16641:18;16647:11;16641:5;:18::i;:::-;14683:1;15502:1165;;:::o;10612:109::-;9716:9;:7;:9::i;:::-;9708:54;;;;;-1:-1:-1;;;;;9708:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9708:54:0;;;;;;;;;;;;;;;10685:28;10704:8;10685:18;:28::i;13551:44::-;;;;;;;;;;;;;:::o;2231:471::-;2289:7;2534:6;2530:47;;-1:-1:-1;2564:1:0;2557:8;;2530:47;2601:5;;;2605:1;2601;:5;:1;2625:5;;;;;:10;2617:56;;;;-1:-1:-1;;;;;2617:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21540:233;21592:3;21619:15;-1:-1:-1;;21632:1:0;21619:15;:12;:15;:::i;:::-;21612:3;:22;21608:158;;21651:55;;-1:-1:-1;;;;;21651:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21608:158;-1:-1:-1;21750:3:0;21739:15;;3170:132;3228:7;3255:39;3259:1;3262;3255:39;;;;;;;;;;;;;;;;;:3;:39::i;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;:3;:43::i;22421:443::-;22491:11;;:16;22487:370;;22528:16;;:21;22524:138;;22590:16;;22579:28;;:6;;:28;:10;:28;:::i;:::-;22645:1;22626:16;:20;22570:37;-1:-1:-1;22524:138:0;22752:11;;22693:72;;22712:52;;:35;:6;13376:7;22712:35;:10;:35;:::i;:::-;:39;:52;:39;:52;:::i;:::-;22693:14;;;:72;:18;:72;:::i;:::-;22676:14;:89;22487:370;;;22817:16;;:28;;22838:6;22817:28;:20;:28;:::i;:::-;22798:16;:47;22421:443;:::o;11213:151::-;11270:4;11291:8;11287:22;;-1:-1:-1;11308:1:0;11301:8;;11287:22;11327:29;11199:5;11327:11;:3;11335:2;11327:11;:7;:11;:::i;6876:508::-;7293:4;7339:17;7371:7;6876:508;:::o;10827:229::-;-1:-1:-1;;;;;10901:22:0;;10893:73;;;;-1:-1:-1;;;;;10893:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11003:6;;10982:38;;-1:-1:-1;;;;;10982:38:0;;;;11003:6;;10982:38;;11003:6;;10982:38;11031:6;:17;;-1:-1:-1;;11031:17:0;-1:-1:-1;;;;;11031:17:0;;;;;;;;;;10827:229::o;21781:632::-;21831:8;21858:35;21872:6;21880:12;;21858:13;:35::i;:::-;21852:41;-1:-1:-1;21904:16:0;21923:15;:6;21852:41;21923:15;:10;:15;:::i;:::-;21963:11;;21904:34;;-1:-1:-1;21963:28:0;;21904:34;21963:28;:15;:28;:::i;:::-;21949:11;:42;22038:10;22027:22;;;;:10;:22;;;;;;:39;;22054:11;22027:39;:26;:39;:::i;:::-;22013:10;22002:22;;;;:10;:22;;;;;:64;;;;22077:150;22096:13;:20;22092:24;;22077:150;;;22138:13;22152:1;22138:16;;;;;;;;;;;;;;;;;;;;22167:10;22192:22;;;:10;:22;;;;;;;;22138:77;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22138:16:0;;;;:28;;:77;;;;;;;;;;;:16;;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;22138:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;22118:3:0;;;;;-1:-1:-1;22077:150:0;;-1:-1:-1;22077:150:0;;-1:-1:-1;22251:14:0;;22237:11;;22251:31;;22270:11;22251:31;:18;:31;:::i;:::-;22237:45;;22349:17;22359:6;22349:9;:17::i;:::-;22335:10;22321:25;;;;:13;:25;;;;;;;:45;;;;22293:73;;22377:28;22401:3;22377:23;:28::i;:::-;21781:632;;;;;:::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8297:98;8377:10;8297:98;:::o;3832:345::-;3918:7;4020:12;4013:5;4005:28;;;;-1:-1:-1;;;;;4005:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4005:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4044:9;4060:1;4056;:5;;;;;;;3832:345;-1:-1:-1;;;;;3832:345:0:o;1788:192::-;1874:7;1910:12;1902:6;;;;1894:29;;;;-1:-1:-1;;;;;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;1894:29:0;-1:-1:-1;;;1946:5:0;;;1788:192::o

Swarm Source

bzzr://6bc59d4c7dd5f850d7f5c2cc36e6969d041a8ac781ca47a904613eb0dcf7ee38

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.