ETH Price: $2,617.19 (-5.75%)
Gas: 0.92 Gwei

Token

Bellatrix (BELLATRIX)
 

Overview

Max Total Supply

144,896 BELLATRIX

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
939.06 BELLATRIX

Value
$0.00
0x9229e13c66d4a16ba221cd6c9a77f59e896cc621
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bellatrix

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-06
*/

/**

website : www.bellatrix.app
Telegram : https://t.me/bellatrixapp

*/

// SPDX-License-Identifier: MIT  

pragma solidity 0.8.15;

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

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

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

        emit Transfer(sender, recipient, amount);
    }

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner, address _rewardToken) external view returns(uint256);
}

interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner, address _rewardToken) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend(address _rewardToken) external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @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) {
        require(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 () {
        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() {
        require(_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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;


     
}

contract DividendPayingToken is DividendPayingTokenInterface, DividendPayingTokenOptionalInterface, Ownable {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  mapping(address => uint256) internal magnifiedDividendPerShare;
  address[] public rewardTokens;
  address public nextRewardToken;
  uint256 public rewardTokenCounter;
  
  IUniswapV2Router02 public immutable uniswapV2Router;
  
  
  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => mapping(address => int256)) internal magnifiedDividendCorrections;
  mapping(address => mapping(address => uint256)) internal withdrawnDividends;
  
  mapping (address => uint256) public holderBalance;
  uint256 public totalBalance;

  mapping(address => uint256) public totalDividendsDistributed;
  
  constructor(){
      IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // router 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
      uniswapV2Router = _uniswapV2Router; 
      
      // Mainnet

      rewardTokens.push(address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48)); // USDC - 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
      
      nextRewardToken = rewardTokens[0];
  }

  

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
    
  function distributeDividends() public override payable { 
    require(totalBalance > 0);
    uint256 initialBalance = IERC20(nextRewardToken).balanceOf(address(this));
    buyTokens(msg.value, nextRewardToken);
    uint256 newBalance = IERC20(nextRewardToken).balanceOf(address(this)).sub(initialBalance);
    if (newBalance > 0) {
      magnifiedDividendPerShare[nextRewardToken] = magnifiedDividendPerShare[nextRewardToken].add(
        (newBalance).mul(magnitude) / totalBalance
      );
      emit DividendsDistributed(msg.sender, newBalance);

      totalDividendsDistributed[nextRewardToken] = totalDividendsDistributed[nextRewardToken].add(newBalance);
    }
    rewardTokenCounter = rewardTokenCounter == rewardTokens.length - 1 ? 0 : rewardTokenCounter + 1;
    nextRewardToken = rewardTokens[rewardTokenCounter];
  }
  
  // useful for buybacks or to reclaim any BNB on the contract in a way that helps holders.
    function buyTokens(uint256 bnbAmountInWei, address rewardToken) internal {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = rewardToken;

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(this),
            block.timestamp
        );
    }
  
  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend(address _rewardToken) external virtual override {
    _withdrawDividendOfUser(payable(msg.sender), _rewardToken);
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user, address _rewardToken) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user, _rewardToken);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user][_rewardToken] = withdrawnDividends[user][_rewardToken].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      IERC20(_rewardToken).transfer(user, _withdrawableDividend);
      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner, address _rewardToken) external view override returns(uint256) {
    return withdrawableDividendOf(_owner, _rewardToken);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner, address _rewardToken) public view override returns(uint256) {
    return accumulativeDividendOf(_owner,_rewardToken).sub(withdrawnDividends[_owner][_rewardToken]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner, address _rewardToken) external view override returns(uint256) {
    return withdrawnDividends[_owner][_rewardToken];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner, address _rewardToken) public view override returns(uint256) {
    return magnifiedDividendPerShare[_rewardToken].mul(holderBalance[_owner]).toInt256Safe()
      .add(magnifiedDividendCorrections[_rewardToken][_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that increases tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _increase(address account, uint256 value) internal {
    for (uint256 i; i < rewardTokens.length; i++){
        magnifiedDividendCorrections[rewardTokens[i]][account] = magnifiedDividendCorrections[rewardTokens[i]][account]
          .sub((magnifiedDividendPerShare[rewardTokens[i]].mul(value)).toInt256Safe());
    }
  }

  /// @dev Internal function that reduces an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _reduce(address account, uint256 value) internal {
      for (uint256 i; i < rewardTokens.length; i++){
        magnifiedDividendCorrections[rewardTokens[i]][account] = magnifiedDividendCorrections[rewardTokens[i]][account]
          .add( (magnifiedDividendPerShare[rewardTokens[i]].mul(value)).toInt256Safe() );
      }
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = holderBalance[account];
    holderBalance[account] = newBalance;
    if(newBalance > currentBalance) {
      uint256 increaseAmount = newBalance.sub(currentBalance);
      _increase(account, increaseAmount);
      totalBalance += increaseAmount;
    } else if(newBalance < currentBalance) {
      uint256 reduceAmount = currentBalance.sub(newBalance);
      _reduce(account, reduceAmount);
      totalBalance -= reduceAmount;
    }
  }
}

contract DividendTracker is DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;

    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(address key) private view returns (uint) {
        return tokenHoldersMap.values[key];
    }

    function getIndexOfKey(address key) private view returns (int) {
        if(!tokenHoldersMap.inserted[key]) {
            return -1;
        }
        return int(tokenHoldersMap.indexOf[key]);
    }

    function getKeyAtIndex(uint index) private view returns (address) {
        return tokenHoldersMap.keys[index];
    }

    function size() private view returns (uint) {
        return tokenHoldersMap.keys.length;
    }

    function set(address key, uint val) private {
        if (tokenHoldersMap.inserted[key]) {
            tokenHoldersMap.values[key] = val;
        } else {
            tokenHoldersMap.inserted[key] = true;
            tokenHoldersMap.values[key] = val;
            tokenHoldersMap.indexOf[key] = tokenHoldersMap.keys.length;
            tokenHoldersMap.keys.push(key);
        }
    }

    function remove(address key) private {
        if (!tokenHoldersMap.inserted[key]) {
            return;
        }

        delete tokenHoldersMap.inserted[key];
        delete tokenHoldersMap.values[key];

        uint index = tokenHoldersMap.indexOf[key];
        uint lastIndex = tokenHoldersMap.keys.length - 1;
        address lastKey = tokenHoldersMap.keys[lastIndex];

        tokenHoldersMap.indexOf[lastKey] = index;
        delete tokenHoldersMap.indexOf[key];

        tokenHoldersMap.keys[index] = lastKey;
        tokenHoldersMap.keys.pop();
    }

    Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public immutable minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event IncludeInDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() {
    	claimWait = 1200;
        minimumTokenBalanceForDividends = 1000 * (10**18);
    }

    function excludeFromDividends(address account) external onlyOwner {
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	remove(account);

    	emit ExcludeFromDividends(account);
    }
    
    function includeInDividends(address account) external onlyOwner {
    	require(excludedFromDividends[account]);
    	excludedFromDividends[account] = false;

    	emit IncludeInDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 1200 && newClaimWait <= 86400, "Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		remove(account);
    	}

    	processAccount(account, true);
    }
    
    function process(uint256 gas) external returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
    		}
    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount;
        bool paid;
        for (uint256 i; i < rewardTokens.length; i++){
            amount = _withdrawDividendOfUser(account, rewardTokens[i]);
            if(amount > 0) {
        		lastClaimTimes[account] = block.timestamp;
                emit Claim(account, amount, automatic);
                paid = true;
    	    }
        }
        return paid;
    }
}

