ETH Price: $2,434.42 (-2.18%)

Contract

0x991677a52428aDEFce394744206927DFcAbE42e1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update State113639752020-12-01 2:35:061406 days ago1606790106IN
0x991677a5...FcAbE42e1
0 ETH0.0018686745
Update State112590242020-11-15 0:03:101423 days ago1605398590IN
0x991677a5...FcAbE42e1
0 ETH0.0005990113.1
Reset Stake Time112363642020-11-11 12:42:051426 days ago1605098525IN
0x991677a5...FcAbE42e1
0 ETH0.0009378233
Reset Stake Time112210662020-11-09 4:16:551428 days ago1604895415IN
0x991677a5...FcAbE42e1
0 ETH0.0008099428.5
Update State112199482020-11-09 0:02:221429 days ago1604880142IN
0x991677a5...FcAbE42e1
0 ETH0.0007933519.1
Reset Stake Time112188372020-11-08 20:07:041429 days ago1604866024IN
0x991677a5...FcAbE42e1
0 ETH0.00118816
Reset Stake Time112181842020-11-08 17:50:201429 days ago1604857820IN
0x991677a5...FcAbE42e1
0 ETH0.0008012128.193
Reset Stake Time112061292020-11-06 21:05:211431 days ago1604696721IN
0x991677a5...FcAbE42e1
0 ETH0.0017968524.2
Reset Stake Time111955112020-11-05 6:17:141432 days ago1604557034IN
0x991677a5...FcAbE42e1
0 ETH0.0007474126.3
Reset Stake Time111841852020-11-03 12:21:551434 days ago1604406115IN
0x991677a5...FcAbE42e1
0 ETH0.0007161525.2
Reset Stake Time111804662020-11-02 22:48:281435 days ago1604357308IN
0x991677a5...FcAbE42e1
0 ETH0.0006223721.9
Update Inflation...111791582020-11-02 17:53:361435 days ago1604339616IN
0x991677a5...FcAbE42e1
0 ETH0.0007750828.35000117
Update Min Perce...111761382020-11-02 6:54:051435 days ago1604300045IN
0x991677a5...FcAbE42e1
0 ETH0.0004661533
Update State111761222020-11-02 6:49:431435 days ago1604299783IN
0x991677a5...FcAbE42e1
0 ETH0.0016012135.00000145
Update Inflation...111500692020-10-29 6:36:571439 days ago1603953417IN
0x991677a5...FcAbE42e1
0 ETH0.0006752924.7
Update Streak111500682020-10-29 6:36:531439 days ago1603953413IN
0x991677a5...FcAbE42e1
0 ETH0.0006758624.7
Reset Stake Time...111468822020-10-28 18:47:381440 days ago1603910858IN
0x991677a5...FcAbE42e1
0 ETH0.0025308840
Update Inflation...111468382020-10-28 18:37:181440 days ago1603910238IN
0x991677a5...FcAbE42e1
0 ETH0.0010120237
Reset Stake Time111362732020-10-27 4:07:051441 days ago1603771625IN
0x991677a5...FcAbE42e1
0 ETH0.0023017531
Reset Stake Time111346362020-10-26 22:03:191442 days ago1603749799IN
0x991677a5...FcAbE42e1
0 ETH0.0012622517
Reset Stake Time111341712020-10-26 20:21:591442 days ago1603743719IN
0x991677a5...FcAbE42e1
0 ETH0.001930526
Reset Stake Time111326922020-10-26 14:53:071442 days ago1603723987IN
0x991677a5...FcAbE42e1
0 ETH0.0033412545
Reset Stake Time111326412020-10-26 14:42:411442 days ago1603723361IN
0x991677a5...FcAbE42e1
0 ETH0.00326744
Reset Stake Time111320722020-10-26 12:32:011442 days ago1603715521IN
0x991677a5...FcAbE42e1
0 ETH0.0027472537
Update State111287272020-10-26 0:03:241443 days ago1603670604IN
0x991677a5...FcAbE42e1
0 ETH0.0009764616.8
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Staking

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-09
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

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

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

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

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

  /**
   * @dev Performs a Solidity function call using a low level `call`. A
   * plain`call` is an unsafe replacement for a function call: use this
   * function instead.
   *
   * If `target` reverts with a revert reason, it is bubbled up by this
   * function (like regular Solidity function calls).
   *
   * Returns the raw returned data. To convert to the expected return value,
   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
   *
   * Requirements:
   *
   * - `target` must be a contract.
   * - calling `target` with `data` must not revert.
   *
   * _Available since v3.1._
   */
  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
    return functionCall(target, data, "Address: low-level call failed");
  }

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

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

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

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

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

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

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

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

//Note that assert() is now used because the try/catch mechanism in the Blv.sol contract does not revert on failure with require();

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

    return c;
  }

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

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

    return c;
  }

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

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

    return c;
  }

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

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

    return c;
  }

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

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

