ETH Price: $3,384.75 (-1.54%)
Gas: 2 Gwei

Contract

0x72be436E5344Bab384A4902717Ec2B78277189Cf
 
Transaction Hash
Method
Block
From
To
Value
0x6c27ae8a0b3c86b27f22d70e7be0f04b236a94bc521e3ba5793d28fd58e3b9e2 Get Reward(pending)2024-06-23 11:19:575 days ago1719141597IN
0x72be436E...8277189Cf
0 ETH(Pending)(Pending)
0x6ee62f291a011412e882ffe74b2f1db23c4ba181aa16ec82e6cf2a5d8130bed2 Withdraw(pending)2024-06-23 4:24:046 days ago1719116644IN
0x72be436E...8277189Cf
0 ETH(Pending)(Pending)
Withdraw201680532024-06-25 10:18:473 days ago1719310727IN
0x72be436E...8277189Cf
0 ETH0.000664373.55243391
Get Reward201557982024-06-23 17:11:475 days ago1719162707IN
0x72be436E...8277189Cf
0 ETH0.017411564.19430643
Withdraw200590582024-06-10 4:31:2319 days ago1717993883IN
0x72be436E...8277189Cf
0 ETH0.00059033.59242128
Get Reward200590582024-06-10 4:31:2319 days ago1717993883IN
0x72be436E...8277189Cf
0 ETH0.006732972.78296373
Withdraw199451302024-05-25 6:34:2335 days ago1716618863IN
0x72be436E...8277189Cf
0 ETH0.000614423.28534029
Get Reward199341012024-05-23 17:34:2336 days ago1716485663IN
0x72be436E...8277189Cf
0 ETH0.0002619912.43809766
Get Reward199340862024-05-23 17:31:2336 days ago1716485483IN
0x72be436E...8277189Cf
0 ETH0.0002893413.73653558
Withdraw198977662024-05-18 15:37:2341 days ago1716046643IN
0x72be436E...8277189Cf
0 ETH0.00073334.11449729
Withdraw198174332024-05-07 9:56:1152 days ago1715075771IN
0x72be436E...8277189Cf
0 ETH0.001074536.12460934
Get Reward197954782024-05-04 8:14:1156 days ago1714810451IN
0x72be436E...8277189Cf
0 ETH0.010081045.0912326
Get Reward197393522024-04-26 11:52:1163 days ago1714132331IN
0x72be436E...8277189Cf
0 ETH0.014739725.15293244
Withdraw197039792024-04-21 13:08:4768 days ago1713704927IN
0x72be436E...8277189Cf
0 ETH0.001604268.57801932
Get Reward197029662024-04-21 9:44:3569 days ago1713692675IN
0x72be436E...8277189Cf
0 ETH0.024549396.7811313
Get Reward196955342024-04-20 8:48:1170 days ago1713602891IN
0x72be436E...8277189Cf
0 ETH0.019008146.60609404
Withdraw196898502024-04-19 13:42:2370 days ago1713534143IN
0x72be436E...8277189Cf
0 ETH0.0029088815.55486804
Withdraw196727002024-04-17 4:06:5973 days ago1713326819IN
0x72be436E...8277189Cf
0 ETH0.001298946
Get Reward196584572024-04-15 4:12:3575 days ago1713154355IN
0x72be436E...8277189Cf
0 ETH0.038987569.3917895
Withdraw196016052024-04-07 5:02:4783 days ago1712466167IN
0x72be436E...8277189Cf
0 ETH0.0017934610.3855602
Withdraw195987532024-04-06 19:25:1183 days ago1712431511IN
0x72be436E...8277189Cf
0 ETH0.0022921113.27313347
Withdraw195335312024-03-28 15:39:1192 days ago1711640351IN
0x72be436E...8277189Cf
0 ETH0.0095327550.97183363
Get Reward195314052024-03-28 8:25:2393 days ago1711614323IN
0x72be436E...8277189Cf
0 ETH0.0010846222.23864003
Withdraw195078232024-03-25 0:02:1196 days ago1711324931IN
0x72be436E...8277189Cf
0 ETH0.003208818.58259457
Get Reward195017932024-03-24 3:38:3597 days ago1711251515IN
0x72be436E...8277189Cf
0 ETH0.0668334816.09964767
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xaCcdC89A...6d4f443E5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MultiRewards

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.5.17;


library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    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;
    }
}

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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 Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

contract Owned {
    address public owner;
    address public nominatedOwner;

    constructor(address _owner) public {
        require(_owner != address(0), "Owner address cannot be 0");
        owner = _owner;
        emit OwnerChanged(address(0), _owner);
    }

    function nominateNewOwner(address _owner) external onlyOwner {
        nominatedOwner = _owner;
        emit OwnerNominated(_owner);
    }

    function acceptOwnership() external {
        require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
        emit OwnerChanged(owner, nominatedOwner);
        owner = nominatedOwner;
        nominatedOwner = address(0);
    }

    modifier onlyOwner {
        _onlyOwner();
        _;
    }

    function _onlyOwner() private view {
        require(msg.sender == owner, "Only the contract owner may perform this action");
    }

    event OwnerNominated(address newOwner);
    event OwnerChanged(address oldOwner, address newOwner);
}

contract Pausable is Owned {
    uint public lastPauseTime;
    bool public paused;

    constructor() internal {
        // This contract is abstract, and thus cannot be instantiated directly
        require(owner != address(0), "Owner must be set");
        // Paused will be false, and lastPauseTime will be 0 upon initialisation
    }

    /**
     * @notice Change the paused state of the contract
     * @dev Only the contract owner may call this.
     */
    function setPaused(bool _paused) external onlyOwner {
        // Ensure we're actually changing the state before we do anything
        if (_paused == paused) {
            return;
        }

        // Set our paused state.
        paused = _paused;

        // If applicable, set the last pause time.
        if (paused) {
            lastPauseTime = now;
        }

        // Let everyone know that our pause state has changed.
        emit PauseChanged(paused);
    }

    event PauseChanged(bool isPaused);

    modifier notPaused {
        require(!paused, "This action cannot be performed while the contract is paused");
        _;
    }
}

contract ReentrancyGuard {
    /// @dev counter to allow mutex lock with only one SSTORE operation
    uint256 private _guardCounter;

    constructor () internal {
        // The counter starts at one to prevent changing it from zero to a non-zero
        // value, which is a more expensive operation.
        _guardCounter = 1;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _guardCounter += 1;
        uint256 localCounter = _guardCounter;
        _;
        require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
    }
}


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

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

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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");
        }
    }
}

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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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-solidity/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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