contract Bellatrix is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    DividendTracker public dividendTracker;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet
    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    uint256 public constant feeDivisor = 1000;

    uint256 public totalSellFees;
    uint256 public rewardsSellFee;
    uint256 public liquiditySellFee;
    
    uint256 public totalBuyFees;
    uint256 public rewardsBuyFee;
    uint256 public liquidityBuyFee;
    
    uint256 public tokensForRewards;
    uint256 public tokensForLiquidity;
    
    uint256 public gasForProcessing = 0;

    uint256 public lpWithdrawRequestTimestamp;
    uint256 public lpWithdrawRequestDuration = 3 days;
    bool public lpWithdrawRequestPending;
    uint256 public lpPercToWithDraw;

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that an automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludedMaxTransactionAmount(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );

    event RequestedLPWithdraw();
    
    event WithdrewLPForMigration();

    event CanceledLpWithdrawRequest();

    constructor() ERC20("Bellatrix", "BELLATRIX") {

        uint256 totalSupply = 144896  * 1e18;
        
        maxTransactionAmount = 1000 * 1e18;
        swapTokensAtAmount = totalSupply * 5 / 10000;
        maxWallet = 1000 * 1e18;

        rewardsBuyFee = 50;
        liquidityBuyFee = 10;
        totalBuyFees = rewardsBuyFee + liquidityBuyFee;
        
        rewardsSellFee = 50;
        liquiditySellFee = 10;
        totalSellFees = rewardsSellFee + liquiditySellFee;

    	dividendTracker = new DividendTracker();

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);//0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    	
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));
        dividendTracker.excludeFromDividends(address(0xdead));
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(dividendTracker), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _createInitialSupply(address(owner()), totalSupply);
    }

    receive() external payable {

  	}

    // excludes wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }

    // removes exclusion on wallets and contracts from dividends (such as CEX hotwallets, etc.)
    function includeInDividends(address account) external onlyOwner {
        dividendTracker.includeInDividends(account);
    }
    
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot re-enable trading");
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
    
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum > (totalSupply() * 1 / 100)/1e18, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }
    
    function updateBuyFees(uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        rewardsBuyFee = _rewardsFee;
        liquidityBuyFee = _liquidityFee;
        totalBuyFees = rewardsBuyFee + liquidityBuyFee;
        require(totalBuyFees <= 100, "Must keep fees at 10% or less");
    }
    
    function updateSellFees(uint256 _rewardsFee, uint256 _liquidityFee) external onlyOwner {
        rewardsSellFee = _rewardsFee;
        liquiditySellFee = _liquidityFee;
        totalSellFees = rewardsSellFee + liquiditySellFee;
        require(totalSellFees <= 100, "Must keep fees at 10% or less");
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
        emit ExcludedMaxTransactionAmount(updAds, isEx);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        excludeFromMaxTransaction(pair, value);
        
        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateGasForProcessing(uint256 newValue) external onlyOwner {
        require(newValue >= 200000 && newValue <= 500000, " gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }

    function getTotalDividendsDistributed(address rewardToken) external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed(rewardToken);
    }

    function isExcludedFromFees(address account) external view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawableDividendOf(address account, address rewardToken) external view returns(uint256) {
    	return dividendTracker.withdrawableDividendOf(account, rewardToken);
  	}

    function withdrawnDividendOf(address account, address rewardToken) external view returns(uint256) {
    	return dividendTracker.withdrawnDividendOf(account, rewardToken);
  	}

	function dividendTokenBalanceOf(address account) external view returns (uint256) {
		return dividendTracker.holderBalance(account);
	}

 /*

	function getAccountDividendsInfoAtIndex(uint256 index, address rewardToken)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	return dividendTracker.getAccountAtIndex(index, rewardToken);
    }

    */

	function processDividendTracker(uint256 gas) external {
		(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
		dividendTracker.processAccount(payable(msg.sender), false);
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }
    
    function getNumberOfDividends() external view returns(uint256) {
        return dividendTracker.totalBalance();
    }
    
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet.");
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Unable to exceed Max Wallet");
                }
            }
        }

		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        
        // no taxes on transfers (non buys/sells)
        if(takeFee){
            if(tradingActiveBlock + 1 >= block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){
                fees = amount.mul(99).div(100);
                tokensForLiquidity += fees * 33 / 99;
                tokensForRewards += fees * 33 / 99;
            }

            // on sell
            else if (automatedMarketMakerPairs[to] && totalSellFees > 0){
                fees = amount.mul(totalSellFees).div(feeDivisor);
                tokensForRewards += fees * rewardsSellFee / totalSellFees;
                tokensForLiquidity += fees * liquiditySellFee / totalSellFees;
            }
            
            // on buy
            else if(automatedMarketMakerPairs[from] && totalBuyFees > 0) {
        	    fees = amount.mul(totalBuyFees).div(feeDivisor);
        	    tokensForRewards += fees * rewardsBuyFee / totalBuyFees;
                tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees;
            }

            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);

        dividendTracker.setBalance(payable(from), balanceOf(from));
        dividendTracker.setBalance(payable(to), balanceOf(to));

        if(!swapping && gasForProcessing > 0) {
	    	uint256 gas = gasForProcessing;

	    	try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
	    		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
	    	}
	    	catch {}
        }
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            block.timestamp
        );

    }
    
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForRewards;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap - (tokensForLiquidity/2));
        
        uint256 ethForLiquidity = ethBalance - ethForRewards;
        
        tokensForLiquidity = 0;
        tokensForRewards = 0;
        
        
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (bool success,) = address(dividendTracker).call{value: ethForRewards}("");
    }

    function withdrawStuckEth() external onlyOwner {
        (bool success,) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "failed to withdraw");
    }

  

    function nextAvailableLpWithdrawDate() public view returns (uint256){
        if(lpWithdrawRequestPending){
            return lpWithdrawRequestTimestamp + lpWithdrawRequestDuration;
        }
        else {
            return 0;  // 0 means no open requests
        }
    }

    function withdrawRequestedLP() external onlyOwner {
        require(block.timestamp >= nextAvailableLpWithdrawDate() && nextAvailableLpWithdrawDate() > 0, "Must request and wait.");
        lpWithdrawRequestTimestamp = 0;
        lpWithdrawRequestPending = false;

        uint256 amtToWithdraw = IERC20(address(uniswapV2Pair)).balanceOf(address(this)) * lpPercToWithDraw / 100;
        
        lpPercToWithDraw = 0;

        IERC20(uniswapV2Pair).transfer(msg.sender, amtToWithdraw);
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"CanceledLpWithdrawRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMaxTransactionAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[],"name":"RequestedLPWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"WithdrewLPForMigration","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"}],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPercToWithDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWithdrawRequestTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAvailableLpWithdrawDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRequestedLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a819055600b819055600c805462ffffff191660011790556015556203f4806017553480156200003657600080fd5b5060405180604001604052806009815260200168084cad8d8c2e8e4d2f60bb1b815250604051806040016040528060098152602001680848a989882a8a492b60bb1b81525081600390816200008c9190620009eb565b5060046200009b8282620009eb565b5050506000620000b06200061860201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350683635c9adc5dea00000600755691eaed3f13417180000006127106200012682600562000acd565b62000132919062000aef565b600855683635c9adc5dea0000060095560326011819055600a60128190556200015b9162000b12565b6010556032600e819055600a600f819055620001779162000b12565b600d55604051620001889062000938565b604051809103906000f080158015620001a5573d6000803e3d6000fd5b50600660006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000226573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024c919062000b2d565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000b2d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200030e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000334919062000b2d565b6001600160a01b03808416608052811660a0529050620003568160016200061c565b60065460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b1580156200039d57600080fd5b505af1158015620003b2573d6000803e3d6000fd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b158015620003fc57600080fd5b505af115801562000411573d6000803e3d6000fd5b50506006546001600160a01b031691506331e79db090506200043b6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200047d57600080fd5b505af115801562000492573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b158015620004de57600080fd5b505af1158015620004f3573d6000803e3d6000fd5b505060065460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200053f57600080fd5b505af115801562000554573d6000803e3d6000fd5b50505050620005746200056c620006f160201b60201c565b600162000700565b6200058130600162000700565b6200059061dead600162000700565b620005af620005a76005546001600160a01b031690565b6001620007af565b620005bc306001620007af565b600654620005d5906001600160a01b03166001620007af565b620005e2826001620007af565b620005f161dead6001620007af565b6200060f620006086005546001600160a01b031690565b8462000853565b50505062000b5f565b3390565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556200064c8282620007af565b8015620006b55760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156200069b57600080fd5b505af1158015620006b0573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b031633146200074f5760405162461bcd60e51b8152602060048201819052602482015260008051602062005fb083398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620007fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062005fb0833981519152604482015260640162000746565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101620007a3565b6001600160a01b038216620008ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000746565b8060026000828254620008bf919062000b12565b90915550506001600160a01b03821660009081526020819052604081208054839290620008ee90849062000b12565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b611e62806200414e83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200097157607f821691505b6020821081036200099257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620009e657600081815260208120601f850160051c81016020861015620009c15750805b601f850160051c820191505b81811015620009e257828155600101620009cd565b5050505b505050565b81516001600160401b0381111562000a075762000a0762000946565b62000a1f8162000a1884546200095c565b8462000998565b602080601f83116001811462000a57576000841562000a3e5750858301515b600019600386901b1c1916600185901b178555620009e2565b600085815260208120601f198616915b8281101562000a885788860151825594840194600190910190840162000a67565b508582101562000aa75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000aea5762000aea62000ab7565b500290565b60008262000b0d57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b285762000b2862000ab7565b500190565b60006020828403121562000b4057600080fd5b81516001600160a01b038116811462000b5857600080fd5b9392505050565b60805160a05161359162000bbd60003960008181610668015281816115a30152818161164e01526119d701526000818161051501528181612e6a01528181612f2301528181612f5f01528181612fd9015261303601526135916000f3fe6080604052600436106103fe5760003560e01c8063763cef4911610213578063c024666811610123578063e6f083f4116100ab578063ee44b44e1161007a578063ee44b44e14610b9e578063f2fde38b14610bb4578063f54afa7814610bd4578063f8b45b0514610bea578063fd361d0e14610c0057600080fd5b8063e6f083f414610b33578063e7841ec014610b53578063e98030c714610b68578063ee40166e14610b8857600080fd5b8063ccb61358116100f2578063ccb6135814610a95578063ccd146b214610aab578063d0a3981414610ac1578063dd62ed3e14610ad7578063e2f4560514610b1d57600080fd5b8063c024666814610a1f578063c0f306ef14610a3f578063c18bc19514610a5f578063c8c8ebe414610a7f57600080fd5b80639a36f932116101a6578063a457c2d711610175578063a457c2d71461097a578063a9059cbb1461099a578063b62496f5146109ba578063b9e93700146109ea578063bbc0c74214610a0057600080fd5b80639a36f932146109195780639a7a23d61461092f5780639c1b8af51461094f578063a26579ad1461096557600080fd5b80638a8c523c116101e25780638a8c523c146108b15780638da5cb5b146108c6578063924de9b7146108e457806395d89b411461090457600080fd5b8063763cef4914610851578063783102eb146108665780637fa787ba1461087c578063871c128d1461089157600080fd5b806349bd5a5e1161030e5780636843cd84116102a1578063712c298511610270578063712c2985146107dd578063715018a6146107f257806371778e7d14610807578063751039fc1461081c5780637571336a1461083157600080fd5b80636843cd841461075d5780636ddd17131461077d578063700bb1911461079d57806370a08231146107bd57600080fd5b80634fbee193116102dd5780634fbee193146106cf5780635645cd861461070857806364b0f6531461072857806366ca9b831461073d57600080fd5b806349bd5a5e146106565780634a62bb651461068a5780634af6f7ee146106a45780634e71d92d146106ba57600080fd5b806318160ddd1161039157806323b872dd1161036057806323b872dd146105ba5780632c1f5216146105da578063313ce567146105fa57806331e79db014610616578063395093511461063657600080fd5b806318160ddd1461054f5780631a8145bb14610564578063203e727e1461057a578063204f11a81461059a57600080fd5b8063099d0d30116103cd578063099d0d30146104a75780630f4432e3146104bd57806310d5de53146104d35780631694505e1461050357600080fd5b806302dbd8f81461040a578063058054c91461042c57806306fdde0314610455578063095ea7b31461047757600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042a610425366004613115565b610c1a565b005b34801561043857600080fd5b5061044260165481565b6040519081526020015b60405180910390f35b34801561046157600080fd5b5061046a610cba565b60405161044c9190613137565b34801561048357600080fd5b506104976104923660046131a1565b610d4c565b604051901515815260200161044c565b3480156104b357600080fd5b50610442600f5481565b3480156104c957600080fd5b50610442600a5481565b3480156104df57600080fd5b506104976104ee3660046131cd565b601b6020526000908152604090205460ff1681565b34801561050f57600080fd5b506105377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161044c565b34801561055b57600080fd5b50600254610442565b34801561057057600080fd5b5061044260145481565b34801561058657600080fd5b5061042a6105953660046131ea565b610d63565b3480156105a657600080fd5b506104426105b5366004613203565b610e3f565b3480156105c657600080fd5b506104976105d536600461323c565b610ebe565b3480156105e657600080fd5b50600654610537906001600160a01b031681565b34801561060657600080fd5b506040516012815260200161044c565b34801561062257600080fd5b5061042a6106313660046131cd565b610f68565b34801561064257600080fd5b506104976106513660046131a1565b610ff5565b34801561066257600080fd5b506105377f000000000000000000000000000000000000000000000000000000000000000081565b34801561069657600080fd5b50600c546104979060ff1681565b3480156106b057600080fd5b5061044260115481565b3480156106c657600080fd5b5061042a611031565b3480156106db57600080fd5b506104976106ea3660046131cd565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561071457600080fd5b506104426107233660046131cd565b6110a9565b34801561073457600080fd5b50610442611119565b34801561074957600080fd5b5061042a610758366004613115565b61118c565b34801561076957600080fd5b506104426107783660046131cd565b61121f565b34801561078957600080fd5b50600c546104979062010000900460ff1681565b3480156107a957600080fd5b5061042a6107b83660046131ea565b611252565b3480156107c957600080fd5b506104426107d83660046131cd565b611325565b3480156107e957600080fd5b50610442611340565b3480156107fe57600080fd5b5061042a611364565b34801561081357600080fd5b506104426113d8565b34801561082857600080fd5b50610497611422565b34801561083d57600080fd5b5061042a61084c36600461328b565b61145f565b34801561085d57600080fd5b5061042a6114e9565b34801561087257600080fd5b5061044260195481565b34801561088857600080fd5b5061042a6116c3565b34801561089d57600080fd5b5061042a6108ac3660046131ea565b61177a565b3480156108bd57600080fd5b5061042a6118bd565b3480156108d257600080fd5b506005546001600160a01b0316610537565b3480156108f057600080fd5b5061042a6108ff3660046132b9565b611956565b34801561091057600080fd5b5061046a61199c565b34801561092557600080fd5b506104426103e881565b34801561093b57600080fd5b5061042a61094a36600461328b565b6119ab565b34801561095b57600080fd5b5061044260155481565b34801561097157600080fd5b50610442611a94565b34801561098657600080fd5b506104976109953660046131a1565b611ade565b3480156109a657600080fd5b506104976109b53660046131a1565b611b77565b3480156109c657600080fd5b506104976109d53660046131cd565b601c6020526000908152604090205460ff1681565b3480156109f657600080fd5b5061044260105481565b348015610a0c57600080fd5b50600c5461049790610100900460ff1681565b348015610a2b57600080fd5b5061042a610a3a36600461328b565b611b84565b348015610a4b57600080fd5b5061042a610a5a3660046131cd565b611c06565b348015610a6b57600080fd5b5061042a610a7a3660046131ea565b611c62565b348015610a8b57600080fd5b5061044260075481565b348015610aa157600080fd5b5061044260125481565b348015610ab757600080fd5b50610442600e5481565b348015610acd57600080fd5b50610442600d5481565b348015610ae357600080fd5b50610442610af2366004613203565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b2957600080fd5b5061044260085481565b348015610b3f57600080fd5b50610442610b4e366004613203565b611d30565b348015610b5f57600080fd5b50610442611d6b565b348015610b7457600080fd5b5061042a610b833660046131ea565b611db5565b348015610b9457600080fd5b50610442600b5481565b348015610baa57600080fd5b5061044260175481565b348015610bc057600080fd5b5061042a610bcf3660046131cd565b611e10565b348015610be057600080fd5b5061044260135481565b348015610bf657600080fd5b5061044260095481565b348015610c0c57600080fd5b506018546104979060ff1681565b6005546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610c44906132d6565b60405180910390fd5b600e829055600f819055610c618183613321565b600d81905560641015610cb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c44565b5050565b606060038054610cc990613339565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590613339565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b5050505050905090565b6000610d59338484611efb565b5060015b92915050565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b8152600401610c44906132d6565b670de0b6b3a76400006103e8610da260025490565b610dad906001613373565b610db79190613392565b610dc19190613392565b8111610e275760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c44565b610e3981670de0b6b3a7640000613373565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a8906044015b602060405180830381865afa158015610e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb791906133b4565b9392505050565b6000610ecb84848461201f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f505760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c44565b610f5d8533858403611efb565b506001949350505050565b6005546001600160a01b03163314610f925760405162461bcd60e51b8152600401610c44906132d6565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fda57600080fd5b505af1158015610fee573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d5991859061102c908690613321565b611efb565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a691906133cd565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d91906133b4565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118791906133b4565b905090565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c44906132d6565b601182905560128190556111ca8183613321565b601081905560641015610cb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c44565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110d8565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c991906133ea565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff161561135e576017546016546111879190613321565b50600090565b6005546001600160a01b0316331461138e5760405162461bcd60e51b8152600401610c44906132d6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b6005546000906001600160a01b0316331461144f5760405162461bcd60e51b8152600401610c44906132d6565b50600c805460ff19169055600190565b6005546001600160a01b031633146114895760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115135760405162461bcd60e51b8152600401610c44906132d6565b61151b611340565b42101580156115315750600061152f611340565b115b6115765760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c44565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156115f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161691906133b4565b6116209190613373565b61162a9190613392565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561169f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb691906133cd565b6005546001600160a01b031633146116ed5760405162461bcd60e51b8152600401610c44906132d6565b604051600090339047908381818185875af1925050503d806000811461172f576040519150601f19603f3d011682016040523d82523d6000602084013e611734565b606091505b50509050806110a65760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c44565b6005546001600160a01b031633146117a45760405162461bcd60e51b8152600401610c44906132d6565b62030d4081101580156117ba57506207a1208111155b6118245760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c44565b601554810361188a5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c44565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610c44906132d6565b600c54610100900460ff161561193f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c44565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119805760405162461bcd60e51b8152600401610c44906132d6565b600c8054911515620100000262ff000019909216919091179055565b606060048054610cc990613339565b6005546001600160a01b031633146119d55760405162461bcd60e51b8152600401610c44906132d6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603611a8a5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c44565b610cb6828261296a565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c44565b611b6d3385858403611efb565b5060019392505050565b6000610d5933848461201f565b6005546001600160a01b03163314611bae5760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114dd565b6005546001600160a01b03163314611c305760405162461bcd60e51b8152600401610c44906132d6565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610fc0565b6005546001600160a01b03163314611c8c5760405162461bcd60e51b8152600401610c44906132d6565b670de0b6b3a76400006064611ca060025490565b611cab906001613373565b611cb59190613392565b611cbf9190613392565b8111611d185760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c44565b611d2a81670de0b6b3a7640000613373565b60095550565b6006546040516339bc20fd60e21b81526001600160a01b0384811660048301528381166024830152600092169063e6f083f490604401610e76565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b6005546001600160a01b03163314611ddf5760405162461bcd60e51b8152600401610c44906132d6565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610fc0565b6005546001600160a01b03163314611e3a5760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b038116611e9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c44565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611f5d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c44565b6001600160a01b038216611fbe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120455760405162461bcd60e51b8152600401610c4490613418565b6001600160a01b03821661206b5760405162461bcd60e51b8152600401610c449061345d565b806000036120845761207f83836000612a3a565b505050565b600c54610100900460ff1661211e576001600160a01b0383166000908152601a602052604090205460ff16806120d257506001600160a01b0382166000908152601a602052604090205460ff165b61211e5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c44565b600c5460ff16156123f5576005546001600160a01b0384811691161480159061215557506005546001600160a01b03838116911614155b801561216957506001600160a01b03821615155b801561218057506001600160a01b03821661dead14155b80156121965750600554600160a01b900460ff16155b156123f5576001600160a01b0383166000908152601c602052604090205460ff1680156121dc57506001600160a01b0382166000908152601b602052604090205460ff16155b156122ba576007548111156122515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c44565b60095461225d83611325565b6122679083613321565b11156122b55760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c44565b6123f5565b6001600160a01b0382166000908152601c602052604090205460ff1680156122fb57506001600160a01b0383166000908152601b602052604090205460ff16155b15612371576007548111156122b55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c44565b6001600160a01b0382166000908152601b602052604090205460ff166123f55760095461239d83611325565b6123a79083613321565b11156123f55760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c44565b600061240030611325565b6008549091508110801590819061241f5750600c5462010000900460ff165b80156124355750600554600160a01b900460ff16155b801561245a57506001600160a01b0385166000908152601c602052604090205460ff16155b801561247f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156124a457506001600160a01b0384166000908152601a602052604090205460ff16155b156124d2576005805460ff60a01b1916600160a01b1790556124c4612b81565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061252057506001600160a01b0385166000908152601a602052604090205460ff165b15612529575060005b6000811561277b5743600b5460016125419190613321565b1015801561258957506001600160a01b0386166000908152601c602052604090205460ff168061258957506001600160a01b0387166000908152601c602052604090205460ff165b15612607576125a4606461259e876063612d0d565b90612d8f565b905060636125b3826021613373565b6125bd9190613392565b601460008282546125ce9190613321565b90915550606390506125e1826021613373565b6125eb9190613392565b601360008282546125fc9190613321565b9091555061275d9050565b6001600160a01b0386166000908152601c602052604090205460ff16801561263157506000600d54115b156126af576126516103e861259e600d5488612d0d90919063ffffffff16565b9050600d54600e54826126649190613373565b61266e9190613392565b6013600082825461267f9190613321565b9091555050600d54600f546126949083613373565b61269e9190613392565b601460008282546125fc9190613321565b6001600160a01b0387166000908152601c602052604090205460ff1680156126d957506000601054115b1561275d576126f96103e861259e60105488612d0d90919063ffffffff16565b90506010546011548261270c9190613373565b6127169190613392565b601360008282546127279190613321565b909155505060105460125461273c9083613373565b6127469190613392565b601460008282546127579190613321565b90915550505b801561276e5761276e873083612a3a565b61277881866134a0565b94505b612786878787612a3a565b6006546001600160a01b031663e30443bc886127a181611325565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127e757600080fd5b505af11580156127fb573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc90508761281c81611325565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561286257600080fd5b505af1158015612876573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561289757506000601554115b15612961576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015612909575060408051601f3d908101601f19168201909252612906918101906133ea565b60015b1561295f5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff1916821515179055612998828261145f565b80156129fe5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156129e557600080fd5b505af11580156129f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612a605760405162461bcd60e51b8152600401610c4490613418565b6001600160a01b038216612a865760405162461bcd60e51b8152600401610c449061345d565b6001600160a01b03831660009081526020819052604090205481811015612afe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c44565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612b35908490613321565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131791815260200190565b6000612b8c30611325565b90506000601354601454612ba09190613321565b9050811580612bad575080155b15612bb6575050565b600060028260145485612bc99190613373565b612bd39190613392565b612bdd9190613392565b90506000612beb8483612dd1565b905047612bf782612e13565b6000612c034783612dd1565b90506000612c316002601454612c199190613392565b612c2390886134a0565b60135461259e908590612d0d565b90506000612c3f82846134a0565b6000601481905560135590508515801590612c5a5750600081115b15612cad57612c698682612fd3565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612cfa576040519150601f19603f3d011682016040523d82523d6000602084013e612cff565b606091505b505050505050505050505050565b600082600003612d1f57506000610d5d565b6000612d2b8385613373565b905082612d388583613392565b14610eb75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c44565b6000610eb783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130ad565b6000610eb783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130e4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e4857612e486134b7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eea91906134cd565b81600181518110612efd57612efd6134b7565b60200260200101906001600160a01b031690816001600160a01b031681525050612f48307f000000000000000000000000000000000000000000000000000000000000000084611efb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612f9d9085906000908690309042906004016134ea565b600060405180830381600087803b158015612fb757600080fd5b505af1158015612fcb573d6000803e3d6000fd5b505050505050565b612ffe307f000000000000000000000000000000000000000000000000000000000000000084611efb565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613088573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fee91906133ea565b600081836130ce5760405162461bcd60e51b8152600401610c449190613137565b5060006130db8486613392565b95945050505050565b600081848411156131085760405162461bcd60e51b8152600401610c449190613137565b5060006130db84866134a0565b6000806040838503121561312857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561316457858101830151858201604001528201613148565b81811115613176576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146110a657600080fd5b600080604083850312156131b457600080fd5b82356131bf8161318c565b946020939093013593505050565b6000602082840312156131df57600080fd5b8135610eb78161318c565b6000602082840312156131fc57600080fd5b5035919050565b6000806040838503121561321657600080fd5b82356132218161318c565b915060208301356132318161318c565b809150509250929050565b60008060006060848603121561325157600080fd5b833561325c8161318c565b9250602084013561326c8161318c565b929592945050506040919091013590565b80151581146110a657600080fd5b6000806040838503121561329e57600080fd5b82356132a98161318c565b915060208301356132318161327d565b6000602082840312156132cb57600080fd5b8135610eb78161327d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156133345761333461330b565b500190565b600181811c9082168061334d57607f821691505b60208210810361336d57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561338d5761338d61330b565b500290565b6000826133af57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156133c657600080fd5b5051919050565b6000602082840312156133df57600080fd5b8151610eb78161327d565b6000806000606084860312156133ff57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156134b2576134b261330b565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156134df57600080fd5b8151610eb78161318c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561353a5784516001600160a01b031683529383019391830191600101613515565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e5581444c59081a0f7fff56765681c62321c8c5fb42a2b3a803a57cbc07af18864736f6c634300080f003360c060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526002805460018101825560008281527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4817905581546100d1576100d1610115565b600091825260209091200154600380546001600160a01b0319166001600160a01b03909216919091179055506104b0601155683635c9adc5dea0000060a05261012b565b634e487b7160e01b600052603260045260246000fd5b60805160a051611cfd610165600039600081816104560152610c2e01526000818161021801528181611023015261110f0152611cfd6000f3fe6080604052600436106101c65760003560e01c80639c53c0ca116100f7578063cc5489df11610095578063e7f4d2c311610064578063e7f4d2c314610553578063e98030c714610573578063f2fde38b14610593578063ffb2c479146105b357600080fd5b8063cc5489df146104b8578063e30443bc146104d8578063e6f083f4146104f8578063e7841ec01461053e57600080fd5b8063bc4c4b37116100d1578063bc4c4b3714610424578063be10b61414610444578063c0f306ef14610478578063cb83bcd61461049857600080fd5b80639c53c0ca146103c1578063ab6ddfa8146103e1578063ad7a672f1461040e57600080fd5b80634d6e5e0211610164578063715018a61161013e578063715018a6146103585780637bb7bed11461036d5780638da5cb5b1461038d57806393fcfe61146103ab57600080fd5b80634d6e5e02146102d55780634e7b827f146103025780636f2789ec1461034257600080fd5b8063204f11a8116101a0578063204f11a814610252578063226cfa3d146102725780633009a6091461029f57806331e79db0146102b557600080fd5b806303c83302146101da57806309bbedde146101e25780631694505e1461020657600080fd5b366101d5576101d36105ee565b005b600080fd5b6101d36105ee565b3480156101ee57600080fd5b50600a545b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061023a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101fd565b34801561025e57600080fd5b506101f361026d36600461195e565b610850565b34801561027e57600080fd5b506101f361028d366004611997565b60106020526000908152604090205481565b3480156102ab57600080fd5b506101f3600e5481565b3480156102c157600080fd5b506101d36102d0366004611997565b61088f565b3480156102e157600080fd5b506101f36102f0366004611997565b60096020526000908152604090205481565b34801561030e57600080fd5b5061033261031d366004611997565b600f6020526000908152604090205460ff1681565b60405190151581526020016101fd565b34801561034e57600080fd5b506101f360115481565b34801561036457600080fd5b506101d3610930565b34801561037957600080fd5b5061023a6103883660046119b4565b6109a4565b34801561039957600080fd5b506000546001600160a01b031661023a565b3480156103b757600080fd5b506101f360045481565b3480156103cd57600080fd5b506101d36103dc366004611997565b6109ce565b3480156103ed57600080fd5b506101f36103fc366004611997565b60076020526000908152604090205481565b34801561041a57600080fd5b506101f360085481565b34801561043057600080fd5b5061033261043f3660046119db565b6109dc565b34801561045057600080fd5b506101f37f000000000000000000000000000000000000000000000000000000000000000081565b34801561048457600080fd5b506101d3610493366004611997565b610aca565b3480156104a457600080fd5b506101f36104b336600461195e565b610b62565b3480156104c457600080fd5b506101f36104d336600461195e565b610b6e565b3480156104e457600080fd5b506101d36104f3366004611a09565b610be2565b34801561050457600080fd5b506101f361051336600461195e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561054a57600080fd5b50600e546101f3565b34801561055f57600080fd5b5060035461023a906001600160a01b031681565b34801561057f57600080fd5b506101d361058e3660046119b4565b610c90565b34801561059f57600080fd5b506101d36105ae366004611997565b610df9565b3480156105bf57600080fd5b506105d36105ce3660046119b4565b610ee3565b604080519384526020840192909252908201526060016101fd565b6000600854116105fd57600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a9190611a35565b6003549091506106849034906001600160a01b0316611000565b6003546040516370a0823160e01b81523060048201526000916106fd9184916001600160a01b0316906370a0823190602401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190611a35565b90611186565b905080156107d9576008546107459061071a83600160801b6111c8565b6107249190611a64565b6003546001600160a01b03166000908152600160205260409020549061124a565b6003546001600160a01b0316600090815260016020908152604091829020929092555182815233917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a26003546001600160a01b03166000908152600960205260409020546107bd908261124a565b6003546001600160a01b03166000908152600960205260409020555b6002546107e890600190611a86565b60045414610803576004546107fe906001611a9d565b610806565b60005b60048190555060026004548154811061082157610821611ab5565b600091825260209091200154600380546001600160a01b0319166001600160a01b039092169190911790555050565b6001600160a01b038083166000908152600660209081526040808320938516835292905290812054610886906106f78585610b6e565b90505b92915050565b6000546001600160a01b031633146108c25760405162461bcd60e51b81526004016108b990611acb565b60405180910390fd5b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556108f09082906112a9565b6108f981611342565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b6000546001600160a01b0316331461095a5760405162461bcd60e51b81526004016108b990611acb565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600281815481106109b457600080fd5b6000918252602090912001546001600160a01b0316905081565b6109d83382611475565b5050565b600080546001600160a01b03163314610a075760405162461bcd60e51b81526004016108b990611acb565b60008060005b600254811015610ac157610a488660028381548110610a2e57610a2e611ab5565b6000918252602090912001546001600160a01b0316611475565b92508215610aaf576001600160a01b038616600081815260106020526040908190204290555186151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610aa29087815260200190565b60405180910390a3600191505b80610ab981611b00565b915050610a0d565b50949350505050565b6000546001600160a01b03163314610af45760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0381166000908152600f602052604090205460ff16610b1957600080fd5b6001600160a01b0381166000818152600f6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b60006108868383610850565b6001600160a01b03808216600081815260056020908152604080832094871683529381528382205460078252848320549383526001909152928120549092600160801b92610bd892610bd39291610bcd91610bc8916111c8565b6115a2565b906115b2565b6115f0565b6108869190611a64565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0382166000908152600f602052604090205460ff166109d8577f00000000000000000000000000000000000000000000000000000000000000008110610c6c57610c5d82826112a9565b610c678282611603565b610c80565b610c778260006112a9565b610c8082611342565b610c8b8260016109dc565b505050565b6000546001600160a01b03163314610cba5760405162461bcd60e51b81526004016108b990611acb565b6104b08110158015610ccf5750620151808111155b610d4f5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e645f547261636b65723a20636c61696d57616974206d75737460448201527f206265207570646174656420746f206265747765656e203120616e6420323420606482015264686f75727360d81b608482015260a4016108b9565b6011548103610dc65760405162461bcd60e51b815260206004820152603760248201527f4469766964656e645f547261636b65723a2043616e6e6f74207570646174652060448201527f636c61696d5761697420746f2073616d652076616c756500000000000000000060648201526084016108b9565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6000546001600160a01b03163314610e235760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460009081908190808203610f05575050600e5460009250829150610ff9565b600e546000805a90506000805b8984108015610f2057508582105b15610fe85784610f2f81611b00565b600a5490965086109050610f4257600094505b6000600a6000018681548110610f5a57610f5a611ab5565b60009182526020808320909101546001600160a01b03168083526010909152604090912054909150610f8b906116c1565b15610fae57610f9b8160016109dc565b15610fae5781610faa81611b00565b9250505b82610fb881611b00565b93505060005a905080851115610fdf57610fdc610fd58683611186565b879061124a565b95505b9350610f129050565b600e85905590975095509193505050505b9193909250565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561107f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a39190611b19565b816000815181106110b6576110b6611ab5565b60200260200101906001600160a01b031690816001600160a01b03168152505081816001815181106110ea576110ea611ab5565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de9590859061114f90600090869030904290600401611b36565b6000604051808303818588803b15801561116857600080fd5b505af115801561117c573d6000803e3d6000fd5b5050505050505050565b600061088683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116e8565b6000826000036111da57506000610889565b60006111e68385611ba0565b9050826111f38583611a64565b146108865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b9565b6000806112578385611a9d565b9050838110156108865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b9565b6001600160a01b0382166000908152600760205260409020805490829055808211156113055760006112db8383611186565b90506112e78482611722565b80600860008282546112f99190611a9d565b90915550610c8b915050565b80821015610c8b5760006113198284611186565b9050611325848261182b565b80600860008282546113379190611a86565b909155505050505050565b6001600160a01b0381166000908152600d602052604090205460ff166113655750565b6001600160a01b0381166000908152600d60209081526040808320805460ff19169055600b8252808320839055600c909152812054600a549091906113ac90600190611a86565b90506000600a60000182815481106113c6576113c6611ab5565b60009182526020808320909101546001600160a01b03908116808452600c90925260408084208790559087168352822091909155600a805491925082918590811061141357611413611ab5565b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600a80548061144d5761144d611bbf565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000806114828484610850565b90508015611598576001600160a01b038085166000908152600660209081526040808320938716835292905220546114ba908261124a565b6001600160a01b038086166000818152600660209081526040808320948916835293905282902092909255517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906115159084815260200190565b60405180910390a260405163a9059cbb60e01b81526001600160a01b0385811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af115801561156c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115909190611bd5565b509050610889565b5060009392505050565b6000818181121561088957600080fd5b6000806115bf8385611bf2565b9050600083121580156115d25750838112155b806115e757506000831280156115e757508381125b61088657600080fd5b6000808212156115ff57600080fd5b5090565b6001600160a01b0382166000908152600d602052604090205460ff1615611641576001600160a01b03919091166000908152600b6020526040902055565b6001600160a01b0382166000818152600d60209081526040808320805460ff19166001908117909155600b8352818420869055600a8054600c909452918420839055820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b03191690911790555050565b6000428211156116d357506000919050565b6011546116e04284611186565b101592915050565b6000818484111561170c5760405162461bcd60e51b81526004016108b99190611c33565b5060006117198486611a86565b95945050505050565b60005b600254811015610c8b576117cd61177b610bc884600160006002878154811061175057611750611ab5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054906111c8565b600560006002858154811061179257611792611ab5565b60009182526020808320909101546001600160a01b039081168452838201949094526040928301822093891682529290925290205490611909565b60056000600284815481106117e4576117e4611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061182381611b00565b915050611725565b60005b600254811015610c8b576118ab611859610bc884600160006002878154811061175057611750611ab5565b600560006002858154811061187057611870611ab5565b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938916825292909252902054906115b2565b60056000600284815481106118c2576118c2611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061190181611b00565b91505061182e565b6000806119168385611c88565b9050600083121580156119295750838113155b806115e757506000831280156115e7575083811361088657600080fd5b6001600160a01b038116811461195b57600080fd5b50565b6000806040838503121561197157600080fd5b823561197c81611946565b9150602083013561198c81611946565b809150509250929050565b6000602082840312156119a957600080fd5b813561088681611946565b6000602082840312156119c657600080fd5b5035919050565b801515811461195b57600080fd5b600080604083850312156119ee57600080fd5b82356119f981611946565b9150602083013561198c816119cd565b60008060408385031215611a1c57600080fd5b8235611a2781611946565b946020939093013593505050565b600060208284031215611a4757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082611a8157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a9857611a98611a4e565b500390565b60008219821115611ab057611ab0611a4e565b500190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060018201611b1257611b12611a4e565b5060010190565b600060208284031215611b2b57600080fd5b815161088681611946565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015611b805784516001600160a01b031683529383019391830191600101611b5b565b50506001600160a01b039690961660408501525050506060015292915050565b6000816000190483118215151615611bba57611bba611a4e565b500290565b634e487b7160e01b600052603160045260246000fd5b600060208284031215611be757600080fd5b8151610886816119cd565b600080821280156001600160ff1b0384900385131615611c1457611c14611a4e565b600160ff1b8390038412811615611c2d57611c2d611a4e565b50500190565b600060208083528351808285015260005b81811015611c6057858101830151858201604001528201611c44565b81811115611c72576000604083870101525b50601f01601f1916929092016040019392505050565b60008083128015600160ff1b850184121615611ca657611ca6611a4e565b6001600160ff1b0384018313811615611cc157611cc1611a4e565b5050039056fea264697066735822122031993e7f407240f8937bd4d4c4314ce9011ac4d70d1bc3bdecbb11c4a86d91dc64736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103fe5760003560e01c8063763cef4911610213578063c024666811610123578063e6f083f4116100ab578063ee44b44e1161007a578063ee44b44e14610b9e578063f2fde38b14610bb4578063f54afa7814610bd4578063f8b45b0514610bea578063fd361d0e14610c0057600080fd5b8063e6f083f414610b33578063e7841ec014610b53578063e98030c714610b68578063ee40166e14610b8857600080fd5b8063ccb61358116100f2578063ccb6135814610a95578063ccd146b214610aab578063d0a3981414610ac1578063dd62ed3e14610ad7578063e2f4560514610b1d57600080fd5b8063c024666814610a1f578063c0f306ef14610a3f578063c18bc19514610a5f578063c8c8ebe414610a7f57600080fd5b80639a36f932116101a6578063a457c2d711610175578063a457c2d71461097a578063a9059cbb1461099a578063b62496f5146109ba578063b9e93700146109ea578063bbc0c74214610a0057600080fd5b80639a36f932146109195780639a7a23d61461092f5780639c1b8af51461094f578063a26579ad1461096557600080fd5b80638a8c523c116101e25780638a8c523c146108b15780638da5cb5b146108c6578063924de9b7146108e457806395d89b411461090457600080fd5b8063763cef4914610851578063783102eb146108665780637fa787ba1461087c578063871c128d1461089157600080fd5b806349bd5a5e1161030e5780636843cd84116102a1578063712c298511610270578063712c2985146107dd578063715018a6146107f257806371778e7d14610807578063751039fc1461081c5780637571336a1461083157600080fd5b80636843cd841461075d5780636ddd17131461077d578063700bb1911461079d57806370a08231146107bd57600080fd5b80634fbee193116102dd5780634fbee193146106cf5780635645cd861461070857806364b0f6531461072857806366ca9b831461073d57600080fd5b806349bd5a5e146106565780634a62bb651461068a5780634af6f7ee146106a45780634e71d92d146106ba57600080fd5b806318160ddd1161039157806323b872dd1161036057806323b872dd146105ba5780632c1f5216146105da578063313ce567146105fa57806331e79db014610616578063395093511461063657600080fd5b806318160ddd1461054f5780631a8145bb14610564578063203e727e1461057a578063204f11a81461059a57600080fd5b8063099d0d30116103cd578063099d0d30146104a75780630f4432e3146104bd57806310d5de53146104d35780631694505e1461050357600080fd5b806302dbd8f81461040a578063058054c91461042c57806306fdde0314610455578063095ea7b31461047757600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042a610425366004613115565b610c1a565b005b34801561043857600080fd5b5061044260165481565b6040519081526020015b60405180910390f35b34801561046157600080fd5b5061046a610cba565b60405161044c9190613137565b34801561048357600080fd5b506104976104923660046131a1565b610d4c565b604051901515815260200161044c565b3480156104b357600080fd5b50610442600f5481565b3480156104c957600080fd5b50610442600a5481565b3480156104df57600080fd5b506104976104ee3660046131cd565b601b6020526000908152604090205460ff1681565b34801561050f57600080fd5b506105377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161044c565b34801561055b57600080fd5b50600254610442565b34801561057057600080fd5b5061044260145481565b34801561058657600080fd5b5061042a6105953660046131ea565b610d63565b3480156105a657600080fd5b506104426105b5366004613203565b610e3f565b3480156105c657600080fd5b506104976105d536600461323c565b610ebe565b3480156105e657600080fd5b50600654610537906001600160a01b031681565b34801561060657600080fd5b506040516012815260200161044c565b34801561062257600080fd5b5061042a6106313660046131cd565b610f68565b34801561064257600080fd5b506104976106513660046131a1565b610ff5565b34801561066257600080fd5b506105377f0000000000000000000000002309ec50f45c5c5cadc84a29913647ac0424144b81565b34801561069657600080fd5b50600c546104979060ff1681565b3480156106b057600080fd5b5061044260115481565b3480156106c657600080fd5b5061042a611031565b3480156106db57600080fd5b506104976106ea3660046131cd565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561071457600080fd5b506104426107233660046131cd565b6110a9565b34801561073457600080fd5b50610442611119565b34801561074957600080fd5b5061042a610758366004613115565b61118c565b34801561076957600080fd5b506104426107783660046131cd565b61121f565b34801561078957600080fd5b50600c546104979062010000900460ff1681565b3480156107a957600080fd5b5061042a6107b83660046131ea565b611252565b3480156107c957600080fd5b506104426107d83660046131cd565b611325565b3480156107e957600080fd5b50610442611340565b3480156107fe57600080fd5b5061042a611364565b34801561081357600080fd5b506104426113d8565b34801561082857600080fd5b50610497611422565b34801561083d57600080fd5b5061042a61084c36600461328b565b61145f565b34801561085d57600080fd5b5061042a6114e9565b34801561087257600080fd5b5061044260195481565b34801561088857600080fd5b5061042a6116c3565b34801561089d57600080fd5b5061042a6108ac3660046131ea565b61177a565b3480156108bd57600080fd5b5061042a6118bd565b3480156108d257600080fd5b506005546001600160a01b0316610537565b3480156108f057600080fd5b5061042a6108ff3660046132b9565b611956565b34801561091057600080fd5b5061046a61199c565b34801561092557600080fd5b506104426103e881565b34801561093b57600080fd5b5061042a61094a36600461328b565b6119ab565b34801561095b57600080fd5b5061044260155481565b34801561097157600080fd5b50610442611a94565b34801561098657600080fd5b506104976109953660046131a1565b611ade565b3480156109a657600080fd5b506104976109b53660046131a1565b611b77565b3480156109c657600080fd5b506104976109d53660046131cd565b601c6020526000908152604090205460ff1681565b3480156109f657600080fd5b5061044260105481565b348015610a0c57600080fd5b50600c5461049790610100900460ff1681565b348015610a2b57600080fd5b5061042a610a3a36600461328b565b611b84565b348015610a4b57600080fd5b5061042a610a5a3660046131cd565b611c06565b348015610a6b57600080fd5b5061042a610a7a3660046131ea565b611c62565b348015610a8b57600080fd5b5061044260075481565b348015610aa157600080fd5b5061044260125481565b348015610ab757600080fd5b50610442600e5481565b348015610acd57600080fd5b50610442600d5481565b348015610ae357600080fd5b50610442610af2366004613203565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b2957600080fd5b5061044260085481565b348015610b3f57600080fd5b50610442610b4e366004613203565b611d30565b348015610b5f57600080fd5b50610442611d6b565b348015610b7457600080fd5b5061042a610b833660046131ea565b611db5565b348015610b9457600080fd5b50610442600b5481565b348015610baa57600080fd5b5061044260175481565b348015610bc057600080fd5b5061042a610bcf3660046131cd565b611e10565b348015610be057600080fd5b5061044260135481565b348015610bf657600080fd5b5061044260095481565b348015610c0c57600080fd5b506018546104979060ff1681565b6005546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610c44906132d6565b60405180910390fd5b600e829055600f819055610c618183613321565b600d81905560641015610cb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c44565b5050565b606060038054610cc990613339565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf590613339565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b5050505050905090565b6000610d59338484611efb565b5060015b92915050565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b8152600401610c44906132d6565b670de0b6b3a76400006103e8610da260025490565b610dad906001613373565b610db79190613392565b610dc19190613392565b8111610e275760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c44565b610e3981670de0b6b3a7640000613373565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a8906044015b602060405180830381865afa158015610e93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb791906133b4565b9392505050565b6000610ecb84848461201f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f505760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c44565b610f5d8533858403611efb565b506001949350505050565b6005546001600160a01b03163314610f925760405162461bcd60e51b8152600401610c44906132d6565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fda57600080fd5b505af1158015610fee573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d5991859061102c908690613321565b611efb565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a691906133cd565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5d91906133b4565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118791906133b4565b905090565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c44906132d6565b601182905560128190556111ca8183613321565b601081905560641015610cb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c44565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110d8565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af11580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c991906133ea565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff161561135e576017546016546111879190613321565b50600090565b6005546001600160a01b0316331461138e5760405162461bcd60e51b8152600401610c44906132d6565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b6005546000906001600160a01b0316331461144f5760405162461bcd60e51b8152600401610c44906132d6565b50600c805460ff19169055600190565b6005546001600160a01b031633146114895760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146115135760405162461bcd60e51b8152600401610c44906132d6565b61151b611340565b42101580156115315750600061152f611340565b115b6115765760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c44565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f0000000000000000000000002309ec50f45c5c5cadc84a29913647ac0424144b6001600160a01b0316906370a0823190602401602060405180830381865afa1580156115f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161691906133b4565b6116209190613373565b61162a9190613392565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f0000000000000000000000002309ec50f45c5c5cadc84a29913647ac0424144b6001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561169f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb691906133cd565b6005546001600160a01b031633146116ed5760405162461bcd60e51b8152600401610c44906132d6565b604051600090339047908381818185875af1925050503d806000811461172f576040519150601f19603f3d011682016040523d82523d6000602084013e611734565b606091505b50509050806110a65760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c44565b6005546001600160a01b031633146117a45760405162461bcd60e51b8152600401610c44906132d6565b62030d4081101580156117ba57506207a1208111155b6118245760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c44565b601554810361188a5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c44565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118e75760405162461bcd60e51b8152600401610c44906132d6565b600c54610100900460ff161561193f5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c44565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119805760405162461bcd60e51b8152600401610c44906132d6565b600c8054911515620100000262ff000019909216919091179055565b606060048054610cc990613339565b6005546001600160a01b031633146119d55760405162461bcd60e51b8152600401610c44906132d6565b7f0000000000000000000000002309ec50f45c5c5cadc84a29913647ac0424144b6001600160a01b0316826001600160a01b031603611a8a5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c44565b610cb6828261296a565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c44565b611b6d3385858403611efb565b5060019392505050565b6000610d5933848461201f565b6005546001600160a01b03163314611bae5760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114dd565b6005546001600160a01b03163314611c305760405162461bcd60e51b8152600401610c44906132d6565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610fc0565b6005546001600160a01b03163314611c8c5760405162461bcd60e51b8152600401610c44906132d6565b670de0b6b3a76400006064611ca060025490565b611cab906001613373565b611cb59190613392565b611cbf9190613392565b8111611d185760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c44565b611d2a81670de0b6b3a7640000613373565b60095550565b6006546040516339bc20fd60e21b81526001600160a01b0384811660048301528381166024830152600092169063e6f083f490604401610e76565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611163573d6000803e3d6000fd5b6005546001600160a01b03163314611ddf5760405162461bcd60e51b8152600401610c44906132d6565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610fc0565b6005546001600160a01b03163314611e3a5760405162461bcd60e51b8152600401610c44906132d6565b6001600160a01b038116611e9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c44565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611f5d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c44565b6001600160a01b038216611fbe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166120455760405162461bcd60e51b8152600401610c4490613418565b6001600160a01b03821661206b5760405162461bcd60e51b8152600401610c449061345d565b806000036120845761207f83836000612a3a565b505050565b600c54610100900460ff1661211e576001600160a01b0383166000908152601a602052604090205460ff16806120d257506001600160a01b0382166000908152601a602052604090205460ff165b61211e5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c44565b600c5460ff16156123f5576005546001600160a01b0384811691161480159061215557506005546001600160a01b03838116911614155b801561216957506001600160a01b03821615155b801561218057506001600160a01b03821661dead14155b80156121965750600554600160a01b900460ff16155b156123f5576001600160a01b0383166000908152601c602052604090205460ff1680156121dc57506001600160a01b0382166000908152601b602052604090205460ff16155b156122ba576007548111156122515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c44565b60095461225d83611325565b6122679083613321565b11156122b55760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c44565b6123f5565b6001600160a01b0382166000908152601c602052604090205460ff1680156122fb57506001600160a01b0383166000908152601b602052604090205460ff16155b15612371576007548111156122b55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c44565b6001600160a01b0382166000908152601b602052604090205460ff166123f55760095461239d83611325565b6123a79083613321565b11156123f55760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c44565b600061240030611325565b6008549091508110801590819061241f5750600c5462010000900460ff165b80156124355750600554600160a01b900460ff16155b801561245a57506001600160a01b0385166000908152601c602052604090205460ff16155b801561247f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156124a457506001600160a01b0384166000908152601a602052604090205460ff16155b156124d2576005805460ff60a01b1916600160a01b1790556124c4612b81565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b90920482161591168061252057506001600160a01b0385166000908152601a602052604090205460ff165b15612529575060005b6000811561277b5743600b5460016125419190613321565b1015801561258957506001600160a01b0386166000908152601c602052604090205460ff168061258957506001600160a01b0387166000908152601c602052604090205460ff165b15612607576125a4606461259e876063612d0d565b90612d8f565b905060636125b3826021613373565b6125bd9190613392565b601460008282546125ce9190613321565b90915550606390506125e1826021613373565b6125eb9190613392565b601360008282546125fc9190613321565b9091555061275d9050565b6001600160a01b0386166000908152601c602052604090205460ff16801561263157506000600d54115b156126af576126516103e861259e600d5488612d0d90919063ffffffff16565b9050600d54600e54826126649190613373565b61266e9190613392565b6013600082825461267f9190613321565b9091555050600d54600f546126949083613373565b61269e9190613392565b601460008282546125fc9190613321565b6001600160a01b0387166000908152601c602052604090205460ff1680156126d957506000601054115b1561275d576126f96103e861259e60105488612d0d90919063ffffffff16565b90506010546011548261270c9190613373565b6127169190613392565b601360008282546127279190613321565b909155505060105460125461273c9083613373565b6127469190613392565b601460008282546127579190613321565b90915550505b801561276e5761276e873083612a3a565b61277881866134a0565b94505b612786878787612a3a565b6006546001600160a01b031663e30443bc886127a181611325565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127e757600080fd5b505af11580156127fb573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc90508761281c81611325565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561286257600080fd5b505af1158015612876573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561289757506000601554115b15612961576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af1925050508015612909575060408051601f3d908101601f19168201909252612906918101906133ea565b60015b1561295f5760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff1916821515179055612998828261145f565b80156129fe5760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b1580156129e557600080fd5b505af11580156129f9573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b038316612a605760405162461bcd60e51b8152600401610c4490613418565b6001600160a01b038216612a865760405162461bcd60e51b8152600401610c449061345d565b6001600160a01b03831660009081526020819052604090205481811015612afe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c44565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612b35908490613321565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131791815260200190565b6000612b8c30611325565b90506000601354601454612ba09190613321565b9050811580612bad575080155b15612bb6575050565b600060028260145485612bc99190613373565b612bd39190613392565b612bdd9190613392565b90506000612beb8483612dd1565b905047612bf782612e13565b6000612c034783612dd1565b90506000612c316002601454612c199190613392565b612c2390886134a0565b60135461259e908590612d0d565b90506000612c3f82846134a0565b6000601481905560135590508515801590612c5a5750600081115b15612cad57612c698682612fd3565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612cfa576040519150601f19603f3d011682016040523d82523d6000602084013e612cff565b606091505b505050505050505050505050565b600082600003612d1f57506000610d5d565b6000612d2b8385613373565b905082612d388583613392565b14610eb75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c44565b6000610eb783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130ad565b6000610eb783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130e4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612e4857612e486134b7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ec6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eea91906134cd565b81600181518110612efd57612efd6134b7565b60200260200101906001600160a01b031690816001600160a01b031681525050612f48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612f9d9085906000908690309042906004016134ea565b600060405180830381600087803b158015612fb757600080fd5b505af1158015612fcb573d6000803e3d6000fd5b505050505050565b612ffe307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611efb565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613088573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fee91906133ea565b600081836130ce5760405162461bcd60e51b8152600401610c449190613137565b5060006130db8486613392565b95945050505050565b600081848411156131085760405162461bcd60e51b8152600401610c449190613137565b5060006130db84866134a0565b6000806040838503121561312857600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561316457858101830151858201604001528201613148565b81811115613176576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146110a657600080fd5b600080604083850312156131b457600080fd5b82356131bf8161318c565b946020939093013593505050565b6000602082840312156131df57600080fd5b8135610eb78161318c565b6000602082840312156131fc57600080fd5b5035919050565b6000806040838503121561321657600080fd5b82356132218161318c565b915060208301356132318161318c565b809150509250929050565b60008060006060848603121561325157600080fd5b833561325c8161318c565b9250602084013561326c8161318c565b929592945050506040919091013590565b80151581146110a657600080fd5b6000806040838503121561329e57600080fd5b82356132a98161318c565b915060208301356132318161327d565b6000602082840312156132cb57600080fd5b8135610eb78161327d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156133345761333461330b565b500190565b600181811c9082168061334d57607f821691505b60208210810361336d57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561338d5761338d61330b565b500290565b6000826133af57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156133c657600080fd5b5051919050565b6000602082840312156133df57600080fd5b8151610eb78161327d565b6000806000606084860312156133ff57600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156134b2576134b261330b565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156134df57600080fd5b8151610eb78161318c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561353a5784516001600160a01b031683529383019391830191600101613515565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e5581444c59081a0f7fff56765681c62321c8c5fb42a2b3a803a57cbc07af18864736f6c634300080f0033