contract Ownable is Context {
  address private _owner;

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor () internal {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

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

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

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public virtual onlyOwner {
    assert(newOwner != address(0)/*, "Ownable: new owner is the zero address"*/);
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

// Contract used to calculate stakes. Unused currently.

abstract contract CalculatorInterface {
  function calculateNumTokens(uint256 balance, uint256 daysStaked, address stakerAddress, uint256 totalSupply) public virtual view returns (uint256);
  function randomness() public view virtual returns (uint256);
}


// Parent token contract, see Blv.sol
abstract contract BLVToken {
  function balanceOf(address account) public view virtual returns (uint256);
  function totalSupply() public view virtual returns (uint256);
  function _burn(address account, uint256 amount) external virtual;
  function mint(address account, uint256 amount) external virtual;
}

// Voting contract
abstract contract VotingBLVToken {
  function isActiveVoter(address voterAddress) public view virtual returns (bool);
}

/**
 * @dev Implementation of the Blv Network: https://blv.network
 * Blv Network (BLV) is the world's first price-reactive cryptocurrency.
 * That is, the inflation rate of the token is wholly dependent on its market activity.
 * Minting does not happen when the price is less than the day prior.
 * When the price is greater than the day prior, the inflation for that day is
 * a function of its price, percent increase, volume, any positive price streaks,
 * and the amount of time any given holder has been holding.
 * In the first iteration, the dev team acts as the price oracle, but in the future, we plan to integrate a Chainlink price oracle.
 * This contract is the staking contract for the project and is upgradeable by the owner.
 */
contract Staking is Ownable {
  using SafeMath for uint256;
  using Address for address;

  // A 'staker' is an individual who holds the minimum staking amount in his address.

  struct staker {
    uint startTimestamp;    // When the staking started in unix time (block.timesamp)
    uint lastTimestamp;     // When the last staking reward was claimed in unix time (block.timestamp)
  }

  struct update {             // Price updateState
    uint timestamp;         // Last update timestamp, unix time
    uint numerator;         // Numerator of percent change (1% increase = 1/100)
    uint denominator;       // Denominator of percent change
    uint price;         // In USD. 0001 is $0.001, 1000 is $1.000, 1001 is $1.001, etc
    uint volume;        // In whole USD (100 = $100)
  }

  BLVToken public token;     // ERC20 token contract that uses this upgradeable contract for staking and burning
  VotingBLVToken public _votingContract; // Upgradable voting contract
  address public liquidityContract;
  bool private _votingEnabled;
  address public _intervalWatcher;
  uint public numStakers;

  modifier onlyToken() {
    assert(_msgSender() == address(token)/*, "Caller must be BLV token contract."*/);
    _;
  }

  modifier onlyWatcher() {
    assert(_msgSender() == _intervalWatcher/*, "Caller must be watcher."*/);
    _;
  }

  modifier onlyNextStakingContract() {    // Caller must be the next staking contract
    assert(_msgSender() == _nextStakingContract);
    _;
  }

  mapping (address => staker) private _stakers;        // Mapping of all individuals staking/holding tokens greater than minStake

  mapping (address => string) private _whitelist;      // Mapping of all addresses that do not burn tokens on receive and send (generally other smart contracts). Mapping of address to reason (string)

  mapping (address => uint256) private _blacklist;     // Mapping of all addresses that receive a specific token burn when receiving. Mapping of address to percent burn (uint256)

  bool public _enableBurns; // Enable burning on transfer or fee on transfer

  bool private _priceTarget1Hit;  // Price targets, defined in updateState()

  bool private _priceTarget2Hit;

  address public _uniswapV2Pair;      // Uniswap pair address, done for fees on Uniswap sells

  uint8 public upperBoundBurnPercent;        // Uniswap sells pay a fee
  
  uint public lowerBoundBurnPercent;

  bool public _enableUniswapDirectBurns;         // Enable seller fees on Uniswap

  uint256 public _minStake;                      // Minimum amount to stake

  uint8 public _minStakeDurationDays;            // Minimum amount of time to claim staking rewards

  uint8 public _minPercentIncrease;              // Minimum percent increase to enable rewards for the day. 10 = 1.0%, 100 = 10.0%

  uint256 public _inflationAdjustmentFactor;     // Factor to adjust the amount of rewards (inflation) to be given out in a single day

  uint256 public _streak;                        // Number of days in a row that the price has increased

  update public _lastUpdate;                      // latest price update

  CalculatorInterface private _externalCalculator;    // external calculator to calculate the number of tokens given several variables (defined above). Currently unused

  address private _nextStakingContract;                // Next staking contract deployed. Used for migrating staker state.

  bool public _useExternalCalc;                      // self-explanatory

  bool public _freeze;                               // freeze all transfers in an emergency

  bool public _enableHoldersDay;                     // once a month, holders receive a nice bump

  event StakerRemoved(address StakerAddress);     // Staker was removed due to balance dropping below _minStake

  event StakerAdded(address StakerAddress);       // Staker was added due to balance increasing abolve _minStake

  event StakesUpdated(uint Amount);               // Staking rewards were claimed

  event MassiveCelebration();                     // Happens when price targets are hit

  event Transfer(address indexed from, address indexed to, uint256 value);        // self-explanatory


  constructor () public {
    token = BLVToken(0x8DA25B8eD753a5910013167945A676921e864436);
    _intervalWatcher = msg.sender;
    _minStake = 1000E18;
    _inflationAdjustmentFactor = 500;
    _streak = 0;
    _minStakeDurationDays = 0;
    _useExternalCalc = false;
    lowerBoundBurnPercent = 7;
    upperBoundBurnPercent = 9;
    _freeze = false;
    _minPercentIncrease = 10; // 1.0% min increase
    liquidityContract = msg.sender;
    _whitelist[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = "UniswapV2";
    _whitelist[msg.sender] = "Owner";
    _whitelist[0xF40B0918D6b78fd705F30D92C9626ad218F1aEcE] = "Treasury";
    _whitelist[0x2BFA783D7f38aAAa997650aE0EfdBDF632288A7F] = "Team";
    _uniswapV2Pair = 0x6C25CF2160dB4A1BE0f1317FC301F5a5cDbA9199;
    _whitelist[_uniswapV2Pair] = "UniswapPair";
  }

  // The owner (or price oracle) will call this function to update the price on days the coin is positive. On negative days, no update is made.

  function updateState(uint numerator, uint denominator, uint256 price, uint256 volume) external onlyWatcher {  // when chainlink is integrated a separate contract will call this function (onlyOwner state will be changed as well)

    require(numerator > 0 && denominator > 0 && price > 0 && volume > 0, "Parameters cannot be negative or zero");

    if (numerator < 2 && denominator == 100 || numerator < 20 && denominator == 1000) {
      require(mulDiv(1000, numerator, denominator) >= _minPercentIncrease, "Increase must be at least _minPercentIncrease to count");
    }

    
    uint secondsSinceLastUpdate = (block.timestamp - _lastUpdate.timestamp);
    
    if (secondsSinceLastUpdate < 129600) { // We should only update once per day, but block timestamps can vary
        _streak++;
    } else {
        _streak = 1;
    }

    if (price >= 1000 && _priceTarget1Hit == false) { // 1000 = $1.00
      _priceTarget1Hit = true;
      _streak = 50;
      emit MassiveCelebration();

    } else if (price >= 10000 && _priceTarget2Hit == false) {   // It is written, so it shall be done
      _priceTarget2Hit = true;
      _streak = 100;
      _minStake = 100E18;        // Need $1000 to stake
      emit MassiveCelebration();
    }

    _lastUpdate = update(block.timestamp, numerator, denominator, price, volume);
  }

  function resetStakeTime() external {    // This is only necessary if a new staking contract is deployed. Resets 0 timestamp to block.timestamp
    uint balance = token.balanceOf(msg.sender);
    assert(balance > 0);
    assert(balance >= _minStake);

    staker storage thisStaker = _stakers[msg.sender];

    if (thisStaker.lastTimestamp == 0) {
      thisStaker.lastTimestamp = block.timestamp;
    }
    if (thisStaker.startTimestamp == 0) {
      thisStaker.startTimestamp = block.timestamp;
      numStakers++;
    }
  }

  // This is used by the next staking contract to migrate staker state
  function resetStakeTimeMigrateState(address addr) external onlyNextStakingContract returns (uint256 startTimestamp, uint256 lastTimestamp) {
    startTimestamp = _stakers[addr].startTimestamp;
    lastTimestamp = _stakers[addr].lastTimestamp;
    _stakers[addr].lastTimestamp = block.timestamp;
    _stakers[addr].startTimestamp = block.timestamp;
  }

  function updateMyStakes(address stakerAddress, uint256 balance, uint256 totalSupply) external onlyToken returns (uint256) {     // This function is called by the token contract. Holders call the function on the token contract every day the price is positive to claim rewards.
    assert(balance > 0);

    staker memory thisStaker = _stakers[stakerAddress];

    assert(thisStaker.lastTimestamp > 0/*,"Error: your last timestamp cannot be zero."*/); // We use asserts now so that we fail on errors due to try/catch in token contract.
    assert(thisStaker.startTimestamp > 0/*,"Error: your start timestamp cannot be zero."*/);
    // We recognize that block.timestamp can be gamed by miners to some extent, but from what we undertand block timestamps *cannot be before the last block* by consensus rules, otherwise they will fork the chain
    assert(block.timestamp > thisStaker.lastTimestamp/*, "Error: block timestamp is not greater than your last timestamp!"*/);
    assert(_lastUpdate.timestamp > thisStaker.lastTimestamp/*, "Error: you can only update stakes once per day. You also cannot update stakes on the same day that you purchased them."*/);

    uint daysStaked = block.timestamp.sub(thisStaker.startTimestamp) / 86400;  // Calculate time staked in days
    // daysStaked = 100;
    assert(daysStaked >= _minStakeDurationDays/*, "You must stake for at least minStakeDurationDays to claim rewards"*/);
    assert(balance >= _minStake/*, "You must have a balance of at least minStake to claim rewards"*/);
    uint numTokens = calculateNumTokens(balance, daysStaked, stakerAddress, totalSupply);           // Calls token calculation function - this is either an external contract or the function in this contract
    if (_enableHoldersDay && daysStaked >= 30) {
      numTokens = mulDiv(balance, daysStaked, 600);   // Once a month, holders get a nice bump
    }

    _stakers[stakerAddress].lastTimestamp = block.timestamp;        // Again, this can be gamed to some extent, but *cannot be before the last block*
    emit StakesUpdated(numTokens);

    return numTokens;       // Token contract will add these tokens to the balance of stakerAddress
  }

  function calculateNumTokens(uint256 balance, uint256 daysStaked, address stakerAddress, uint256 totalSupply) internal view returns (uint256) {
    if (_useExternalCalc) {
      return _externalCalculator.calculateNumTokens(balance, daysStaked, stakerAddress, totalSupply); // Use external contract, if one is enabled (disabled by default, currently unused)
    }

    uint256 inflationAdjustmentFactor = _inflationAdjustmentFactor;

    if (_streak > 1) {
      inflationAdjustmentFactor /= _streak;       // If there is a streak, we decrease the inflationAdjustmentFactor
    }

    if (daysStaked > 60) {      // If you stake for more than 60 days, you have hit the upper limit of the multiplier
      daysStaked = 60;
    } else if (daysStaked == 0) {   // If the minimum days staked is zero, we change the number to 1 so we don't return zero below
      daysStaked = 1;
    }

    uint marketCap = mulDiv(totalSupply, _lastUpdate.price, 1000E18);       // Market cap

    uint ratio = marketCap.div(_lastUpdate.volume);     // Ratio of market cap to volume

    if (ratio > 50) {  // Too little volume. Decrease rewards.
      inflationAdjustmentFactor = inflationAdjustmentFactor.mul(10);
    } else if (ratio > 25) { // Still not enough. Streak doesn't count.
      inflationAdjustmentFactor = _inflationAdjustmentFactor;
    }

    uint numTokens = mulDiv(balance, _lastUpdate.numerator * daysStaked, _lastUpdate.denominator * inflationAdjustmentFactor);      // Function that calculates how many tokens are due. See muldiv below.
    uint tenPercent = mulDiv(balance, 1, 10);

    if (numTokens > tenPercent) {       // We don't allow a daily rewards of greater than ten percent of a holder's balance.
      numTokens = tenPercent;
    }

    return numTokens;
  }
  
  function currentExpectedRewards(address _staker) external view returns (uint256) {
      staker memory thisStaker = _stakers[_staker];
      uint daysStaked = block.timestamp.sub(thisStaker.startTimestamp) / 86400;
      uint balance = token.balanceOf(_staker);
      
      if(thisStaker.lastTimestamp == 0 || thisStaker.startTimestamp == 0 || 
      _lastUpdate.timestamp <= thisStaker.lastTimestamp || 
      daysStaked < _minStakeDurationDays || balance < _minStake) {
          return 0;
      }
      
      uint numTokens = calculateNumTokens(balance, daysStaked, _staker, token.totalSupply());
      
      if (_enableHoldersDay && daysStaked >= 30) {
        numTokens = mulDiv(balance, daysStaked, 600);   // Once a month, holders get a nice bump
      }
    return numTokens;
  }
  
  function nextExpectedRewards(address _staker, uint price, uint volume, uint change) external view returns (uint256) {
        staker memory thisStaker = _stakers[_staker];
        uint daysStaked = block.timestamp.sub(thisStaker.startTimestamp) / 86400;
        uint balance = token.balanceOf(_staker);
        
        if(thisStaker.lastTimestamp == 0 || thisStaker.startTimestamp == 0 || 
          daysStaked < _minStakeDurationDays || balance < _minStake || change <= 1) {
          return 0;
        }
        
        uint256 inflationAdjustmentFactor = _inflationAdjustmentFactor;
        uint256 streak = _streak;
        
        uint secondsSinceLastUpdate = (block.timestamp - _lastUpdate.timestamp);
    
        if (secondsSinceLastUpdate <= 86400) { // We should only update once per day, but block timestamps can vary
            streak++;
        } else {
            streak = 1;
        }
        
    
        if (streak > 1) {
          inflationAdjustmentFactor /= streak;       // If there is a streak, we decrease the inflationAdjustmentFactor
        }
    
        if (daysStaked > 60) {      // If you stake for more than 60 days, you have hit the upper limit of the multiplier
          daysStaked = 60;
        } else if (daysStaked == 0) {   // If the minimum days staked is zero, we change the number to 1 so we don't return zero below
          daysStaked = 1;
        }
    
        uint marketCap = mulDiv(token.totalSupply(), price, 1000E18);       // Market cap
    
        uint ratio = marketCap.div(volume);     // Ratio of market cap to volume
    
        if (ratio > 50) {  // Too little volume. Decrease rewards.
          inflationAdjustmentFactor = inflationAdjustmentFactor.mul(10);
        } else if (ratio > 25) { // Still not enough. Streak doesn't count.
          inflationAdjustmentFactor = _inflationAdjustmentFactor;
        }
    
        uint numTokens = mulDiv(balance, change * daysStaked, 100 * inflationAdjustmentFactor);      // Function that calculates how many tokens are due. See muldiv below.
        uint tenPercent = mulDiv(balance, 1, 10);
    
        if (numTokens > tenPercent) {       // We don't allow a daily rewards of greater than ten percent of a holder's balance.
          numTokens = tenPercent;
        }
    
        return numTokens;
  }

  // Self-explanatory functions to update several configuration variables

  function updateTokenAddress(BLVToken newToken) external onlyOwner {
    require(address(newToken) != address(0));
    token = newToken;
  }

  function updateCalculator(CalculatorInterface calc) external onlyOwner {
    if(address(calc) == address(0)) {
      _externalCalculator = CalculatorInterface(address(0));
      _useExternalCalc = false;
    } else {
      _externalCalculator = calc;
      _useExternalCalc = true;
    }
  }


  function updateInflationAdjustmentFactor(uint256 inflationAdjustmentFactor) external onlyOwner {
    _inflationAdjustmentFactor = inflationAdjustmentFactor;
  }

  function updateStreak(uint streak) external onlyOwner {
    _streak = streak;
  }

  function updateMinStakeDurationDays(uint8 minStakeDurationDays) external onlyOwner {
    _minStakeDurationDays = minStakeDurationDays;
  }

  function updateMinStakes(uint minStake) external onlyOwner {
    _minStake = minStake;
  }
  function updateMinPercentIncrease(uint8 minIncrease) external onlyOwner {
    _minPercentIncrease = minIncrease;
  }

  function enableBurns(bool enabledBurns) external onlyOwner {
    _enableBurns = enabledBurns;
  }

  function updateHoldersDay(bool enableHoldersDay) external onlyOwner {
    _enableHoldersDay = enableHoldersDay;
  }

  function updateWhitelist(address addr, string calldata reason, bool remove) external onlyOwner returns (bool) {
    if (remove) {
      delete _whitelist[addr];
      return true;
    } else {
      _whitelist[addr] = reason;
      return true;
    }
  }

  function updateBlacklist(address addr, uint256 fee, bool remove) external onlyOwner returns (bool) {
    if (remove) {
      delete _blacklist[addr];
      return true;
    } else {
      _blacklist[addr] = fee;
      return true;
    }
  }

  function updateUniswapPair(address addr) external onlyOwner returns (bool) {
    require(addr != address(0));
    _uniswapV2Pair = addr;
    return true;
  }

  function updateDirectSellBurns(bool enableDirectSellBurns) external onlyOwner {
    _enableUniswapDirectBurns = enableDirectSellBurns;
  }

  function updateUpperBurnPercent(uint8 sellerBurnPercent) external onlyOwner {
    upperBoundBurnPercent = sellerBurnPercent;
  }
  
  function updateLowerBurnPercent(uint8 sellerBurnPercent) external onlyOwner {
    lowerBoundBurnPercent = sellerBurnPercent;
  }

  function freeze(bool enableFreeze) external onlyOwner {
    _freeze = enableFreeze;
  }

  function updateNextStakingContract(address nextContract) external onlyOwner {
    require(nextContract != address(0));
    _nextStakingContract = nextContract;
  }

  function getStaker(address _staker) external view returns (uint256, uint256) {
    return (_stakers[_staker].startTimestamp, _stakers[_staker].lastTimestamp);
  }
  
  function getStakerDaysStaked(address _staker) external view returns (uint) {
      if(_stakers[_staker].startTimestamp == 0) {
          return 0;
      }
      return block.timestamp.sub(_stakers[_staker].startTimestamp) / 86400;
  }

  function getWhitelist(address addr) external view returns (string memory) {
    return _whitelist[addr];
  }

  function getBlacklist(address addr) external view returns (uint) {
    return _blacklist[addr];
  }
  

  // This function was not written by us. It was taken from here: https://medium.com/coinmonks/math-in-solidity-part-3-percents-and-proportions-4db014e080b1
  // We believe it works but do not have the understanding of math required to verify it 100%.
  // Takes in three numbers and calculates x * (y/z)
  // This is very useful for this contract as percentages are used constantly

  function mulDiv (uint x, uint y, uint z) public pure returns (uint) {
    (uint l, uint h) = fullMul (x, y);
    assert (h < z);
    uint mm = mulmod (x, y, z);
    if (mm > l) h -= 1;
    l -= mm;
    uint pow2 = z & -z;
    z /= pow2;
    l /= pow2;
    l += h * ((-pow2) / pow2 + 1);
    uint r = 1;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    r *= 2 - z * r;
    return l * r;
  }

  function fullMul (uint x, uint y) private pure returns (uint l, uint h) {
    uint mm = mulmod (x, y, uint (-1));
    l = x * y;
    h = mm - l;
    if (mm < l) h -= 1;
  }

  function streak() public view returns (uint) {
    return _streak;
  }


  // Hooks the transfer() function on blvtoken. All transfers call this function. Takes in sender, recipient address and balances and amount and returns sender balance, recipient balance, and burned amount
  function transferHook(address sender, address recipient, uint256 amount, uint256 senderBalance, uint256 recipientBalance) external onlyToken returns (uint256, uint256, uint256) {
    assert(_freeze == false);
    assert(sender != recipient);
    assert(amount > 0);
    assert(senderBalance >= amount);

    if (_votingEnabled) {
      assert(!_votingContract.isActiveVoter(sender)); // an active voter can not make transfers
    }

    uint totalAmount = amount;
    bool shouldAddStaker = true;    // We assume that the recipient is a potential staker (not a smart contract)
    uint burnedAmount = 0;

    if (_enableBurns && bytes(_whitelist[sender]).length == 0 && bytes(_whitelist[recipient]).length == 0) { // Burns are enabled and neither the recipient nor the sender are whitelisted

      burnedAmount = mulDiv(amount, _randomness(), 100);  // Calculates the amount to be burned. Random integer between 1% and 4%. See _randomness() below

      if (_blacklist[recipient] > 0) {   //Transferring to a blacklisted address incurs a specific fee
        burnedAmount = mulDiv(amount, _blacklist[recipient], 100);      // Calculate the fee. The fee is burnt
        shouldAddStaker = false;            // Blacklisted addresses will never be stakers.
      }

      if (burnedAmount > 0) {
        if (burnedAmount > amount) {
          totalAmount = 0;
        } else {
          totalAmount = amount.sub(burnedAmount);
        }
        senderBalance = senderBalance.sub(burnedAmount, "ERC20: burn amount exceeds balance");  // Remove the burned amount from the sender's balance
      }
    } else if (recipient == _uniswapV2Pair) {    // Uniswap was used. This is a special case. Uniswap is burn on receive but whitelist on send, so sellers pay fee and buyers do not.
      shouldAddStaker = false;
      if (_enableUniswapDirectBurns) {
        burnedAmount = mulDiv(amount, _randomness(), 100);     // Seller fee
        if (burnedAmount > 0) {
          if (burnedAmount > amount) {
            totalAmount = 0;
          } else {
            totalAmount = amount.sub(burnedAmount);
          }
          senderBalance = senderBalance.sub(burnedAmount, "ERC20: burn amount exceeds balance");
        }
      }
    }

    if (bytes(_whitelist[recipient]).length > 0) {
      shouldAddStaker = false;
    }

    // Here we calculate the percent of the balance an address is receiving. If the address receives too many tokens, the staking time and last time rewards were claimed is reset to block.timestamp
    // This is necessary because otherwise funds could move from address to address with no penality and thus an individual could claim multiple times with the same funds

    if (shouldAddStaker && _stakers[recipient].startTimestamp > 0 && recipientBalance > 0) {  // If you are currently staking, these should all be true
      uint percent = mulDiv(1000000, totalAmount, recipientBalance);      // This is not really 'percent' it is just a number that represents the totalAmount as a fraction of the recipientBalance
      percent = percent.div(2);
      if(percent.add(_stakers[recipient].startTimestamp) > block.timestamp) {         // We represent the 'percent' as seconds and add to the recipient's unix time
        _stakers[recipient].startTimestamp = block.timestamp;
      } else {
        _stakers[recipient].startTimestamp = _stakers[recipient].startTimestamp.add(percent);               // Receiving too many tokens resets your holding time
      }

      if(percent.add(_stakers[recipient].lastTimestamp) > block.timestamp) {
        _stakers[recipient].lastTimestamp = block.timestamp;
      } else {
        _stakers[recipient].lastTimestamp = _stakers[recipient].lastTimestamp.add(percent);                 // Receiving too many tokens may make you ineligible to claim the next day
      }
    } else if (shouldAddStaker && recipientBalance == 0 && (_stakers[recipient].startTimestamp > 0 || _stakers[recipient].lastTimestamp > 0)) { // Invalid state, so we reset their data/remove them
      delete _stakers[recipient];
      numStakers--;
      emit StakerRemoved(recipient);
    }

    senderBalance = senderBalance.sub(totalAmount, "ERC20: transfer amount exceeds balance");       // Normal ERC20 transfer
    recipientBalance = recipientBalance.add(totalAmount);

    if (shouldAddStaker && _stakers[recipient].startTimestamp == 0 && (totalAmount >= _minStake || recipientBalance >= _minStake)) {        // If the recipient was not previously a staker and their balance is now greater than minStake, we add them automatically
      _stakers[recipient] = staker(block.timestamp, block.timestamp);
      numStakers++;
      emit StakerAdded(recipient);
    }

    if (senderBalance < _minStake) {        // If the sender's balance is below the minimum stake, we remove them automatically
      // Remove staker
      if(_stakers[sender].startTimestamp != 0) {
          numStakers--;
          emit StakerRemoved(sender);
      }
      delete _stakers[sender];
    } else {
      _stakers[sender].startTimestamp = block.timestamp;      // Sending tokens automatically resets your 'holding time'
      if (_stakers[sender].lastTimestamp == 0) {
        _stakers[sender].lastTimestamp = block.timestamp;
      }
    }

    return (senderBalance, recipientBalance, burnedAmount);
  }


  function _randomness() internal view returns (uint256) {        // Calculates token burn on transfer between 1% and 4% (integers)
    if(_useExternalCalc) {
      return _externalCalculator.randomness();
    }
    uint burn = 1 + uint256(keccak256(abi.encodePacked(blockhash(block.number-1), _msgSender())))%upperBoundBurnPercent;
    if(burn < lowerBoundBurnPercent) {
        burn = lowerBoundBurnPercent;
    }
    return burn;
  }

  function burn(address account, uint256 amount) external onlyOwner {     // We allow ourselves to burn tokens in case they were minted due to a bug
    token._burn(account, amount);
  }

  function resetStakeTimeDebug(address account, uint startTimestamp, uint lastTimestamp, bool migrated) external onlyOwner {      // We allow ourselves to reset stake times in case they get changed incorrectly due to a bug
        _stakers[account].lastTimestamp = startTimestamp;
        _stakers[account].startTimestamp = lastTimestamp;
  }
  
  function liquidityRewards(address account, uint amount) external {
      require(msg.sender == liquidityContract);
      token.mint(account, amount);
    }
  function rewardAndBurn(address burn, address reward, uint amount) external onlyOwner {
      token._burn(burn, amount);
      token.mint(reward, amount);
  }

  function updateVotingContract(VotingBLVToken votingContract) external onlyOwner {
    _votingContract = votingContract;
    _votingEnabled = true;
  }
  
  function updateVotingEnabled(bool votingEnabled) external onlyOwner {
      _votingEnabled = votingEnabled;
  }

  function updateIntervalWatcher(address intervalWatcher) external onlyOwner {
    _intervalWatcher = intervalWatcher;
  }
  
  function updateliquidityContract(address liquidity) external onlyOwner {
      liquidityContract = liquidity;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"MassiveCelebration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"StakerAddress","type":"address"}],"name":"StakerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"StakerAddress","type":"address"}],"name":"StakerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"StakesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_enableBurns","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_enableHoldersDay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_enableUniswapDirectBurns","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_freeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_inflationAdjustmentFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_intervalWatcher","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastUpdate","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minPercentIncrease","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minStakeDurationDays","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_streak","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_useExternalCalc","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_votingContract","outputs":[{"internalType":"contract VotingBLVToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"currentExpectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabledBurns","type":"bool"}],"name":"enableBurns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enableFreeze","type":"bool"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getBlacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"getStaker","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"getStakerDaysStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getWhitelist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"liquidityRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lowerBoundBurnPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"},{"internalType":"uint256","name":"z","type":"uint256"}],"name":"mulDiv","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"change","type":"uint256"}],"name":"nextExpectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetStakeTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastTimestamp","type":"uint256"},{"internalType":"bool","name":"migrated","type":"bool"}],"name":"resetStakeTimeDebug","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"resetStakeTimeMigrateState","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastTimestamp","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burn","type":"address"},{"internalType":"address","name":"reward","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rewardAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"streak","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract BLVToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"senderBalance","type":"uint256"},{"internalType":"uint256","name":"recipientBalance","type":"uint256"}],"name":"transferHook","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CalculatorInterface","name":"calc","type":"address"}],"name":"updateCalculator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enableDirectSellBurns","type":"bool"}],"name":"updateDirectSellBurns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enableHoldersDay","type":"bool"}],"name":"updateHoldersDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"inflationAdjustmentFactor","type":"uint256"}],"name":"updateInflationAdjustmentFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"intervalWatcher","type":"address"}],"name":"updateIntervalWatcher","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"sellerBurnPercent","type":"uint8"}],"name":"updateLowerBurnPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"minIncrease","type":"uint8"}],"name":"updateMinPercentIncrease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"minStakeDurationDays","type":"uint8"}],"name":"updateMinStakeDurationDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minStake","type":"uint256"}],"name":"updateMinStakes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"updateMyStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nextContract","type":"address"}],"name":"updateNextStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"}],"name":"updateState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"streak","type":"uint256"}],"name":"updateStreak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract BLVToken","name":"newToken","type":"address"}],"name":"updateTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"sellerBurnPercent","type":"uint8"}],"name":"updateUpperBurnPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract VotingBLVToken","name":"votingContract","type":"address"}],"name":"updateVotingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"votingEnabled","type":"bool"}],"name":"updateVotingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"updateliquidityContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upperBoundBurnPercent","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060006200001e6200030b565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018054738da25b8ed753a5910013167945a676921e8644366001600160a01b03199182161790915560048054339083168117909155683635c9adc5dea00000600c556101f4600e556000600f819055600d8054601680546007600a8190556009805460ff60b81b1916600960b81b17815561ffff60a01b1990921690925561ffff19909216610a00179092556003805490951690931790935560408051808201909152918252682ab734b9bbb0b82b1960b91b6020808401918252737a250d5630b4cf539739df2c5dacb4c659f2488d909252929052516200016d917ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f916200030f565b50604080518082018252600581526427bbb732b960d91b60208083019182523360009081526007909152929092209051620001a992906200030f565b50604080518082019091526008815267547265617375727960c01b602080830191825273f40b0918d6b78fd705f30d92c9626ad218f1aece60005260079052905162000217917faf128871a289051e57174e568b47fd5f14d95d7f055af4ea0e888f112bff80be916200030f565b506040805180820190915260048152635465616d60e01b6020808301918252732bfa783d7f38aaaa997650ae0efdbdf632288a7f60005260079052905162000281917f447a3c236418d645e64a977f2ee7739f864cddb3420cf2d32f7970bb80195a85916200030f565b5060098054766c25cf2160db4a1be0f1317fc301f5a5cdba91990000006301000000600160b81b03199091161790819055604080518082018252600b81526a2ab734b9bbb0b82830b4b960a91b602080830191825263010000009094046001600160a01b031660009081526007909452919092209151620003049291906200030f565b50620003ab565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b612d1a80620003bb6000396000f3fe608060405234801561001057600080fd5b50600436106103a45760003560e01c80639dc29fac116101e9578063b5bf15e51161010f578063df1a86a0116100ad578063f07484c81161007c578063f07484c814610b26578063f2fde38b14610b4c578063fc0c546a14610b72578063fff505d514610b7a576103a4565b8063df1a86a014610ac4578063e38b563f14610aea578063e54845b614610b16578063e7b9179414610b1e576103a4565b8063c59d1f03116100e9578063c59d1f0314610a8d578063cda8adea14610a95578063d2ceaeb814610a9d578063d461d69514610abc576103a4565b8063b5bf15e514610a22578063b5d011fd14610a41578063c12b7c4e14610a67576103a4565b8063ad1b447111610187578063b2ca23cd11610156578063b2ca23cd14610994578063b3ab4f70146109c7578063b4d32e83146109cf578063b51ff3b714610a05576103a4565b8063ad1b44711461094a578063adad9fea14610952578063b13acc941461095a578063b1fba3ed14610962576103a4565b8063a512ceba116101c3578063a512ceba146108be578063aa9a0912146108db578063ac22cc9c14610904578063ad16790f1461092a576103a4565b80639dc29fac1461082d5780639ff3795714610859578063a23c44b114610898576103a4565b80635fcf4115116102ce5780637c7950f51161026c5780638da5cb5b1161023b5780638da5cb5b146107d9578063981c0597146107fd57806398f7a55a1461081d5780639c74daf014610825576103a4565b80637c7950f5146107515780637f9dc75e1461077757806381711578146107ab57806388274d53146107d1576103a4565b80636691461a116102a85780636691461a146106bb5780636c8b052a146106e1578063715018a6146106e95780637154fcde146106f1576103a4565b80635fcf41151461065c57806365ed50e9146106945780636612ccab1461069c576103a4565b80632c36dd5c116103465780634d53338e116103155780634d53338e146105ef57806355e39899146105f75780635c93fe10146106165780635d77d8d014610636576103a4565b80632c36dd5c146104875780632cfd9930146104b657806330edc0f5146104d25780634cd4d1dc1461056d576103a4565b806307052b861161038257806307052b86146103f35780630a05c1d4146104115780630a75e7721461042e5780631ec64e0c14610468576103a4565b8063048fcfc5146103a95780630566ed11146103d157806305bc1ef7146103eb575b600080fd5b6103cf600480360360208110156103bf57600080fd5b50356001600160a01b0316610b9a565b005b6103d9610bdb565b60408051918252519081900360200190f35b6103d9610be1565b6103fb610be7565b6040805160ff9092168252519081900360200190f35b6103cf6004803603602081101561042757600080fd5b5035610bf7565b6103cf6004803603608081101561044457600080fd5b506001600160a01b0381351690602081013590604081013590606001351515610c1b565b6103cf6004803603602081101561047e57600080fd5b50351515610c5f565b6103cf6004803603608081101561049d57600080fd5b5080359060208101359060408101359060600135610c91565b6104be610ecb565b604080519115158252519081900360200190f35b6104f8600480360360208110156104e857600080fd5b50356001600160a01b0316610edb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561053257818101518382015260200161051a565b50505050905090810190601f16801561055f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104be6004803603606081101561058357600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156105ae57600080fd5b8201836020820111156105c057600080fd5b803590602001918460018302840111640100000000831117156105e257600080fd5b9193509150351515610f87565b6103d9611008565b6103cf6004803603602081101561060d57600080fd5b5035151561100e565b6103cf6004803603602081101561062c57600080fd5b503560ff16611040565b6103d96004803603602081101561064c57600080fd5b50356001600160a01b031661107f565b6103d96004803603608081101561067257600080fd5b506001600160a01b03813516906020810135906040810135906060013561109a565b6104be611321565b6103cf600480360360208110156106b257600080fd5b50351515611331565b6103cf600480360360208110156106d157600080fd5b50356001600160a01b031661136e565b6103d96113c2565b6103cf6113c8565b610733600480360360a081101561070757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135611431565b60408051938452602084019290925282820152519081900360600190f35b6103d96004803603602081101561076757600080fd5b50356001600160a01b0316611b1f565b6104be6004803603606081101561078d57600080fd5b506001600160a01b0381351690602081013590604001351515611b7b565b6103cf600480360360208110156107c157600080fd5b50356001600160a01b0316611be9565b6104be611c2a565b6107e1611c33565b604080516001600160a01b039092168252519081900360200190f35b6103cf6004803603602081101561081357600080fd5b503560ff16611c43565b6103fb611c6a565b6107e1611c78565b6103cf6004803603604081101561084357600080fd5b506001600160a01b038135169060200135611c8e565b61087f6004803603602081101561086f57600080fd5b50356001600160a01b0316611d1e565b6040805192835260208301919091528051918290030190f35b61087f600480360360208110156108ae57600080fd5b50356001600160a01b0316611d72565b6103cf600480360360208110156108d457600080fd5b5035611d95565b6103d9600480360360608110156108f157600080fd5b5080359060208101359060400135611db9565b6103d96004803603602081101561091a57600080fd5b50356001600160a01b0316611e6d565b6103cf6004803603602081101561094057600080fd5b503560ff16612058565b6104be61208d565b6107e1612096565b6104be6120a5565b6103d96004803603606081101561097857600080fd5b506001600160a01b0381351690602081013590604001356120b5565b61099c612225565b6040805195865260208601949094528484019290925260608401526080830152519081900360a00190f35b6103d9612237565b6103cf600480360360608110156109e557600080fd5b506001600160a01b0381358116916020810135909116906040013561223d565b6103cf60048036036020811015610a1b57600080fd5b503561233b565b6103cf60048036036020811015610a3857600080fd5b5035151561235f565b6103cf60048036036020811015610a5757600080fd5b50356001600160a01b031661239c565b6104be60048036036020811015610a7d57600080fd5b50356001600160a01b031661241f565b6103cf612481565b6103d9612543565b6103cf60048036036020811015610ab357600080fd5b50351515612549565b6103fb612586565b6103cf60048036036020811015610ada57600080fd5b50356001600160a01b031661258f565b6103cf60048036036040811015610b0057600080fd5b506001600160a01b0381351690602001356125e4565b6107e1612650565b6107e161265f565b6103cf60048036036020811015610b3c57600080fd5b50356001600160a01b031661266e565b6103cf60048036036020811015610b6257600080fd5b50356001600160a01b03166126c2565b6107e161274c565b6103cf60048036036020811015610b9057600080fd5b503560ff1661275b565b610ba2612796565b6000546001600160a01b03908116911614610bb957fe5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b600a5481565b600954600160b81b900460ff1681565b610bff612796565b6000546001600160a01b03908116911614610c1657fe5b600f55565b610c23612796565b6000546001600160a01b03908116911614610c3a57fe5b506001600160a01b039092166000908152600660205260409020600181019190915555565b610c67612796565b6000546001600160a01b03908116911614610c7e57fe5b6009805460ff1916911515919091179055565b6004546001600160a01b0316610ca5612796565b6001600160a01b031614610cb557fe5b600084118015610cc55750600083115b8015610cd15750600082115b8015610cdd5750600081115b610d185760405162461bcd60e51b8152600401808060200182810382526025815260200180612cc06025913960400191505060405180910390fd5b600284108015610d285750826064145b80610d3f5750601484108015610d3f5750826103e8145b15610d9957600d54610100900460ff16610d5c6103e88686611db9565b1015610d995760405162461bcd60e51b8152600401808060200182810382526036815260200180612c8a6036913960400191505060405180910390fd5b60105442036201fa40811015610db757600f80546001019055610dbd565b6001600f555b6103e88310158015610dd75750600954610100900460ff16155b15610e1e576009805461ff0019166101001790556032600f556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a1610e8b565b6127108310158015610e39575060095462010000900460ff16155b15610e8b576009805462ff00001916620100001790556064600f5568056bc75e2d63100000600c556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a15b506040805160a081018252428082526020820187905291810185905260608101849052608001829052601055601193909355601291909155601355601455565b601654600160a01b900460ff1681565b6001600160a01b03811660009081526007602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610f7a5780601f10610f4f57610100808354040283529160200191610f7a565b820191906000526020600020905b815481529060010190602001808311610f5d57829003601f168201915b505050505090505b919050565b6000610f91612796565b6000546001600160a01b03908116911614610fa857fe5b8115610fd7576001600160a01b0385166000908152600760205260408120610fcf91612b50565b506001611000565b6001600160a01b0385166000908152600760205260409020610ffa908585612b94565b50600190505b949350505050565b600e5481565b611016612796565b6000546001600160a01b0390811691161461102d57fe5b600b805460ff1916911515919091179055565b611048612796565b6000546001600160a01b0390811691161461105f57fe5b6009805460ff909216600160b81b0260ff60b81b19909216919091179055565b6001600160a01b031660009081526008602052604090205490565b60006110a4612c12565b506001600160a01b03851660009081526006602090815260408083208151808301909252805480835260019091015492820192909252919062015180906110ec90429061279a565b816110f357fe5b600154604080516370a0823160e01b81526001600160a01b038c8116600483015291519490930494506000939116916370a08231916024808301926020929190829003018186803b15801561114757600080fd5b505afa15801561115b573d6000803e3d6000fd5b505050506040513d602081101561117157600080fd5b50516020840151909150158061118657508251155b806111955750600d5460ff1682105b806111a15750600c5481105b806111ad575060018511155b156111be5760009350505050611000565b600e54600f5460105442036201518081116111de576001909101906111e3565b600191505b60018211156111f9578183816111f557fe5b0492505b603c85111561120b57603c9450611215565b8461121557600194505b60006112a4600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d602081101561129257600080fd5b50518c683635c9adc5dea00000611db9565b905060006112b2828c6127e5565b905060328111156112cf576112c885600a612827565b94506112de565b60198111156112de57600e5494505b60006112f087898d0288606402611db9565b90506000611301886001600a611db9565b90508082111561130f578091505b509d9c50505050505050505050505050565b601654600160a81b900460ff1681565b611339612796565b6000546001600160a01b0390811691161461135057fe5b60038054911515600160a01b0260ff60a01b19909216919091179055565b611376612796565b6000546001600160a01b0390811691161461138d57fe5b6001600160a01b0381166113a057600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60055481565b6113d0612796565b6000546001600160a01b039081169116146113e757fe5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600154600090819081906001600160a01b031661144c612796565b6001600160a01b03161461145c57fe5b601654600160a81b900460ff161561147057fe5b866001600160a01b0316886001600160a01b0316141561148c57fe5b6000861161149657fe5b858510156114a057fe5b600354600160a01b900460ff16156115325760025460408051631b1838cb60e11b81526001600160a01b038b81166004830152915191909216916336307196916024808301926020929190829003018186803b1580156114ff57600080fd5b505afa158015611513573d6000803e3d6000fd5b505050506040513d602081101561152957600080fd5b50511561153257fe5b600954869060019060009060ff16801561157557506001600160a01b038b1660009081526007602052604090205460026000196101006001841615020190911604155b80156115aa57506001600160a01b038a1660009081526007602052604090205460026000196101006001841615020190911604155b15611661576115c2896115bb61284b565b6064611db9565b6001600160a01b038b1660009081526008602052604090205490915015611610576001600160a01b038a16600090815260086020526040902054611609908a906064611db9565b9050600091505b801561165c57888111156116275760009250611634565b611631898261279a565b92505b61165981604051806060016040528060228152602001612c42602291398a919061295c565b97505b6116e7565b6009546001600160a01b038b811663010000009092041614156116e757600b546000925060ff16156116e757611699896115bb61284b565b905080156116e757888111156116b257600092506116bf565b6116bc898261279a565b92505b6116e481604051806060016040528060228152602001612c42602291398a919061295c565b97505b6001600160a01b038a16600090815260076020526040902054600260001961010060018416150201909116041561171d57600091505b81801561174157506001600160a01b038a1660009081526006602052604090205415155b801561174d5750600087115b15611897576000611762620f4240858a611db9565b905061176f8160026127e5565b6001600160a01b038c16600090815260066020526040902054909150429061179890839061296f565b11156117be576001600160a01b038b1660009081526006602052604090204290556117fb565b6001600160a01b038b166000908152600660205260409020546117e1908261296f565b6001600160a01b038c166000908152600660205260409020555b6001600160a01b038b16600090815260066020526040902060010154429061182490839061296f565b111561184e576001600160a01b038b16600090815260066020526040902042600190910155611891565b6001600160a01b038b16600090815260066020526040902060010154611874908261296f565b6001600160a01b038c166000908152600660205260409020600101555b5061194f565b8180156118a2575086155b80156118e957506001600160a01b038a166000908152600660205260409020541515806118e957506001600160a01b038a1660009081526006602052604090206001015415155b1561194f576001600160a01b038a1660008181526006602090815260408083208381556001019290925560058054600019019055815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a15b61197483604051806060016040528060268152602001612c64602691398a919061295c565b9750611980878461296f565b96508180156119a557506001600160a01b038a16600090815260066020526040902054155b80156119bf5750600c54831015806119bf5750600c548710155b15611a37576040805180820182524280825260208083019182526001600160a01b038e1660008181526006835285902093518455915160019384015560058054909301909255825190815291517fc0687b34adb081bf19c87a2a0a5bb56c4a9584ee8c67fce683c3fac163c27eb89281900390910190a15b600c54881015611aca576001600160a01b038b1660009081526006602052604090205415611aa65760058054600019019055604080516001600160a01b038d16815290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059181900360200190a15b6001600160a01b038b16600090815260066020526040812081815560010155611b0d565b6001600160a01b038b16600090815260066020526040902042815560010154611b0d576001600160a01b038b166000908152600660205260409020426001909101555b969a9599509597509395505050505050565b6001600160a01b038116600090815260066020526040812054611b4457506000610f82565b6001600160a01b0382166000908152600660205260409020546201518090611b6d90429061279a565b81611b7457fe5b0492915050565b6000611b85612796565b6000546001600160a01b03908116911614611b9c57fe5b8115611bc357506001600160a01b0383166000908152600860205260408120556001611be2565b506001600160a01b038316600090815260086020526040902082905560015b9392505050565b611bf1612796565b6000546001600160a01b03908116911614611c0857fe5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460ff1681565b6000546001600160a01b03165b90565b611c4b612796565b6000546001600160a01b03908116911614611c6257fe5b60ff16600a55565b600d54610100900460ff1681565b600954630100000090046001600160a01b031681565b611c96612796565b6000546001600160a01b03908116911614611cad57fe5b60015460408051630c2c3d6360e31b81526001600160a01b0385811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b158015611d0257600080fd5b505af1158015611d16573d6000803e3d6000fd5b505050505050565b60165460009081906001600160a01b0316611d37612796565b6001600160a01b031614611d4757fe5b50506001600160a01b0316600090815260066020526040902080546001820180544291829055925591565b6001600160a01b0316600090815260066020526040902080546001909101549091565b611d9d612796565b6000546001600160a01b03908116911614611db457fe5b600e55565b6000806000611dc8868661297e565b91509150838110611dd557fe5b60008480611ddf57fe5b868809905082811115611df3576001820391505b918290039160008590038516808681611e0857fe5b049550808481611e1457fe5b049350808160000381611e2357fe5b046001019290920292909201600285810380870282030280870282030280870282030280870282030280870282030280870282030295860290039094029390930295945050505050565b6000611e77612c12565b506001600160a01b0382166000908152600660209081526040808320815180830190925280548083526001909101549282019290925291906201518090611ebf90429061279a565b81611ec657fe5b600154604080516370a0823160e01b81526001600160a01b03898116600483015291519490930494506000939116916370a08231916024808301926020929190829003018186803b158015611f1a57600080fd5b505afa158015611f2e573d6000803e3d6000fd5b505050506040513d6020811015611f4457600080fd5b505160208401519091501580611f5957508251155b80611f6a5750602083015160105411155b80611f795750600d5460ff1682105b80611f855750600c5481105b15611f965760009350505050610f82565b600061201d828488600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611fec57600080fd5b505afa158015612000573d6000803e3d6000fd5b505050506040513d602081101561201657600080fd5b50516129ab565b601654909150600160b01b900460ff16801561203a5750601e8310155b1561204f5761204c8284610258611db9565b90505b95945050505050565b612060612796565b6000546001600160a01b0390811691161461207757fe5b600d805460ff191660ff92909216919091179055565b60095460ff1681565b6002546001600160a01b031681565b601654600160b01b900460ff1681565b6001546000906001600160a01b03166120cc612796565b6001600160a01b0316146120dc57fe5b600083116120e657fe5b6120ee612c12565b506001600160a01b0384166000908152600660209081526040918290208251808401909352805483526001015490820181905261212757fe5b805161212f57fe5b8060200151421161213c57fe5b60208101516010541161214b57fe5b8051600090620151809061216090429061279a565b8161216757fe5b600d54919004915060ff1681101561217b57fe5b600c5485101561218757fe5b6000612195868389886129ab565b601654909150600160b01b900460ff1680156121b25750601e8210155b156121c7576121c48683610258611db9565b90505b6001600160a01b03871660009081526006602090815260409182902042600190910155815183815291517f54edc0b4728c3923cb75a7e36b998c5eb1c6ca744db9015f495191569e0421d09281900390910190a19695505050505050565b60105460115460125460135460145485565b600f5490565b612245612796565b6000546001600160a01b0390811691161461225c57fe5b60015460408051630c2c3d6360e31b81526001600160a01b0386811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b1580156122b157600080fd5b505af11580156122c5573d6000803e3d6000fd5b5050600154604080516340c10f1960e01b81526001600160a01b0387811660048301526024820187905291519190921693506340c10f199250604480830192600092919082900301818387803b15801561231e57600080fd5b505af1158015612332573d6000803e3d6000fd5b50505050505050565b612343612796565b6000546001600160a01b0390811691161461235a57fe5b600c55565b612367612796565b6000546001600160a01b0390811691161461237e57fe5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6123a4612796565b6000546001600160a01b039081169116146123bb57fe5b6001600160a01b0381166123eb57601580546001600160a01b03191690556016805460ff60a01b1916905561241c565b601580546001600160a01b0383166001600160a01b03199091161790556016805460ff60a01b1916600160a01b1790555b50565b6000612429612796565b6000546001600160a01b0390811691161461244057fe5b6001600160a01b03821661245357600080fd5b50600980546001600160a01b0383166301000000026301000000600160b81b03199091161790556001919050565b600154604080516370a0823160e01b815233600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156124cc57600080fd5b505afa1580156124e0573d6000803e3d6000fd5b505050506040513d60208110156124f657600080fd5b505190508061250157fe5b600c5481101561250d57fe5b336000908152600660205260409020600181015461252c574260018201555b805461253f574281556005805460010190555b5050565b600f5481565b612551612796565b6000546001600160a01b0390811691161461256857fe5b60168054911515600160b01b0260ff60b01b19909216919091179055565b600d5460ff1681565b612597612796565b6000546001600160a01b039081169116146125ae57fe5b600280546001600160a01b039092166001600160a01b03199092169190911790556003805460ff60a01b1916600160a01b179055565b6003546001600160a01b031633146125fb57600080fd5b600154604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b158015611d0257600080fd5b6003546001600160a01b031681565b6004546001600160a01b031681565b612676612796565b6000546001600160a01b0390811691161461268d57fe5b6001600160a01b0381166126a057600080fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6126ca612796565b6000546001600160a01b039081169116146126e157fe5b6001600160a01b0381166126f157fe5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031681565b612763612796565b6000546001600160a01b0390811691161461277a57fe5b600d805460ff9092166101000261ff0019909216919091179055565b3390565b60006127dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295c565b90505b92915050565b60006127dc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b30565b600082612836575060006127df565b8282028284828161284357fe5b04146127dc57fe5b601654600090600160a01b900460ff16156128e157601560009054906101000a90046001600160a01b03166001600160a01b031663360131896040518163ffffffff1660e01b815260040160206040518083038186803b1580156128ae57600080fd5b505afa1580156128c2573d6000803e3d6000fd5b505050506040513d60208110156128d857600080fd5b50519050611c40565b600954600090600160b81b900460ff164360001901406128ff612796565b60405160200180838152602001826001600160a01b031660601b8152601401925050506040516020818303038152906040528051906020012060001c8161294257fe5b066001019050600a548110156129575750600a545b905090565b60008383111561296857fe5b5050900390565b6000828201838110156127dc57fe5b60008080600019848609905083850292508281039150828110156129a3576001820391505b509250929050565b601654600090600160a01b900460ff1615612a55576015546040805163b10e8cbf60e01b815260048101889052602481018790526001600160a01b038681166044830152606482018690529151919092169163b10e8cbf916084808301926020929190829003018186803b158015612a2257600080fd5b505afa158015612a36573d6000803e3d6000fd5b505050506040513d6020811015612a4c57600080fd5b50519050611000565b600e54600f5460011015612a7257600f548181612a6e57fe5b0490505b603c851115612a8457603c9450612a8e565b84612a8e57600194505b6000612aa984601060030154683635c9adc5dea00000611db9565b601454909150600090612abd9083906127e5565b90506032811115612ada57612ad383600a612827565b9250612ae9565b6019811115612ae957600e5492505b6000612b048989601060010154028660106002015402611db9565b90506000612b158a6001600a611db9565b905080821115612b23578091505b5098975050505050505050565b6000808311612b3b57fe5b6000838581612b4657fe5b0495945050505050565b50805460018160011615610100020316600290046000825580601f10612b76575061241c565b601f01602090049060005260206000209081019061241c9190612c2c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612bd55782800160ff19823516178555612c02565b82800160010185558215612c02579182015b82811115612c02578235825591602001919060010190612be7565b50612c0e929150612c2c565b5090565b604051806040016040528060008152602001600081525090565b5b80821115612c0e5760008155600101612c2d56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e637265617365206d757374206265206174206c65617374205f6d696e50657263656e74496e63726561736520746f20636f756e74506172616d65746572732063616e6e6f74206265206e65676174697665206f72207a65726fa26469706673582212202a939dd31724ff978a3464b5498379c66a72a23b4a025d3311e3a516886b589a64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103a45760003560e01c80639dc29fac116101e9578063b5bf15e51161010f578063df1a86a0116100ad578063f07484c81161007c578063f07484c814610b26578063f2fde38b14610b4c578063fc0c546a14610b72578063fff505d514610b7a576103a4565b8063df1a86a014610ac4578063e38b563f14610aea578063e54845b614610b16578063e7b9179414610b1e576103a4565b8063c59d1f03116100e9578063c59d1f0314610a8d578063cda8adea14610a95578063d2ceaeb814610a9d578063d461d69514610abc576103a4565b8063b5bf15e514610a22578063b5d011fd14610a41578063c12b7c4e14610a67576103a4565b8063ad1b447111610187578063b2ca23cd11610156578063b2ca23cd14610994578063b3ab4f70146109c7578063b4d32e83146109cf578063b51ff3b714610a05576103a4565b8063ad1b44711461094a578063adad9fea14610952578063b13acc941461095a578063b1fba3ed14610962576103a4565b8063a512ceba116101c3578063a512ceba146108be578063aa9a0912146108db578063ac22cc9c14610904578063ad16790f1461092a576103a4565b80639dc29fac1461082d5780639ff3795714610859578063a23c44b114610898576103a4565b80635fcf4115116102ce5780637c7950f51161026c5780638da5cb5b1161023b5780638da5cb5b146107d9578063981c0597146107fd57806398f7a55a1461081d5780639c74daf014610825576103a4565b80637c7950f5146107515780637f9dc75e1461077757806381711578146107ab57806388274d53146107d1576103a4565b80636691461a116102a85780636691461a146106bb5780636c8b052a146106e1578063715018a6146106e95780637154fcde146106f1576103a4565b80635fcf41151461065c57806365ed50e9146106945780636612ccab1461069c576103a4565b80632c36dd5c116103465780634d53338e116103155780634d53338e146105ef57806355e39899146105f75780635c93fe10146106165780635d77d8d014610636576103a4565b80632c36dd5c146104875780632cfd9930146104b657806330edc0f5146104d25780634cd4d1dc1461056d576103a4565b806307052b861161038257806307052b86146103f35780630a05c1d4146104115780630a75e7721461042e5780631ec64e0c14610468576103a4565b8063048fcfc5146103a95780630566ed11146103d157806305bc1ef7146103eb575b600080fd5b6103cf600480360360208110156103bf57600080fd5b50356001600160a01b0316610b9a565b005b6103d9610bdb565b60408051918252519081900360200190f35b6103d9610be1565b6103fb610be7565b6040805160ff9092168252519081900360200190f35b6103cf6004803603602081101561042757600080fd5b5035610bf7565b6103cf6004803603608081101561044457600080fd5b506001600160a01b0381351690602081013590604081013590606001351515610c1b565b6103cf6004803603602081101561047e57600080fd5b50351515610c5f565b6103cf6004803603608081101561049d57600080fd5b5080359060208101359060408101359060600135610c91565b6104be610ecb565b604080519115158252519081900360200190f35b6104f8600480360360208110156104e857600080fd5b50356001600160a01b0316610edb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561053257818101518382015260200161051a565b50505050905090810190601f16801561055f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104be6004803603606081101561058357600080fd5b6001600160a01b0382351691908101906040810160208201356401000000008111156105ae57600080fd5b8201836020820111156105c057600080fd5b803590602001918460018302840111640100000000831117156105e257600080fd5b9193509150351515610f87565b6103d9611008565b6103cf6004803603602081101561060d57600080fd5b5035151561100e565b6103cf6004803603602081101561062c57600080fd5b503560ff16611040565b6103d96004803603602081101561064c57600080fd5b50356001600160a01b031661107f565b6103d96004803603608081101561067257600080fd5b506001600160a01b03813516906020810135906040810135906060013561109a565b6104be611321565b6103cf600480360360208110156106b257600080fd5b50351515611331565b6103cf600480360360208110156106d157600080fd5b50356001600160a01b031661136e565b6103d96113c2565b6103cf6113c8565b610733600480360360a081101561070757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135611431565b60408051938452602084019290925282820152519081900360600190f35b6103d96004803603602081101561076757600080fd5b50356001600160a01b0316611b1f565b6104be6004803603606081101561078d57600080fd5b506001600160a01b0381351690602081013590604001351515611b7b565b6103cf600480360360208110156107c157600080fd5b50356001600160a01b0316611be9565b6104be611c2a565b6107e1611c33565b604080516001600160a01b039092168252519081900360200190f35b6103cf6004803603602081101561081357600080fd5b503560ff16611c43565b6103fb611c6a565b6107e1611c78565b6103cf6004803603604081101561084357600080fd5b506001600160a01b038135169060200135611c8e565b61087f6004803603602081101561086f57600080fd5b50356001600160a01b0316611d1e565b6040805192835260208301919091528051918290030190f35b61087f600480360360208110156108ae57600080fd5b50356001600160a01b0316611d72565b6103cf600480360360208110156108d457600080fd5b5035611d95565b6103d9600480360360608110156108f157600080fd5b5080359060208101359060400135611db9565b6103d96004803603602081101561091a57600080fd5b50356001600160a01b0316611e6d565b6103cf6004803603602081101561094057600080fd5b503560ff16612058565b6104be61208d565b6107e1612096565b6104be6120a5565b6103d96004803603606081101561097857600080fd5b506001600160a01b0381351690602081013590604001356120b5565b61099c612225565b6040805195865260208601949094528484019290925260608401526080830152519081900360a00190f35b6103d9612237565b6103cf600480360360608110156109e557600080fd5b506001600160a01b0381358116916020810135909116906040013561223d565b6103cf60048036036020811015610a1b57600080fd5b503561233b565b6103cf60048036036020811015610a3857600080fd5b5035151561235f565b6103cf60048036036020811015610a5757600080fd5b50356001600160a01b031661239c565b6104be60048036036020811015610a7d57600080fd5b50356001600160a01b031661241f565b6103cf612481565b6103d9612543565b6103cf60048036036020811015610ab357600080fd5b50351515612549565b6103fb612586565b6103cf60048036036020811015610ada57600080fd5b50356001600160a01b031661258f565b6103cf60048036036040811015610b0057600080fd5b506001600160a01b0381351690602001356125e4565b6107e1612650565b6107e161265f565b6103cf60048036036020811015610b3c57600080fd5b50356001600160a01b031661266e565b6103cf60048036036020811015610b6257600080fd5b50356001600160a01b03166126c2565b6107e161274c565b6103cf60048036036020811015610b9057600080fd5b503560ff1661275b565b610ba2612796565b6000546001600160a01b03908116911614610bb957fe5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b600a5481565b600954600160b81b900460ff1681565b610bff612796565b6000546001600160a01b03908116911614610c1657fe5b600f55565b610c23612796565b6000546001600160a01b03908116911614610c3a57fe5b506001600160a01b039092166000908152600660205260409020600181019190915555565b610c67612796565b6000546001600160a01b03908116911614610c7e57fe5b6009805460ff1916911515919091179055565b6004546001600160a01b0316610ca5612796565b6001600160a01b031614610cb557fe5b600084118015610cc55750600083115b8015610cd15750600082115b8015610cdd5750600081115b610d185760405162461bcd60e51b8152600401808060200182810382526025815260200180612cc06025913960400191505060405180910390fd5b600284108015610d285750826064145b80610d3f5750601484108015610d3f5750826103e8145b15610d9957600d54610100900460ff16610d5c6103e88686611db9565b1015610d995760405162461bcd60e51b8152600401808060200182810382526036815260200180612c8a6036913960400191505060405180910390fd5b60105442036201fa40811015610db757600f80546001019055610dbd565b6001600f555b6103e88310158015610dd75750600954610100900460ff16155b15610e1e576009805461ff0019166101001790556032600f556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a1610e8b565b6127108310158015610e39575060095462010000900460ff16155b15610e8b576009805462ff00001916620100001790556064600f5568056bc75e2d63100000600c556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a15b506040805160a081018252428082526020820187905291810185905260608101849052608001829052601055601193909355601291909155601355601455565b601654600160a01b900460ff1681565b6001600160a01b03811660009081526007602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610f7a5780601f10610f4f57610100808354040283529160200191610f7a565b820191906000526020600020905b815481529060010190602001808311610f5d57829003601f168201915b505050505090505b919050565b6000610f91612796565b6000546001600160a01b03908116911614610fa857fe5b8115610fd7576001600160a01b0385166000908152600760205260408120610fcf91612b50565b506001611000565b6001600160a01b0385166000908152600760205260409020610ffa908585612b94565b50600190505b949350505050565b600e5481565b611016612796565b6000546001600160a01b0390811691161461102d57fe5b600b805460ff1916911515919091179055565b611048612796565b6000546001600160a01b0390811691161461105f57fe5b6009805460ff909216600160b81b0260ff60b81b19909216919091179055565b6001600160a01b031660009081526008602052604090205490565b60006110a4612c12565b506001600160a01b03851660009081526006602090815260408083208151808301909252805480835260019091015492820192909252919062015180906110ec90429061279a565b816110f357fe5b600154604080516370a0823160e01b81526001600160a01b038c8116600483015291519490930494506000939116916370a08231916024808301926020929190829003018186803b15801561114757600080fd5b505afa15801561115b573d6000803e3d6000fd5b505050506040513d602081101561117157600080fd5b50516020840151909150158061118657508251155b806111955750600d5460ff1682105b806111a15750600c5481105b806111ad575060018511155b156111be5760009350505050611000565b600e54600f5460105442036201518081116111de576001909101906111e3565b600191505b60018211156111f9578183816111f557fe5b0492505b603c85111561120b57603c9450611215565b8461121557600194505b60006112a4600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d602081101561129257600080fd5b50518c683635c9adc5dea00000611db9565b905060006112b2828c6127e5565b905060328111156112cf576112c885600a612827565b94506112de565b60198111156112de57600e5494505b60006112f087898d0288606402611db9565b90506000611301886001600a611db9565b90508082111561130f578091505b509d9c50505050505050505050505050565b601654600160a81b900460ff1681565b611339612796565b6000546001600160a01b0390811691161461135057fe5b60038054911515600160a01b0260ff60a01b19909216919091179055565b611376612796565b6000546001600160a01b0390811691161461138d57fe5b6001600160a01b0381166113a057600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60055481565b6113d0612796565b6000546001600160a01b039081169116146113e757fe5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600154600090819081906001600160a01b031661144c612796565b6001600160a01b03161461145c57fe5b601654600160a81b900460ff161561147057fe5b866001600160a01b0316886001600160a01b0316141561148c57fe5b6000861161149657fe5b858510156114a057fe5b600354600160a01b900460ff16156115325760025460408051631b1838cb60e11b81526001600160a01b038b81166004830152915191909216916336307196916024808301926020929190829003018186803b1580156114ff57600080fd5b505afa158015611513573d6000803e3d6000fd5b505050506040513d602081101561152957600080fd5b50511561153257fe5b600954869060019060009060ff16801561157557506001600160a01b038b1660009081526007602052604090205460026000196101006001841615020190911604155b80156115aa57506001600160a01b038a1660009081526007602052604090205460026000196101006001841615020190911604155b15611661576115c2896115bb61284b565b6064611db9565b6001600160a01b038b1660009081526008602052604090205490915015611610576001600160a01b038a16600090815260086020526040902054611609908a906064611db9565b9050600091505b801561165c57888111156116275760009250611634565b611631898261279a565b92505b61165981604051806060016040528060228152602001612c42602291398a919061295c565b97505b6116e7565b6009546001600160a01b038b811663010000009092041614156116e757600b546000925060ff16156116e757611699896115bb61284b565b905080156116e757888111156116b257600092506116bf565b6116bc898261279a565b92505b6116e481604051806060016040528060228152602001612c42602291398a919061295c565b97505b6001600160a01b038a16600090815260076020526040902054600260001961010060018416150201909116041561171d57600091505b81801561174157506001600160a01b038a1660009081526006602052604090205415155b801561174d5750600087115b15611897576000611762620f4240858a611db9565b905061176f8160026127e5565b6001600160a01b038c16600090815260066020526040902054909150429061179890839061296f565b11156117be576001600160a01b038b1660009081526006602052604090204290556117fb565b6001600160a01b038b166000908152600660205260409020546117e1908261296f565b6001600160a01b038c166000908152600660205260409020555b6001600160a01b038b16600090815260066020526040902060010154429061182490839061296f565b111561184e576001600160a01b038b16600090815260066020526040902042600190910155611891565b6001600160a01b038b16600090815260066020526040902060010154611874908261296f565b6001600160a01b038c166000908152600660205260409020600101555b5061194f565b8180156118a2575086155b80156118e957506001600160a01b038a166000908152600660205260409020541515806118e957506001600160a01b038a1660009081526006602052604090206001015415155b1561194f576001600160a01b038a1660008181526006602090815260408083208381556001019290925560058054600019019055815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a15b61197483604051806060016040528060268152602001612c64602691398a919061295c565b9750611980878461296f565b96508180156119a557506001600160a01b038a16600090815260066020526040902054155b80156119bf5750600c54831015806119bf5750600c548710155b15611a37576040805180820182524280825260208083019182526001600160a01b038e1660008181526006835285902093518455915160019384015560058054909301909255825190815291517fc0687b34adb081bf19c87a2a0a5bb56c4a9584ee8c67fce683c3fac163c27eb89281900390910190a15b600c54881015611aca576001600160a01b038b1660009081526006602052604090205415611aa65760058054600019019055604080516001600160a01b038d16815290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059181900360200190a15b6001600160a01b038b16600090815260066020526040812081815560010155611b0d565b6001600160a01b038b16600090815260066020526040902042815560010154611b0d576001600160a01b038b166000908152600660205260409020426001909101555b969a9599509597509395505050505050565b6001600160a01b038116600090815260066020526040812054611b4457506000610f82565b6001600160a01b0382166000908152600660205260409020546201518090611b6d90429061279a565b81611b7457fe5b0492915050565b6000611b85612796565b6000546001600160a01b03908116911614611b9c57fe5b8115611bc357506001600160a01b0383166000908152600860205260408120556001611be2565b506001600160a01b038316600090815260086020526040902082905560015b9392505050565b611bf1612796565b6000546001600160a01b03908116911614611c0857fe5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460ff1681565b6000546001600160a01b03165b90565b611c4b612796565b6000546001600160a01b03908116911614611c6257fe5b60ff16600a55565b600d54610100900460ff1681565b600954630100000090046001600160a01b031681565b611c96612796565b6000546001600160a01b03908116911614611cad57fe5b60015460408051630c2c3d6360e31b81526001600160a01b0385811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b158015611d0257600080fd5b505af1158015611d16573d6000803e3d6000fd5b505050505050565b60165460009081906001600160a01b0316611d37612796565b6001600160a01b031614611d4757fe5b50506001600160a01b0316600090815260066020526040902080546001820180544291829055925591565b6001600160a01b0316600090815260066020526040902080546001909101549091565b611d9d612796565b6000546001600160a01b03908116911614611db457fe5b600e55565b6000806000611dc8868661297e565b91509150838110611dd557fe5b60008480611ddf57fe5b868809905082811115611df3576001820391505b918290039160008590038516808681611e0857fe5b049550808481611e1457fe5b049350808160000381611e2357fe5b046001019290920292909201600285810380870282030280870282030280870282030280870282030280870282030280870282030295860290039094029390930295945050505050565b6000611e77612c12565b506001600160a01b0382166000908152600660209081526040808320815180830190925280548083526001909101549282019290925291906201518090611ebf90429061279a565b81611ec657fe5b600154604080516370a0823160e01b81526001600160a01b03898116600483015291519490930494506000939116916370a08231916024808301926020929190829003018186803b158015611f1a57600080fd5b505afa158015611f2e573d6000803e3d6000fd5b505050506040513d6020811015611f4457600080fd5b505160208401519091501580611f5957508251155b80611f6a5750602083015160105411155b80611f795750600d5460ff1682105b80611f855750600c5481105b15611f965760009350505050610f82565b600061201d828488600160009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611fec57600080fd5b505afa158015612000573d6000803e3d6000fd5b505050506040513d602081101561201657600080fd5b50516129ab565b601654909150600160b01b900460ff16801561203a5750601e8310155b1561204f5761204c8284610258611db9565b90505b95945050505050565b612060612796565b6000546001600160a01b0390811691161461207757fe5b600d805460ff191660ff92909216919091179055565b60095460ff1681565b6002546001600160a01b031681565b601654600160b01b900460ff1681565b6001546000906001600160a01b03166120cc612796565b6001600160a01b0316146120dc57fe5b600083116120e657fe5b6120ee612c12565b506001600160a01b0384166000908152600660209081526040918290208251808401909352805483526001015490820181905261212757fe5b805161212f57fe5b8060200151421161213c57fe5b60208101516010541161214b57fe5b8051600090620151809061216090429061279a565b8161216757fe5b600d54919004915060ff1681101561217b57fe5b600c5485101561218757fe5b6000612195868389886129ab565b601654909150600160b01b900460ff1680156121b25750601e8210155b156121c7576121c48683610258611db9565b90505b6001600160a01b03871660009081526006602090815260409182902042600190910155815183815291517f54edc0b4728c3923cb75a7e36b998c5eb1c6ca744db9015f495191569e0421d09281900390910190a19695505050505050565b60105460115460125460135460145485565b600f5490565b612245612796565b6000546001600160a01b0390811691161461225c57fe5b60015460408051630c2c3d6360e31b81526001600160a01b0386811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b1580156122b157600080fd5b505af11580156122c5573d6000803e3d6000fd5b5050600154604080516340c10f1960e01b81526001600160a01b0387811660048301526024820187905291519190921693506340c10f199250604480830192600092919082900301818387803b15801561231e57600080fd5b505af1158015612332573d6000803e3d6000fd5b50505050505050565b612343612796565b6000546001600160a01b0390811691161461235a57fe5b600c55565b612367612796565b6000546001600160a01b0390811691161461237e57fe5b60168054911515600160a81b0260ff60a81b19909216919091179055565b6123a4612796565b6000546001600160a01b039081169116146123bb57fe5b6001600160a01b0381166123eb57601580546001600160a01b03191690556016805460ff60a01b1916905561241c565b601580546001600160a01b0383166001600160a01b03199091161790556016805460ff60a01b1916600160a01b1790555b50565b6000612429612796565b6000546001600160a01b0390811691161461244057fe5b6001600160a01b03821661245357600080fd5b50600980546001600160a01b0383166301000000026301000000600160b81b03199091161790556001919050565b600154604080516370a0823160e01b815233600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156124cc57600080fd5b505afa1580156124e0573d6000803e3d6000fd5b505050506040513d60208110156124f657600080fd5b505190508061250157fe5b600c5481101561250d57fe5b336000908152600660205260409020600181015461252c574260018201555b805461253f574281556005805460010190555b5050565b600f5481565b612551612796565b6000546001600160a01b0390811691161461256857fe5b60168054911515600160b01b0260ff60b01b19909216919091179055565b600d5460ff1681565b612597612796565b6000546001600160a01b039081169116146125ae57fe5b600280546001600160a01b039092166001600160a01b03199092169190911790556003805460ff60a01b1916600160a01b179055565b6003546001600160a01b031633146125fb57600080fd5b600154604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b158015611d0257600080fd5b6003546001600160a01b031681565b6004546001600160a01b031681565b612676612796565b6000546001600160a01b0390811691161461268d57fe5b6001600160a01b0381166126a057600080fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6126ca612796565b6000546001600160a01b039081169116146126e157fe5b6001600160a01b0381166126f157fe5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031681565b612763612796565b6000546001600160a01b0390811691161461277a57fe5b600d805460ff9092166101000261ff0019909216919091179055565b3390565b60006127dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295c565b90505b92915050565b60006127dc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b30565b600082612836575060006127df565b8282028284828161284357fe5b04146127dc57fe5b601654600090600160a01b900460ff16156128e157601560009054906101000a90046001600160a01b03166001600160a01b031663360131896040518163ffffffff1660e01b815260040160206040518083038186803b1580156128ae57600080fd5b505afa1580156128c2573d6000803e3d6000fd5b505050506040513d60208110156128d857600080fd5b50519050611c40565b600954600090600160b81b900460ff164360001901406128ff612796565b60405160200180838152602001826001600160a01b031660601b8152601401925050506040516020818303038152906040528051906020012060001c8161294257fe5b066001019050600a548110156129575750600a545b905090565b60008383111561296857fe5b5050900390565b6000828201838110156127dc57fe5b60008080600019848609905083850292508281039150828110156129a3576001820391505b509250929050565b601654600090600160a01b900460ff1615612a55576015546040805163b10e8cbf60e01b815260048101889052602481018790526001600160a01b038681166044830152606482018690529151919092169163b10e8cbf916084808301926020929190829003018186803b158015612a2257600080fd5b505afa158015612a36573d6000803e3d6000fd5b505050506040513d6020811015612a4c57600080fd5b50519050611000565b600e54600f5460011015612a7257600f548181612a6e57fe5b0490505b603c851115612a8457603c9450612a8e565b84612a8e57600194505b6000612aa984601060030154683635c9adc5dea00000611db9565b601454909150600090612abd9083906127e5565b90506032811115612ada57612ad383600a612827565b9250612ae9565b6019811115612ae957600e5492505b6000612b048989601060010154028660106002015402611db9565b90506000612b158a6001600a611db9565b905080821115612b23578091505b5098975050505050505050565b6000808311612b3b57fe5b6000838581612b4657fe5b0495945050505050565b50805460018160011615610100020316600290046000825580601f10612b76575061241c565b601f01602090049060005260206000209081019061241c9190612c2c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612bd55782800160ff19823516178555612c02565b82800160010185558215612c02579182015b82811115612c02578235825591602001919060010190612be7565b50612c0e929150612c2c565b5090565b604051806040016040528060008152602001600081525090565b5b80821115612c0e5760008155600101612c2d56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365496e637265617365206d757374206265206174206c65617374205f6d696e50657263656e74496e63726561736520746f20636f756e74506172616d65746572732063616e6e6f74206265206e65676174697665206f72207a65726fa26469706673582212202a939dd31724ff978a3464b5498379c66a72a23b4a025d3311e3a516886b589a64736f6c634300060c0033