contract MultiRewards is ReentrancyGuard, Pausable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    /* ========== STATE VARIABLES ========== */

    struct Reward {
        address rewardsDistributor;
        uint256 rewardsDuration;
        uint256 periodFinish;
        uint256 rewardRate;
        uint256 lastUpdateTime;
        uint256 rewardPerTokenStored;
    }
    IERC20 public stakingToken;
    mapping(address => Reward) public rewardData;
    address[] public rewardTokens;

    struct RewardRate {
        uint256 startingTime;      // inclusive of this time
	    uint256 ratePerToken;	   // reward per second for each token from startingTime to next (exclusive).  last one applicable to lastTimeRewardApplicable
    }
    // reward token -> RewardRate[]
    mapping(address => RewardRate[]) public rewardRatePerToken;

    // user -> reward token -> amount
    mapping(address => mapping(address => uint256)) public userRewardPerTokenPaid;
    mapping(address => mapping(address => uint256)) public rewards;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    // handling lockup for individual stake
    uint256 public lockDuration;
    // user -> reward token -> amount
    mapping(address => mapping(address => uint256)) public claimedRewards;

    struct Stake {
        uint256 stakingMaturity;
	    uint256 remainingBalance;	
    }    
    // user -> stakes [stake index]
    mapping(address => Stake[]) public userStakes;

    struct StakeBalance {
        uint256 startingTime;    // inclusive of this time
	    uint256 sBalance;	     // balance from startingTime to next (exclusive of next)    
    }
    // user -> StakeBalance[]
    mapping(address => StakeBalance[]) public userStakeBalance;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        address _owner,
        address _stakingToken,
        uint256 _lockDuration
    ) public Owned(_owner) {
        stakingToken = IERC20(_stakingToken);
        lockDuration = _lockDuration;
    }

    function addReward(
        address _rewardsToken,
        address _rewardsDistributor,
        uint256 _rewardsDuration
    )
        public
        onlyOwner
    {
        require(rewardData[_rewardsToken].rewardsDuration == 0, "reward data of token has been added");
        require(_rewardsToken != address(0) && _rewardsDistributor != address(0), "Zero address not allowed");
        require(_rewardsDuration > 0, "Reward duration must be non-zero");
        rewardTokens.push(_rewardsToken);
        rewardData[_rewardsToken].rewardsDistributor = _rewardsDistributor;
        rewardData[_rewardsToken].rewardsDuration = _rewardsDuration;
        emit RewardsDistributorUpdated(_rewardsToken, _rewardsDistributor);
        emit RewardsDurationUpdated(_rewardsToken, _rewardsDuration);
    }

    /* ========== VIEWS ========== */

    function totalSupply() external view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) external view returns (uint256) {
        return _balances[account];
    }

    function lastTimeRewardApplicable(address _rewardsToken) public view returns (uint256) {
        return Math.min(block.timestamp, rewardData[_rewardsToken].periodFinish);
    }

    function rewardPerToken(address _rewardsToken) public view returns (uint256) {
        if (_totalSupply == 0) {
            return rewardData[_rewardsToken].rewardPerTokenStored;
        }
        return
            rewardData[_rewardsToken].rewardPerTokenStored.add(
                lastTimeRewardApplicable(_rewardsToken).sub(rewardData[_rewardsToken].lastUpdateTime).mul(rewardData[_rewardsToken].rewardRate).mul(1e18).div(_totalSupply)
            );
    }

    function earned(address account, address _rewardsToken) public view returns (uint256) {
        return _balances[account].mul(rewardPerToken(_rewardsToken).sub(userRewardPerTokenPaid[account][_rewardsToken])).div(1e18).add(rewards[account][_rewardsToken]);
    }
    
    function earnedLifetime(address account, address _rewardsToken) public view returns (uint256) {
        uint256 notClaimed = earned(account, _rewardsToken);
        return notClaimed.add(claimedRewards[account][_rewardsToken]);
    }    

    function getRewardForDuration(address _rewardsToken) external view returns (uint256) {
        return rewardData[_rewardsToken].rewardRate.mul(rewardData[_rewardsToken].rewardsDuration);
    }
    
    function unlockedStakeAtTime(address account, uint256 thisTime, uint256 stakeI) public view returns (uint256) {
	    if (userStakes[account][stakeI].remainingBalance > 0 && 
	            (block.timestamp >= rewardData[rewardTokens[0]].periodFinish || userStakes[account][stakeI].stakingMaturity <= thisTime ) )		
	        return userStakes[account][stakeI].remainingBalance;
        else
            return 0;
    }

    function unlockedStake(address account) public view returns (uint256) {
	    uint256 actualAmount = 0;
	    uint256 thisTest = lastTimeRewardApplicable(rewardTokens[0]);
        for (uint i; i < userStakes[account].length; i++) {
		    actualAmount = actualAmount.add(unlockedStakeAtTime(account, thisTest, i));
	    }
	    require(actualAmount <= _balances[account], "internal 0");
        return actualAmount;
    }

    // returns the index in rewardRatePerToken s.t. time[index]<= timeT and time[sss+1]>timeT.
    // corner cases:
    //      if timeT >= time[length-1], return length-1
    //      if timeT <= time[0], return 0
    function indexForRate(address _rewardsToken, uint256 timeT) public view returns (uint256) {
        uint256 length = rewardRatePerToken[_rewardsToken].length;
        uint256 sss = length-1;

        if (length > 1) {    
            for (uint256 j=1; j < length; j++) {
                if (timeT < rewardRatePerToken[_rewardsToken][j].startingTime) {  // rewardRatePerToken[account][j].startingTime is the ending time for j-1 period
                    sss = j.sub(1);
                    break;
                }          
            }
        } else if (length == 1)
            sss = 0;
        else
            sss = 1;   // length == 0, return length+1, invalid

        return sss;
    }

    // returns the index in userStakeBalance s.t. time[index]<= timeT and time[sss+1]>timeT.
    // corner cases:
    //      if timeT >= time[length-1], return length-1
    //      if timeT <= time[0], return 0
    function indexForBalance(address account, uint256 timeT) public view returns (uint256) {
        uint256 length = userStakeBalance[account].length;
        uint256 sss = length-1;

        if (length > 1) {    
            for (uint256 j=1; j < length; j++) {
                if (timeT < userStakeBalance[account][j].startingTime) {  // userStakeBalance[account][j].startingTime is the ending time for j-1 period
                    sss = j.sub(1);
                    break;
                }          
            }
        } else if (length == 1)
            sss = 0;
        else
            sss = 1;   // length == 0, return length+1, invalid

        return sss;
    }

    function rewardForNotionalPeriod(uint256 notional, uint256 rewardRate, uint256 start, uint256 end) public pure returns (uint256) {
        require(start <= end, "time 1");
        uint256 reward = notional.mul(rewardRate).div(1e18).mul(end.sub(start));
        return reward;
    }   

    // returns accumulated rewards from time start to end for account on _rewardsToken
    // start is restricted to on or after the first starting time at the earliest for the account
    // end is restricted to be the earliest time of 1) end  2) maturity 3) the current block time
    // so no reward is generated after maturity
    // the ratePerToken across the maturity has to be handled carefully
    function rewardForTimePeriod(address account, address _rewardsToken, uint256 start, uint256 end) public view returns (uint256) {
        if (userStakeBalance[account].length==0)
            return 0;
        if (start >= lastTimeRewardApplicable(_rewardsToken))
            return 0;  // no reward after the applicable time
        start = Math.max(start, userStakeBalance[account][0].startingTime);
        if (end > lastTimeRewardApplicable(_rewardsToken))
            end = lastTimeRewardApplicable(_rewardsToken);
        require(start < end, "time 0");      

        uint256 balIndex = indexForBalance(account, start); 
        require(balIndex < userStakeBalance[account].length, "balance idx 0");  

        uint256 timeIndex = indexForRate(_rewardsToken, start);
        require(timeIndex < rewardRatePerToken[_rewardsToken].length, "rate idx 0");       

        uint256 accReward = 0;    
        if (timeIndex == rewardRatePerToken[_rewardsToken].length -1) {
            accReward = rewardForNotionalPeriod(userStakeBalance[account][balIndex].sBalance, rewardRatePerToken[_rewardsToken][timeIndex].ratePerToken, start, end );
        } else {
            // case for timeIndex < length-1, so myStart < time[length-1]

            // solving the stack too deep problem: separating the first period here  
            {
                uint256 endT = Math.min(end, rewardRatePerToken[_rewardsToken][timeIndex+1].startingTime);
                accReward = rewardForNotionalPeriod(userStakeBalance[account][balIndex].sBalance, rewardRatePerToken[_rewardsToken][timeIndex].ratePerToken, start, endT);
                timeIndex = timeIndex.add(1);  // done the current time period, moving to the next one
            }

            // integrating intermediate steps.  
            // each step integrating from rewardRatePerToken[_rewardsToken][iii].startingTime to rewardRatePerToken[_rewardsToken][iii+1].startingTime
            // so the loop can only end at length-1
            for ( uint256 iii = timeIndex; iii< rewardRatePerToken[_rewardsToken].length.sub(1); iii++ ) {
                if (end <= rewardRatePerToken[_rewardsToken][iii].startingTime)
                    break;
                // going to the right balIndex if necessary.  the very last one does not have restriction of time
                if (balIndex < userStakeBalance[account].length.sub(1)) {
                    // userStakeBalance[account][balIndex.add(1)].startingTime is the end time for balIndex
                    // rewardRatePerToken[_rewardsToken][iii].startingTime is the starting time for iii
                    if (userStakeBalance[account][balIndex.add(1)].startingTime <= rewardRatePerToken[_rewardsToken][iii].startingTime)
                        balIndex = balIndex.add(1);
                }
                if (end <= rewardRatePerToken[_rewardsToken][iii+1].startingTime) {
                    accReward = accReward.add( rewardForNotionalPeriod(userStakeBalance[account][balIndex].sBalance, rewardRatePerToken[_rewardsToken][iii].ratePerToken, rewardRatePerToken[_rewardsToken][iii].startingTime, end ));
                    break;
                } else
                    accReward = accReward.add( rewardForNotionalPeriod(userStakeBalance[account][balIndex].sBalance, rewardRatePerToken[_rewardsToken][iii].ratePerToken, rewardRatePerToken[_rewardsToken][iii].startingTime, rewardRatePerToken[_rewardsToken][iii+1].startingTime )); 
            }

            // handling the last time period, timeIndex == length-1.  the rate of the last one applies for [lastPeriodTime, maturity)
            // note for current case, myStart < time[length-1]
            {
                uint256 lastIdx = rewardRatePerToken[_rewardsToken].length.sub(1);
                uint256 lastPeriodTime = rewardRatePerToken[_rewardsToken][lastIdx].startingTime;
                if (end > lastPeriodTime) {
                    // userStakeBalance[account][balIndex.add(1)].startingTime is the end time for balIndex
                    // lastPeriodTime is the starting time for the period beyond the end of time index
                    if (balIndex < userStakeBalance[account].length.sub(1)) {
                        if (userStakeBalance[account][balIndex.add(1)].startingTime <= lastPeriodTime)
                            balIndex = balIndex.add(1);
                    }    
                    accReward = accReward.add( rewardForNotionalPeriod(userStakeBalance[account][balIndex].sBalance, rewardRatePerToken[_rewardsToken][lastIdx].ratePerToken, lastPeriodTime, end ));                       
                }  
            }                       
        }

        return accReward;
    }      

    function checkRewardForTimePeriod(address account, address _rewardsToken) public view returns (uint256) {
        if (userStakeBalance[account].length == 0)
            return 0;
        uint256 totalReward = earnedLifetime(account,  _rewardsToken);
        uint256 rewardFromIntegration = rewardForTimePeriod( account,  _rewardsToken, userStakeBalance[account][0].startingTime, block.timestamp);
        require(totalReward >= rewardFromIntegration, "check 0");
        return totalReward.sub(rewardFromIntegration);
    }  

    function rewardUnlockCutoffTime(address _rewardsToken) public view returns (uint256) {
        return Math.min(block.timestamp.sub(lockDuration), rewardData[_rewardsToken].periodFinish);
    }

    function unlockedReward(address account, address _rewardsToken) public view returns (uint256) {
        uint256 sss = userStakeBalance[account].length;
        if (sss==0)
            return 0;
        uint256 startT = userStakeBalance[account][0].startingTime;
        uint256 endT = rewardUnlockCutoffTime(_rewardsToken);
        if (endT <= startT)
            return 0;
        uint256 rewardUnLocked = rewardForTimePeriod( account, _rewardsToken, startT, endT);
        rewardUnLocked = rewardUnLocked.sub(claimedRewards[account][_rewardsToken]);
        uint256 earnedAmount = earned( account, _rewardsToken);
        rewardUnLocked = Math.min(rewardUnLocked, earnedAmount);    // to eusure no possibility of overpaying
        return rewardUnLocked;
    }      
    
    function distributorRemainingReward(address _rewardsToken) public view returns (uint256) {
        return rewards[rewardData[_rewardsToken].rewardsDistributor][_rewardsToken];
    }
    
    function userInfoByIndexRange(address account, uint256 _start, uint256 _stop) external view returns (uint256[2][] memory)  {
        uint256 _allStakeLength = userStakes[account].length;
        if (_stop > _allStakeLength) {
            _stop = _allStakeLength;
        }
        require(_stop >= _start, "start cannot be higher than stop");
        uint256 _qty = _stop - _start;
        uint256[2][] memory result = new uint256[2][](_qty);
        for (uint i = 0; i < _qty; i++) {
            result[i][0] = userStakes[account][_start + i].stakingMaturity;
            result[i][1] = userStakes[account][_start + i].remainingBalance;         
        }
        return result;
    }    

    /* ========== MUTATIVE FUNCTIONS ========== */

    function setRewardsDistributor(address _rewardsToken, address _rewardsDistributor) external onlyOwner {
        require(_rewardsToken != address(0) && _rewardsDistributor != address(0), "Zero address not allowed");
        rewardData[_rewardsToken].rewardsDistributor = _rewardsDistributor;
        emit RewardsDistributorUpdated(_rewardsToken, _rewardsDistributor);
    }

    function stake(uint256 amount) external nonReentrant notPaused updateReward(msg.sender) {
        require(amount > 0, "Cannot stake 0");
        uint256 previousBalance = IERC20(stakingToken).balanceOf(address(this));
        stakingToken.safeTransferFrom(msg.sender, address(this), amount);
        uint256 actualAmount = IERC20(stakingToken).balanceOf(address(this)).sub(previousBalance);
        actualAmount = Math.min(actualAmount, amount);
        _totalSupply = _totalSupply.add(actualAmount);
        _balances[msg.sender] = _balances[msg.sender].add(actualAmount);

        if (actualAmount > 0) {
            userStakes[msg.sender].push(Stake(block.timestamp.add(lockDuration), actualAmount));

            {  
                uint256 prev = userStakeBalance[msg.sender].length;
                if (prev > 0 && block.timestamp == userStakeBalance[msg.sender][prev-1].startingTime)
                    // in case the user can stake more than once within the same block.  no reward is generated within this block yet
                    userStakeBalance[msg.sender][prev-1].sBalance = _balances[msg.sender];  
                else
                    userStakeBalance[msg.sender].push(StakeBalance(block.timestamp, _balances[msg.sender]));
            } 
            for (uint i = 0; i < rewardTokens.length; i++) {
                require(block.timestamp < rewardData[rewardTokens[i]].periodFinish, "maturity 0");
                uint256 prev = rewardRatePerToken[rewardTokens[i]].length;
                uint256 reward_rate = 0;
                if (_totalSupply > 0 )
                    reward_rate = rewardData[rewardTokens[i]].rewardRate.mul(1e18).div(_totalSupply);
                if (prev > 0 && block.timestamp == rewardRatePerToken[rewardTokens[i]][prev-1].startingTime)  // in case same block stake or withdraw
                    rewardRatePerToken[rewardTokens[i]][prev-1].ratePerToken = reward_rate; 
                else          
                    rewardRatePerToken[rewardTokens[i]].push(RewardRate(block.timestamp, reward_rate ) );   
            }  
        }

        emit Staked(msg.sender, actualAmount);
    }

    function withdraw(uint256 amount) public nonReentrant notPaused updateReward(msg.sender) {
        require(amount > 0, "Cannot withdraw 0");
	    uint256 askedAmount = Math.min(amount, _balances[msg.sender]);
	    uint256 actualAmount = 0;
	    uint256 thisTest = lastTimeRewardApplicable(rewardTokens[0]);
        for (uint i; i < userStakes[msg.sender].length; i++) {
            uint256 outAmount = unlockedStakeAtTime(msg.sender, thisTest, i);
            if (outAmount > 0) {
                outAmount = Math.min(outAmount, askedAmount);
	   	        userStakes[msg.sender][i].remainingBalance = userStakes[msg.sender][i].remainingBalance.sub(outAmount);	   
 	   	        askedAmount = askedAmount.sub(outAmount);
		        actualAmount = actualAmount.add(outAmount);
            }
            if (askedAmount == 0)
        	    break;
	    }
        require(actualAmount > 0 && actualAmount <= amount && actualAmount <= _balances[msg.sender], "No unlocked stake");    
        _totalSupply = _totalSupply.sub(actualAmount);
        _balances[msg.sender] = _balances[msg.sender].sub(actualAmount);

        {  
            uint256 prev = userStakeBalance[msg.sender].length;
            if (prev > 0 && block.timestamp == userStakeBalance[msg.sender][prev-1].startingTime)
                userStakeBalance[msg.sender][prev-1].sBalance = _balances[msg.sender];  // in case the user can withdraw more than once within the same block
            else
                userStakeBalance[msg.sender].push(StakeBalance(block.timestamp, _balances[msg.sender]));
        }
        for (uint i = 0; i < rewardTokens.length; i++) {
            uint256 prev = rewardRatePerToken[rewardTokens[i]].length;
            uint256 reward_rate = 0;
            if (_totalSupply > 0 && block.timestamp < rewardData[rewardTokens[i]].periodFinish)
                reward_rate = rewardData[rewardTokens[i]].rewardRate.mul(1e18).div(_totalSupply);
            if (prev > 0 && block.timestamp == rewardRatePerToken[rewardTokens[i]][prev-1].startingTime)  // in case same block stake or withdraw
                rewardRatePerToken[rewardTokens[i]][prev-1].ratePerToken = reward_rate; 
            else          
                rewardRatePerToken[rewardTokens[i]].push(RewardRate(block.timestamp, reward_rate ) );   
        } 

        stakingToken.safeTransfer(msg.sender, actualAmount);
        emit Withdrawn(msg.sender, actualAmount);
    }

    function getReward() public nonReentrant notPaused updateReward(msg.sender) {
        for (uint i; i < rewardTokens.length; i++) {
            address _rewardsToken = rewardTokens[i];
            uint256 reward = rewards[msg.sender][_rewardsToken];
            uint256 actualAmount = unlockedReward(msg.sender, _rewardsToken);
            actualAmount = Math.min(actualAmount, reward);
            if (actualAmount > 0) {  // let 0 case pass so that exit and other i's work
                rewards[msg.sender][_rewardsToken] = rewards[msg.sender][_rewardsToken].sub(actualAmount);
                claimedRewards[msg.sender][_rewardsToken] = actualAmount.add(claimedRewards[msg.sender][_rewardsToken]);
                IERC20(_rewardsToken).safeTransfer(msg.sender, actualAmount);
                emit RewardPaid(msg.sender, _rewardsToken, actualAmount);
            }
        }
    }

    function exit() external {
        withdraw(_balances[msg.sender]);
        getReward();
    }

    /* ========== RESTRICTED FUNCTIONS ========== */

    function notifyRewardAmount(address _rewardsToken, uint256 reward) external updateReward(address(0)) {
        require(rewardData[_rewardsToken].rewardsDistributor == msg.sender);
        // handle the transfer of reward tokens via `transferFrom` to reduce the number
        // of transactions required and ensure correctness of the reward amount
        IERC20(_rewardsToken).safeTransferFrom(msg.sender, address(this), reward);

        if (block.timestamp >= rewardData[_rewardsToken].periodFinish) {
            rewardData[_rewardsToken].rewardRate = reward.div(rewardData[_rewardsToken].rewardsDuration);
        } else {
            uint256 remaining = rewardData[_rewardsToken].periodFinish.sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardData[_rewardsToken].rewardRate);
            rewardData[_rewardsToken].rewardRate = reward.add(leftover).div(rewardData[_rewardsToken].rewardsDuration);
        }
        rewardData[_rewardsToken].lastUpdateTime = block.timestamp;
        rewardData[_rewardsToken].periodFinish = block.timestamp.add(rewardData[_rewardsToken].rewardsDuration);
        emit RewardAdded(reward);
    }

    function collectRemainingReward(address _rewardsToken) external nonReentrant updateReward(address(0)) {
        require(rewardData[_rewardsToken].rewardsDistributor == msg.sender);
        require(block.timestamp >= rewardData[_rewardsToken].periodFinish);
        uint256 amount = rewards[msg.sender][_rewardsToken];
        if (amount > 0) {
            rewards[msg.sender][_rewardsToken] = 0;
            IERC20(_rewardsToken).safeTransfer(msg.sender, amount);
        }
    }

    // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders
    function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
        require(tokenAddress != address(stakingToken), "Cannot withdraw staking token");
        require(rewardData[tokenAddress].lastUpdateTime == 0, "Cannot withdraw reward token");
        IERC20(tokenAddress).safeTransfer(owner, tokenAmount);
        emit Recovered(tokenAddress, tokenAmount);
    }

    /* ========== MODIFIERS ========== */

    modifier updateReward(address account) {
        for (uint i; i < rewardTokens.length; i++) {
            address token = rewardTokens[i];
            
            if (_totalSupply == 0)
                rewards[rewardData[token].rewardsDistributor][token] = lastTimeRewardApplicable(token).sub(rewardData[token].lastUpdateTime).mul(rewardData[token].rewardRate).add(rewards[rewardData[token].rewardsDistributor][token]);
            
            rewardData[token].rewardPerTokenStored = rewardPerToken(token);
            rewardData[token].lastUpdateTime = lastTimeRewardApplicable(token);
            if (account != address(0)) {
                rewards[account][token] = earned(account, token);
                userRewardPerTokenPaid[account][token] = rewardData[token].rewardPerTokenStored;
            }
        }
        _;
    }

    /* ========== EVENTS ========== */

    event RewardAdded(uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, address indexed rewardsToken, uint256 reward);
    event RewardsDistributorUpdated(address indexed token, address indexed newDistributor);
    event RewardsDurationUpdated(address indexed token, uint256 newDuration);
    event Recovered(address token, uint256 amount);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"rewardsToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"newDistributor","type":"address"}],"name":"RewardsDistributorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_rewardsDistributor","type":"address"},{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"addReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"checkRewardForTimePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"claimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"collectRemainingReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"distributorRemainingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"earnedLifetime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timeT","type":"uint256"}],"name":"indexForBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"timeT","type":"uint256"}],"name":"indexForRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardData","outputs":[{"internalType":"address","name":"rewardsDistributor","type":"address"},{"internalType":"uint256","name":"rewardsDuration","type":"uint256"},{"internalType":"uint256","name":"periodFinish","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"lastUpdateTime","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"notional","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"rewardForNotionalPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"rewardForTimePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardRatePerToken","outputs":[{"internalType":"uint256","name":"startingTime","type":"uint256"},{"internalType":"uint256","name":"ratePerToken","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"rewardUnlockCutoffTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_rewardsDistributor","type":"address"}],"name":"setRewardsDistributor","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":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"name":"unlockedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlockedStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"thisTime","type":"uint256"},{"internalType":"uint256","name":"stakeI","type":"uint256"}],"name":"unlockedStakeAtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_stop","type":"uint256"}],"name":"userInfoByIndexRange","outputs":[{"internalType":"uint256[2][]","name":"","type":"uint256[2][]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userStakeBalance","outputs":[{"internalType":"uint256","name":"startingTime","type":"uint256"},{"internalType":"uint256","name":"sBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userStakes","outputs":[{"internalType":"uint256","name":"stakingMaturity","type":"uint256"},{"internalType":"uint256","name":"remainingBalance","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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102735760003560e01c806379ba509711610151578063b5d5b5fa116100c3578063d1ab58f411610087578063d1ab58f414610882578063e5b7dac9146108b0578063e70b9e27146108ec578063e9fad8ee1461091a578063f122977714610922578063f28e5a711461094857610273565b8063b5d5b5fa146107a2578063b66503cf146107ce578063bcd11014146107fa578063ce8ad02a14610820578063d0ed26ae1461084c57610273565b80638da5cb5b116101155780638da5cb5b146106ec57806391b4ded9146106f457806397feb8e8146106fc5780639ceda9381461072a5780639e75ca2114610756578063a694fc3a1461078557610273565b806379ba50971461063f5780637bb7bed11461064757806384f963f41461066457806388450f90146106925780638980f11f146106c057610273565b80633d18b912116101ea57806353a47bb7116101ae57806353a47bb71461057d5780635c975abb146105a1578063638634ee146105bd5780637035ab98146105e357806370a082311461061157806372f702f31461063757610273565b80633d18b9121461048c5780633d9c055b146104945780633f695b45146104ba578063454f06ec146104e857806348e5d9f81461051a57610273565b80631627540c1161023c5780631627540c146103cc57806316c38b3c146103f457806318160ddd1461041357806318864a361461041b578063211dc32d146104415780632e1a7d4d1461046f57610273565b8062f494cf1461027857806303544c621461031b57806304554443146103605780630f9e4b751461037a5780631554872d146103a6575b600080fd5b6102aa6004803603606081101561028e57600080fd5b506001600160a01b03813516906020810135906040013561096e565b60405180806020018281038252838181518152602001915080516000925b8184101561030a57602080850284010151604080838360005b838110156102f95781810151838201526020016102e1565b5050505090500192600101926102c8565b925050509250505060405180910390f35b6103476004803603604081101561033157600080fd5b506001600160a01b038135169060200135610b17565b6040805192835260208301919091528051918290030190f35b610368610b50565b60408051918252519081900360200190f35b6103476004803603604081101561039057600080fd5b506001600160a01b038135169060200135610b56565b610368600480360360208110156103bc57600080fd5b50356001600160a01b0316610b6f565b6103f2600480360360208110156103e257600080fd5b50356001600160a01b0316610bb2565b005b6103f26004803603602081101561040a57600080fd5b50351515610c0e565b610368610c88565b6103686004803603602081101561043157600080fd5b50356001600160a01b0316610c8e565b6103686004803603604081101561045757600080fd5b506001600160a01b0381358116916020013516610cc3565b6103f26004803603602081101561048557600080fd5b5035610d76565b6103f2611535565b610368600480360360208110156104aa57600080fd5b50356001600160a01b03166118bc565b6103f2600480360360408110156104d057600080fd5b506001600160a01b0381358116916020013516611982565b610368600480360360608110156104fe57600080fd5b506001600160a01b038135169060208101359060400135611a4d565b6105406004803603602081101561053057600080fd5b50356001600160a01b0316611b57565b604080516001600160a01b0390971687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b610585611b96565b604080516001600160a01b039092168252519081900360200190f35b6105a9611ba5565b604080519115158252519081900360200190f35b610368600480360360208110156105d357600080fd5b50356001600160a01b0316611bae565b610368600480360360408110156105f957600080fd5b506001600160a01b0381358116916020013516611bd5565b6103686004803603602081101561062757600080fd5b50356001600160a01b0316611bf2565b610585611c0d565b6103f2611c21565b6105856004803603602081101561065d57600080fd5b5035611cdd565b6103686004803603604081101561067a57600080fd5b506001600160a01b0381358116916020013516611d04565b610368600480360360408110156106a857600080fd5b506001600160a01b0381358116916020013516611d53565b6103f2600480360360408110156106d657600080fd5b506001600160a01b038135169060200135611e3b565b610585611f81565b610368611f90565b6103686004803603604081101561071257600080fd5b506001600160a01b0381358116916020013516611f96565b6103686004803603604081101561074057600080fd5b506001600160a01b038135169060200135612073565b6103686004803603608081101561076c57600080fd5b5080359060208101359060408101359060600135612124565b6103f26004803603602081101561079b57600080fd5b503561219f565b610347600480360360408110156107b857600080fd5b506001600160a01b038135169060200135612946565b6103f2600480360360408110156107e457600080fd5b506001600160a01b03813516906020013561295f565b6103686004803603602081101561081057600080fd5b50356001600160a01b0316612ccc565b6103686004803603604081101561083657600080fd5b506001600160a01b038135169060200135612cfe565b6103f26004803603606081101561086257600080fd5b506001600160a01b03813581169160208101359091169060400135612d86565b6103686004803603604081101561089857600080fd5b506001600160a01b0381358116916020013516612f81565b610368600480360360808110156108c657600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612f9e565b6103686004803603604081101561090257600080fd5b506001600160a01b03813581169160200135166137cb565b6103f26137e8565b6103686004803603602081101561093857600080fd5b50356001600160a01b031661380b565b6103f26004803603602081101561095e57600080fd5b50356001600160a01b03166138b2565b6001600160a01b0383166000908152600e602052604090205460609080831115610996578092505b838310156109eb576040805162461bcd60e51b815260206004820181905260248201527f73746172742063616e6e6f7420626520686967686572207468616e2073746f70604482015290519081900360640190fd5b604080518585038082526020808202830101909252606090828015610a2a57816020015b610a17613f8b565b815260200190600190039081610a0f5790505b50905060005b82811015610b0a576001600160a01b0388166000908152600e602052604090208054888301908110610a5e57fe5b906000526020600020906002020160000154828281518110610a7c57fe5b6020026020010151600060028110610a9057fe5b602002018181525050600e6000896001600160a01b03166001600160a01b0316815260200190815260200160002081880181548110610acb57fe5b906000526020600020906002020160010154828281518110610ae957fe5b6020026020010151600160028110610afd57fe5b6020020152600101610a30565b50925050505b9392505050565b60076020528160005260406000208181548110610b3057fe5b600091825260209091206002909102018054600190910154909250905082565b600c5481565b600f6020528160005260406000208181548110610b3057fe5b6000610baa610b89600c5442613b2d90919063ffffffff16565b6001600160a01b038416600090815260056020526040902060020154613b8a565b90505b919050565b610bba613ba0565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b610c16613ba0565b60045460ff1615158115151415610c2c57610c85565b6004805460ff1916821515179081905560ff1615610c4957426003555b6004546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b600a5490565b6001600160a01b0390811660008181526005602090815260408083205490941682526009815283822092825291909152205490565b6001600160a01b038083166000818152600960209081526040808320948616808452948252808320549383526008825280832094835293905291822054610d6d9190610d6190670de0b6b3a764000090610d5590610d3090610d248961380b565b9063ffffffff613b2d16565b6001600160a01b0389166000908152600b60205260409020549063ffffffff613be916565b9063ffffffff613c4216565b9063ffffffff613cac16565b90505b92915050565b600080546001019081905560045460ff1615610dc35760405162461bcd60e51b815260040180806020018281038252603c815260200180614072603c913960400191505060405180910390fd5b3360005b600654811015610f4b57600060068281548110610de057fe5b600091825260209091200154600a546001600160a01b039091169150610e96576001600160a01b0380821660008181526005602081815260408084208054909616845260098252808420948452938152929091205491526003820154600490920154610e6392610d6191610e5790610d2487611bae565b9063ffffffff613be916565b6001600160a01b038083166000818152600560209081526040808320549094168252600981528382209282529190915220555b610e9f8161380b565b6001600160a01b03821660009081526005602081905260409091200155610ec581611bae565b6001600160a01b03808316600090815260056020526040902060040191909155831615610f4257610ef68382610cc3565b6001600160a01b03808516600081815260096020908152604080832094871680845294825280832095909555600580825285832001549282526008815284822093825292909252919020555b50600101610dc7565b5060008311610f95576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b336000908152600b6020526040812054610fb0908590613b8a565b905060008090506000610fe46006600081548110610fca57fe5b6000918252602090912001546001600160a01b0316611bae565b905060005b336000908152600e60205260409020548110156110cc57600061100d338484611a4d565b905080156110b85761101f8186613b8a565b336000908152600e602052604090208054919250611064918391908590811061104457fe5b906000526020600020906002020160010154613b2d90919063ffffffff16565b336000908152600e6020526040902080548490811061107f57fe5b60009182526020909120600160029092020101556110a3858263ffffffff613b2d16565b94506110b5848263ffffffff613cac16565b93505b846110c357506110cc565b50600101610fe9565b506000821180156110dd5750858211155b80156110f85750336000908152600b60205260409020548211155b61113d576040805162461bcd60e51b81526020600482015260116024820152704e6f20756e6c6f636b6564207374616b6560781b604482015290519081900360640190fd5b600a54611150908363ffffffff613b2d16565b600a55336000908152600b6020526040902054611173908363ffffffff613b2d16565b336000908152600b6020908152604080832093909355600f9052205480158015906111cd5750336000908152600f60205260409020805460001983019081106111b857fe5b90600052602060002090600202016000015442145b1561121757336000908152600b6020908152604080832054600f909252909120805460001984019081106111fd57fe5b906000526020600020906002020160010181905550611267565b336000818152600f6020908152604080832081518083018352428152948452600b835290832054848301908152815460018181018455928552929093209351600290920290930190815590519101555b5060005b600654811015611496576000600760006006848154811061128857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001812054600a54909250158015906112f8575060056000600685815481106112cd57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190206002015442105b1561135757611354600a54610d55670de0b6b3a7640000600560006006898154811061132057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020600301549063ffffffff613be916565b90505b6000821180156113bc5750600760006006858154811061137357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020805460001984019081106113a757fe5b90600052602060002090600202016000015442145b15611421578060076000600686815481106113d357fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054600019850190811061140757fe5b90600052602060002090600202016001018190555061148c565b600760006006858154811061143257fe5b60009182526020808320909101546001600160a01b03168352828101939093526040918201812082518084019093524283528284018581528154600181810184559284529490922092516002909402909201928355519101555b505060010161126b565b506004546114b39061010090046001600160a01b03163384613d06565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a2505050506000548114611531576040805162461bcd60e51b815260206004820152601f6024820152600080516020613faa833981519152604482015290519081900360640190fd5b5050565b600080546001019081905560045460ff16156115825760405162461bcd60e51b815260040180806020018281038252603c815260200180614072603c913960400191505060405180910390fd5b3360005b6006548110156116fe5760006006828154811061159f57fe5b600091825260209091200154600a546001600160a01b039091169150611649576001600160a01b038082166000818152600560208181526040808420805490961684526009825280842094845293815292909120549152600382015460049092015461161692610d6191610e5790610d2487611bae565b6001600160a01b038083166000818152600560209081526040808320549094168252600981528382209282529190915220555b6116528161380b565b6001600160a01b0382166000908152600560208190526040909120015561167881611bae565b6001600160a01b038083166000908152600560205260409020600401919091558316156116f5576116a98382610cc3565b6001600160a01b03808516600081815260096020908152604080832094871680845294825280832095909555600580825285832001549282526008815284822093825292909252919020555b50600101611586565b5060005b6006548110156118765760006006828154811061171b57fe5b6000918252602080832090910154338084526009835260408085206001600160a01b039093168086529290935291832054909350919061175b9084611d53565b90506117678183613b8a565b9050801561186b573360009081526009602090815260408083206001600160a01b03871684529091529020546117a3908263ffffffff613b2d16565b3360008181526009602090815260408083206001600160a01b03891680855290835281842095909555928252600d8152828220938252929092529020546117f190829063ffffffff613cac16565b336000818152600d602090815260408083206001600160a01b03891680855292529091209290925561182a91908363ffffffff613d0616565b6040805182815290516001600160a01b0385169133917f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9181900360200190a35b505050600101611702565b50506000548114610c85576040805162461bcd60e51b815260206004820152601f6024820152600080516020613faa833981519152604482015290519081900360640190fd5b6000806000905060006118d66006600081548110610fca57fe5b905060005b6001600160a01b0385166000908152600e602052604090205481101561192057611916611909868484611a4d565b849063ffffffff613cac16565b92506001016118db565b506001600160a01b0384166000908152600b602052604090205482111561197b576040805162461bcd60e51b815260206004820152600a6024820152690696e7465726e616c20360b41b604482015290519081900360640190fd5b5092915050565b61198a613ba0565b6001600160a01b038216158015906119aa57506001600160a01b03811615155b6119f6576040805162461bcd60e51b815260206004820152601860248201527716995c9bc81859191c995cdcc81b9bdd08185b1b1bddd95960421b604482015290519081900360640190fd5b6001600160a01b0382811660008181526005602052604080822080546001600160a01b0319169486169485179055517f55bf2bef00411dcc98731a296d0f25718b09b68c42f85f0346efc0ba0b4009e49190a35050565b6001600160a01b0383166000908152600e60205260408120805482919084908110611a7457fe5b906000526020600020906002020160010154118015611b0d5750600560006006600081548110611aa057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190206002015442101580611b0d57506001600160a01b0384166000908152600e60205260409020805484919084908110611af857fe5b90600052602060002090600202016000015411155b15611b4f576001600160a01b0384166000908152600e60205260409020805483908110611b3657fe5b9060005260206000209060020201600101549050610b10565b506000610b10565b60056020819052600091825260409091208054600182015460028301546003840154600485015494909501546001600160a01b03909316949193909286565b6002546001600160a01b031681565b60045460ff1681565b6001600160a01b038116600090815260056020526040812060020154610baa904290613b8a565b600860209081526000928352604080842090915290825290205481565b6001600160a01b03166000908152600b602052604090205490565b60045461010090046001600160a01b031681565b6002546001600160a01b03163314611c6a5760405162461bcd60e51b8152600401808060200182810382526035815260200180613fca6035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60068181548110611cea57fe5b6000918252602090912001546001600160a01b0316905081565b600080611d118484610cc3565b6001600160a01b038086166000908152600d6020908152604080832093881683529290522054909150611d4b90829063ffffffff613cac16565b949350505050565b6001600160a01b0382166000908152600f602052604081205480611d7b576000915050610d70565b6001600160a01b0384166000908152600f6020526040812080548290611d9d57fe5b600091825260208220600290910201549150611db885610b6f565b9050818111611dcd5760009350505050610d70565b6000611ddb87878585612f9e565b6001600160a01b038089166000908152600d60209081526040808320938b1683529290522054909150611e1590829063ffffffff613b2d16565b90506000611e238888610cc3565b9050611e2f8282613b8a565b98975050505050505050565b611e43613ba0565b6004546001600160a01b03838116610100909204161415611eab576040805162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74207769746864726177207374616b696e6720746f6b656e000000604482015290519081900360640190fd5b6001600160a01b03821660009081526005602052604090206004015415611f19576040805162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742077697468647261772072657761726420746f6b656e00000000604482015290519081900360640190fd5b600154611f39906001600160a01b0384811691168363ffffffff613d0616565b604080516001600160a01b03841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b6001546001600160a01b031681565b60035481565b6001600160a01b0382166000908152600f6020526040812054611fbb57506000610d70565b6000611fc78484611d04565b905060006120198585600f6000896001600160a01b03166001600160a01b0316815260200190815260200160002060008154811061200157fe5b90600052602060002090600202016000015442612f9e565b90508082101561205a576040805162461bcd60e51b81526020600482015260076024820152660636865636b20360cc1b604482015290519081900360640190fd5b61206a828263ffffffff613b2d16565b95945050505050565b6001600160a01b0382166000908152600f6020526040812054600019810160018211156121085760015b82811015612102576001600160a01b0386166000908152600f602052604090208054829081106120c957fe5b9060005260206000209060020201600001548510156120fa576120f381600163ffffffff613b2d16565b9150612102565b60010161209d565b50611d4b565b816001141561211957506000611d4b565b506001949350505050565b600081831115612164576040805162461bcd60e51b815260206004820152600660248201526574696d65203160d01b604482015290519081900360640190fd5b6000612195612179848663ffffffff613b2d16565b610e57670de0b6b3a7640000610d558a8a63ffffffff613be916565b9695505050505050565b600080546001019081905560045460ff16156121ec5760405162461bcd60e51b815260040180806020018281038252603c815260200180614072603c913960400191505060405180910390fd5b3360005b6006548110156123685760006006828154811061220957fe5b600091825260209091200154600a546001600160a01b0390911691506122b3576001600160a01b038082166000818152600560208181526040808420805490961684526009825280842094845293815292909120549152600382015460049092015461228092610d6191610e5790610d2487611bae565b6001600160a01b038083166000818152600560209081526040808320549094168252600981528382209282529190915220555b6122bc8161380b565b6001600160a01b038216600090815260056020819052604090912001556122e281611bae565b6001600160a01b0380831660009081526005602052604090206004019190915583161561235f576123138382610cc3565b6001600160a01b03808516600081815260096020908152604080832094871680845294825280832095909555600580825285832001549282526008815284822093825292909252919020555b506001016121f0565b50600083116123af576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b60048054604080516370a0823160e01b81523093810193909352516000926101009092046001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561240257600080fd5b505afa158015612416573d6000803e3d6000fd5b505050506040513d602081101561242c57600080fd5b505160045490915061244e9061010090046001600160a01b0316333087613d5d565b60006124f782600460019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156124bf57600080fd5b505afa1580156124d3573d6000803e3d6000fd5b505050506040513d60208110156124e957600080fd5b50519063ffffffff613b2d16565b90506125038186613b8a565b600a54909150612519908263ffffffff613cac16565b600a55336000908152600b602052604090205461253c908263ffffffff613cac16565b336000908152600b602052604090205580156128c957336000908152600e6020526040908190208151808301909252600c54909190819061258490429063ffffffff613cac16565b815260209081018490528254600181810185556000948552828520845160029093020191825592820151920191909155338252600f9052604090205480158015906125fe5750336000908152600f60205260409020805460001983019081106125e957fe5b90600052602060002090600202016000015442145b1561264857336000908152600b6020908152604080832054600f9092529091208054600019840190811061262e57fe5b906000526020600020906002020160010181905550612698565b336000818152600f6020908152604080832081518083018352428152948452600b835290832054848301908152815460018181018455928552929093209351600290920290930190815590519101555b5060005b6006548110156128c75760056000600683815481106126b757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902060020154421061271f576040805162461bcd60e51b815260206004820152600a60248201526906d6174757269747920360b41b604482015290519081900360640190fd5b6000600760006006848154811061273257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001812054600a549092501561278857612785600a54610d55670de0b6b3a7640000600560006006898154811061132057fe5b90505b6000821180156127ed575060076000600685815481106127a457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020805460001984019081106127d857fe5b90600052602060002090600202016000015442145b156128525780600760006006868154811061280457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054600019850190811061283857fe5b9060005260206000209060020201600101819055506128bd565b600760006006858154811061286357fe5b60009182526020808320909101546001600160a01b03168352828101939093526040918201812082518084019093524283528284018581528154600181810184559284529490922092516002909402909201928355519101555b505060010161269c565b505b60408051828152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050506000548114611531576040805162461bcd60e51b815260206004820152601f6024820152600080516020613faa833981519152604482015290519081900360640190fd5b600e6020528160005260406000208181548110610b3057fe5b6000805b600654811015612adb5760006006828154811061297c57fe5b600091825260209091200154600a546001600160a01b039091169150612a26576001600160a01b03808216600081815260056020818152604080842080549096168452600982528084209484529381529290912054915260038201546004909201546129f392610d6191610e5790610d2487611bae565b6001600160a01b038083166000818152600560209081526040808320549094168252600981528382209282529190915220555b612a2f8161380b565b6001600160a01b03821660009081526005602081905260409091200155612a5581611bae565b6001600160a01b03808316600090815260056020526040902060040191909155831615612ad257612a868382610cc3565b6001600160a01b03808516600081815260096020908152604080832094871680845294825280832095909555600580825285832001549282526008815284822093825292909252919020555b50600101612963565b506001600160a01b03838116600090815260056020526040902054163314612b0257600080fd5b612b1d6001600160a01b03841633308563ffffffff613d5d16565b6001600160a01b0383166000908152600560205260409020600201544210612b8d576001600160a01b038316600090815260056020526040902060010154612b6c90839063ffffffff613c4216565b6001600160a01b038416600090815260056020526040902060030155612c3c565b6001600160a01b038316600090815260056020526040812060020154612bb9904263ffffffff613b2d16565b6001600160a01b03851660009081526005602052604081206003015491925090612bea90839063ffffffff613be916565b6001600160a01b038616600090815260056020526040902060010154909150612c1d90610d55868463ffffffff613cac16565b6001600160a01b03861660009081526005602052604090206003015550505b6001600160a01b03831660009081526005602052604090204260048201819055600190910154612c72919063ffffffff613cac16565b6001600160a01b03841660009081526005602090815260409182902060020192909255805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d929181900390910190a1505050565b6001600160a01b03811660009081526005602052604081206001810154600390910154610baa9163ffffffff613be916565b6001600160a01b038216600090815260076020526040812054600019810160018211156121085760015b82811015612102576001600160a01b0386166000908152600760205260409020805482908110612d5457fe5b906000526020600020906002020160000154851015612d7e576120f381600163ffffffff613b2d16565b600101612d28565b612d8e613ba0565b6001600160a01b03831660009081526005602052604090206001015415612de65760405162461bcd60e51b8152600401808060200182810382526023815260200180613fff6023913960400191505060405180910390fd5b6001600160a01b03831615801590612e0657506001600160a01b03821615155b612e52576040805162461bcd60e51b815260206004820152601860248201527716995c9bc81859191c995cdcc81b9bdd08185b1b1bddd95960421b604482015290519081900360640190fd5b60008111612ea7576040805162461bcd60e51b815260206004820181905260248201527f526577617264206475726174696f6e206d757374206265206e6f6e2d7a65726f604482015290519081900360640190fd5b6006805460018181019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b038087166001600160a01b031992831681179093556000838152600560205260408082208054938916939094168317845592909401859055905190927f55bf2bef00411dcc98731a296d0f25718b09b68c42f85f0346efc0ba0b4009e491a36040805182815290516001600160a01b038516917fad2f86b01ed93b4b3a150d448c61a4f5d8d38075d3c0c64cc0a26fd6e1f49545919081900360200190a2505050565b600d60209081526000928352604080842090915290825290205481565b6001600160a01b0384166000908152600f6020526040812054612fc357506000611d4b565b612fcc84611bae565b8310612fda57506000611d4b565b6001600160a01b0385166000908152600f6020526040812080546130189286929161300157fe5b906000526020600020906002020160000154613dbd565b925061302384611bae565b8211156130365761303384611bae565b91505b818310613073576040805162461bcd60e51b8152602060048201526006602482015265074696d6520360d41b604482015290519081900360640190fd5b600061307f8685612073565b6001600160a01b0387166000908152600f602052604090205490915081106130de576040805162461bcd60e51b815260206004820152600d60248201526c062616c616e636520696478203609c1b604482015290519081900360640190fd5b60006130ea8686612cfe565b6001600160a01b0387166000908152600760205260409020549091508110613146576040805162461bcd60e51b815260206004820152600a6024820152690726174652069647820360b41b604482015290519081900360640190fd5b6001600160a01b038616600090815260076020526040812054600019018214156131f5576001600160a01b0388166000908152600f6020526040902080546131ee91908590811061319357fe5b906000526020600020906002020160010154600760008a6001600160a01b03166001600160a01b0316815260200190815260200160002084815481106131d557fe5b9060005260206000209060020201600101548888612124565b90506137c0565b6001600160a01b038716600090815260076020526040812080546132399188916001870190811061322257fe5b906000526020600020906002020160000154613b8a565b6001600160a01b038a166000908152600f6020526040902080549192506132bf918690811061326457fe5b906000526020600020906002020160010154600760008b6001600160a01b03166001600160a01b0316815260200190815260200160002085815481106132a657fe5b9060005260206000209060020201600101548984612124565b91506132d283600163ffffffff613cac16565b92508290505b6001600160a01b03881660009081526007602052604090205461330290600163ffffffff613b2d16565b811015613632576001600160a01b038816600090815260076020526040902080548290811061332d57fe5b906000526020600020906002020160000154861161334a57613632565b6001600160a01b0389166000908152600f602052604090205461337490600163ffffffff613b2d16565b84101561340e576001600160a01b038816600090815260076020526040902080548290811061339f57fe5b600091825260208083206002909202909101546001600160a01b038c168352600f90915260409091206133d986600163ffffffff613cac16565b815481106133e357fe5b9060005260206000209060020201600001541161340e5761340b84600163ffffffff613cac16565b93505b6001600160a01b038816600090815260076020526040902080546001830190811061343557fe5b9060005260206000209060020201600001548611613529576001600160a01b0389166000908152600f60205260409020805461352291613515918790811061347957fe5b906000526020600020906002020160010154600760008c6001600160a01b03166001600160a01b0316815260200190815260200160002084815481106134bb57fe5b906000526020600020906002020160010154600760008d6001600160a01b03166001600160a01b0316815260200190815260200160002085815481106134fd57fe5b9060005260206000209060020201600001548a612124565b839063ffffffff613cac16565b9150613632565b6001600160a01b0389166000908152600f60205260409020805461362891613515918790811061355557fe5b906000526020600020906002020160010154600760008c6001600160a01b03166001600160a01b03168152602001908152602001600020848154811061359757fe5b906000526020600020906002020160010154600760008d6001600160a01b03166001600160a01b0316815260200190815260200160002085815481106135d957fe5b600091825260208083206002909202909101546001600160a01b038f1683526007909152604090912080546001880190811061361157fe5b906000526020600020906002020160000154612124565b91506001016132d8565b506001600160a01b03871660009081526007602052604081205461365d90600163ffffffff613b2d16565b6001600160a01b0389166000908152600760205260408120805492935090918390811061368657fe5b9060005260206000209060020201600001549050808711156137bd576001600160a01b038a166000908152600f60205260409020546136cc90600163ffffffff613b2d16565b851015613733576001600160a01b038a166000908152600f6020526040902081906136fe87600163ffffffff613cac16565b8154811061370857fe5b906000526020600020906002020160000154116137335761373085600163ffffffff613cac16565b94505b6001600160a01b038a166000908152600f6020526040902080546137ba91611909918890811061375f57fe5b906000526020600020906002020160010154600760008d6001600160a01b03166001600160a01b0316815260200190815260200160002085815481106137a157fe5b906000526020600020906002020160010154848b612124565b92505b50505b979650505050505050565b600960209081526000928352604080842090915290825290205481565b336000908152600b602052604090205461380190610d76565b613809611535565b565b6000600a546000141561383b57506001600160a01b03811660009081526005602081905260409091200154610bad565b600a546001600160a01b03831660009081526005602052604090206003810154600490910154610baa92613889929091610d5591670de0b6b3a764000091610e5791908290610d248b611bae565b6001600160a01b038416600090815260056020819052604090912001549063ffffffff613cac16565b6000805460010180825590805b600654811015613a37576000600682815481106138d857fe5b600091825260209091200154600a546001600160a01b039091169150613982576001600160a01b038082166000818152600560208181526040808420805490961684526009825280842094845293815292909120549152600382015460049092015461394f92610d6191610e5790610d2487611bae565b6001600160a01b038083166000818152600560209081526040808320549094168252600981528382209282529190915220555b61398b8161380b565b6001600160a01b038216600090815260056020819052604090912001556139b181611bae565b6001600160a01b03808316600090815260056020526040902060040191909155831615613a2e576139e28382610cc3565b6001600160a01b03808516600081815260096020908152604080832094871680845294825280832095909555600580825285832001549282526008815284822093825292909252919020555b506001016138bf565b506001600160a01b03838116600090815260056020526040902054163314613a5e57600080fd5b6001600160a01b038316600090815260056020526040902060020154421015613a8657600080fd5b3360009081526009602090815260408083206001600160a01b03871684529091529020548015613ae7573360008181526009602090815260408083206001600160a01b0389168085529252822091909155613ae7918363ffffffff613d0616565b50506000548114611531576040805162461bcd60e51b815260206004820152601f6024820152600080516020613faa833981519152604482015290519081900360640190fd5b600082821115613b84576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000818310613b995781610d6d565b5090919050565b6001546001600160a01b031633146138095760405162461bcd60e51b815260040180806020018281038252602f815260200180614022602f913960400191505060405180910390fd5b600082613bf857506000610d70565b82820282848281613c0557fe5b0414610d6d5760405162461bcd60e51b81526004018080602001828103825260218152602001806140516021913960400191505060405180910390fd5b6000808211613c98576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481613ca357fe5b04949350505050565b600082820183811015610d6d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052613d58908490613dcd565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052613db7908590613dcd565b50505050565b600081831015613b995781610d6d565b613ddf826001600160a01b0316613f85565b613e30576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310613e6e5780518252601f199092019160209182019101613e4f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613ed0576040519150601f19603f3d011682016040523d82523d6000602084013e613ed5565b606091505b509150915081613f2c576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115613db757808060200190516020811015613f4857600080fd5b5051613db75760405162461bcd60e51b815260040180806020018281038252602a8152602001806140ae602a913960400191505060405180910390fd5b3b151590565b6040518060400160405280600290602082028038833950919291505056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869707265776172642064617461206f6620746f6b656e20686173206265656e2061646465644f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582023898aaf32b91796413c8ff4d017533eea91d2c8d21b76ad8f4f49c1b2acc90c64736f6c63430005110032