Deployed Bytecode Sourcemap

39322:18163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45754:310;;;;;;;;;;-1:-1:-1;45754:310:0;;;;;:::i;:::-;;:::i;:::-;;40403:41;;;;;;;;;;;;;;;;;;;413:25:1;;;401:2;386:18;40403:41:0;;;;;;;;4158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5072:169::-;;;;;;;;;;-1:-1:-1;5072:169:0;;;;;:::i;:::-;;:::i;:::-;;;1672:14:1;;1665:22;1647:41;;1635:2;1620:18;5072:169:0;1507:187:1;40119:31:0;;;;;;;;;;;;;;;;39706:39;;;;;;;;;;;;;;;;40705:64;;;;;;;;;;-1:-1:-1;40705:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39401:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2142:32:1;;;2124:51;;2112:2;2097:18;39401:51:0;1951:230:1;4479:108:0;;;;;;;;;;-1:-1:-1;4567:12:0;;4479:108;;40313:33;;;;;;;;;;;;;;;;44971:233;;;;;;;;;;-1:-1:-1;44971:233:0;;;;;:::i;:::-;;:::i;48051:183::-;;;;;;;;;;-1:-1:-1;48051:183:0;;;;;:::i;:::-;;:::i;5249:492::-;;;;;;;;;;-1:-1:-1;5249:492:0;;;;;:::i;:::-;;:::i;39536:38::-;;;;;;;;;;-1:-1:-1;39536:38:0;;;;-1:-1:-1;;;;;39536:38:0;;;4378:93;;;;;;;;;;-1:-1:-1;4378:93:0;;4461:2;3607:36:1;;3595:2;3580:18;4378:93:0;3465:184:1;44125:130:0;;;;;;;;;;-1:-1:-1;44125:130:0;;;;;:::i;:::-;;:::i;5749:215::-;;;;;;;;;;-1:-1:-1;5749:215:0;;;;;:::i;:::-;;:::i;39459:38::-;;;;;;;;;;;;;;;39874:33;;;;;;;;;;-1:-1:-1;39874:33:0;;;;;;;;40197:28;;;;;;;;;;;;;;;;49213:97;;;;;;;;;;;;;:::i;47916:127::-;;;;;;;;;;-1:-1:-1;47916:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;48007:28:0;47983:4;48007:28;;;:19;:28;;;;;;;;;47916:127;47737:171;;;;;;;;;;-1:-1:-1;47737:171:0;;;;;:::i;:::-;;:::i;49452:141::-;;;;;;;;;;;;;:::i;45439:303::-;;;;;;;;;;-1:-1:-1;45439:303:0;;;;;:::i;:::-;;:::i;48424:136::-;;;;;;;;;;-1:-1:-1;48424:136:0;;;;;:::i;:::-;;:::i;39954:31::-;;;;;;;;;;-1:-1:-1;39954:31:0;;;;;;;;;;;48946:259;;;;;;;;;;-1:-1:-1;48946:259:0;;;;;:::i;:::-;;:::i;4595:127::-;;;;;;;;;;-1:-1:-1;4595:127:0;;;;;:::i;:::-;;:::i;56685:281::-;;;;;;;;;;;;;:::i;16339:148::-;;;;;;;;;;;;;:::i;49605:119::-;;;;;;;;;;;;;:::i;49736:120::-;;;;;;;;;;;;;:::i;46072:202::-;;;;;;;;;;-1:-1:-1;46072:202:0;;;;;:::i;:::-;;:::i;56974:501::-;;;;;;;;;;;;;:::i;40550:31::-;;;;;;;;;;;;;;;;56480:191;;;;;;;;;;;;;:::i;47086:395::-;;;;;;;;;;-1:-1:-1;47086:395:0;;;;;:::i;:::-;;:::i;44544:218::-;;;;;;;;;;;;;:::i;15697:79::-;;;;;;;;;;-1:-1:-1;15762:6:0;;-1:-1:-1;;;;;15762:6:0;15697:79;;44862:101;;;;;;;;;;-1:-1:-1;44862:101:0;;;;;:::i;:::-;;:::i;4266:104::-;;;;;;;;;;;;;:::i;39998:41::-;;;;;;;;;;;;40035:4;39998:41;;46474:258;;;;;;;;;;-1:-1:-1;46474:258:0;;;;;:::i;:::-;;:::i;40359:35::-;;;;;;;;;;;;;;;;47621:108;;;;;;;;;;;;;:::i;5972:413::-;;;;;;;;;;-1:-1:-1;5972:413:0;;;;;:::i;:::-;;:::i;4730:175::-;;;;;;;;;;-1:-1:-1;4730:175:0;;;;;:::i;:::-;;:::i;40928:58::-;;;;;;;;;;-1:-1:-1;40928:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40163:27;;;;;;;;;;;;;;;;39914:33;;;;;;;;;;-1:-1:-1;39914:33:0;;;;;;;;;;;46282:184;;;;;;;;;;-1:-1:-1;46282:184:0;;;;;:::i;:::-;;:::i;44360:126::-;;;;;;;;;;-1:-1:-1;44360:126:0;;;;;:::i;:::-;;:::i;45216:211::-;;;;;;;;;;-1:-1:-1;45216:211:0;;;;;:::i;:::-;;:::i;39587:35::-;;;;;;;;;;;;;;;;40232:30;;;;;;;;;;;;;;;;40083:29;;;;;;;;;;;;;;;;40048:28;;;;;;;;;;;;;;;;4913:151;;;;;;;;;;-1:-1:-1;4913:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;5029:18:0;;;5002:7;5029:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4913:151;39629:33;;;;;;;;;;;;;;;;48242:177;;;;;;;;;;-1:-1:-1;48242:177:0;;;;;:::i;:::-;;:::i;49318:126::-;;;;;;;;;;;;;:::i;47489:124::-;;;;;;;;;;-1:-1:-1;47489:124:0;;;;;:::i;:::-;;:::i;39791:37::-;;;;;;;;;;;;;;;;40451:49;;;;;;;;;;;;;;;;16642:244;;;;;;;;;;-1:-1:-1;16642:244:0;;;;;:::i;:::-;;:::i;40275:31::-;;;;;;;;;;;;;;;;39669:24;;;;;;;;;;;;;;;;40507:36;;;;;;;;;;-1:-1:-1;40507:36:0;;;;;;;;45754:310;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;;;;;;;;;45852:14:::1;:28:::0;;;45891:16:::1;:32:::0;;;45950:33:::1;45910:13:::0;45869:11;45950:33:::1;:::i;:::-;45934:13;:49:::0;;;46019:3:::1;-1:-1:-1::0;46002:20:0::1;45994:62;;;::::0;-1:-1:-1;;;45994:62:0;;5446:2:1;45994:62:0::1;::::0;::::1;5428:21:1::0;5485:2;5465:18;;;5458:30;5524:31;5504:18;;;5497:59;5573:18;;45994:62:0::1;5244:353:1::0;45994:62:0::1;45754:310:::0;;:::o;4158:100::-;4212:13;4245:5;4238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4158:100;:::o;5072:169::-;5155:4;5172:39;259:10;5195:7;5204:6;5172:8;:39::i;:::-;-1:-1:-1;5229:4:0;5072:169;;;;;:::o;44971:233::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;45089:4:::1;45083;45063:13;4567:12:::0;;;4479:108;45063:13:::1;:17;::::0;45079:1:::1;45063:17;:::i;:::-;:24;;;;:::i;:::-;45062:31;;;;:::i;:::-;45053:6;:40;45045:100;;;::::0;-1:-1:-1;;;45045:100:0;;6584:2:1;45045:100:0::1;::::0;::::1;6566:21:1::0;6623:2;6603:18;;;6596:30;6662:34;6642:18;;;6635:62;-1:-1:-1;;;6713:18:1;;;6706:45;6768:19;;45045:100:0::1;6382:411:1::0;45045:100:0::1;45179:17;:6:::0;45189::::1;45179:17;:::i;:::-;45156:20;:40:::0;-1:-1:-1;44971:233:0:o;48051:183::-;48167:15;;:60;;-1:-1:-1;;;48167:60:0;;-1:-1:-1;;;;;7028:15:1;;;48167:60:0;;;7010:34:1;7080:15;;;7060:18;;;7053:43;48143:7:0;;48167:15;;:38;;6945:18:1;;48167:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48160:67;48051:183;-1:-1:-1;;;48051:183:0:o;5249:492::-;5389:4;5406:36;5416:6;5424:9;5435:6;5406:9;:36::i;:::-;-1:-1:-1;;;;;5482:19:0;;5455:24;5482:19;;;:11;:19;;;;;;;;259:10;5482:33;;;;;;;;5534:26;;;;5526:79;;;;-1:-1:-1;;;5526:79:0;;7498:2:1;5526:79:0;;;7480:21:1;7537:2;7517:18;;;7510:30;7576:34;7556:18;;;7549:62;-1:-1:-1;;;7627:18:1;;;7620:38;7675:19;;5526:79:0;7296:404:1;5526:79:0;5641:57;5650:6;259:10;5691:6;5672:16;:25;5641:8;:57::i;:::-;-1:-1:-1;5729:4:0;;5249:492;-1:-1:-1;;;;5249:492:0:o;44125:130::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;44202:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;44202:45:0;;-1:-1:-1;;;;;2142:32:1;;;44202:45:0::1;::::0;::::1;2124:51:1::0;44202:15:0;;::::1;::::0;:36:::1;::::0;2097:18:1;;44202:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44125:130:::0;:::o;5749:215::-;259:10;5837:4;5886:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5886:34:0;;;;;;;;;;5837:4;;5854:80;;5877:7;;5886:47;;5923:10;;5886:47;:::i;:::-;5854:8;:80::i;49213:97::-;49244:15;;:58;;-1:-1:-1;;;49244:58:0;;49283:10;49244:58;;;7889:51:1;49244:15:0;7956:18:1;;;7949:50;-1:-1:-1;;;;;49244:15:0;;;;:30;;7862:18:1;;49244:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49213:97::o;47737:171::-;47846:15;;:54;;-1:-1:-1;;;47846:54:0;;-1:-1:-1;;;;;2142:32:1;;;47846:54:0;;;2124:51:1;47819:7:0;;47846:15;;:41;;2097:18:1;;47846:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49452:141::-;49544:15;;:41;;;-1:-1:-1;;;49544:41:0;;;;49517:7;;-1:-1:-1;;;;;49544:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49537:48;;49452:141;:::o;45439:303::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;45536:13:::1;:27:::0;;;45574:15:::1;:31:::0;;;45631::::1;45592:13:::0;45552:11;45631:31:::1;:::i;:::-;45616:12;:46:::0;;;45697:3:::1;-1:-1:-1::0;45681:19:0::1;45673:61;;;::::0;-1:-1:-1;;;45673:61:0;;5446:2:1;45673:61:0::1;::::0;::::1;5428:21:1::0;5485:2;5465:18;;;5458:30;5524:31;5504:18;;;5497:59;5573:18;;45673:61:0::1;5244:353:1::0;48424:136:0;48517:15;;:38;;-1:-1:-1;;;48517:38:0;;-1:-1:-1;;;;;2142:32:1;;;48517:38:0;;;2124:51:1;48496:7:0;;48517:15;;:29;;2097:18:1;;48517:38:0;1951:230:1;48946:259:0;49072:15;;:28;;-1:-1:-1;;;;;;49072:28:0;;;;;413:25:1;;;49006:18:0;;;;;;-1:-1:-1;;;;;49072:15:0;;:23;;386:18:1;;49072:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49110:87;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;49005:95:0;;-1:-1:-1;49005:95:0;;-1:-1:-1;49005:95:0;-1:-1:-1;49187:9:0;;49175:5;;49110:87;;8789:3:1;8774:19;49110:87:0;;;;;;;;49000:205;;;48946:259;:::o;4595:127::-;-1:-1:-1;;;;;4696:18:0;4669:7;4696:18;;;;;;;;;;;;4595:127::o;56685:281::-;56767:24;;56745:7;;56767:24;;56764:195;;;56843:25;;56814:26;;:54;;;;:::i;56764:195::-;-1:-1:-1;56917:1:0;;56685:281::o;16339:148::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;16430:6:::1;::::0;16409:40:::1;::::0;16446:1:::1;::::0;-1:-1:-1;;;;;16430:6:0::1;::::0;16409:40:::1;::::0;16446:1;;16409:40:::1;16460:6;:19:::0;;-1:-1:-1;;;;;;16460:19:0::1;::::0;;16339:148::o;49605:119::-;49686:15;;:30;;;-1:-1:-1;;;49686:30:0;;;;49659:7;;-1:-1:-1;;;;;49686:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;49736:120;15909:6;;49788:4;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;-1:-1:-1;49804:14:0::1;:22:::0;;-1:-1:-1;;49804:22:0::1;::::0;;;49736:120;:::o;46072:202::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46162:39:0;::::1;;::::0;;;:31:::1;:39;::::0;;;;;;;;:46;;-1:-1:-1;;46162:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46224:42;;1647:41:1;;;46224:42:0::1;::::0;1620:18:1;46224:42:0::1;;;;;;;;46072:202:::0;;:::o;56974:501::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;57062:29:::1;:27;:29::i;:::-;57043:15;:48;;:85;;;;;57127:1;57095:29;:27;:29::i;:::-;:33;57043:85;57035:120;;;::::0;-1:-1:-1;;;57035:120:0;;9169:2:1;57035:120:0::1;::::0;::::1;9151:21:1::0;9208:2;9188:18;;;9181:30;-1:-1:-1;;;9227:18:1;;;9220:52;9289:18;;57035:120:0::1;8967:346:1::0;57035:120:0::1;57195:1;57166:26;:30:::0;;;57207:24:::1;:32:::0;;-1:-1:-1;;57207:32:0::1;::::0;;57334:16:::1;::::0;57276:55:::1;::::0;-1:-1:-1;;;57276:55:0;;57325:4:::1;57276:55;::::0;::::1;2124:51:1::0;57353:3:0::1;::::0;57334:16;57291:13:::1;-1:-1:-1::0;;;;;57276:40:0::1;::::0;::::1;::::0;2097:18:1;;57276:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:74;;;;:::i;:::-;:80;;;;:::i;:::-;57396:1;57377:16;:20:::0;57410:57:::1;::::0;-1:-1:-1;;;57410:57:0;;57441:10:::1;57410:57;::::0;::::1;9492:51:1::0;9559:18;;;9552:34;;;57252:104:0;;-1:-1:-1;57417:13:0::1;-1:-1:-1::0;;;;;57410:30:0::1;::::0;::::1;::::0;9465:18:1;;57410:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56480:191::-:0;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;56556:58:::1;::::0;56539:12:::1;::::0;56564:10:::1;::::0;56588:21:::1;::::0;56539:12;56556:58;56539:12;56556:58;56588:21;56564:10;56556:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56538:76;;;56633:7;56625:38;;;::::0;-1:-1:-1;;;56625:38:0;;10009:2:1;56625:38:0::1;::::0;::::1;9991:21:1::0;10048:2;10028:18;;;10021:30;-1:-1:-1;;;10067:18:1;;;10060:48;10125:18;;56625:38:0::1;9807:342:1::0;47086:395:0;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;47186:6:::1;47174:8;:18;;:40;;;;;47208:6;47196:8;:18;;47174:40;47166:106;;;::::0;-1:-1:-1;;;47166:106:0;;10356:2:1;47166:106:0::1;::::0;::::1;10338:21:1::0;10395:2;10375:18;;;10368:30;10434:34;10414:18;;;10407:62;-1:-1:-1;;;10485:18:1;;;10478:51;10546:19;;47166:106:0::1;10154:417:1::0;47166:106:0::1;47303:16;;47291:8;:28:::0;47283:85:::1;;;::::0;-1:-1:-1;;;47283:85:0;;10778:2:1;47283:85:0::1;::::0;::::1;10760:21:1::0;10817:2;10797:18;;;10790:30;10856:34;10836:18;;;10829:62;-1:-1:-1;;;10907:18:1;;;10900:42;10959:19;;47283:85:0::1;10576:408:1::0;47283:85:0::1;47418:16;::::0;47384:51:::1;::::0;47408:8;;47384:51:::1;::::0;;;::::1;47446:16;:27:::0;47086:395::o;44544:218::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;44608:13:::1;::::0;::::1;::::0;::::1;;;44607:14;44599:51;;;::::0;-1:-1:-1;;;44599:51:0;;11191:2:1;44599:51:0::1;::::0;::::1;11173:21:1::0;11230:2;11210:18;;;11203:30;11269:26;11249:18;;;11242:54;11313:18;;44599:51:0::1;10989:348:1::0;44599:51:0::1;44661:13;:20:::0;;-1:-1:-1;;44692:18:0;;;;;44742:12:::1;44721:18;:33:::0;44544:218::o;44862:101::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;44934:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44934:21:0;;::::1;::::0;;;::::1;::::0;;44862:101::o;4266:104::-;4322:13;4355:7;4348:14;;;;;:::i;46474:258::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;46583:13:::1;-1:-1:-1::0;;;;;46575:21:0::1;:4;-1:-1:-1::0;;;;;46575:21:0::1;::::0;46567:103:::1;;;::::0;-1:-1:-1;;;46567:103:0;;11544:2:1;46567:103:0::1;::::0;::::1;11526:21:1::0;11583:2;11563:18;;;11556:30;11622:34;11602:18;;;11595:62;11693:34;11673:18;;;11666:62;-1:-1:-1;;;11744:19:1;;;11737:36;11790:19;;46567:103:0::1;11342:473:1::0;46567:103:0::1;46683:41;46712:4;46718:5;46683:28;:41::i;47621:108::-:0;47694:15;;:27;;;-1:-1:-1;;;47694:27:0;;;;47667:7;;-1:-1:-1;;;;;47694:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;5972:413;259:10;6065:4;6109:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6109:34:0;;;;;;;;;;6162:35;;;;6154:85;;;;-1:-1:-1;;;6154:85:0;;12022:2:1;6154:85:0;;;12004:21:1;12061:2;12041:18;;;12034:30;12100:34;12080:18;;;12073:62;-1:-1:-1;;;12151:18:1;;;12144:35;12196:19;;6154:85:0;11820:401:1;6154:85:0;6275:67;259:10;6298:7;6326:15;6307:16;:34;6275:8;:67::i;:::-;-1:-1:-1;6373:4:0;;5972:413;-1:-1:-1;;;5972:413:0:o;4730:175::-;4816:4;4833:42;259:10;4857:9;4868:6;4833:9;:42::i;46282:184::-;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46367:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46367:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46424:34;;1647:41:1;;;46424:34:0::1;::::0;1620:18:1;46424:34:0::1;1507:187:1::0;44360:126:0;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;44435:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;44435:43:0;;-1:-1:-1;;;;;2142:32:1;;;44435:43:0::1;::::0;::::1;2124:51:1::0;44435:15:0;;::::1;::::0;:34:::1;::::0;2097:18:1;;44435:43:0::1;1951:230:1::0;45216:211:0;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;45336:4:::1;45331:3;45311:13;4567:12:::0;;;4479:108;45311:13:::1;:17;::::0;45327:1:::1;45311:17;:::i;:::-;:23;;;;:::i;:::-;45310:30;;;;:::i;:::-;45301:6;:39;45293:86;;;::::0;-1:-1:-1;;;45293:86:0;;12428:2:1;45293:86:0::1;::::0;::::1;12410:21:1::0;12467:2;12447:18;;;12440:30;12506:34;12486:18;;;12479:62;-1:-1:-1;;;12557:18:1;;;12550:32;12599:19;;45293:86:0::1;12226:398:1::0;45293:86:0::1;45402:17;:6:::0;45412::::1;45402:17;:::i;:::-;45390:9;:29:::0;-1:-1:-1;45216:211:0:o;48242:177::-;48355:15;;:57;;-1:-1:-1;;;48355:57:0;;-1:-1:-1;;;;;7028:15:1;;;48355:57:0;;;7010:34:1;7080:15;;;7060:18;;;7053:43;48331:7:0;;48355:15;;:35;;6945:18:1;;48355:57:0;6798:304:1;49318:126:0;49397:15;;:39;;;-1:-1:-1;;;49397:39:0;;;;49373:7;;-1:-1:-1;;;;;49397:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;47489:124;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;47563:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;47563:42:0;;::::1;::::0;::::1;413:25:1::0;;;-1:-1:-1;;;;;47563:15:0;;::::1;::::0;:31:::1;::::0;386:18:1;;47563:42:0::1;267:177:1::0;16642:244:0;15909:6;;-1:-1:-1;;;;;15909:6:0;259:10;15909:22;15901:67;;;;-1:-1:-1;;;15901:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16731:22:0;::::1;16723:73;;;::::0;-1:-1:-1;;;16723:73:0;;12831:2:1;16723:73:0::1;::::0;::::1;12813:21:1::0;12870:2;12850:18;;;12843:30;12909:34;12889:18;;;12882:62;-1:-1:-1;;;12960:18:1;;;12953:36;13006:19;;16723:73:0::1;12629:402:1::0;16723:73:0::1;16833:6;::::0;16812:38:::1;::::0;-1:-1:-1;;;;;16812:38:0;;::::1;::::0;16833:6:::1;::::0;16812:38:::1;::::0;16833:6:::1;::::0;16812:38:::1;16861:6;:17:::0;;-1:-1:-1;;;;;;16861:17:0::1;-1:-1:-1::0;;;;;16861:17:0;;;::::1;::::0;;;::::1;::::0;;16642:244::o;7312:380::-;-1:-1:-1;;;;;7448:19:0;;7440:68;;;;-1:-1:-1;;;7440:68:0;;13238:2:1;7440:68:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:34;13411:19;;7440:68:0;13036:400:1;7440:68:0;-1:-1:-1;;;;;7527:21:0;;7519:68;;;;-1:-1:-1;;;7519:68:0;;13643:2:1;7519:68:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:32;13814:19;;7519:68:0;13441:398:1;7519:68:0;-1:-1:-1;;;;;7600:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7652:32;;413:25:1;;;7652:32:0;;386:18:1;7652:32:0;;;;;;;7312:380;;;:::o;49868:4137::-;-1:-1:-1;;;;;50000:18:0;;49992:68;;;;-1:-1:-1;;;49992:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50079:16:0;;50071:64;;;;-1:-1:-1;;;50071:64:0;;;;;;;:::i;:::-;50160:6;50170:1;50160:11;50157:92;;50188:28;50204:4;50210:2;50214:1;50188:15;:28::i;:::-;49868:4137;;;:::o;50157:92::-;50273:13;;;;;;;50269:136;;-1:-1:-1;;;;;50310:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;50339:23:0;;;;;;:19;:23;;;;;;;;50310:52;50302:91;;;;-1:-1:-1;;;50302:91:0;;14856:2:1;50302:91:0;;;14838:21:1;14895:2;14875:18;;;14868:30;14934:28;14914:18;;;14907:56;14980:18;;50302:91:0;14654:350:1;50302:91:0;50428:14;;;;50425:1085;;;15762:6;;-1:-1:-1;;;;;50480:15:0;;;15762:6;;50480:15;;;;:49;;-1:-1:-1;15762:6:0;;-1:-1:-1;;;;;50516:13:0;;;15762:6;;50516:13;;50480:49;:86;;;;-1:-1:-1;;;;;;50550:16:0;;;;50480:86;:128;;;;-1:-1:-1;;;;;;50587:21:0;;50601:6;50587:21;;50480:128;:158;;;;-1:-1:-1;50630:8:0;;-1:-1:-1;;;50630:8:0;;;;50629:9;50480:158;50458:1041;;;-1:-1:-1;;;;;50722:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;50758:35:0;;;;;;:31;:35;;;;;;;;50757:36;50722:71;50718:766;;;50836:20;;50826:6;:30;;50818:96;;;;-1:-1:-1;;;50818:96:0;;15211:2:1;50818:96:0;;;15193:21:1;15250:2;15230:18;;;15223:30;15289:34;15269:18;;;15262:62;-1:-1:-1;;;15340:18:1;;;15333:51;15401:19;;50818:96:0;15009:417:1;50818:96:0;50971:9;;50954:13;50964:2;50954:9;:13::i;:::-;50945:22;;:6;:22;:::i;:::-;:35;;50937:75;;;;-1:-1:-1;;;50937:75:0;;15633:2:1;50937:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;50937:75:0;15431:351:1;50937:75:0;50718:766;;;-1:-1:-1;;;;;51089:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;51123:37:0;;;;;;:31;:37;;;;;;;;51122:38;51089:71;51085:399;;;51203:20;;51193:6;:30;;51185:97;;;;-1:-1:-1;;;51185:97:0;;15989:2:1;51185:97:0;;;15971:21:1;16028:2;16008:18;;;16001:30;16067:34;16047:18;;;16040:62;-1:-1:-1;;;16118:18:1;;;16111:52;16180:19;;51185:97:0;15787:418:1;51085:399:0;-1:-1:-1;;;;;51329:35:0;;;;;;:31;:35;;;;;;;;51325:159;;51423:9;;51406:13;51416:2;51406:9;:13::i;:::-;51397:22;;:6;:22;:::i;:::-;:35;;51389:75;;;;-1:-1:-1;;;51389:75:0;;15633:2:1;51389:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;51389:75:0;15431:351:1;51389:75:0;51516:28;51547:24;51565:4;51547:9;:24::i;:::-;51631:18;;51516:55;;-1:-1:-1;51607:42:0;;;;;;;51680:35;;-1:-1:-1;51704:11:0;;;;;;;51680:35;:61;;;;-1:-1:-1;51733:8:0;;-1:-1:-1;;;51733:8:0;;;;51732:9;51680:61;:110;;;;-1:-1:-1;;;;;;51759:31:0;;;;;;:25;:31;;;;;;;;51758:32;51680:110;:153;;;;-1:-1:-1;;;;;;51808:25:0;;;;;;:19;:25;;;;;;;;51807:26;51680:153;:194;;;;-1:-1:-1;;;;;;51851:23:0;;;;;;:19;:23;;;;;;;;51850:24;51680:194;51662:322;;;51901:8;:15;;-1:-1:-1;;;;51901:15:0;-1:-1:-1;;;51901:15:0;;;51931:10;:8;:10::i;:::-;51956:8;:16;;-1:-1:-1;;;;51956:16:0;;;51662:322;52012:8;;-1:-1:-1;;;;;52121:25:0;;51996:12;52121:25;;;:19;:25;;;;;;52012:8;-1:-1:-1;;;52012:8:0;;;;;52011:9;;52121:25;;:52;;-1:-1:-1;;;;;;52150:23:0;;;;;;:19;:23;;;;;;;;52121:52;52118:99;;;-1:-1:-1;52200:5:0;52118:99;52237:12;52328:7;52325:1147;;;52380:12;52354:18;;52375:1;52354:22;;;;:::i;:::-;:38;;:108;;;;-1:-1:-1;;;;;;52397:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;52430:31:0;;;;;;:25;:31;;;;;;;;52397:64;52351:964;;;52489:23;52508:3;52489:14;:6;52500:2;52489:10;:14::i;:::-;:18;;:23::i;:::-;52482:30;-1:-1:-1;52565:2:0;52553:9;52482:30;52560:2;52553:9;:::i;:::-;:14;;;;:::i;:::-;52531:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;52618:2:0;;-1:-1:-1;52606:9:0;:4;52613:2;52606:9;:::i;:::-;:14;;;;:::i;:::-;52586:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;52351:964:0;;-1:-1:-1;52351:964:0;;-1:-1:-1;;;;;52685:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;52734:1;52718:13;;:17;52685:50;52681:634;;;52762:41;40035:4;52762:25;52773:13;;52762:6;:10;;:25;;;;:::i;:41::-;52755:48;;52866:13;;52849:14;;52842:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;52822:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;52946:13:0;;52927:16;;52920:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;52898:18;;:61;;;;;;;:::i;52681:634::-;-1:-1:-1;;;;;53034:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;53084:1;53069:12;;:16;53034:51;53031:284;;;53110:40;40035:4;53110:24;53121:12;;53110:6;:10;;:24;;;;:::i;:40::-;53103:47;;53209:12;;53193:13;;53186:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;53166:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;53287:12:0;;53269:15;;53262:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;53240:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;53031:284:0;53334:8;;53331:93;;53366:42;53382:4;53396;53403;53366:15;:42::i;:::-;53446:14;53456:4;53446:14;;:::i;:::-;;;52325:1147;53484:33;53500:4;53506:2;53510:6;53484:15;:33::i;:::-;53530:15;;-1:-1:-1;;;;;53530:15:0;:26;53565:4;53572:15;53565:4;53572:9;:15::i;:::-;53530:58;;-1:-1:-1;;;;;;53530:58:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53530:58:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53530:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53599:15:0;;-1:-1:-1;;;;;53599:15:0;;-1:-1:-1;53599:26:0;;-1:-1:-1;53634:2:0;53639:13;53634:2;53639:9;:13::i;:::-;53599:54;;-1:-1:-1;;;;;;53599:54:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53599:54:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53599:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53670:8:0;;-1:-1:-1;;;53670:8:0;;;;53669:9;;-1:-1:-1;;53669:33:0;;;;;53701:1;53682:16;;:20;53669:33;53666:332;;;53727:16;;53758:15;;:28;;-1:-1:-1;;;;;;53758:28:0;;;;;413:25:1;;;-1:-1:-1;;;;;53758:15:0;;;;:23;;386:18:1;;53758:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;53758:28:0;;;;;;;;-1:-1:-1;;53758:28:0;;;;;;;;;;;;:::i;:::-;;;53754:233;;;53875:86;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;53951:9:0;;53940:4;;53875:86;;8789:3:1;8774:19;53875:86:0;;;;;;;53787:184;;;53754:233;53704:294;53666:332;49981:4024;;;;49868:4137;;;:::o;46740:338::-;-1:-1:-1;;;;;46823:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;46823:39:0;;;;;;;46875:38;46823:31;:39;46875:25;:38::i;:::-;46937:5;46934:79;;;46959:15;;:42;;-1:-1:-1;;;46959:42:0;;-1:-1:-1;;;;;2142:32:1;;;46959:42:0;;;2124:51:1;46959:15:0;;;;:36;;2097:18:1;;46959:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46934:79;47030:40;;;;;;-1:-1:-1;;;;;47030:40:0;;;;;;;;46740:338;;:::o;6393:614::-;-1:-1:-1;;;;;6533:20:0;;6525:70;;;;-1:-1:-1;;;6525:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6614:23:0;;6606:71;;;;-1:-1:-1;;;6606:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6714:17:0;;6690:21;6714:17;;;;;;;;;;;6750:23;;;;6742:74;;;;-1:-1:-1;;;6742:74:0;;16837:2:1;6742:74:0;;;16819:21:1;16876:2;16856:18;;;16849:30;16915:34;16895:18;;;16888:62;-1:-1:-1;;;16966:18:1;;;16959:36;17012:19;;6742:74:0;16635:402:1;6742:74:0;-1:-1:-1;;;;;6852:17:0;;;:9;:17;;;;;;;;;;;6872:22;;;6852:42;;6916:20;;;;;;;;:30;;6888:6;;6852:9;6916:30;;6888:6;;6916:30;:::i;:::-;;;;;;;;6981:9;-1:-1:-1;;;;;6964:35:0;6973:6;-1:-1:-1;;;;;6964:35:0;;6992:6;6964:35;;;;413:25:1;;401:2;386:18;;267:177;55165:1307:0;55204:23;55230:24;55248:4;55230:9;:24::i;:::-;55204:50;;55265:25;55314:16;;55293:18;;:37;;;;:::i;:::-;55265:65;-1:-1:-1;55354:20:0;;;:46;;-1:-1:-1;55378:22:0;;55354:46;55351:60;;;55403:7;;55165:1307::o;55351:60::-;55480:23;55565:1;55545:17;55524:18;;55506:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;55480:86;-1:-1:-1;55577:26:0;55606:36;:15;55480:86;55606:19;:36::i;:::-;55577:65;-1:-1:-1;55691:21:0;55725:36;55577:65;55725:16;:36::i;:::-;55783:18;55804:44;:21;55830:17;55804:25;:44::i;:::-;55783:65;;55869:21;55893:80;55970:1;55951:18;;:20;;;;:::i;:::-;55930:42;;:17;:42;:::i;:::-;55908:16;;55893:32;;:10;;:14;:32::i;:80::-;55869:104;-1:-1:-1;55994:23:0;56020:26;55869:104;56020:10;:26;:::i;:::-;56088:1;56067:18;:22;;;56100:16;:20;55994:52;-1:-1:-1;56164:19:0;;;;;:42;;;56205:1;56187:15;:19;56164:42;56161:210;;;56222:46;56235:15;56252;56222:12;:46::i;:::-;56340:18;;56288:71;;;17244:25:1;;;17300:2;17285:18;;17278:34;;;17328:18;;;17321:34;;;;56288:71:0;;;;;;17232:2:1;56288:71:0;;;56161:210;56417:15;;56409:55;;56392:12;;-1:-1:-1;;;;;56417:15:0;;56446:13;;56392:12;56409:55;56392:12;56409:55;56446:13;56417:15;56409:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;55165:1307:0:o;12095:471::-;12153:7;12398:1;12403;12398:6;12394:47;;-1:-1:-1;12428:1:0;12421:8;;12394:47;12453:9;12465:5;12469:1;12465;:5;:::i;:::-;12453:17;-1:-1:-1;12498:1:0;12489:5;12493:1;12453:17;12489:5;:::i;:::-;:10;12481:56;;;;-1:-1:-1;;;12481:56:0;;17568:2:1;12481:56:0;;;17550:21:1;17607:2;17587:18;;;17580:30;17646:34;17626:18;;;17619:62;-1:-1:-1;;;17697:18:1;;;17690:31;17738:19;;12481:56:0;17366:397:1;13042:132:0;13100:7;13127:39;13131:1;13134;13127:39;;;;;;;;;;;;;;;;;:3;:39::i;11205:136::-;11263:7;11290:43;11294:1;11297;11290:43;;;;;;;;;;;;;;;;;:3;:43::i;54017:601::-;54169:16;;;54183:1;54169:16;;;;;;;;54145:21;;54169:16;;;;;;;;;;-1:-1:-1;54169:16:0;54145:40;;54214:4;54196;54201:1;54196:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;54196:23:0;;;-1:-1:-1;;;;;54196:23:0;;;;;54240:15;-1:-1:-1;;;;;54240:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54230:4;54235:1;54230:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;54230:32:0;;;-1:-1:-1;;;;;54230:32:0;;;;;54275:62;54292:4;54307:15;54325:11;54275:8;:62::i;:::-;54376:224;;-1:-1:-1;;;54376:224:0;;-1:-1:-1;;;;;54376:15:0;:66;;;;:224;;54457:11;;54483:1;;54527:4;;54554;;54574:15;;54376:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54072:546;54017:601;:::o;54630:523::-;54778:62;54795:4;54810:15;54828:11;54778:8;:62::i;:::-;54883:260;;-1:-1:-1;;;54883:260:0;;54955:4;54883:260;;;19614:34:1;19664:18;;;19657:34;;;55001:1:0;19707:18:1;;;19700:34;;;19750:18;;;19743:34;55095:6:0;19793:19:1;;;19786:44;55117:15:0;19846:19:1;;;19839:35;54883:15:0;-1:-1:-1;;;;;54883:31:0;;;;54922:9;;19548:19:1;;54883:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;13670:278::-;13756:7;13791:12;13784:5;13776:28;;;;-1:-1:-1;;;13776:28:0;;;;;;;;:::i;:::-;-1:-1:-1;13815:9:0;13827:5;13831:1;13827;:5;:::i;:::-;13815:17;13670:278;-1:-1:-1;;;;;13670:278:0:o;11644:192::-;11730:7;11766:12;11758:6;;;;11750:29;;;;-1:-1:-1;;;11750:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11790:9:0;11802:5;11806:1;11802;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;449:597::-;561:4;590:2;619;608:9;601:21;651:6;645:13;694:6;689:2;678:9;674:18;667:34;719:1;729:140;743:6;740:1;737:13;729:140;;;838:14;;;834:23;;828:30;804:17;;;823:2;800:26;793:66;758:10;;729:140;;;887:6;884:1;881:13;878:91;;;957:1;952:2;943:6;932:9;928:22;924:31;917:42;878:91;-1:-1:-1;1030:2:1;1009:15;-1:-1:-1;;1005:29:1;990:45;;;;1037:2;986:54;;449:597;-1:-1:-1;;;449:597:1:o;1051:131::-;-1:-1:-1;;;;;1126:31:1;;1116:42;;1106:70;;1172:1;1169;1162:12;1187:315;1255:6;1263;1316:2;1304:9;1295:7;1291:23;1287:32;1284:52;;;1332:1;1329;1322:12;1284:52;1371:9;1358:23;1390:31;1415:5;1390:31;:::i;:::-;1440:5;1492:2;1477:18;;;;1464:32;;-1:-1:-1;;;1187:315:1:o;1699:247::-;1758:6;1811:2;1799:9;1790:7;1786:23;1782:32;1779:52;;;1827:1;1824;1817:12;1779:52;1866:9;1853:23;1885:31;1910:5;1885:31;:::i;2186:180::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;-1:-1:-1;2337:23:1;;2186:180;-1:-1:-1;2186:180:1:o;2371:388::-;2439:6;2447;2500:2;2488:9;2479:7;2475:23;2471:32;2468:52;;;2516:1;2513;2506:12;2468:52;2555:9;2542:23;2574:31;2599:5;2574:31;:::i;:::-;2624:5;-1:-1:-1;2681:2:1;2666:18;;2653:32;2694:33;2653:32;2694:33;:::i;:::-;2746:7;2736:17;;;2371:388;;;;;:::o;2764:456::-;2841:6;2849;2857;2910:2;2898:9;2889:7;2885:23;2881:32;2878:52;;;2926:1;2923;2916:12;2878:52;2965:9;2952:23;2984:31;3009:5;2984:31;:::i;:::-;3034:5;-1:-1:-1;3091:2:1;3076:18;;3063:32;3104:33;3063:32;3104:33;:::i;:::-;2764:456;;3156:7;;-1:-1:-1;;;3210:2:1;3195:18;;;;3182:32;;2764:456::o;3862:118::-;3948:5;3941:13;3934:21;3927:5;3924:32;3914:60;;3970:1;3967;3960:12;3985:382;4050:6;4058;4111:2;4099:9;4090:7;4086:23;4082:32;4079:52;;;4127:1;4124;4117:12;4079:52;4166:9;4153:23;4185:31;4210:5;4185:31;:::i;:::-;4235:5;-1:-1:-1;4292:2:1;4277:18;;4264:32;4305:30;4264:32;4305:30;:::i;4372:241::-;4428:6;4481:2;4469:9;4460:7;4456:23;4452:32;4449:52;;;4497:1;4494;4487:12;4449:52;4536:9;4523:23;4555:28;4577:5;4555:28;:::i;4618:356::-;4820:2;4802:21;;;4839:18;;;4832:30;4898:34;4893:2;4878:18;;4871:62;4965:2;4950:18;;4618:356::o;4979:127::-;5040:10;5035:3;5031:20;5028:1;5021:31;5071:4;5068:1;5061:15;5095:4;5092:1;5085:15;5111:128;5151:3;5182:1;5178:6;5175:1;5172:13;5169:39;;;5188:18;;:::i;:::-;-1:-1:-1;5224:9:1;;5111:128::o;5602:380::-;5681:1;5677:12;;;;5724;;;5745:61;;5799:4;5791:6;5787:17;5777:27;;5745:61;5852:2;5844:6;5841:14;5821:18;5818:38;5815:161;;5898:10;5893:3;5889:20;5886:1;5879:31;5933:4;5930:1;5923:15;5961:4;5958:1;5951:15;5815:161;;5602:380;;;:::o;5987:168::-;6027:7;6093:1;6089;6085:6;6081:14;6078:1;6075:21;6070:1;6063:9;6056:17;6052:45;6049:71;;;6100:18;;:::i;:::-;-1:-1:-1;6140:9:1;;5987:168::o;6160:217::-;6200:1;6226;6216:132;;6270:10;6265:3;6261:20;6258:1;6251:31;6305:4;6302:1;6295:15;6333:4;6330:1;6323:15;6216:132;-1:-1:-1;6362:9:1;;6160:217::o;7107:184::-;7177:6;7230:2;7218:9;7209:7;7205:23;7201:32;7198:52;;;7246:1;7243;7236:12;7198:52;-1:-1:-1;7269:16:1;;7107:184;-1:-1:-1;7107:184:1:o;8010:245::-;8077:6;8130:2;8118:9;8109:7;8105:23;8101:32;8098:52;;;8146:1;8143;8136:12;8098:52;8178:9;8172:16;8197:28;8219:5;8197:28;:::i;8260:306::-;8348:6;8356;8364;8417:2;8405:9;8396:7;8392:23;8388:32;8385:52;;;8433:1;8430;8423:12;8385:52;8462:9;8456:16;8446:26;;8512:2;8501:9;8497:18;8491:25;8481:35;;8556:2;8545:9;8541:18;8535:25;8525:35;;8260:306;;;;;:::o;13844:401::-;14046:2;14028:21;;;14085:2;14065:18;;;14058:30;14124:34;14119:2;14104:18;;14097:62;-1:-1:-1;;;14190:2:1;14175:18;;14168:35;14235:3;14220:19;;13844:401::o;14250:399::-;14452:2;14434:21;;;14491:2;14471:18;;;14464:30;14530:34;14525:2;14510:18;;14503:62;-1:-1:-1;;;14596:2:1;14581:18;;14574:33;14639:3;14624:19;;14250:399::o;16210:125::-;16250:4;16278:1;16275;16272:8;16269:34;;;16283:18;;:::i;:::-;-1:-1:-1;16320:9:1;;16210:125::o;17900:127::-;17961:10;17956:3;17952:20;17949:1;17942:31;17992:4;17989:1;17982:15;18016:4;18013:1;18006:15;18032:251;18102:6;18155:2;18143:9;18134:7;18130:23;18126:32;18123:52;;;18171:1;18168;18161:12;18123:52;18203:9;18197:16;18222:31;18247:5;18222:31;:::i;18288:980::-;18550:4;18598:3;18587:9;18583:19;18629:6;18618:9;18611:25;18655:2;18693:6;18688:2;18677:9;18673:18;18666:34;18736:3;18731:2;18720:9;18716:18;18709:31;18760:6;18795;18789:13;18826:6;18818;18811:22;18864:3;18853:9;18849:19;18842:26;;18903:2;18895:6;18891:15;18877:29;;18924:1;18934:195;18948:6;18945:1;18942:13;18934:195;;;19013:13;;-1:-1:-1;;;;;19009:39:1;18997:52;;19104:15;;;;19069:12;;;;19045:1;18963:9;18934:195;;;-1:-1:-1;;;;;;;19185:32:1;;;;19180:2;19165:18;;19158:60;-1:-1:-1;;;19249:3:1;19234:19;19227:35;19146:3;18288:980;-1:-1:-1;;;18288:980:1:o

Swarm Source

ipfs://31993e7f407240f8937bd4d4c4314ce9011ac4d70d1bc3bdecbb11c4a86d91dc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.