Deployed Bytecode Sourcemap

14308:26825:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40885:122;;;;;;;;;;;;;;;;-1:-1:-1;40885:122:0;-1:-1:-1;;;;;40885:122:0;;:::i;:::-;;16855:24;;;:::i;:::-;;;;;;;;;;;;;;;;16730:33;;;:::i;16653:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29793:83;;;;;;;;;;;;;;;;-1:-1:-1;29793:83:0;;:::i;39926:343::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39926:343:0;;;;;;;;;;;;;;;;;;;;:::i;30248:99::-;;;;;;;;;;;;;;;;-1:-1:-1;30248:99:0;;;;:::i;19556:1353::-;;;;;;;;;;;;;;;;-1:-1:-1;19556:1353:0;;;;;;;;;;;;;;;;;:::i;17791:28::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;32269:110;;;;;;;;;;;;;;;;-1:-1:-1;32269:110:0;-1:-1:-1;;;;;32269:110:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30476:262;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30476:262:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30476:262:0;-1:-1:-1;30476:262:0;;;;:::i;17171:41::-;;;:::i;31165:140::-;;;;;;;;;;;;;;;;-1:-1:-1;31165:140:0;;;;:::i;31311:130::-;;;;;;;;;;;;;;;;-1:-1:-1;31311:130:0;;;;:::i;32385:101::-;;;;;;;;;;;;;;;;-1:-1:-1;32385:101:0;-1:-1:-1;;;;;32385:101:0;;:::i;26719:2368::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26719:2368:0;;;;;;;;;;;;;;;;;;:::i;17867:19::-;;;:::i;40766:113::-;;;;;;;;;;;;;;;;-1:-1:-1;40766:113:0;;;;:::i;29170:142::-;;;;;;;;;;;;;;;;-1:-1:-1;29170:142:0;-1:-1:-1;;;;;29170:142:0;;:::i;15411:22::-;;;:::i;12207:138::-;;;:::i;33865:5412::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33865:5412:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;32024:239;;;;;;;;;;;;;;;;-1:-1:-1;32024:239:0;-1:-1:-1;;;;;32024:239:0;;:::i;30744:248::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30744:248:0;;;;;;;;;;;;;;;:::i;41015:115::-;;;;;;;;;;;;;;;;-1:-1:-1;41015:115:0;-1:-1:-1;;;;;41015:115:0;;:::i;16770:37::-;;;:::i;11602:73::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11602:73:0;;;;;;;;;;;;;;31449:130;;;;;;;;;;;;;;;;-1:-1:-1;31449:130:0;;;;:::i;17037:32::-;;;:::i;16556:29::-;;;:::i;39734:186::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39734:186:0;;;;;;;;:::i;21532:356::-;;;;;;;;;;;;;;;;-1:-1:-1;21532:356:0;-1:-1:-1;;;;;21532:356:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31852:164;;;;;;;;;;;;;;;;-1:-1:-1;31852:164:0;-1:-1:-1;;;;;31852:164:0;;:::i;29625:162::-;;;;;;;;;;;;;;;;-1:-1:-1;29625:162:0;;:::i;32885:504::-;;;;;;;;;;;;;;;;-1:-1:-1;32885:504:0;;;;;;;;;;;;:::i;25904:807::-;;;;;;;;;;;;;;;;-1:-1:-1;25904:807:0;-1:-1:-1;;;;;25904:807:0;;:::i;29882:140::-;;;;;;;;;;;;;;;;-1:-1:-1;29882:140:0;;;;:::i;16360:24::-;;;:::i;15234:37::-;;;:::i;17963:29::-;;;:::i;21894:2189::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21894:2189:0;;;;;;;;;;;;;:::i;17417:25::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33578:72;;;:::i;40439:160::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40439:160:0;;;;;;;;;;;;;;;;;:::i;30028:92::-;;;;;;;;;;;;;;;;-1:-1:-1;30028:92:0;;:::i;31585:89::-;;;;;;;;;;;;;;;;-1:-1:-1;31585:89:0;;;;:::i;29318:299::-;;;;;;;;;;;;;;;;-1:-1:-1;29318:299:0;-1:-1:-1;;;;;29318:299:0;;:::i;30998:161::-;;;;;;;;;;;;;;;;-1:-1:-1;30998:161:0;-1:-1:-1;;;;;30998:161:0;;:::i;20915:539::-;;;:::i;17309:22::-;;;:::i;30353:117::-;;;;;;;;;;;;;;;;-1:-1:-1;30353:117:0;;;;:::i;16934:34::-;;;:::i;40605:153::-;;;;;;;;;;;;;;;;-1:-1:-1;40605:153:0;-1:-1:-1;;;;;40605:153:0;;:::i;40277:158::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40277:158:0;;;;;;;;:::i;15306:32::-;;;:::i;15375:31::-;;;:::i;31680:166::-;;;;;;;;;;;;;;;;-1:-1:-1;31680:166:0;-1:-1:-1;;;;;31680:166:0;;:::i;12490:233::-;;;;;;;;;;;;;;;;-1:-1:-1;12490:233:0;-1:-1:-1;;;;;12490:233:0;;:::i;15120:21::-;;;:::i;30124:118::-;;;;;;;;;;;;;;;;-1:-1:-1;30124:118:0;;;;:::i;40885:122::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;40967:16:::1;:34:::0;;-1:-1:-1;;;;;;40967:34:0::1;-1:-1:-1::0;;;;;40967:34:0;;;::::1;::::0;;;::::1;::::0;;40885:122::o;16855:24::-;;;;:::o;16730:33::-;;;;:::o;16653:34::-;;;-1:-1:-1;;;16653:34:0;;;;;:::o;29793:83::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;29854:7:::1;:16:::0;29793:83::o;39926:343::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;;40156:17:0;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:31:::1;::::0;::::1;:48:::0;;;;40215;39926:343::o;30248:99::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30314:12:::1;:27:::0;;-1:-1:-1;;30314:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30248:99::o;19556:1353::-;15621:16;;-1:-1:-1;;;;;15621:16:0;15605:12;:10;:12::i;:::-;-1:-1:-1;;;;;15605:32:0;;15598:71;;;;19811:1:::1;19799:9;:13;:32;;;;;19830:1;19816:11;:15;19799:32;:45;;;;;19843:1;19835:5;:9;19799:45;:59;;;;;19857:1;19848:6;:10;19799:59;19791:109;;;;-1:-1:-1::0;;;19791:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19925:1;19913:9;:13;:35;;;;;19930:11;19945:3;19930:18;19913:35;:76;;;;19964:2;19952:9;:14;:37;;;;;19970:11;19985:4;19970:19;19952:37;19909:225;;;20048:19;::::0;::::1;::::0;::::1;;;20008:36;20015:4;20021:9:::0;20032:11;20008:6:::1;:36::i;:::-;:59;;20000:126;;;;-1:-1:-1::0;;;20000:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20197:11;:21:::0;20179:15:::1;:39;20261:6;20236:31:::0;::::1;20232:170;;;20349:7;:9:::0;;::::1;;::::0;;20232:170:::1;;;20393:1;20383:7;:11:::0;20232:170:::1;20423:4;20414:5;:13;;:42;;;;-1:-1:-1::0;20431:16:0::1;::::0;::::1;::::0;::::1;;;:25;20414:42;20410:409;;;20483:16;:23:::0;;-1:-1:-1;;20483:23:0::1;;;::::0;;20525:2:::1;20515:7;:12:::0;20541:20:::1;::::0;::::1;::::0;20483:23;;20541:20:::1;20410:409;;;20590:5;20581;:14;;:43;;;;-1:-1:-1::0;20599:16:0::1;::::0;;;::::1;;;:25;20581:43;20577:242;;;20675:16;:23:::0;;-1:-1:-1;;20675:23:0::1;::::0;::::1;::::0;;20717:3:::1;20707:7;:13:::0;20741:6:::1;20729:9;:18:::0;20791:20:::1;::::0;::::1;::::0;20675:23;;20791:20:::1;20577:242;-1:-1:-1::0;20841:62:0::1;::::0;;::::1;::::0;::::1;::::0;;20848:15:::1;20841:62:::0;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;20827:11:::1;:76:::0;;;;;;;;;;;;;;;19556:1353::o;17791:28::-;;;-1:-1:-1;;;17791:28:0;;;;;:::o;32269:110::-;-1:-1:-1;;;;;32357:16:0;;;;;;:10;:16;;;;;;;;;32350:23;;;;;;-1:-1:-1;;32350:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32328:13;;32350:23;;;32357:16;32350:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32269:110;;;;:::o;30476:262::-;30580:4;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30597:6:::1;30593:140;;;-1:-1:-1::0;;;;;30621:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;30614:23:::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;30653:4:0::1;30646:11;;30593:140;-1:-1:-1::0;;;;;30680:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;:25:::1;::::0;30699:6;;30680:25:::1;:::i;:::-;;30721:4;30714:11;;30593:140;30476:262:::0;;;;;;:::o;17171:41::-;;;;:::o;31165:140::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;31250:25:::1;:49:::0;;-1:-1:-1;;31250:49:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31165:140::o;31311:130::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;31394:21:::1;:41:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;31394:41:0::1;-1:-1:-1::0;;;;31394:41:0;;::::1;::::0;;;::::1;::::0;;31311:130::o;32385:101::-;-1:-1:-1;;;;;32464:16:0;32444:4;32464:16;;;:10;:16;;;;;;;32385:101::o;26719:2368::-;26826:7;26846:24;;:::i;:::-;-1:-1:-1;;;;;;26873:17:0;;;;;;:8;:17;;;;;;;;26846:44;;;;;;;;;;;;;;;;;;;;;;;;;;26873:17;26968:5;;26919:46;;:15;;:19;:46::i;:::-;:54;;;;;26999:5;;:24;;;-1:-1:-1;;;26999:24:0;;-1:-1:-1;;;;;26999:24:0;;;;;;;;;26919:54;;;;;-1:-1:-1;26984:12:0;;26999:5;;;:15;;:24;;;;;;;;;;;;;;:5;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26999:24:0;;27047;;;26999;;-1:-1:-1;27047:29:0;;:63;;-1:-1:-1;27080:25:0;;:30;27047:63;:113;;;-1:-1:-1;27139:21:0;;;;27126:34;;27047:113;:136;;;;27174:9;;27164:7;:19;27047:136;:151;;;;27197:1;27187:6;:11;;27047:151;27044:189;;;27220:1;27213:8;;;;;;;27044:189;27289:26;;27343:7;;27420:11;:21;27402:15;:39;27489:5;27463:31;;27459:184;;27580:8;;;;;27459:184;;;27630:1;27621:10;;27459:184;27682:1;27673:6;:10;27669:149;;;27727:6;27698:35;;;;;;;;;27669:149;27851:2;27838:10;:15;27834:315;;;27972:2;27959:15;;27834:315;;;27996:15;27992:157;;28136:1;28123:14;;27992:157;28165:14;28182:43;28189:5;;;;;;;;;-1:-1:-1;;;;;28189:5:0;-1:-1:-1;;;;;28189:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28189:19:0;28210:5;28217:7;28182:6;:43::i;:::-;28165:60;-1:-1:-1;28262:10:0;28275:21;28165:60;28289:6;28275:13;:21::i;:::-;28262:34;;28362:2;28354:5;:10;28350:287;;;28448:33;:25;28478:2;28448:29;:33::i;:::-;28420:61;;28350:287;;;28511:2;28503:5;:10;28499:138;;;28599:26;;28571:54;;28499:138;28653:14;28670:69;28677:7;28695:10;28686:6;:19;28713:25;28707:3;:31;28670:6;:69::i;:::-;28653:86;;28826:15;28844:22;28851:7;28860:1;28863:2;28844:6;:22::i;:::-;28826:40;;28899:10;28887:9;:22;28883:166;;;29027:10;29015:22;;28883:166;-1:-1:-1;29072:9:0;26719:2368;-1:-1:-1;;;;;;;;;;;;;26719:2368:0:o;17867:19::-;;;-1:-1:-1;;;17867:19:0;;;;;:::o;40766:113::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;40843:14:::1;:30:::0;;;::::1;;-1:-1:-1::0;;;40843:30:0::1;-1:-1:-1::0;;;;40843:30:0;;::::1;::::0;;;::::1;::::0;;40766:113::o;29170:142::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;29251:31:0;::::1;29243:40;;;::::0;::::1;;29290:5;:16:::0;;-1:-1:-1;;;;;;29290:16:0::1;-1:-1:-1::0;;;;;29290:16:0;;;::::1;::::0;;;::::1;::::0;;29170:142::o;15411:22::-;;;;:::o;12207:138::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;12310:1:::1;12294:6:::0;;12273:40:::1;::::0;-1:-1:-1;;;;;12294:6:0;;::::1;::::0;12273:40:::1;::::0;12310:1;;12273:40:::1;12337:1;12320:19:::0;;-1:-1:-1;;;;;;12320:19:0::1;::::0;;12207:138::o;33865:5412::-;15499:5;;34015:7;;;;;;-1:-1:-1;;;;;15499:5:0;15475:12;:10;:12::i;:::-;-1:-1:-1;;;;;15475:30:0;;15468:80;;;;34056:7:::1;::::0;-1:-1:-1;;;34056:7:0;::::1;;;:16;34049:24;;;;34097:9;-1:-1:-1::0;;;;;34087:19:0::1;:6;-1:-1:-1::0;;;;;34087:19:0::1;;;34080:27;;;;34130:1;34121:6;:10;34114:18;;;;34163:6;34146:13;:23;;34139:31;;;;34183:14;::::0;-1:-1:-1;;;34183:14:0;::::1;;;34179:125;;;34216:15;::::0;:37:::1;::::0;;-1:-1:-1;;;34216:37:0;;-1:-1:-1;;;;;34216:37:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:29:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;:15;:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;34216:37:0;34215:38:::1;34208:46;;;;34492:12;::::0;34331:6;;34367:4:::1;::::0;34312:16:::1;::::0;34492:12:::1;;:53:::0;::::1;;;-1:-1:-1::0;;;;;;34514:18:0;::::1;;::::0;;;:10:::1;:18;::::0;;;;34508:32;::::1;-1:-1:-1::0;;34508:32:0::1;;::::0;::::1;;;::::0;;;::::1;;:37:::0;34492:53:::1;:97;;;;-1:-1:-1::0;;;;;;34555:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;34549:35;::::1;-1:-1:-1::0;;34549:35:0::1;;::::0;::::1;;;::::0;;;::::1;;:40:::0;34492:97:::1;34488:1646;;;34695:34;34702:6;34710:13;:11;:13::i;:::-;34725:3;34695:6;:34::i;:::-;-1:-1:-1::0;;;;;34842:21:0;::::1;34866:1;34842:21:::0;;;:10:::1;:21;::::0;;;;;34680:49;;-1:-1:-1;34842:25:0;34838:310:::1;;-1:-1:-1::0;;;;;34974:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;;34959:42:::1;::::0;34966:6;;34997:3:::1;34959:6;:42::i;:::-;34944:57;;35074:5;35056:23;;34838:310;35162:16:::0;;35158:329:::1;;35210:6;35195:12;:21;35191:136;;;35245:1;35231:15;;35191:136;;;35291:24;:6:::0;35302:12;35291:10:::1;:24::i;:::-;35277:38;;35191:136;35353:69;35371:12;35353:69;;;;;;;;;;;;;;;;;:13:::0;;:69;:17:::1;:69::i;:::-;35337:85;;35158:329;34488:1646;;;35517:14;::::0;-1:-1:-1;;;;;35504:27:0;;::::1;35517:14:::0;;;::::1;;35504:27;35500:634;;;35714:25;::::0;35696:5:::1;::::0;-1:-1:-1;35714:25:0::1;;35710:417;;;35767:34;35774:6;35782:13;:11;:13::i;35767:34::-;35752:49:::0;-1:-1:-1;35834:16:0;;35830:288:::1;;35884:6;35869:12;:21;35865:144;;;35921:1;35907:15;;35865:144;;;35971:24;:6:::0;35982:12;35971:10:::1;:24::i;:::-;35957:38;;35865:144;36037:69;36055:12;36037:69;;;;;;;;;;;;;;;;;:13:::0;;:69;:17:::1;:69::i;:::-;36021:85;;35830:288;-1:-1:-1::0;;;;;36152:21:0;::::1;36184:1;36152:21:::0;;;:10:::1;:21;::::0;;;;36146:35;::::1;-1:-1:-1::0;;36146:35:0::1;;::::0;::::1;;;::::0;;;::::1;;:39:::0;36142:85:::1;;36214:5;36196:23;;36142:85;36612:15;:57;;;;-1:-1:-1::0;;;;;;36631:19:0;::::1;36668:1;36631:19:::0;;;:8:::1;:19;::::0;;;;:34;:38;;36612:57:::1;:81;;;;;36692:1;36673:16;:20;36612:81;36608:1443;;;36763:12;36778:46;36785:7;36794:11;36807:16;36778:6;:46::i;:::-;36763:61:::0;-1:-1:-1;36970:14:0::1;36763:61:::0;36982:1:::1;36970:11;:14::i;:::-;-1:-1:-1::0;;;;;37008:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:34;36960:24;;-1:-1:-1;37046:15:0::1;::::0;36996:47:::1;::::0;36960:24;;36996:11:::1;:47::i;:::-;:65;36993:408;;;-1:-1:-1::0;;;;;37160:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;37197:15:::1;37160:52:::0;;36993:408:::1;;;-1:-1:-1::0;;;;;37276:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:34;:47:::1;::::0;37315:7;37276:38:::1;:47::i;:::-;-1:-1:-1::0;;;;;37239:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:84;36993:408:::1;-1:-1:-1::0;;;;;37426:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:33:::1;;::::0;37463:15:::1;::::0;37414:46:::1;::::0;:7;;:11:::1;:46::i;:::-;:64;37411:341;;;-1:-1:-1::0;;;;;37491:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;37527:15:::1;37491:33;::::0;;::::1;:51:::0;37411:341:::1;;;-1:-1:-1::0;;;;;37605:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:33:::1;;::::0;:46:::1;::::0;37643:7;37605:37:::1;:46::i;:::-;-1:-1:-1::0;;;;;37569:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:33:::1;;:82:::0;37411:341:::1;36608:1443;;;;37769:15;:40;;;;-1:-1:-1::0;37788:21:0;;37769:40:::1;:125;;;;-1:-1:-1::0;;;;;;37814:19:0;::::1;37851:1;37814:19:::0;;;:8:::1;:19;::::0;;;;:34;:38;;;:79:::1;;-1:-1:-1::0;;;;;;37856:19:0;::::1;37892:1;37856:19:::0;;;:8:::1;:19;::::0;;;;:33:::1;;::::0;:37;;37814:79:::1;37765:286;;;-1:-1:-1::0;;;;;37965:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;;;;37958:26;;;::::1;;::::0;;;;37993:10:::1;:12:::0;;-1:-1:-1;;37993:12:0;;;38019:24;;;;;;;::::1;::::0;;;;;;;;::::1;37765:286;38075:72;38093:11;38075:72;;;;;;;;;;;;;;;;;:13:::0;;:72;:17:::1;:72::i;:::-;38059:88:::0;-1:-1:-1;38204:33:0::1;:16:::0;38225:11;38204:20:::1;:33::i;:::-;38185:52;;38250:15;:58;;;;-1:-1:-1::0;;;;;;38269:19:0;::::1;;::::0;;;:8:::1;:19;::::0;;;;:34;:39;38250:58:::1;:121;;;;;38328:9;;38313:11;:24;;:57;;;;38361:9;;38341:16;:29;;38313:57;38246:392;;;38533:40;::::0;;;;::::1;::::0;;38540:15:::1;38533:40:::0;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;38511:19:0;::::1;-1:-1:-1::0;38511:19:0;;;:8:::1;:19:::0;;;;;:62;;;;;;::::1;::::0;;::::1;::::0;38582:10:::1;:12:::0;;;;::::1;::::0;;;38608:22;;;;;;;::::1;::::0;;;;;;;;::::1;38246:392;38666:9;;38650:13;:25;38646:563;;;-1:-1:-1::0;;;;;38804:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;:31;:36;38801:115:::1;;38855:10;:12:::0;;-1:-1:-1;;38855:12:0;;;38885:21:::1;::::0;;-1:-1:-1;;;;;38885:21:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;38801:115;-1:-1:-1::0;;;;;38931:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;38924:23;;;::::1;;::::0;38646:563:::1;;;-1:-1:-1::0;;;;;38970:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;39004:15:::1;38970:49:::0;;39096:30:::1;;::::0;39092:110:::1;;-1:-1:-1::0;;;;;39144:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;39177:15:::1;39144:30;::::0;;::::1;:48:::0;39092:110:::1;39225:13:::0;;39240:16;;-1:-1:-1;39258:12:0;;-1:-1:-1;33865:5412:0;;-1:-1:-1;;;;;;33865:5412:0:o;32024:239::-;-1:-1:-1;;;;;32111:17:0;;32093:4;32111:17;;;:8;:17;;;;;:32;32108:73;;-1:-1:-1;32170:1:0;32163:8;;32108:73;-1:-1:-1;;;;;32216:17:0;;;;;;:8;:17;;;;;:32;32252:5;;32196:53;;:15;;:19;:53::i;:::-;:61;;;;;;;32024:239;-1:-1:-1;;32024:239:0:o;30744:248::-;30837:4;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30854:6:::1;30850:137;;;-1:-1:-1::0;;;;;;30878:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;30871:23;30910:4:::1;30903:11;;30850:137;-1:-1:-1::0;;;;;;30937:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;:22;;;30975:4:::1;30850:137;30744:248:::0;;;;;:::o;41015:115::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;41095:17:::1;:29:::0;;-1:-1:-1;;;;;;41095:29:0::1;-1:-1:-1::0;;;;;41095:29:0;;;::::1;::::0;;;::::1;::::0;;41015:115::o;16770:37::-;;;;;;:::o;11602:73::-;11640:7;11663:6;-1:-1:-1;;;;;11663:6:0;11602:73;;:::o;31449:130::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;31532:41:::1;;:21;:41:::0;31449:130::o;17037:32::-;;;;;;;;;:::o;16556:29::-;;;;;;-1:-1:-1;;;;;16556:29:0;;:::o;39734:186::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;39886:5:::1;::::0;:28:::1;::::0;;-1:-1:-1;;;39886:28:0;;-1:-1:-1;;;;;39886:28:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:11:::1;::::0;:28;;;;;:5:::1;::::0;:28;;;;;;;:5;;:28;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;39734:186:::0;;:::o;21532:356::-;15801:20;;21624:22;;;;-1:-1:-1;;;;;15801:20:0;15785:12;:10;:12::i;:::-;-1:-1:-1;;;;;15785:36:0;;15778:44;;;;-1:-1:-1;;;;;;;21695:14:0::1;;::::0;;;:8:::1;:14;::::0;;;;:29;;21747:28:::1;::::0;::::1;::::0;;21813:15:::1;21782:46:::0;;;;21835:47;;21695:29;21532:356::o;31852:164::-;-1:-1:-1;;;;;31944:17:0;31911:7;31944:17;;;:8;:17;;;;;:32;;31978:31;;;;;31944:32;;31852:164::o;29625:162::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;29727:26:::1;:54:::0;29625:162::o;32885:504::-;32947:4;32961:6;32969;32979:14;32988:1;32991;32979:7;:14::i;:::-;32960:33;;;;33012:1;33008;:5;33000:14;;;;33021:7;33045:1;33031:16;;;;;33042:1;33039;33031:16;33021:26;;33063:1;33058:2;:6;33054:18;;;33071:1;33066:6;;;;33054:18;33079:7;;;;;33093:9;33109:2;;;33105:6;;;33110:1;33105:6;33118:9;;;;;;;33139:4;33134:9;;;;;;;;;33170:4;33162;33161:5;;33160:14;;;;;;33177:1;33160:18;33155:24;;;;33150:29;;;;33208:1;:9;;;33233:5;;;33229:9;;33224:14;33254:5;;;33250:9;;33245:14;33275:5;;;33271:9;;33266:14;33296:5;;;33292:9;;33287:14;33317:5;;;33313:9;;33308:14;33338:5;;;33334:9;;33329:14;33359:5;;;33355:9;;33350:14;;;33378:5;;;;;32885:504;-1:-1:-1;;;;;32885:504:0:o;25904:807::-;25976:7;25994:24;;:::i;:::-;-1:-1:-1;;;;;;26021:17:0;;;;;;:8;:17;;;;;;;;25994:44;;;;;;;;;;;;;;;;;;;;;;;;;;26021:17;26114:5;;26065:46;;:15;;:19;:46::i;:::-;:54;;;;;26143:5;;:24;;;-1:-1:-1;;;26143:24:0;;-1:-1:-1;;;;;26143:24:0;;;;;;;;;26065:54;;;;;-1:-1:-1;26128:12:0;;26143:5;;;:15;;:24;;;;;;;;;;;;;;:5;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26143:24:0;;26187;;;26143;;-1:-1:-1;26187:29:0;;:63;;-1:-1:-1;26220:25:0;;:30;26187:63;:124;;;-1:-1:-1;26287:24:0;;;;26262:11;:21;:49;;26187:124;:170;;;-1:-1:-1;26336:21:0;;;;26323:34;;26187:170;:193;;;;26371:9;;26361:7;:19;26187:193;26184:229;;;26402:1;26395:8;;;;;;;26184:229;26429:14;26446:69;26465:7;26474:10;26486:7;26495:5;;;;;;;;;-1:-1:-1;;;;;26495:5:0;-1:-1:-1;;;;;26495:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26495:19:0;26446:18;:69::i;:::-;26536:17;;26429:86;;-1:-1:-1;;;;26536:17:0;;;;:37;;;;;26571:2;26557:10;:16;;26536:37;26532:151;;;26598:32;26605:7;26614:10;26626:3;26598:6;:32::i;:::-;26586:44;;26532:151;26696:9;25904:807;-1:-1:-1;;;;;25904:807:0:o;29882:140::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;29972:21:::1;:44:::0;;-1:-1:-1;;29972:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;29882:140::o;16360:24::-;;;;;;:::o;15234:37::-;;;-1:-1:-1;;;;;15234:37:0;;:::o;17963:29::-;;;-1:-1:-1;;;17963:29:0;;;;;:::o;21894:2189::-;15499:5;;22007:7;;-1:-1:-1;;;;;15499:5:0;15475:12;:10;:12::i;:::-;-1:-1:-1;;;;;15475:30:0;;15468:80;;;;22192:1:::1;22182:7;:11;22175:19;;;;22203:24;;:::i;:::-;-1:-1:-1::0;;;;;;22230:23:0;::::1;;::::0;;;:8:::1;:23;::::0;;;;;;;;22203:50;;;;::::1;::::0;;;;;;;::::1;;::::0;;;::::1;::::0;;;22262:85:::1;;;;22445:25:::0;;22438:87:::1;;;;22771:10;:24;;;22753:15;:42;22746:121;;;;22905:24;::::0;::::1;::::0;22881:11:::1;:21:::0;:48:::1;22874:182;;;;23103:25:::0;;23065:15:::1;::::0;23132:5:::1;::::0;23083:46:::1;::::0;:15:::1;::::0;:19:::1;:46::i;:::-;:54;;;;;23225:21;::::0;23083:54;;::::1;::::0;-1:-1:-1;23225:21:0::1;;23211:35:::0;::::1;;23204:116;;;;23345:9;;23334:7;:20;;23327:97;;;;23431:14;23448:67;23467:7;23476:10;23488:13;23503:11;23448:18;:67::i;:::-;23643:17;::::0;23431:84;;-1:-1:-1;;;;23643:17:0;::::1;;;:37:::0;::::1;;;;23678:2;23664:10;:16;;23643:37;23639:147;;;23703:32;23710:7;23719:10;23731:3;23703:6;:32::i;:::-;23691:44;;23639:147;-1:-1:-1::0;;;;;23794:23:0;::::1;;::::0;;;:8:::1;:23;::::0;;;;;;;;23834:15:::1;23794:37;::::0;;::::1;:55:::0;23950:24;;;;;;;::::1;::::0;;;;;;;;::::1;23990:9:::0;21894:2189;-1:-1:-1;;;;;;21894:2189:0:o;17417:25::-;;;;;;;;;;;;:::o;33578:72::-;33637:7;;33578:72;:::o;40439:160::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;40533:5:::1;::::0;:25:::1;::::0;;-1:-1:-1;;;40533:25:0;;-1:-1:-1;;;;;40533:25:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:11:::1;::::0;:25;;;;;:5:::1;::::0;:25;;;;;;;:5;;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;40567:5:0::1;::::0;:26:::1;::::0;;-1:-1:-1;;;40567:26:0;;-1:-1:-1;;;;;40567:26:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;-1:-1:-1;40567:10:0::1;::::0;-1:-1:-1;40567:26:0;;;;;:5:::1;::::0;:26;;;;;;;:5;;:26;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40439:160:::0;;;:::o;30028:92::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30094:9:::1;:20:::0;30028:92::o;31585:89::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;31646:7:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;31646:22:0::1;-1:-1:-1::0;;;;31646:22:0;;::::1;::::0;;;::::1;::::0;;31585:89::o;29318:299::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;29399:27:0;::::1;29396:216;;29437:19;:53:::0;;-1:-1:-1;;;;;;29437:53:0::1;::::0;;29499:16:::1;:24:::0;;-1:-1:-1;;;;29499:24:0::1;::::0;;29396:216:::1;;;29546:19;:26:::0;;-1:-1:-1;;;;;29546:26:0;::::1;-1:-1:-1::0;;;;;;29546:26:0;;::::1;;::::0;;29581:16:::1;:23:::0;;-1:-1:-1;;;;29581:23:0::1;-1:-1:-1::0;;;29581:23:0::1;::::0;;29396:216:::1;29318:299:::0;:::o;30998:161::-;31067:4;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;31088:18:0;::::1;31080:27;;;::::0;::::1;;-1:-1:-1::0;31114:14:0::1;:21:::0;;-1:-1:-1;;;;;31114:21:0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;31114:21:0;;::::1;;::::0;;-1:-1:-1;30998:161:0;;;:::o;20915:539::-;21078:5;;:27;;;-1:-1:-1;;;21078:27:0;;21094:10;21078:27;;;;;;21063:12;;-1:-1:-1;;;;;21078:5:0;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21078:27:0;;-1:-1:-1;21119:11:0;21112:19;;;;21156:9;;21145:7;:20;;21138:28;;;;21212:10;21175:25;21203:20;;;:8;:20;;;;;21236:24;;;;21232:94;;21303:15;21276:24;;;:42;21232:94;21336:25;;21332:117;;21405:15;21377:43;;21429:10;:12;;;;;;21332:117;20915:539;;:::o;17309:22::-;;;;:::o;30353:117::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30428:17:::1;:36:::0;;;::::1;;-1:-1:-1::0;;;30428:36:0::1;-1:-1:-1::0;;;;30428:36:0;;::::1;::::0;;;::::1;::::0;;30353:117::o;16934:34::-;;;;;;:::o;40605:153::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;40692:15:::1;:32:::0;;-1:-1:-1;;;;;40692:32:0;;::::1;-1:-1:-1::0;;;;;;40692:32:0;;::::1;::::0;;;::::1;::::0;;40731:14:::1;:21:::0;;-1:-1:-1;;;;40731:21:0::1;-1:-1:-1::0;;;40731:21:0::1;::::0;;40605:153::o;40277:158::-;40373:17;;-1:-1:-1;;;;;40373:17:0;40359:10;:31;40351:40;;;;;;40400:5;;:27;;;-1:-1:-1;;;40400:27:0;;-1:-1:-1;;;;;40400:27:0;;;;;;;;;;;;;;;:5;;;;;:10;;:27;;;;;:5;;:27;;;;;;;:5;;:27;;;;;;;;;;15306:32;;;-1:-1:-1;;;;;15306:32:0;;:::o;15375:31::-;;;-1:-1:-1;;;;;15375:31:0;;:::o;31680:166::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;31771:26:0;::::1;31763:35;;;::::0;::::1;;31805:20;:35:::0;;-1:-1:-1;;;;;;31805:35:0::1;-1:-1:-1::0;;;;;31805:35:0;;;::::1;::::0;;;::::1;::::0;;31680:166::o;12490:233::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;-1:-1:-1;;;;;12574:22:0;::::1;12567:76;;;;12676:6;::::0;;12655:38:::1;::::0;-1:-1:-1;;;;;12655:38:0;;::::1;::::0;12676:6;::::1;::::0;12655:38:::1;::::0;::::1;12700:6;:17:::0;;-1:-1:-1;;;;;;12700:17:0::1;-1:-1:-1::0;;;;;12700:17:0;;;::::1;::::0;;;::::1;::::0;;12490:233::o;15120:21::-;;;-1:-1:-1;;;;;15120:21:0;;:::o;30124:118::-;11805:12;:10;:12::i;:::-;11795:6;;-1:-1:-1;;;;;11795:6:0;;;:22;;;11788:70;;;;30203:19:::1;:33:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;30203:33:0;;::::1;::::0;;;::::1;::::0;;30124:118::o;5703:100::-;5787:10;5703:100;:::o;7411:130::-;7469:7;7492:43;7496:1;7499;7492:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7485:50;;7411:130;;;;;:::o;9106:126::-;9164:7;9187:39;9191:1;9194;9187:39;;;;;;;;;;;;;;;;;:3;:39::i;8228:434::-;8286:7;8515:6;8511:37;;-1:-1:-1;8539:1:0;8532:8;;8511:37;8568:5;;;8572:1;8568;:5;:1;8587:5;;;;;:10;8580:59;;;39285:443;39423:16;;39331:7;;-1:-1:-1;;;39423:16:0;;;;39420:77;;;39457:19;;;;;;;;;-1:-1:-1;;;;;39457:19:0;-1:-1:-1;;;;;39457:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39457:32:0;;-1:-1:-1;39450:39:0;;39420:77;39597:21;;39503:9;;-1:-1:-1;;;39597:21:0;;;;39564:12;-1:-1:-1;;39564:14:0;39554:25;39581:12;:10;:12::i;:::-;39537:57;;;;;;;;;;;-1:-1:-1;;;;;39537:57:0;;;;;;;;;;;;;;;;;;;;;;;39527:68;;;;;;39519:77;;:99;;;;;;39515:1;:103;39503:115;;39635:21;;39628:4;:28;39625:80;;;-1:-1:-1;39676:21:0;;39625:80;39718:4;-1:-1:-1;39285:443:0;:::o;7816:181::-;7902:7;7930:1;7925;:6;;7918:32;;;;-1:-1:-1;;7969:5:0;;;7816:181::o;6986:170::-;7044:7;7072:5;;;7091:6;;;;7084:49;;;33395:177;33451:6;;;-1:-1:-1;;33495:1:0;33492;33484:24;33474:34;;33523:1;33519;:5;33515:9;;33540:1;33535:2;:6;33531:10;;33557:1;33552:2;:6;33548:18;;;33565:1;33560:6;;;;33548:18;33395:177;;;;;;:::o;24089:1807::-;24241:16;;24221:7;;-1:-1:-1;;;24241:16:0;;;;24237:217;;;24275:19;;:87;;;-1:-1:-1;;;24275:87:0;;;;;;;;;;;;;;-1:-1:-1;;;;;24275:87:0;;;;;;;;;;;;;;;:19;;;;;:38;;:87;;;;;;;;;;;;;;:19;:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24275:87:0;;-1:-1:-1;24268:94:0;;24237:217;24498:26;;24537:7;;24547:1;-1:-1:-1;24533:143:0;;;24588:7;;24559:36;;;;;;;;;24533:143;24701:2;24688:10;:15;24684:299;;;24818:2;24805:15;;24684:299;;;24838:15;24834:149;;24974:1;24961:14;;24834:149;24991:14;25008:47;25015:11;25028;:17;;;25047:7;25008:6;:47::i;:::-;25111:18;;24991:64;;-1:-1:-1;25084:10:0;;25097:33;;24991:64;;25097:13;:33::i;:::-;25084:46;;25188:2;25180:5;:10;25176:271;;;25270:33;:25;25300:2;25270:29;:33::i;:::-;25242:61;;25176:271;;;25329:2;25321:5;:10;25317:130;;;25413:26;;25385:54;;25317:130;25455:14;25472:104;25479:7;25512:10;25488:11;:21;;;:34;25550:25;25524:11;:23;;;:51;25472:6;:104::i;:::-;25455:121;;25659:15;25677:22;25684:7;25693:1;25696:2;25677:6;:22::i;:::-;25659:40;;25724:10;25712:9;:22;25708:158;;;25848:10;25836:22;;25708:158;-1:-1:-1;25881:9:0;24089:1807;-1:-1:-1;;;;;;;;24089:1807:0:o;9696:263::-;9782:7;9809:1;9805;:5;9798:31;;;;9836:9;9852:1;9848;:5;;;;;;;9696:263;-1:-1:-1;;;;;9696:263:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://2a939dd31724ff978a3464b5498379c66a72a23b4a025d3311e3a516886b589a

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.