Deployed Bytecode Sourcemap

13606:24970:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13606:24970:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28111:698;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28111:698:0;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;28111:698:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14422:58;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14422:58:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14817:27;;;:::i;:::-;;;;;;;;;;;;;;;;15372:58;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15372:58:0;;;;;;;;:::i;26921:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26921:194:0;-1:-1:-1;;;;;26921:194:0;;:::i;4524:141::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4524:141:0;-1:-1:-1;;;;;4524:141:0;;:::i;:::-;;5750:488;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5750:488:0;;;;:::i;16577:93::-;;;:::i;27916:183::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27916:183:0;-1:-1:-1;;;;;27916:183:0;;:::i;17460:264::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17460:264:0;;;;;;;;;;:::i;31443:2463::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31443:2463:0;;:::i;33914:896::-;;;:::i;18619:425::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18619:425:0;-1:-1:-1;;;;;18619:425:0;;:::i;28875:376::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28875:376:0;;;;;;;;;;:::i;18190:421::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18190:421:0;;;;;;;;;;;;;:::i;14047:44::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14047:44:0;-1:-1:-1;;;;;14047:44:0;;:::i;:::-;;;;-1:-1:-1;;;;;14047:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4293:29;;;:::i;:::-;;;;-1:-1:-1;;;;;4293:29:0;;;;;;;;;;;;;;5336:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;16798:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16798:178:0;-1:-1:-1;;;;;16798:178:0;;:::i;14528:77::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14528:77:0;;;;;;;;;;:::i;16678:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16678:112:0;-1:-1:-1;;;;;16678:112:0;;:::i;14014:26::-;;;:::i;4673:271::-;;;:::i;14098:29::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14098:29:0;;:::i;17736:236::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17736:236:0;;;;;;;;;;:::i;27123:775::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27123:775:0;;;;;;;;;;:::i;36760:394::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36760:394:0;;;;;;;;:::i;4266:20::-;;;:::i;5304:25::-;;;:::i;26381:530::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26381:530:0;;;;;;;;;;:::i;20206:691::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20206:691:0;;;;;;;;:::i;20905:285::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;20905:285:0;;;;;;;;;;;;;;;;;:::i;29259:2176::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29259:2176:0;;:::i;15103:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15103:45:0;;;;;;;;:::i;34979:1171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34979:1171:0;;;;;;;;:::i;17984:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17984:194:0;-1:-1:-1;;;;;17984:194:0;;:::i;19270:712::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19270:712:0;;;;;;;;:::i;15717:811::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15717:811:0;;;;;;;;;;;;;;;;;:::i;14890:69::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14890:69:0;;;;;;;;;;:::i;21609:4758::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;21609:4758:0;;;;;;;;;;;;;;;;;;;;;;:::i;14612:62::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14612:62:0;;;;;;;;;;:::i;34818:97::-;;;:::i;16984:468::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16984:468:0;-1:-1:-1;;;;;16984:468:0;;:::i;36158:487::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36158:487:0;-1:-1:-1;;;;;36158:487:0;;:::i;28111:698::-;-1:-1:-1;;;;;28271:19:0;;28245:23;28271:19;;;:10;:19;;;;;:26;28212:19;;28312:23;;;28308:79;;;28360:15;28352:23;;28308:79;28414:6;28405:5;:15;;28397:60;;;;;-1:-1:-1;;;28397:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28537:22;;;28483:14;;;28537:22;;;;;;;;;;;;;28508:26;;28483:14;28537:22;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;28508:51:0;-1:-1:-1;28575:6:0;28570:208;28591:4;28587:1;:8;28570:208;;;-1:-1:-1;;;;;28632:19:0;;;;;;:10;:19;;;;;:31;;28652:10;;;;28632:31;;;;;;;;;;;;;;;;:47;;;28617:6;28624:1;28617:9;;;;;;;;;;;;;;28627:1;28617:12;;;;;;;;;;:62;;;;;28709:10;:19;28720:7;-1:-1:-1;;;;;28709:19:0;-1:-1:-1;;;;;28709:19:0;;;;;;;;;;;;28738:1;28729:6;:10;28709:31;;;;;;;;;;;;;;;;;;:48;;;28694:6;28701:1;28694:9;;;;;;;;;;;;;;28704:1;28694:12;;;;;;;;;;:63;28597:3;;28570:208;;;-1:-1:-1;28795:6:0;-1:-1:-1;;;28111:698:0;;;;;;:::o;14422:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14422:58:0;-1:-1:-1;14422:58:0;:::o;14817:27::-;;;;:::o;15372:58::-;;;;;;;;;;;;;;;;;;26921:194;26997:7;27024:83;27033:33;27053:12;;27033:15;:19;;:33;;;;:::i;:::-;-1:-1:-1;;;;;27068:25:0;;;;;;:10;:25;;;;;:38;;;27024:8;:83::i;:::-;27017:90;;26921:194;;;;:::o;4524:141::-;4982:12;:10;:12::i;:::-;4596:14;:23;;-1:-1:-1;;;;;4596:23:0;;-1:-1:-1;;;;;;4596:23:0;;;;;;;;4635:22;;;;;;;;;;;;;;;;4524:141;:::o;5750:488::-;4982:12;:10;:12::i;:::-;5903:6;;;;5892:17;;;;;;5888:56;;;5926:7;;5888:56;5990:6;:16;;-1:-1:-1;;5990:16:0;;;;;;;;;;6075:6;6071:58;;;6114:3;6098:13;:19;6071:58;6223:6;;6210:20;;;6223:6;;;;6210:20;;;;;;;;;;;;;;5005:1;5750:488;:::o;16577:93::-;16650:12;;16577:93;:::o;27916:183::-;-1:-1:-1;;;;;28031:25:0;;;27996:7;28031:25;;;:10;:25;;;;;;;;:44;;;;28023:53;;:7;:53;;;;;:68;;;;;;;;;;27916:183::o;17460:264::-;-1:-1:-1;;;;;17684:16:0;;;17537:7;17684:16;;;:7;:16;;;;;;;;:31;;;;;;;;;;;;;17621;;;:22;:31;;;;;:46;;;;;;;;;;17564:152;;17684:31;17564:115;;17674:4;;17564:105;;17587:81;;:29;17701:13;17587:14;:29::i;:::-;:33;:81;:33;:81;:::i;:::-;-1:-1:-1;;;;;17564:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105;:::i;:::-;:109;:115;:109;:115;:::i;:::-;:119;:152;:119;:152;:::i;:::-;17557:159;;17460:264;;;;;:::o;31443:2463::-;7188:13;:18;;7205:1;7188:18;;;;;6327:6;;;;6326:7;6318:80;;;;-1:-1:-1;;;6318:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31520:10;37262:6;37257:780;37274:12;:19;37270:23;;37257:780;;;37315:13;37331:12;37344:1;37331:15;;;;;;;;;;;;;;;;;;37379:12;;-1:-1:-1;;;;;37331:15:0;;;;-1:-1:-1;37375:256:0;;-1:-1:-1;;;;;37586:17:0;;;37578:45;37586:17;;;:10;:17;;;;;;;;:36;;;;;37578:45;;:7;:45;;;;;:52;;;;;;;;;;;37544:17;;:28;;;;37506:32;;;;;37470:161;;:103;;:69;;:31;37597:5;37470:24;:31::i;:69::-;:73;:103;:73;:103;:::i;:161::-;-1:-1:-1;;;;;37423:17:0;;;37415:45;37423:17;;;:10;:17;;;;;;;;:36;;;;37415:45;;:7;:45;;;;;:52;;;;;;;;:216;37375:256;37701:21;37716:5;37701:14;:21::i;:::-;-1:-1:-1;;;;;37660:17:0;;;;;;:10;:17;;;;;;;;:38;:62;37772:31;37671:5;37772:24;:31::i;:::-;-1:-1:-1;;;;;37737:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;37822:21;;;37818:208;;37890:22;37897:7;37906:5;37890:6;:22::i;:::-;-1:-1:-1;;;;;37864:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;37972:10;:17;;;;;;:38;;37931:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;37818:208;-1:-1:-1;37295:3:0;;37257:780;;;;31560:1;31551:6;:10;31543:40;;;;;-1:-1:-1;;;31543:40:0;;;;;;;;;;;;-1:-1:-1;;;31543:40:0;;;;;;;;;;;;;;;31640:10;31591:19;31630:21;;;:9;:21;;;;;;31613:39;;31622:6;;31613:8;:39::i;:::-;31591:61;;31660:20;31683:1;31660:24;;31692:16;31711:41;31736:12;31749:1;31736:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31736:15:0;31711:24;:41::i;:::-;31692:60;;31768:6;31763:543;31791:10;31780:22;;;;:10;:22;;;;;:29;31776:33;;31763:543;;;31831:17;31851:44;31871:10;31883:8;31893:1;31851:19;:44::i;:::-;31831:64;-1:-1:-1;31914:13:0;;31910:332;;31960:32;31969:9;31980:11;31960:8;:32::i;:::-;32064:10;32053:22;;;;:10;:22;;;;;:25;;31948:44;;-1:-1:-1;32053:57:0;;31948:44;;32053:22;32076:1;;32053:25;;;;;;;;;;;;;;;;:42;;;:46;;:57;;;;:::i;:::-;32019:10;32008:22;;;;:10;:22;;;;;:25;;32031:1;;32008:25;;;;;;;;;;;;;;:42;:25;;;;;:42;:102;32145:26;:11;32161:9;32145:26;:15;:26;:::i;:::-;32131:40;-1:-1:-1;32199:27:0;:12;32216:9;32199:27;:16;:27;:::i;:::-;32184:42;;31910:332;32260:16;32256:41;;32292:5;;;32256:41;-1:-1:-1;31811:3:0;;31763:543;;;;32339:1;32324:12;:16;:42;;;;;32360:6;32344:12;:22;;32324:42;:83;;;;-1:-1:-1;32396:10:0;32386:21;;;;:9;:21;;;;;;32370:37;;;32324:83;32316:113;;;;;-1:-1:-1;;;32316:113:0;;;;;;;;;;;;-1:-1:-1;;;32316:113:0;;;;;;;;;;;;;;;32459:12;;:30;;32476:12;32459:30;:16;:30;:::i;:::-;32444:12;:45;32534:10;32524:21;;;;:9;:21;;;;;;:39;;32550:12;32524:39;:25;:39;:::i;:::-;32510:10;32500:21;;;;:9;:21;;;;;;;;:63;;;;32608:16;:28;;;:35;32662:8;;;;;:80;;-1:-1:-1;32710:10:0;32693:28;;;;:16;:28;;;;;:36;;-1:-1:-1;;32722:6:0;;;32693:36;;;;;;;;;;;;;;;;:49;;;32674:15;:68;32662:80;32658:367;;;32819:10;32809:21;;;;:9;:21;;;;;;;;;32761:16;:28;;;;;;:36;;-1:-1:-1;;32790:6:0;;;32761:36;;;;;;;;;;;;;;;;:45;;:69;;;;32658:367;;;32955:10;32938:28;;;;:16;:28;;;;;;;;32972:52;;;;;;;32985:15;32972:52;;33002:21;;;:9;:21;;;;;;32972:52;;;;;;27:10:-1;;39:1;23:18;;;45:23;;32938:87:0;;;;;;;;;;;;;;;;;;;;;;;;32658:367;-1:-1:-1;33052:6:0;33047:736;33068:12;:19;33064:23;;33047:736;;;33109:12;33124:18;:35;33143:12;33156:1;33143:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33143:15:0;33124:35;;;;;;;;;;;;:42;33223:12;;33124:42;;-1:-1:-1;33223:16:0;;;;:78;;;33261:10;:27;33272:12;33285:1;33272:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33272:15:0;33261:27;;;;;;;;;;;;:40;;;33243:15;:58;33223:78;33219:181;;;33334:66;33387:12;;33334:48;33377:4;33334:10;:27;33345:12;33358:1;33345:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33345:15:0;33334:27;;;;;;;;;;;;:38;;;;:48;:42;:48;:::i;:66::-;33320:80;;33219:181;33426:1;33419:4;:8;:87;;;;;33450:18;:35;33469:12;33482:1;33469:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33469:15:0;33450:35;;;;;;;;;;;;:43;;-1:-1:-1;;33486:6:0;;;33450:43;;;;;;;;;;;;;;;;:56;;;33431:15;:75;33419:87;33415:353;;;33625:11;33566:18;:35;33585:12;33598:1;33585:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33585:15:0;33566:35;;;;;;;;;;;;:43;;-1:-1:-1;;33602:6:0;;;33566:43;;;;;;;;;;;;;;;;:56;;:70;;;;33415:353;;;33684:18;:35;33703:12;33716:1;33703:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33703:15:0;33684:35;;;;;;;;;;;;;;;33725:41;;;;;;;;33736:15;33725:41;;;;;;;;27:10:-1;;33703:15:0;23:18:-1;;;45:23;;33684:84:0;;;;;;;;;;;;;;;;;;;;;;;33415:353;-1:-1:-1;;33089:3:0;;33047:736;;;-1:-1:-1;33796:12:0;;:51;;:12;;;-1:-1:-1;;;;;33796:12:0;33822:10;33834:12;33796:25;:51::i;:::-;33863:35;;;;;;;;33873:10;;33863:35;;;;;;;;;;38047:1;;;6409;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7276:73:0;;;;;;;;;;;;;;;31443:2463;;:::o;33914:896::-;7188:13;:18;;7205:1;7188:18;;;;;6327:6;;;;6326:7;6318:80;;;;-1:-1:-1;;;6318:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33978:10;37262:6;37257:780;37274:12;:19;37270:23;;37257:780;;;37315:13;37331:12;37344:1;37331:15;;;;;;;;;;;;;;;;;;37379:12;;-1:-1:-1;;;;;37331:15:0;;;;-1:-1:-1;37375:256:0;;-1:-1:-1;;;;;37586:17:0;;;37578:45;37586:17;;;:10;:17;;;;;;;;:36;;;;;37578:45;;:7;:45;;;;;:52;;;;;;;;;;;37544:17;;:28;;;;37506:32;;;;;37470:161;;:103;;:69;;:31;37597:5;37470:24;:31::i;:161::-;-1:-1:-1;;;;;37423:17:0;;;37415:45;37423:17;;;:10;:17;;;;;;;;:36;;;;37415:45;;:7;:45;;;;;:52;;;;;;;;:216;37375:256;37701:21;37716:5;37701:14;:21::i;:::-;-1:-1:-1;;;;;37660:17:0;;;;;;:10;:17;;;;;;;;:38;:62;37772:31;37671:5;37772:24;:31::i;:::-;-1:-1:-1;;;;;37737:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;37822:21;;;37818:208;;37890:22;37897:7;37906:5;37890:6;:22::i;:::-;-1:-1:-1;;;;;37864:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;37972:10;:17;;;;;;:38;;37931:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;37818:208;-1:-1:-1;37295:3:0;;37257:780;;;;34006:6;34001:802;34018:12;:19;34014:23;;34001:802;;;34059:21;34083:12;34096:1;34083:15;;;;;;;;;;;;;;;;;;;;34138:10;34130:19;;;:7;:19;;;;;;-1:-1:-1;;;;;34083:15:0;;;34130:34;;;;;;;;;;;34083:15;;-1:-1:-1;34130:34:0;34083:15;34202:41;;34083:15;34202:14;:41::i;:::-;34179:64;;34273:30;34282:12;34296:6;34273:8;:30::i;:::-;34258:45;-1:-1:-1;34322:16:0;;34318:474;;34456:10;34448:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;34448:34:0;;;;;;;;;;:52;;34487:12;34448:52;:38;:52;:::i;:::-;34419:10;34411:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;34411:34:0;;;;;;;;;;;:89;;;;34580:26;;;:14;:26;;;;;:41;;;;;;;;;;34563:59;;:12;;:59;:16;:59;:::i;:::-;34534:10;34519:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;34519:41:0;;;;;;;;;;:103;;;;34641:60;;34519:41;34688:12;34641:60;:34;:60;:::i;:::-;34725:51;;;;;;;;-1:-1:-1;;;;;34725:51:0;;;34736:10;;34725:51;;;;;;;;;34318:474;-1:-1:-1;;;34039:3:0;;34001:802;;;;6409:1;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7276:73:0;;;;;;;;;;;;;;18619:425;18680:7;18697:20;18720:1;18697:24;;18729:16;18748:41;18773:12;18786:1;18773:15;;;;;;;18748:41;18729:60;;18805:6;18800:142;-1:-1:-1;;;;;18817:19:0;;;;;;:10;:19;;;;;:26;18813:30;;18800:142;;;18874:59;18891:41;18911:7;18920:8;18930:1;18891:19;:41::i;:::-;18874:12;;:59;:16;:59;:::i;:::-;18859:74;-1:-1:-1;18845:3:0;;18800:142;;;-1:-1:-1;;;;;;18973:18:0;;;;;;:9;:18;;;;;;18957:34;;;18949:57;;;;;-1:-1:-1;;;18949:57:0;;;;;;;;;;;;-1:-1:-1;;;18949:57:0;;;;;;;;;;;;;;;-1:-1:-1;19024:12:0;18619:425;-1:-1:-1;;18619:425:0:o;28875:376::-;4982:12;:10;:12::i;:::-;-1:-1:-1;;;;;28996:27:0;;;;;;:64;;-1:-1:-1;;;;;;29027:33:0;;;;28996:64;28988:101;;;;;-1:-1:-1;;;28988:101:0;;;;;;;;;;;;-1:-1:-1;;;28988:101:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29100:25:0;;;;;;;:10;:25;;;;;;:66;;-1:-1:-1;;;;;;29100:66:0;;;;;;;;;29182:61;;;29100:25;29182:61;28875:376;;:::o;18190:421::-;-1:-1:-1;;;;;18312:19:0;;18291:7;18312:19;;;:10;:19;;;;;:27;;18291:7;;18312:19;18332:6;;18312:27;;;;;;;;;;;;;;;;:44;;;:48;:188;;;;;18399:10;:27;18410:12;18423:1;18410:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18410:15:0;18399:27;;;;;;;;;;;;:40;;;18380:15;:59;;;:118;;-1:-1:-1;;;;;;18443:19:0;;;;;;:10;:19;;;;;:27;;18490:8;;18443:19;18463:6;;18443:27;;;;;;;;;;;;;;;;:43;;;:55;;18380:118;18308:295;;;-1:-1:-1;;;;;18522:19:0;;;;;;:10;:19;;;;;:27;;18542:6;;18522:27;;;;;;;;;;;;;;;;:44;;;18515:51;;;;18308:295;-1:-1:-1;18602:1:0;18595:8;;14047:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14047:44:0;;;;;;;;;:::o;4293:29::-;;;-1:-1:-1;;;;;4293:29:0;;:::o;5336:18::-;;;;;;:::o;16798:178::-;-1:-1:-1;;;;;16929:25:0;;16876:7;16929:25;;;:10;:25;;;;;:38;;;16903:65;;16912:15;;16903:8;:65::i;14528:77::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;16678:112::-;-1:-1:-1;;;;;16764:18:0;16737:7;16764:18;;;:9;:18;;;;;;;16678:112::o;14014:26::-;;;;;;-1:-1:-1;;;;;14014:26:0;;:::o;4673:271::-;4742:14;;-1:-1:-1;;;;;4742:14:0;4728:10;:28;4720:94;;;;-1:-1:-1;;;4720:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4843:5;;4850:14;;4830:35;;;-1:-1:-1;;;;;4843:5:0;;;4830:35;;4850:14;;;;4830:35;;;;;;;;;;;;;;;;4884:14;;;;4876:22;;-1:-1:-1;;;;;;4876:22:0;;;-1:-1:-1;;;;;4884:14:0;;4876:22;;;;4909:27;;;4673:271::o;14098:29::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14098:29:0;;-1:-1:-1;14098:29:0;:::o;17736:236::-;17821:7;17841:18;17862:30;17869:7;17878:13;17862:6;:30::i;:::-;-1:-1:-1;;;;;17925:23:0;;;;;;;:14;:23;;;;;;;;:38;;;;;;;;;;17841:51;;-1:-1:-1;17910:54:0;;17841:51;;17910:54;:14;:54;:::i;:::-;17903:61;17736:236;-1:-1:-1;;;;17736:236:0:o;27123:775::-;-1:-1:-1;;;;;27242:25:0;;27208:7;27242:25;;;:16;:25;;;;;:32;27289:6;27285:33;;27317:1;27310:8;;;;;27285:33;-1:-1:-1;;;;;27346:25:0;;27329:14;27346:25;;;:16;:25;;;;;:28;;27329:14;;27346:28;;;;;;;;;;;;;;;;:41;;-1:-1:-1;27413:37:0;27436:13;27413:22;:37::i;:::-;27398:52;;27473:6;27465:4;:14;27461:41;;27501:1;27494:8;;;;;;;27461:41;27513:22;27538:58;27559:7;27568:13;27583:6;27591:4;27538:19;:58::i;:::-;-1:-1:-1;;;;;27643:23:0;;;;;;;:14;:23;;;;;;;;:38;;;;;;;;;;27513:83;;-1:-1:-1;27624:58:0;;27513:83;;27624:58;:18;:58;:::i;:::-;27607:75;;27693:20;27716:31;27724:7;27733:13;27716:6;:31::i;:::-;27693:54;;27775:38;27784:14;27800:12;27775:8;:38::i;:::-;27758:55;27123:775;-1:-1:-1;;;;;;;;27123:775:0:o;36760:394::-;4982:12;:10;:12::i;:::-;36887;;-1:-1:-1;;;;;36863:37:0;;;36887:12;;;;;36863:37;;36855:79;;;;;-1:-1:-1;;;36855:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36953:24:0;;;;;;:10;:24;;;;;:39;;;:44;36945:85;;;;;-1:-1:-1;;;36945:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37075:5;;37041:53;;-1:-1:-1;;;;;37041:33:0;;;;37075:5;37082:11;37041:53;:33;:53;:::i;:::-;37110:36;;;-1:-1:-1;;;;;37110:36:0;;;;;;;;;;;;;;;;;;;;;;;36760:394;;:::o;4266:20::-;;;-1:-1:-1;;;;;4266:20:0;;:::o;5304:25::-;;;;:::o;26381:530::-;-1:-1:-1;;;;;26500:25:0;;26476:7;26500:25;;;:16;:25;;;;;:32;26496:64;;-1:-1:-1;26559:1:0;26552:8;;26496:64;26571:19;26593:39;26608:7;26618:13;26593:14;:39::i;:::-;26571:61;;26643:29;26675:105;26696:7;26706:13;26721:16;:25;26738:7;-1:-1:-1;;;;;26721:25:0;-1:-1:-1;;;;;26721:25:0;;;;;;;;;;;;26747:1;26721:28;;;;;;;;;;;;;;;;;;:41;;;26764:15;26675:19;:105::i;:::-;26643:137;;26814:21;26799:11;:36;;26791:56;;;;;-1:-1:-1;;;26791:56:0;;;;;;;;;;;;-1:-1:-1;;;26791:56:0;;;;;;;;;;;;;;;26865:38;:11;26881:21;26865:38;:15;:38;:::i;:::-;26858:45;26381:530;-1:-1:-1;;;;;26381:530:0:o;20206:691::-;-1:-1:-1;;;;;20321:25:0;;20284:7;20321:25;;;:16;:25;;;;;:32;-1:-1:-1;;20378:8:0;;20385:1;20403:10;;20399:424;;;20449:1;20434:299;20456:6;20452:1;:10;20434:299;;;-1:-1:-1;;;;;20500:25:0;;;;;;:16;:25;;;;;:28;;20526:1;;20500:28;;;;;;;;;;;;;;;;:41;;;20492:5;:49;20488:220;;;20652:8;:1;20658;20652:8;:5;:8;:::i;:::-;20646:14;;20683:5;;20488:220;20464:3;;20434:299;;;;20399:424;;;20754:6;20764:1;20754:11;20750:73;;;-1:-1:-1;20786:1:0;20750:73;;;-1:-1:-1;20822:1:0;20886:3;20206:691;-1:-1:-1;;;;20206:691:0:o;20905:285::-;21025:7;21062:3;21053:5;:12;;21045:31;;;;;-1:-1:-1;;;21045:31:0;;;;;;;;;;;;-1:-1:-1;;;21045:31:0;;;;;;;;;;;;;;;21087:14;21104:54;21143:14;:3;21151:5;21143:14;:7;:14;:::i;:::-;21104:34;21133:4;21104:24;:8;21117:10;21104:24;:12;:24;:::i;:54::-;21087:71;20905:285;-1:-1:-1;;;;;;20905:285:0:o;29259:2176::-;7188:13;:18;;7205:1;7188:18;;;;;6327:6;;;;6326:7;6318:80;;;;-1:-1:-1;;;6318:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29335:10;37262:6;37257:780;37274:12;:19;37270:23;;37257:780;;;37315:13;37331:12;37344:1;37331:15;;;;;;;;;;;;;;;;;;37379:12;;-1:-1:-1;;;;;37331:15:0;;;;-1:-1:-1;37375:256:0;;-1:-1:-1;;;;;37586:17:0;;;37578:45;37586:17;;;:10;:17;;;;;;;;:36;;;;;37578:45;;:7;:45;;;;;:52;;;;;;;;;;;37544:17;;:28;;;;37506:32;;;;;37470:161;;:103;;:69;;:31;37597:5;37470:24;:31::i;:161::-;-1:-1:-1;;;;;37423:17:0;;;37415:45;37423:17;;;:10;:17;;;;;;;;:36;;;;37415:45;;:7;:45;;;;;:52;;;;;;;;:216;37375:256;37701:21;37716:5;37701:14;:21::i;:::-;-1:-1:-1;;;;;37660:17:0;;;;;;:10;:17;;;;;;;;:38;:62;37772:31;37671:5;37772:24;:31::i;:::-;-1:-1:-1;;;;;37737:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;37822:21;;;37818:208;;37890:22;37897:7;37906:5;37890:6;:22::i;:::-;-1:-1:-1;;;;;37864:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;37972:10;:17;;;;;;:38;;37931:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;37818:208;-1:-1:-1;37295:3:0;;37257:780;;;;29375:1;29366:6;:10;29358:37;;;;;-1:-1:-1;;;29358:37:0;;;;;;;;;;;;-1:-1:-1;;;29358:37:0;;;;;;;;;;;;;;;29439:12;;;29432:45;;;-1:-1:-1;;;29432:45:0;;29471:4;29432:45;;;;;;;;-1:-1:-1;;29439:12:0;;;;-1:-1:-1;;;;;29439:12:0;;29432:30;;:45;;;;;;;;;;;;;;29439:12;29432:45;;;5:2:-1;;;;30:1;27;20:12;5:2;29432:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29432:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29432:45:0;29488:12;;29432:45;;-1:-1:-1;29488:64:0;;:12;;;-1:-1:-1;;;;;29488:12:0;29518:10;29538:4;29545:6;29488:29;:64::i;:::-;29563:20;29586:66;29636:15;29593:12;;;;;;;;;-1:-1:-1;;;;;29593:12:0;-1:-1:-1;;;;;29586:30:0;;29625:4;29586:45;;;;;;;;;;;;;-1:-1:-1;;;;;29586:45:0;-1:-1:-1;;;;;29586:45:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29586:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29586:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29586:45:0;;:66;:49;:66;:::i;:::-;29563:89;;29678:30;29687:12;29701:6;29678:8;:30::i;:::-;29734:12;;29663:45;;-1:-1:-1;29734:30:0;;29663:45;29734:30;:16;:30;:::i;:::-;29719:12;:45;29809:10;29799:21;;;;:9;:21;;;;;;:39;;29825:12;29799:39;:25;:39;:::i;:::-;29785:10;29775:21;;;;:9;:21;;;;;:63;29855:16;;29851:1527;;29899:10;29888:22;;;;:10;:22;;;;;;;29916:54;;;;;;;;29942:12;;29888:22;;29916:54;;;29922:33;;:15;;:33;:19;:33;:::i;:::-;29916:54;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;-1:-1;29888:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;30041:10;30024:28;;:16;:28;;;;;:35;30082:8;;;;;:80;;-1:-1:-1;30130:10:0;30113:28;;;;:16;:28;;;;;:36;;-1:-1:-1;;30142:6:0;;;30113:36;;;;;;;;;;;;;;;;:49;;;30094:15;:68;30082:80;30078:445;;;30378:10;30368:21;;;;:9;:21;;;;;;;;;30320:16;:28;;;;;;:36;;-1:-1:-1;;30349:6:0;;;30320:36;;;;;;;;;;;;;;;;:45;;:69;;;;30078:445;;;30453:10;30436:28;;;;:16;:28;;;;;;;;30470:52;;;;;;;30483:15;30470:52;;30500:21;;;:9;:21;;;;;;30470:52;;;;;;27:10:-1;;39:1;23:18;;;45:23;;30436:87:0;;;;;;;;;;;;;;;;;;;;;;;;30078:445;-1:-1:-1;30559:6:0;30554:811;30575:12;:19;30571:23;;30554:811;;;30646:10;:27;30657:12;30670:1;30657:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30657:15:0;30646:27;;;;;;;;;;;;:40;;;30628:15;:58;30620:81;;;;;-1:-1:-1;;;30620:81:0;;;;;;;;;;;;-1:-1:-1;;;30620:81:0;;;;;;;;;;;;;;;30720:12;30735:18;:35;30754:12;30767:1;30754:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30754:15:0;30735:35;;;;;;;;;;;;:42;30842:12;;30735:42;;-1:-1:-1;30842:16:0;30838:124;;30896:66;30949:12;;30896:48;30939:4;30896:10;:27;30907:12;30920:1;30907:15;;;;;;;30896:66;30882:80;;30838:124;30992:1;30985:4;:8;:87;;;;;31016:18;:35;31035:12;31048:1;31035:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31035:15:0;31016:35;;;;;;;;;;;;:43;;-1:-1:-1;;31052:6:0;;;31016:43;;;;;;;;;;;;;;;;:56;;;30997:15;:75;30985:87;30981:365;;;31195:11;31136:18;:35;31155:12;31168:1;31155:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31155:15:0;31136:35;;;;;;;;;;;;:43;;-1:-1:-1;;31172:6:0;;;31136:43;;;;;;;;;;;;;;;;:56;;:70;;;;30981:365;;;31262:18;:35;31281:12;31294:1;31281:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31281:15:0;31262:35;;;;;;;;;;;;;;;31303:41;;;;;;;;31314:15;31303:41;;;;;;;;27:10:-1;;31281:15:0;23:18:-1;;;45:23;;31262:84:0;;;;;;;;;;;;;;;;;;;;;;;30981:365;-1:-1:-1;;30596:3:0;;30554:811;;;;29851:1527;31395:32;;;;;;;;31402:10;;31395:32;;;;;;;;;;38047:1;;6409;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7276:73:0;;;;;;;;;;;;;;15103:45;;;;;;;;;;;;;;;;;;34979:1171;35076:1;37262:6;37257:780;37274:12;:19;37270:23;;37257:780;;;37315:13;37331:12;37344:1;37331:15;;;;;;;;;;;;;;;;;;37379:12;;-1:-1:-1;;;;;37331:15:0;;;;-1:-1:-1;37375:256:0;;-1:-1:-1;;;;;37586:17:0;;;37578:45;37586:17;;;:10;:17;;;;;;;;:36;;;;;37578:45;;:7;:45;;;;;:52;;;;;;;;;;;37544:17;;:28;;;;37506:32;;;;;37470:161;;:103;;:69;;:31;37597:5;37470:24;:31::i;:161::-;-1:-1:-1;;;;;37423:17:0;;;37415:45;37423:17;;;:10;:17;;;;;;;;:36;;;;37415:45;;:7;:45;;;;;:52;;;;;;;;:216;37375:256;37701:21;37716:5;37701:14;:21::i;:::-;-1:-1:-1;;;;;37660:17:0;;;;;;:10;:17;;;;;;;;:38;:62;37772:31;37671:5;37772:24;:31::i;:::-;-1:-1:-1;;;;;37737:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;37822:21;;;37818:208;;37890:22;37897:7;37906:5;37890:6;:22::i;:::-;-1:-1:-1;;;;;37864:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;37972:10;:17;;;;;;:38;;37931:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;37818:208;-1:-1:-1;37295:3:0;;37257:780;;;-1:-1:-1;;;;;;35099:25:0;;;;;;;:10;:25;;;;;:44;;35147:10;35099:58;35091:67;;;;;;35339:73;-1:-1:-1;;;;;35339:38:0;;35378:10;35398:4;35405:6;35339:73;:38;:73;:::i;:::-;-1:-1:-1;;;;;35448:25:0;;;;;;:10;:25;;;;;:38;;;35429:15;:57;35425:500;;-1:-1:-1;;;;;35553:25:0;;;;;;:10;:25;;;;;:41;;;35542:53;;:6;;:53;:10;:53;:::i;:::-;-1:-1:-1;;;;;35503:25:0;;;;;;:10;:25;;;;;:36;;:92;35425:500;;;-1:-1:-1;;;;;35648:25:0;;35628:17;35648:25;;;:10;:25;;;;;:38;;;:59;;35691:15;35648:59;:42;:59;:::i;:::-;-1:-1:-1;;;;;35755:25:0;;35722:16;35755:25;;;:10;:25;;;;;:36;;;35628:79;;-1:-1:-1;35722:16:0;35741:51;;35628:79;;35741:51;:13;:51;:::i;:::-;-1:-1:-1;;;;;35871:25:0;;;;;;:10;:25;;;;;:41;;;35722:70;;-1:-1:-1;35846:67:0;;:20;:6;35722:70;35846:20;:10;:20;:::i;:67::-;-1:-1:-1;;;;;35807:25:0;;;;;;:10;:25;;;;;:36;;:106;-1:-1:-1;;35425:500:0;-1:-1:-1;;;;;35935:25:0;;;;;;:10;:25;;;;;35978:15;35935:40;;;:58;;;36065:41;;;;;36045:62;;35978:15;36045:62;:19;:62;:::i;:::-;-1:-1:-1;;;;;36004:25:0;;;;;;:10;:25;;;;;;;;;:38;;:103;;;;36123:19;;;;;;;;;;;;;;;;;;34979:1171;;;:::o;17984:194::-;-1:-1:-1;;;;;18128:25:0;;18060:7;18128:25;;;:10;:25;;;;;:41;;;;18087:36;;;;;:83;;;:40;:83;:::i;19270:712::-;-1:-1:-1;;;;;19388:33:0;;19351:7;19388:33;;;:18;:33;;;;;:40;-1:-1:-1;;19453:8:0;;19460:1;19478:10;;19474:434;;;19524:1;19509:309;19531:6;19527:1;:10;19509:309;;;-1:-1:-1;;;;;19575:33:0;;;;;;:18;:33;;;;;:36;;19609:1;;19575:36;;;;;;;;;;;;;;;;:49;;;19567:5;:57;19563:230;;;19737:8;:1;19743;19737:8;:5;:8;:::i;19563:230::-;19539:3;;19509:309;;15717:811;4982:12;:10;:12::i;:::-;-1:-1:-1;;;;;15907:25:0;;;;;;:10;:25;;;;;:41;;;:46;15899:94;;;;-1:-1:-1;;;15899:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16012:27:0;;;;;;:64;;-1:-1:-1;;;;;;16043:33:0;;;;16012:64;16004:101;;;;;-1:-1:-1;;;16004:101:0;;;;;;;;;;;;-1:-1:-1;;;16004:101:0;;;;;;;;;;;;;;;16143:1;16124:16;:20;16116:65;;;;;-1:-1:-1;;;16116:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16192:12;27:10:-1;;39:1;23:18;;;45:23;;;16192:32:0;;;;-1:-1:-1;;;;;16192:32:0;;;-1:-1:-1;;;;;;16192:32:0;;;;;;;;-1:-1:-1;16235:25:0;;;:10;16192:32;16235:25;;;;;:66;;;;;;;;;;;;;16312:41;;;;:60;;;16388:61;;16235:66;;16388:61;;;16465:55;;;;;;;;-1:-1:-1;;;;;16465:55:0;;;;;;;;;;;;;15717:811;;;:::o;14890:69::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;21609:4758::-;-1:-1:-1;;;;;21751:25:0;;21727:7;21751:25;;;:16;:25;;;;;:32;21747:62;;-1:-1:-1;21808:1:0;21801:8;;21747:62;21833:39;21858:13;21833:24;:39::i;:::-;21824:5;:48;21820:75;;-1:-1:-1;21894:1:0;21887:8;;21820:75;-1:-1:-1;;;;;21970:25:0;;;;;;:16;:25;;;;;:28;;21954:58;;21963:5;;21970:25;:28;;;;;;;;;;;;;;:41;;;21954:8;:58::i;:::-;21946:66;;22033:39;22058:13;22033:24;:39::i;:::-;22027:3;:45;22023:109;;;22093:39;22118:13;22093:24;:39::i;:::-;22087:45;;22023:109;22159:3;22151:5;:11;22143:30;;;;;-1:-1:-1;;;22143:30:0;;;;;;;;;;;;-1:-1:-1;;;22143:30:0;;;;;;;;;;;;;;;22192:16;22211:31;22227:7;22236:5;22211:15;:31::i;:::-;-1:-1:-1;;;;;22273:25:0;;;;;;:16;:25;;;;;:32;22192:50;;-1:-1:-1;22262:43:0;;22254:69;;;;;-1:-1:-1;;;22254:69:0;;;;;;;;;;;;-1:-1:-1;;;22254:69:0;;;;;;;;;;;;;;;22338:17;22358:34;22371:13;22386:5;22358:12;:34::i;:::-;-1:-1:-1;;;;;22423:33:0;;;;;;:18;:33;;;;;:40;22338:54;;-1:-1:-1;22411:52:0;;22403:75;;;;;-1:-1:-1;;;22403:75:0;;;;;;;;;;;;-1:-1:-1;;;22403:75:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22551:33:0;;22498:17;22551:33;;;:18;:33;;;;;:40;-1:-1:-1;;22551:43:0;22538:56;;22534:3797;;;-1:-1:-1;;;;;22647:25:0;;;;;;:16;:25;;;;;:35;;22623:141;;22647:25;22673:8;;22647:35;;;;;;;;;;;;;;;;:44;;;22693:18;:33;22712:13;-1:-1:-1;;;;;22693:33:0;-1:-1:-1;;;;;22693:33:0;;;;;;;;;;;;22727:9;22693:44;;;;;;;;;;;;;;;;;;:57;;;22752:5;22759:3;22623:23;:141::i;:::-;22611:153;;22534:3797;;;-1:-1:-1;;;;;23009:33:0;;22980:12;23009:33;;;:18;:33;;;;;:46;;22995:74;;23004:3;;23053:1;23043:11;;;23009:46;;;;;;;;;;;;;;;;:59;;;22995:8;:74::i;:::-;-1:-1:-1;;;;;23124:25:0;;;;;;:16;:25;;;;;:35;;22980:89;;-1:-1:-1;23100:141:0;;23150:8;;23124:35;;;;;;;;;;;;;;;;:44;;;23170:18;:33;23189:13;-1:-1:-1;;;;;23170:33:0;-1:-1:-1;;;;;23170:33:0;;;;;;;;;;;;23204:9;23170:44;;;;;;;;;;;;;;;;;;:57;;;23229:5;23236:4;23100:23;:141::i;:::-;23088:153;-1:-1:-1;23272:16:0;:9;23286:1;23272:16;:13;:16;:::i;:::-;23260:28;-1:-1:-1;23260:28:0;;-1:-1:-1;23632:1483:0;-1:-1:-1;;;;;23668:33:0;;;;;;:18;:33;;;;;:40;:47;;23713:1;23668:47;:44;:47;:::i;:::-;23663:3;:52;23632:1483;;;-1:-1:-1;;;;;23755:33:0;;;;;;:18;:33;;;;;:38;;23789:3;;23755:38;;;;;;;;;;;;;;;;:51;;;23748:3;:58;23744:90;;23829:5;;23744:90;-1:-1:-1;;;;;23983:25:0;;;;;;:16;:25;;;;;:32;:39;;24020:1;23983:39;:36;:39;:::i;:::-;23972:8;:50;23968:480;;;-1:-1:-1;;;;;24324:33:0;;;;;;:18;:33;;;;;:38;;24358:3;;24324:38;;;;;;;;;;;;;;;;;;;;;:51;-1:-1:-1;;;;;24265:25:0;;;;:16;:25;;;;;;;24291:15;:8;24304:1;24291:15;:12;:15;:::i;:::-;24265:42;;;;;;;;;;;;;;;;;;:55;;;:110;24261:167;;24413:15;:8;24426:1;24413:15;:12;:15;:::i;:::-;24402:26;;24261:167;-1:-1:-1;;;;;24477:33:0;;;;;;:18;:33;;;;;:40;;24515:1;24511:5;;;24477:40;;;;;;;;;;;;;;;;:53;;;24470:3;:60;24466:632;;-1:-1:-1;;;;;24606:25:0;;;;;;:16;:25;;;;;:35;;24567:197;;24582:181;;24632:8;;24606:35;;;;;;;;;;;;;;;;:44;;;24652:18;:33;24671:13;-1:-1:-1;;;;;24652:33:0;-1:-1:-1;;;;;24652:33:0;;;;;;;;;;;;24686:3;24652:38;;;;;;;;;;;;;;;;;;:51;;;24705:18;:33;24724:13;-1:-1:-1;;;;;24705:33:0;-1:-1:-1;;;;;24705:33:0;;;;;;;;;;;;24739:3;24705:38;;;;;;;;;;;;;;;;;;:51;;;24758:3;24582:23;:181::i;:::-;24567:9;;:197;:13;:197;:::i;:::-;24555:209;;24787:5;;24466:632;-1:-1:-1;;;;;24890:25:0;;;;;;:16;:25;;;;;:35;;24851:247;;24866:231;;24916:8;;24890:35;;;;;;;;;;;;;;;;:44;;;24936:18;:33;24955:13;-1:-1:-1;;;;;24936:33:0;-1:-1:-1;;;;;24936:33:0;;;;;;;;;;;;24970:3;24936:38;;;;;;;;;;;;;;;;;;:51;;;24989:18;:33;25008:13;-1:-1:-1;;;;;24989:33:0;-1:-1:-1;;;;;24989:33:0;;;;;;;;;;;;25023:3;24989:38;;;;;;;;;;;;;;;;;;;;;;;:51;-1:-1:-1;;;;;25042:33:0;;;;:18;:33;;;;;;;:40;;25080:1;25076:5;;;25042:40;;;;;;;;;;;;;;;;:53;;;24866:23;:231::i;24851:247::-;24839:259;;23717:5;;23632:1483;;;-1:-1:-1;;;;;;25367:33:0;;25349:15;25367:33;;;:18;:33;;;;;:40;:47;;25412:1;25367:47;:44;:47;:::i;:::-;-1:-1:-1;;;;;25458:33:0;;25433:22;25458:33;;;:18;:33;;;;;:42;;25349:65;;-1:-1:-1;25433:22:0;;25349:65;;25458:42;;;;;;;;;;;;;;;;:55;;;25433:80;;25542:14;25536:3;:20;25532:748;;;-1:-1:-1;;;;;25809:25:0;;;;;;:16;:25;;;;;:32;:39;;25846:1;25809:39;:36;:39;:::i;:::-;25798:8;:50;25794:241;;;-1:-1:-1;;;;;25881:25:0;;;;;;:16;:25;;;;;25940:14;;25907:15;:8;25920:1;25907:15;:12;:15;:::i;:::-;25881:42;;;;;;;;;;;;;;;;;;:55;;;:73;25877:134;;25996:15;:8;26009:1;25996:15;:12;:15;:::i;:::-;25985:26;;25877:134;-1:-1:-1;;;;;26112:25:0;;;;;;:16;:25;;;;;:35;;26073:164;;26088:148;;26138:8;;26112:35;;;;;;;;;;;;;;;;:44;;;26158:18;:33;26177:13;-1:-1:-1;;;;;26158:33:0;-1:-1:-1;;;;;26158:33:0;;;;;;;;;;;;26192:7;26158:42;;;;;;;;;;;;;;;;;;:55;;;26215:14;26231:3;26088:23;:148::i;26073:164::-;26061:176;;25532:748;22534:3797;;;26350:9;21609:4758;-1:-1:-1;;;;;;;21609:4758:0:o;14612:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;34818:97::-;34873:10;34863:21;;;;:9;:21;;;;;;34854:31;;:8;:31::i;:::-;34896:11;:9;:11::i;:::-;34818:97::o;16984:468::-;17052:7;17076:12;;17092:1;17076:17;17072:103;;;-1:-1:-1;;;;;;17117:25:0;;;;;;:10;:25;;;;;;;;:46;;17110:53;;17072:103;17416:12;;-1:-1:-1;;;;;17364:25:0;;;;;;:10;:25;;;;;:36;;;;17318:40;;;;;17205:239;;17274:155;;17416:12;;17274:137;;17406:4;;17274:127;;17364:36;17274:127;;:39;17375:13;17274:24;:39::i;:155::-;-1:-1:-1;;;;;17205:25:0;;;;;;:10;:25;;;;;;;;:46;;;:239;:50;:239;:::i;36158:487::-;7188:13;:18;;7205:1;7188:18;;;;;:13;37257:780;37274:12;:19;37270:23;;37257:780;;;37315:13;37331:12;37344:1;37331:15;;;;;;;;;;;;;;;;;;37379:12;;-1:-1:-1;;;;;37331:15:0;;;;-1:-1:-1;37375:256:0;;-1:-1:-1;;;;;37586:17:0;;;37578:45;37586:17;;;:10;:17;;;;;;;;:36;;;;;37578:45;;:7;:45;;;;;:52;;;;;;;;;;;37544:17;;:28;;;;37506:32;;;;;37470:161;;:103;;:69;;:31;37597:5;37470:24;:31::i;:161::-;-1:-1:-1;;;;;37423:17:0;;;37415:45;37423:17;;;:10;:17;;;;;;;;:36;;;;37415:45;;:7;:45;;;;;:52;;;;;;;;:216;37375:256;37701:21;37716:5;37701:14;:21::i;:::-;-1:-1:-1;;;;;37660:17:0;;;;;;:10;:17;;;;;;;;:38;:62;37772:31;37671:5;37772:24;:31::i;:::-;-1:-1:-1;;;;;37737:17:0;;;;;;;:10;:17;;;;;:32;;:66;;;;37822:21;;;37818:208;;37890:22;37897:7;37906:5;37890:6;:22::i;:::-;-1:-1:-1;;;;;37864:16:0;;;;;;;:7;:16;;;;;;;;:23;;;;;;;;;;;;:48;;;;37972:10;:17;;;;;;:38;;37931:31;;;:22;:31;;;;;:38;;;;;;;;;;:79;37818:208;-1:-1:-1;37295:3:0;;37257:780;;;-1:-1:-1;;;;;;36279:25:0;;;;;;;:10;:25;;;;;:44;;36327:10;36279:58;36271:67;;;;;;-1:-1:-1;;;;;36376:25:0;;;;;;:10;:25;;;;;:38;;;36357:15;:57;;36349:66;;;;;;36451:10;36426:14;36443:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;36443:34:0;;;;;;;;;;36492:10;;36488:150;;36527:10;36556:1;36519:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;36519:34:0;;;;;;;;;:38;;;;36572:54;;36619:6;36572:54;:34;:54;:::i;:::-;38047:1;7264;7300:13;;7284:12;:29;7276:73;;;;;-1:-1:-1;;;7276:73:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7276:73:0;;;;;;;;;;;;;;11284:184;11342:7;11375:1;11370;:6;;11362:49;;;;;-1:-1:-1;;;11362:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11434:5:0;;;11284:184::o;3819:106::-;3877:7;3908:1;3904;:5;:13;;3916:1;3904:13;;;-1:-1:-1;3912:1:0;;3819:106;-1:-1:-1;3819:106:0:o;5022:133::-;5090:5;;-1:-1:-1;;;;;5090:5:0;5076:10;:19;5068:79;;;;-1:-1:-1;;;5068:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11719:470;11777:7;12021:6;12017:47;;-1:-1:-1;12051:1:0;12044:8;;12017:47;12088:5;;;12092:1;12088;:5;:1;12112:5;;;;;:10;12104:56;;;;-1:-1:-1;;;12104:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12657:333;12715:7;12814:1;12810;:5;12802:44;;;;;-1:-1:-1;;;12802:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12857:9;12873:1;12869;:5;;;;;;;12657:333;-1:-1:-1;;;;12657:333:0:o;10828:181::-;10886:7;10918:5;;;10942:6;;;;10934:46;;;;;-1:-1:-1;;;10934:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7458:176;7567:58;;;-1:-1:-1;;;;;7567:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7567:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7541:85:0;;7560:5;;7541:18;:85::i;:::-;7458:176;;;:::o;7642:204::-;7769:68;;;-1:-1:-1;;;;;7769:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7769:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7743:95:0;;7762:5;;7743:18;:95::i;:::-;7642:204;;;;:::o;3636:107::-;3694:7;3726:1;3721;:6;;:14;;3734:1;3721:14;;9452:1114;10056:27;10064:5;-1:-1:-1;;;;;10056:25:0;;:27::i;:::-;10048:71;;;;;-1:-1:-1;;;10048:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10193:12;10207:23;10242:5;-1:-1:-1;;;;;10234:19:0;10254:4;10234:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;10234:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;10192:67:0;;;;10278:7;10270:52;;;;;-1:-1:-1;;;10270:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10339:17;;:21;10335:224;;10481:10;10470:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10470:30:0;10462:85;;;;-1:-1:-1;;;10462:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;488:422;855:20;894:8;;;488:422::o;13606:24970::-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;-1:-1;13606:24970:0;;;-1:-1:-1;;13606:24970:0:o

Swarm Source

bzzr://23898aaf32b91796413c8ff4d017533eea91d2c8d21b76ad8f4f49c1b2acc90c

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.