ETH Price: $2,356.93 (+0.71%)

Token

Aurum (AURUM)
 

Overview

Max Total Supply

100,000,000,000 AURUM

Holders

86

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.975795227277885295 AURUM

Value
$0.00
0x8da3E12f6CDFd04A419b4a1168eb006d7B7264d9
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:
Aurum

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

// 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 Aurum 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("Aurum", "AURUM") {

        uint256 totalSupply = 100 * 1e9 * 1e18;
        
        maxTransactionAmount = totalSupply * 10 / 1000;
        swapTokensAtAmount = totalSupply * 5 / 10000;
        maxWallet = totalSupply * 10 / 1000;

        rewardsBuyFee = 60;
        liquidityBuyFee = 10;
        totalBuyFees = rewardsBuyFee + liquidityBuyFee;
        
        rewardsSellFee = 60;
        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 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"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a819055600b819055600c805462ffffff191660011790556015556203f4806017553480156200003657600080fd5b5060405180604001604052806005815260200164417572756d60d81b81525060405180604001604052806005815260200164415552554d60d81b815250816003908162000084919062000a0a565b50600462000093828262000a0a565b5050506000620000a86200063760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506c01431e0fae6d7217caa00000006103e86200011482600a62000aec565b62000120919062000b0e565b6007556127106200013382600562000aec565b6200013f919062000b0e565b6008556103e86200015282600a62000aec565b6200015e919062000b0e565b600955603c6011819055600a60128190556200017a9162000b31565b601055603c600e819055600a600f819055620001969162000b31565b600d55604051620001a79062000957565b604051809103906000f080158015620001c4573d6000803e3d6000fd5b50600660006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000245573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026b919062000b4c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002df919062000b4c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000b4c565b6001600160a01b03808416608052811660a0529050620003758160016200063b565b60065460405163031e79db60e41b81526001600160a01b0390911660048201819052906331e79db090602401600060405180830381600087803b158015620003bc57600080fd5b505af1158015620003d1573d6000803e3d6000fd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200041b57600080fd5b505af115801562000430573d6000803e3d6000fd5b50506006546001600160a01b031691506331e79db090506200045a6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b1580156200049c57600080fd5b505af1158015620004b1573d6000803e3d6000fd5b505060065460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db09150602401600060405180830381600087803b158015620004fd57600080fd5b505af115801562000512573d6000803e3d6000fd5b505060065460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db09150602401600060405180830381600087803b1580156200055e57600080fd5b505af115801562000573573d6000803e3d6000fd5b50505050620005936200058b6200071060201b60201c565b60016200071f565b620005a03060016200071f565b620005af61dead60016200071f565b620005ce620005c66005546001600160a01b031690565b6001620007ce565b620005db306001620007ce565b600654620005f4906001600160a01b03166001620007ce565b62000601826001620007ce565b6200061061dead6001620007ce565b6200062e620006276005546001600160a01b031690565b8462000872565b50505062000b7e565b3390565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556200066b8282620007ce565b8015620006d45760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620006ba57600080fd5b505af1158015620006cf573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6005546001600160a01b031633146200076e5760405162461bcd60e51b8152602060048201819052602482015260008051602062005f6883398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b03163314620008195760405162461bcd60e51b8152602060048201819052602482015260008051602062005f68833981519152604482015260640162000765565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d959101620007c2565b6001600160a01b038216620008ca5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000765565b8060026000828254620008de919062000b31565b90915550506001600160a01b038216600090815260208190526040812080548392906200090d90849062000b31565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b611e62806200410683390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200099057607f821691505b602082108103620009b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000a0557600081815260208120601f850160051c81016020861015620009e05750805b601f850160051c820191505b8181101562000a0157828155600101620009ec565b5050505b505050565b81516001600160401b0381111562000a265762000a2662000965565b62000a3e8162000a3784546200097b565b84620009b7565b602080601f83116001811462000a76576000841562000a5d5750858301515b600019600386901b1c1916600185901b17855562000a01565b600085815260208120601f198616915b8281101562000aa75788860151825594840194600190910190840162000a86565b508582101562000ac65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000b095762000b0962000ad6565b500290565b60008262000b2c57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b475762000b4762000ad6565b500190565b60006020828403121562000b5f57600080fd5b81516001600160a01b038116811462000b7757600080fd5b9392505050565b60805160a05161352a62000bdc6000396000818161065d015281816115770152818161162201526119ab01526000818161050a01528181612e0301528181612ebc01528181612ef801528181612f720152612fcf015261352a6000f3fe6080604052600436106103f35760003560e01c8063763cef4911610208578063c024666811610118578063e2f45605116100ab578063ee44b44e1161007a578063ee44b44e14610b73578063f2fde38b14610b89578063f54afa7814610ba9578063f8b45b0514610bbf578063fd361d0e14610bd557600080fd5b8063e2f4560514610b12578063e7841ec014610b28578063e98030c714610b3d578063ee40166e14610b5d57600080fd5b8063ccb61358116100e7578063ccb6135814610a8a578063ccd146b214610aa0578063d0a3981414610ab6578063dd62ed3e14610acc57600080fd5b8063c024666814610a14578063c0f306ef14610a34578063c18bc19514610a54578063c8c8ebe414610a7457600080fd5b80639a36f9321161019b578063a457c2d71161016a578063a457c2d71461096f578063a9059cbb1461098f578063b62496f5146109af578063b9e93700146109df578063bbc0c742146109f557600080fd5b80639a36f9321461090e5780639a7a23d6146109245780639c1b8af514610944578063a26579ad1461095a57600080fd5b80638a8c523c116101d75780638a8c523c146108a65780638da5cb5b146108bb578063924de9b7146108d957806395d89b41146108f957600080fd5b8063763cef4914610846578063783102eb1461085b5780637fa787ba14610871578063871c128d1461088657600080fd5b806349bd5a5e116103035780636843cd8411610296578063712c298511610265578063712c2985146107d2578063715018a6146107e757806371778e7d146107fc578063751039fc146108115780637571336a1461082657600080fd5b80636843cd84146107525780636ddd171314610772578063700bb1911461079257806370a08231146107b257600080fd5b80634fbee193116102d25780634fbee193146106c45780635645cd86146106fd57806364b0f6531461071d57806366ca9b831461073257600080fd5b806349bd5a5e1461064b5780634a62bb651461067f5780634af6f7ee146106995780634e71d92d146106af57600080fd5b806318160ddd1161038657806323b872dd1161035557806323b872dd146105af5780632c1f5216146105cf578063313ce567146105ef57806331e79db01461060b578063395093511461062b57600080fd5b806318160ddd146105445780631a8145bb14610559578063203e727e1461056f578063204f11a81461058f57600080fd5b8063099d0d30116103c2578063099d0d301461049c5780630f4432e3146104b257806310d5de53146104c85780631694505e146104f857600080fd5b806302dbd8f8146103ff578063058054c91461042157806306fdde031461044a578063095ea7b31461046c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a3660046130ae565b610bef565b005b34801561042d57600080fd5b5061043760165481565b6040519081526020015b60405180910390f35b34801561045657600080fd5b5061045f610c8f565b60405161044191906130d0565b34801561047857600080fd5b5061048c61048736600461313a565b610d21565b6040519015158152602001610441565b3480156104a857600080fd5b50610437600f5481565b3480156104be57600080fd5b50610437600a5481565b3480156104d457600080fd5b5061048c6104e3366004613166565b601b6020526000908152604090205460ff1681565b34801561050457600080fd5b5061052c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610441565b34801561055057600080fd5b50600254610437565b34801561056557600080fd5b5061043760145481565b34801561057b57600080fd5b5061041f61058a366004613183565b610d38565b34801561059b57600080fd5b506104376105aa36600461319c565b610e14565b3480156105bb57600080fd5b5061048c6105ca3660046131d5565b610e92565b3480156105db57600080fd5b5060065461052c906001600160a01b031681565b3480156105fb57600080fd5b5060405160128152602001610441565b34801561061757600080fd5b5061041f610626366004613166565b610f3c565b34801561063757600080fd5b5061048c61064636600461313a565b610fc9565b34801561065757600080fd5b5061052c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561068b57600080fd5b50600c5461048c9060ff1681565b3480156106a557600080fd5b5061043760115481565b3480156106bb57600080fd5b5061041f611005565b3480156106d057600080fd5b5061048c6106df366004613166565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561070957600080fd5b50610437610718366004613166565b61107d565b34801561072957600080fd5b506104376110ed565b34801561073e57600080fd5b5061041f61074d3660046130ae565b611160565b34801561075e57600080fd5b5061043761076d366004613166565b6111f3565b34801561077e57600080fd5b50600c5461048c9062010000900460ff1681565b34801561079e57600080fd5b5061041f6107ad366004613183565b611226565b3480156107be57600080fd5b506104376107cd366004613166565b6112f9565b3480156107de57600080fd5b50610437611314565b3480156107f357600080fd5b5061041f611338565b34801561080857600080fd5b506104376113ac565b34801561081d57600080fd5b5061048c6113f6565b34801561083257600080fd5b5061041f610841366004613224565b611433565b34801561085257600080fd5b5061041f6114bd565b34801561086757600080fd5b5061043760195481565b34801561087d57600080fd5b5061041f611697565b34801561089257600080fd5b5061041f6108a1366004613183565b61174e565b3480156108b257600080fd5b5061041f611891565b3480156108c757600080fd5b506005546001600160a01b031661052c565b3480156108e557600080fd5b5061041f6108f4366004613252565b61192a565b34801561090557600080fd5b5061045f611970565b34801561091a57600080fd5b506104376103e881565b34801561093057600080fd5b5061041f61093f366004613224565b61197f565b34801561095057600080fd5b5061043760155481565b34801561096657600080fd5b50610437611a68565b34801561097b57600080fd5b5061048c61098a36600461313a565b611ab2565b34801561099b57600080fd5b5061048c6109aa36600461313a565b611b4b565b3480156109bb57600080fd5b5061048c6109ca366004613166565b601c6020526000908152604090205460ff1681565b3480156109eb57600080fd5b5061043760105481565b348015610a0157600080fd5b50600c5461048c90610100900460ff1681565b348015610a2057600080fd5b5061041f610a2f366004613224565b611b58565b348015610a4057600080fd5b5061041f610a4f366004613166565b611bda565b348015610a6057600080fd5b5061041f610a6f366004613183565b611c36565b348015610a8057600080fd5b5061043760075481565b348015610a9657600080fd5b5061043760125481565b348015610aac57600080fd5b50610437600e5481565b348015610ac257600080fd5b50610437600d5481565b348015610ad857600080fd5b50610437610ae736600461319c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1e57600080fd5b5061043760085481565b348015610b3457600080fd5b50610437611d04565b348015610b4957600080fd5b5061041f610b58366004613183565b611d4e565b348015610b6957600080fd5b50610437600b5481565b348015610b7f57600080fd5b5061043760175481565b348015610b9557600080fd5b5061041f610ba4366004613166565b611da9565b348015610bb557600080fd5b5061043760135481565b348015610bcb57600080fd5b5061043760095481565b348015610be157600080fd5b5060185461048c9060ff1681565b6005546001600160a01b03163314610c225760405162461bcd60e51b8152600401610c199061326f565b60405180910390fd5b600e829055600f819055610c3681836132ba565b600d81905560641015610c8b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b5050565b606060038054610c9e906132d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca906132d2565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b5050505050905090565b6000610d2e338484611e94565b5060015b92915050565b6005546001600160a01b03163314610d625760405162461bcd60e51b8152600401610c199061326f565b670de0b6b3a76400006103e8610d7760025490565b610d8290600161330c565b610d8c919061332b565b610d96919061332b565b8111610dfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c19565b610e0e81670de0b6b3a764000061330c565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b919061334d565b9392505050565b6000610e9f848484611fb8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c19565b610f318533858403611e94565b506001949350505050565b6005546001600160a01b03163314610f665760405162461bcd60e51b8152600401610c199061326f565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fae57600080fd5b505af1158015610fc2573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d2e9185906110009086906132ba565b611e94565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107a9190613366565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d32919061334d565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115b919061334d565b905090565b6005546001600160a01b0316331461118a5760405162461bcd60e51b8152600401610c199061326f565b6011829055601281905561119e81836132ba565b601081905560641015610c8b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110ac565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af1158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d9190613383565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff16156113325760175460165461115b91906132ba565b50600090565b6005546001600160a01b031633146113625760405162461bcd60e51b8152600401610c199061326f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b6005546000906001600160a01b031633146114235760405162461bcd60e51b8152600401610c199061326f565b50600c805460ff19169055600190565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146114e75760405162461bcd60e51b8152600401610c199061326f565b6114ef611314565b421015801561150557506000611503611314565b115b61154a5760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c19565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156115c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ea919061334d565b6115f4919061330c565b6115fe919061332b565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611673573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190613366565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610c199061326f565b604051600090339047908381818185875af1925050503d8060008114611703576040519150601f19603f3d011682016040523d82523d6000602084013e611708565b606091505b505090508061107a5760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c19565b6005546001600160a01b031633146117785760405162461bcd60e51b8152600401610c199061326f565b62030d40811015801561178e57506207a1208111155b6117f85760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c19565b601554810361185e5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c19565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610c199061326f565b600c54610100900460ff16156119135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c19565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119545760405162461bcd60e51b8152600401610c199061326f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610c9e906132d2565b6005546001600160a01b031633146119a95760405162461bcd60e51b8152600401610c199061326f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603611a5e5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c19565b610c8b8282612903565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c19565b611b413385858403611e94565b5060019392505050565b6000610d2e338484611fb8565b6005546001600160a01b03163314611b825760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114b1565b6005546001600160a01b03163314611c045760405162461bcd60e51b8152600401610c199061326f565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610f94565b6005546001600160a01b03163314611c605760405162461bcd60e51b8152600401610c199061326f565b670de0b6b3a76400006064611c7460025490565b611c7f90600161330c565b611c89919061332b565b611c93919061332b565b8111611cec5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c19565b611cfe81670de0b6b3a764000061330c565b60095550565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b6005546001600160a01b03163314611d785760405162461bcd60e51b8152600401610c199061326f565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610f94565b6005546001600160a01b03163314611dd35760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b038116611e385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c19565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c19565b6001600160a01b038216611f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c19565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611fde5760405162461bcd60e51b8152600401610c19906133b1565b6001600160a01b0382166120045760405162461bcd60e51b8152600401610c19906133f6565b8060000361201d57612018838360006129d3565b505050565b600c54610100900460ff166120b7576001600160a01b0383166000908152601a602052604090205460ff168061206b57506001600160a01b0382166000908152601a602052604090205460ff165b6120b75760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c19565b600c5460ff161561238e576005546001600160a01b038481169116148015906120ee57506005546001600160a01b03838116911614155b801561210257506001600160a01b03821615155b801561211957506001600160a01b03821661dead14155b801561212f5750600554600160a01b900460ff16155b1561238e576001600160a01b0383166000908152601c602052604090205460ff16801561217557506001600160a01b0382166000908152601b602052604090205460ff16155b15612253576007548111156121ea5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c19565b6009546121f6836112f9565b61220090836132ba565b111561224e5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b61238e565b6001600160a01b0382166000908152601c602052604090205460ff16801561229457506001600160a01b0383166000908152601b602052604090205460ff16155b1561230a5760075481111561224e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c19565b6001600160a01b0382166000908152601b602052604090205460ff1661238e57600954612336836112f9565b61234090836132ba565b111561238e5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b6000612399306112f9565b600854909150811080159081906123b85750600c5462010000900460ff165b80156123ce5750600554600160a01b900460ff16155b80156123f357506001600160a01b0385166000908152601c602052604090205460ff16155b801561241857506001600160a01b0385166000908152601a602052604090205460ff16155b801561243d57506001600160a01b0384166000908152601a602052604090205460ff16155b1561246b576005805460ff60a01b1916600160a01b17905561245d612b1a565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806124b957506001600160a01b0385166000908152601a602052604090205460ff165b156124c2575060005b600081156127145743600b5460016124da91906132ba565b1015801561252257506001600160a01b0386166000908152601c602052604090205460ff168061252257506001600160a01b0387166000908152601c602052604090205460ff165b156125a05761253d6064612537876063612ca6565b90612d28565b9050606361254c82602161330c565b612556919061332b565b6014600082825461256791906132ba565b909155506063905061257a82602161330c565b612584919061332b565b6013600082825461259591906132ba565b909155506126f69050565b6001600160a01b0386166000908152601c602052604090205460ff1680156125ca57506000600d54115b15612648576125ea6103e8612537600d5488612ca690919063ffffffff16565b9050600d54600e54826125fd919061330c565b612607919061332b565b6013600082825461261891906132ba565b9091555050600d54600f5461262d908361330c565b612637919061332b565b6014600082825461259591906132ba565b6001600160a01b0387166000908152601c602052604090205460ff16801561267257506000601054115b156126f6576126926103e861253760105488612ca690919063ffffffff16565b9050601054601154826126a5919061330c565b6126af919061332b565b601360008282546126c091906132ba565b90915550506010546012546126d5908361330c565b6126df919061332b565b601460008282546126f091906132ba565b90915550505b8015612707576127078730836129d3565b6127118186613439565b94505b61271f8787876129d3565b6006546001600160a01b031663e30443bc8861273a816112f9565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561278057600080fd5b505af1158015612794573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050876127b5816112f9565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127fb57600080fd5b505af115801561280f573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561283057506000601554115b156128fa576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156128a2575060408051601f3d908101601f1916820190925261289f91810190613383565b60015b156128f85760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556129318282611433565b80156129975760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561297e57600080fd5b505af1158015612992573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129f95760405162461bcd60e51b8152600401610c19906133b1565b6001600160a01b038216612a1f5760405162461bcd60e51b8152600401610c19906133f6565b6001600160a01b03831660009081526020819052604090205481811015612a975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c19565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612ace9084906132ba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112eb91815260200190565b6000612b25306112f9565b90506000601354601454612b3991906132ba565b9050811580612b46575080155b15612b4f575050565b600060028260145485612b62919061330c565b612b6c919061332b565b612b76919061332b565b90506000612b848483612d6a565b905047612b9082612dac565b6000612b9c4783612d6a565b90506000612bca6002601454612bb2919061332b565b612bbc9088613439565b601354612537908590612ca6565b90506000612bd88284613439565b6000601481905560135590508515801590612bf35750600081115b15612c4657612c028682612f6c565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b505050505050505050505050565b600082600003612cb857506000610d32565b6000612cc4838561330c565b905082612cd1858361332b565b14610e8b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c19565b6000610e8b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613046565b6000610e8b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061307d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612de157612de1613450565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e839190613466565b81600181518110612e9657612e96613450565b60200260200101906001600160a01b031690816001600160a01b031681525050612ee1307f000000000000000000000000000000000000000000000000000000000000000084611e94565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612f36908590600090869030904290600401613483565b600060405180830381600087803b158015612f5057600080fd5b505af1158015612f64573d6000803e3d6000fd5b505050505050565b612f97307f000000000000000000000000000000000000000000000000000000000000000084611e94565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613021573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fc29190613383565b600081836130675760405162461bcd60e51b8152600401610c1991906130d0565b506000613074848661332b565b95945050505050565b600081848411156130a15760405162461bcd60e51b8152600401610c1991906130d0565b5060006130748486613439565b600080604083850312156130c157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156130fd578581018301518582016040015282016130e1565b8181111561310f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461107a57600080fd5b6000806040838503121561314d57600080fd5b823561315881613125565b946020939093013593505050565b60006020828403121561317857600080fd5b8135610e8b81613125565b60006020828403121561319557600080fd5b5035919050565b600080604083850312156131af57600080fd5b82356131ba81613125565b915060208301356131ca81613125565b809150509250929050565b6000806000606084860312156131ea57600080fd5b83356131f581613125565b9250602084013561320581613125565b929592945050506040919091013590565b801515811461107a57600080fd5b6000806040838503121561323757600080fd5b823561324281613125565b915060208301356131ca81613216565b60006020828403121561326457600080fd5b8135610e8b81613216565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132cd576132cd6132a4565b500190565b600181811c908216806132e657607f821691505b60208210810361330657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615613326576133266132a4565b500290565b60008261334857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561335f57600080fd5b5051919050565b60006020828403121561337857600080fd5b8151610e8b81613216565b60008060006060848603121561339857600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561344b5761344b6132a4565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561347857600080fd5b8151610e8b81613125565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134d35784516001600160a01b0316835293830193918301916001016134ae565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205edb1312a15feabb9466281360d2f4649a01b577c134c08daf36826ceb58dbd264736f6c634300080f003360c060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526002805460018101825560008281527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4817905581546100d1576100d1610115565b600091825260209091200154600380546001600160a01b0319166001600160a01b03909216919091179055506104b0601155683635c9adc5dea0000060a05261012b565b634e487b7160e01b600052603260045260246000fd5b60805160a051611cfd610165600039600081816104560152610c2e01526000818161021801528181611023015261110f0152611cfd6000f3fe6080604052600436106101c65760003560e01c80639c53c0ca116100f7578063cc5489df11610095578063e7f4d2c311610064578063e7f4d2c314610553578063e98030c714610573578063f2fde38b14610593578063ffb2c479146105b357600080fd5b8063cc5489df146104b8578063e30443bc146104d8578063e6f083f4146104f8578063e7841ec01461053e57600080fd5b8063bc4c4b37116100d1578063bc4c4b3714610424578063be10b61414610444578063c0f306ef14610478578063cb83bcd61461049857600080fd5b80639c53c0ca146103c1578063ab6ddfa8146103e1578063ad7a672f1461040e57600080fd5b80634d6e5e0211610164578063715018a61161013e578063715018a6146103585780637bb7bed11461036d5780638da5cb5b1461038d57806393fcfe61146103ab57600080fd5b80634d6e5e02146102d55780634e7b827f146103025780636f2789ec1461034257600080fd5b8063204f11a8116101a0578063204f11a814610252578063226cfa3d146102725780633009a6091461029f57806331e79db0146102b557600080fd5b806303c83302146101da57806309bbedde146101e25780631694505e1461020657600080fd5b366101d5576101d36105ee565b005b600080fd5b6101d36105ee565b3480156101ee57600080fd5b50600a545b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061023a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101fd565b34801561025e57600080fd5b506101f361026d36600461195e565b610850565b34801561027e57600080fd5b506101f361028d366004611997565b60106020526000908152604090205481565b3480156102ab57600080fd5b506101f3600e5481565b3480156102c157600080fd5b506101d36102d0366004611997565b61088f565b3480156102e157600080fd5b506101f36102f0366004611997565b60096020526000908152604090205481565b34801561030e57600080fd5b5061033261031d366004611997565b600f6020526000908152604090205460ff1681565b60405190151581526020016101fd565b34801561034e57600080fd5b506101f360115481565b34801561036457600080fd5b506101d3610930565b34801561037957600080fd5b5061023a6103883660046119b4565b6109a4565b34801561039957600080fd5b506000546001600160a01b031661023a565b3480156103b757600080fd5b506101f360045481565b3480156103cd57600080fd5b506101d36103dc366004611997565b6109ce565b3480156103ed57600080fd5b506101f36103fc366004611997565b60076020526000908152604090205481565b34801561041a57600080fd5b506101f360085481565b34801561043057600080fd5b5061033261043f3660046119db565b6109dc565b34801561045057600080fd5b506101f37f000000000000000000000000000000000000000000000000000000000000000081565b34801561048457600080fd5b506101d3610493366004611997565b610aca565b3480156104a457600080fd5b506101f36104b336600461195e565b610b62565b3480156104c457600080fd5b506101f36104d336600461195e565b610b6e565b3480156104e457600080fd5b506101d36104f3366004611a09565b610be2565b34801561050457600080fd5b506101f361051336600461195e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561054a57600080fd5b50600e546101f3565b34801561055f57600080fd5b5060035461023a906001600160a01b031681565b34801561057f57600080fd5b506101d361058e3660046119b4565b610c90565b34801561059f57600080fd5b506101d36105ae366004611997565b610df9565b3480156105bf57600080fd5b506105d36105ce3660046119b4565b610ee3565b604080519384526020840192909252908201526060016101fd565b6000600854116105fd57600080fd5b6003546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066a9190611a35565b6003549091506106849034906001600160a01b0316611000565b6003546040516370a0823160e01b81523060048201526000916106fd9184916001600160a01b0316906370a0823190602401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190611a35565b90611186565b905080156107d9576008546107459061071a83600160801b6111c8565b6107249190611a64565b6003546001600160a01b03166000908152600160205260409020549061124a565b6003546001600160a01b0316600090815260016020908152604091829020929092555182815233917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a26003546001600160a01b03166000908152600960205260409020546107bd908261124a565b6003546001600160a01b03166000908152600960205260409020555b6002546107e890600190611a86565b60045414610803576004546107fe906001611a9d565b610806565b60005b60048190555060026004548154811061082157610821611ab5565b600091825260209091200154600380546001600160a01b0319166001600160a01b039092169190911790555050565b6001600160a01b038083166000908152600660209081526040808320938516835292905290812054610886906106f78585610b6e565b90505b92915050565b6000546001600160a01b031633146108c25760405162461bcd60e51b81526004016108b990611acb565b60405180910390fd5b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556108f09082906112a9565b6108f981611342565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b2590600090a250565b6000546001600160a01b0316331461095a5760405162461bcd60e51b81526004016108b990611acb565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600281815481106109b457600080fd5b6000918252602090912001546001600160a01b0316905081565b6109d83382611475565b5050565b600080546001600160a01b03163314610a075760405162461bcd60e51b81526004016108b990611acb565b60008060005b600254811015610ac157610a488660028381548110610a2e57610a2e611ab5565b6000918252602090912001546001600160a01b0316611475565b92508215610aaf576001600160a01b038616600081815260106020526040908190204290555186151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610aa29087815260200190565b60405180910390a3600191505b80610ab981611b00565b915050610a0d565b50949350505050565b6000546001600160a01b03163314610af45760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0381166000908152600f602052604090205460ff16610b1957600080fd5b6001600160a01b0381166000818152600f6020526040808220805460ff19169055517f40a78dcf8526b72f2eaf598af1c7e49c8d5fc577f6c8f1bed887f3e4dfa289329190a250565b60006108868383610850565b6001600160a01b03808216600081815260056020908152604080832094871683529381528382205460078252848320549383526001909152928120549092600160801b92610bd892610bd39291610bcd91610bc8916111c8565b6115a2565b906115b2565b6115f0565b6108869190611a64565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b0382166000908152600f602052604090205460ff166109d8577f00000000000000000000000000000000000000000000000000000000000000008110610c6c57610c5d82826112a9565b610c678282611603565b610c80565b610c778260006112a9565b610c8082611342565b610c8b8260016109dc565b505050565b6000546001600160a01b03163314610cba5760405162461bcd60e51b81526004016108b990611acb565b6104b08110158015610ccf5750620151808111155b610d4f5760405162461bcd60e51b815260206004820152604560248201527f4469766964656e645f547261636b65723a20636c61696d57616974206d75737460448201527f206265207570646174656420746f206265747765656e203120616e6420323420606482015264686f75727360d81b608482015260a4016108b9565b6011548103610dc65760405162461bcd60e51b815260206004820152603760248201527f4469766964656e645f547261636b65723a2043616e6e6f74207570646174652060448201527f636c61696d5761697420746f2073616d652076616c756500000000000000000060648201526084016108b9565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6000546001600160a01b03163314610e235760405162461bcd60e51b81526004016108b990611acb565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b9565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460009081908190808203610f05575050600e5460009250829150610ff9565b600e546000805a90506000805b8984108015610f2057508582105b15610fe85784610f2f81611b00565b600a5490965086109050610f4257600094505b6000600a6000018681548110610f5a57610f5a611ab5565b60009182526020808320909101546001600160a01b03168083526010909152604090912054909150610f8b906116c1565b15610fae57610f9b8160016109dc565b15610fae5781610faa81611b00565b9250505b82610fb881611b00565b93505060005a905080851115610fdf57610fdc610fd58683611186565b879061124a565b95505b9350610f129050565b600e85905590975095509193505050505b9193909250565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561107f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a39190611b19565b816000815181106110b6576110b6611ab5565b60200260200101906001600160a01b031690816001600160a01b03168152505081816001815181106110ea576110ea611ab5565b6001600160a01b03928316602091820292909201015260405163b6f9de9560e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063b6f9de9590859061114f90600090869030904290600401611b36565b6000604051808303818588803b15801561116857600080fd5b505af115801561117c573d6000803e3d6000fd5b5050505050505050565b600061088683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506116e8565b6000826000036111da57506000610889565b60006111e68385611ba0565b9050826111f38583611a64565b146108865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b9565b6000806112578385611a9d565b9050838110156108865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b9565b6001600160a01b0382166000908152600760205260409020805490829055808211156113055760006112db8383611186565b90506112e78482611722565b80600860008282546112f99190611a9d565b90915550610c8b915050565b80821015610c8b5760006113198284611186565b9050611325848261182b565b80600860008282546113379190611a86565b909155505050505050565b6001600160a01b0381166000908152600d602052604090205460ff166113655750565b6001600160a01b0381166000908152600d60209081526040808320805460ff19169055600b8252808320839055600c909152812054600a549091906113ac90600190611a86565b90506000600a60000182815481106113c6576113c6611ab5565b60009182526020808320909101546001600160a01b03908116808452600c90925260408084208790559087168352822091909155600a805491925082918590811061141357611413611ab5565b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600a80548061144d5761144d611bbf565b600082815260209020810160001990810180546001600160a01b031916905501905550505050565b6000806114828484610850565b90508015611598576001600160a01b038085166000908152600660209081526040808320938716835292905220546114ba908261124a565b6001600160a01b038086166000818152600660209081526040808320948916835293905282902092909255517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906115159084815260200190565b60405180910390a260405163a9059cbb60e01b81526001600160a01b0385811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af115801561156c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115909190611bd5565b509050610889565b5060009392505050565b6000818181121561088957600080fd5b6000806115bf8385611bf2565b9050600083121580156115d25750838112155b806115e757506000831280156115e757508381125b61088657600080fd5b6000808212156115ff57600080fd5b5090565b6001600160a01b0382166000908152600d602052604090205460ff1615611641576001600160a01b03919091166000908152600b6020526040902055565b6001600160a01b0382166000818152600d60209081526040808320805460ff19166001908117909155600b8352818420869055600a8054600c909452918420839055820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b03191690911790555050565b6000428211156116d357506000919050565b6011546116e04284611186565b101592915050565b6000818484111561170c5760405162461bcd60e51b81526004016108b99190611c33565b5060006117198486611a86565b95945050505050565b60005b600254811015610c8b576117cd61177b610bc884600160006002878154811061175057611750611ab5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054906111c8565b600560006002858154811061179257611792611ab5565b60009182526020808320909101546001600160a01b039081168452838201949094526040928301822093891682529290925290205490611909565b60056000600284815481106117e4576117e4611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061182381611b00565b915050611725565b60005b600254811015610c8b576118ab611859610bc884600160006002878154811061175057611750611ab5565b600560006002858154811061187057611870611ab5565b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938916825292909252902054906115b2565b60056000600284815481106118c2576118c2611ab5565b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209388168252929092529020558061190181611b00565b91505061182e565b6000806119168385611c88565b9050600083121580156119295750838113155b806115e757506000831280156115e7575083811361088657600080fd5b6001600160a01b038116811461195b57600080fd5b50565b6000806040838503121561197157600080fd5b823561197c81611946565b9150602083013561198c81611946565b809150509250929050565b6000602082840312156119a957600080fd5b813561088681611946565b6000602082840312156119c657600080fd5b5035919050565b801515811461195b57600080fd5b600080604083850312156119ee57600080fd5b82356119f981611946565b9150602083013561198c816119cd565b60008060408385031215611a1c57600080fd5b8235611a2781611946565b946020939093013593505050565b600060208284031215611a4757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082611a8157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611a9857611a98611a4e565b500390565b60008219821115611ab057611ab0611a4e565b500190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060018201611b1257611b12611a4e565b5060010190565b600060208284031215611b2b57600080fd5b815161088681611946565b600060808201868352602060808185015281875180845260a086019150828901935060005b81811015611b805784516001600160a01b031683529383019391830191600101611b5b565b50506001600160a01b039690961660408501525050506060015292915050565b6000816000190483118215151615611bba57611bba611a4e565b500290565b634e487b7160e01b600052603160045260246000fd5b600060208284031215611be757600080fd5b8151610886816119cd565b600080821280156001600160ff1b0384900385131615611c1457611c14611a4e565b600160ff1b8390038412811615611c2d57611c2d611a4e565b50500190565b600060208083528351808285015260005b81811015611c6057858101830151858201604001528201611c44565b81811115611c72576000604083870101525b50601f01601f1916929092016040019392505050565b60008083128015600160ff1b850184121615611ca657611ca6611a4e565b6001600160ff1b0384018313811615611cc157611cc1611a4e565b5050039056fea2646970667358221220355cc20a0b7a9a890309806a15d509bd27838246781aa17f2c3ec9dd4001899c64736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103f35760003560e01c8063763cef4911610208578063c024666811610118578063e2f45605116100ab578063ee44b44e1161007a578063ee44b44e14610b73578063f2fde38b14610b89578063f54afa7814610ba9578063f8b45b0514610bbf578063fd361d0e14610bd557600080fd5b8063e2f4560514610b12578063e7841ec014610b28578063e98030c714610b3d578063ee40166e14610b5d57600080fd5b8063ccb61358116100e7578063ccb6135814610a8a578063ccd146b214610aa0578063d0a3981414610ab6578063dd62ed3e14610acc57600080fd5b8063c024666814610a14578063c0f306ef14610a34578063c18bc19514610a54578063c8c8ebe414610a7457600080fd5b80639a36f9321161019b578063a457c2d71161016a578063a457c2d71461096f578063a9059cbb1461098f578063b62496f5146109af578063b9e93700146109df578063bbc0c742146109f557600080fd5b80639a36f9321461090e5780639a7a23d6146109245780639c1b8af514610944578063a26579ad1461095a57600080fd5b80638a8c523c116101d75780638a8c523c146108a65780638da5cb5b146108bb578063924de9b7146108d957806395d89b41146108f957600080fd5b8063763cef4914610846578063783102eb1461085b5780637fa787ba14610871578063871c128d1461088657600080fd5b806349bd5a5e116103035780636843cd8411610296578063712c298511610265578063712c2985146107d2578063715018a6146107e757806371778e7d146107fc578063751039fc146108115780637571336a1461082657600080fd5b80636843cd84146107525780636ddd171314610772578063700bb1911461079257806370a08231146107b257600080fd5b80634fbee193116102d25780634fbee193146106c45780635645cd86146106fd57806364b0f6531461071d57806366ca9b831461073257600080fd5b806349bd5a5e1461064b5780634a62bb651461067f5780634af6f7ee146106995780634e71d92d146106af57600080fd5b806318160ddd1161038657806323b872dd1161035557806323b872dd146105af5780632c1f5216146105cf578063313ce567146105ef57806331e79db01461060b578063395093511461062b57600080fd5b806318160ddd146105445780631a8145bb14610559578063203e727e1461056f578063204f11a81461058f57600080fd5b8063099d0d30116103c2578063099d0d301461049c5780630f4432e3146104b257806310d5de53146104c85780631694505e146104f857600080fd5b806302dbd8f8146103ff578063058054c91461042157806306fdde031461044a578063095ea7b31461046c57600080fd5b366103fa57005b600080fd5b34801561040b57600080fd5b5061041f61041a3660046130ae565b610bef565b005b34801561042d57600080fd5b5061043760165481565b6040519081526020015b60405180910390f35b34801561045657600080fd5b5061045f610c8f565b60405161044191906130d0565b34801561047857600080fd5b5061048c61048736600461313a565b610d21565b6040519015158152602001610441565b3480156104a857600080fd5b50610437600f5481565b3480156104be57600080fd5b50610437600a5481565b3480156104d457600080fd5b5061048c6104e3366004613166565b601b6020526000908152604090205460ff1681565b34801561050457600080fd5b5061052c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610441565b34801561055057600080fd5b50600254610437565b34801561056557600080fd5b5061043760145481565b34801561057b57600080fd5b5061041f61058a366004613183565b610d38565b34801561059b57600080fd5b506104376105aa36600461319c565b610e14565b3480156105bb57600080fd5b5061048c6105ca3660046131d5565b610e92565b3480156105db57600080fd5b5060065461052c906001600160a01b031681565b3480156105fb57600080fd5b5060405160128152602001610441565b34801561061757600080fd5b5061041f610626366004613166565b610f3c565b34801561063757600080fd5b5061048c61064636600461313a565b610fc9565b34801561065757600080fd5b5061052c7f000000000000000000000000e7208ecbd9e407b758b5583962a2d8e053c75b4c81565b34801561068b57600080fd5b50600c5461048c9060ff1681565b3480156106a557600080fd5b5061043760115481565b3480156106bb57600080fd5b5061041f611005565b3480156106d057600080fd5b5061048c6106df366004613166565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561070957600080fd5b50610437610718366004613166565b61107d565b34801561072957600080fd5b506104376110ed565b34801561073e57600080fd5b5061041f61074d3660046130ae565b611160565b34801561075e57600080fd5b5061043761076d366004613166565b6111f3565b34801561077e57600080fd5b50600c5461048c9062010000900460ff1681565b34801561079e57600080fd5b5061041f6107ad366004613183565b611226565b3480156107be57600080fd5b506104376107cd366004613166565b6112f9565b3480156107de57600080fd5b50610437611314565b3480156107f357600080fd5b5061041f611338565b34801561080857600080fd5b506104376113ac565b34801561081d57600080fd5b5061048c6113f6565b34801561083257600080fd5b5061041f610841366004613224565b611433565b34801561085257600080fd5b5061041f6114bd565b34801561086757600080fd5b5061043760195481565b34801561087d57600080fd5b5061041f611697565b34801561089257600080fd5b5061041f6108a1366004613183565b61174e565b3480156108b257600080fd5b5061041f611891565b3480156108c757600080fd5b506005546001600160a01b031661052c565b3480156108e557600080fd5b5061041f6108f4366004613252565b61192a565b34801561090557600080fd5b5061045f611970565b34801561091a57600080fd5b506104376103e881565b34801561093057600080fd5b5061041f61093f366004613224565b61197f565b34801561095057600080fd5b5061043760155481565b34801561096657600080fd5b50610437611a68565b34801561097b57600080fd5b5061048c61098a36600461313a565b611ab2565b34801561099b57600080fd5b5061048c6109aa36600461313a565b611b4b565b3480156109bb57600080fd5b5061048c6109ca366004613166565b601c6020526000908152604090205460ff1681565b3480156109eb57600080fd5b5061043760105481565b348015610a0157600080fd5b50600c5461048c90610100900460ff1681565b348015610a2057600080fd5b5061041f610a2f366004613224565b611b58565b348015610a4057600080fd5b5061041f610a4f366004613166565b611bda565b348015610a6057600080fd5b5061041f610a6f366004613183565b611c36565b348015610a8057600080fd5b5061043760075481565b348015610a9657600080fd5b5061043760125481565b348015610aac57600080fd5b50610437600e5481565b348015610ac257600080fd5b50610437600d5481565b348015610ad857600080fd5b50610437610ae736600461319c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1e57600080fd5b5061043760085481565b348015610b3457600080fd5b50610437611d04565b348015610b4957600080fd5b5061041f610b58366004613183565b611d4e565b348015610b6957600080fd5b50610437600b5481565b348015610b7f57600080fd5b5061043760175481565b348015610b9557600080fd5b5061041f610ba4366004613166565b611da9565b348015610bb557600080fd5b5061043760135481565b348015610bcb57600080fd5b5061043760095481565b348015610be157600080fd5b5060185461048c9060ff1681565b6005546001600160a01b03163314610c225760405162461bcd60e51b8152600401610c199061326f565b60405180910390fd5b600e829055600f819055610c3681836132ba565b600d81905560641015610c8b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b5050565b606060038054610c9e906132d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca906132d2565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b5050505050905090565b6000610d2e338484611e94565b5060015b92915050565b6005546001600160a01b03163314610d625760405162461bcd60e51b8152600401610c199061326f565b670de0b6b3a76400006103e8610d7760025490565b610d8290600161330c565b610d8c919061332b565b610d96919061332b565b8111610dfc5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c19565b610e0e81670de0b6b3a764000061330c565b60075550565b600654604051630409e23560e31b81526001600160a01b0384811660048301528381166024830152600092169063204f11a890604401602060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b919061334d565b9392505050565b6000610e9f848484611fb8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610f245760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c19565b610f318533858403611e94565b506001949350505050565b6005546001600160a01b03163314610f665760405162461bcd60e51b8152600401610c199061326f565b60065460405163031e79db60e41b81526001600160a01b038381166004830152909116906331e79db0906024015b600060405180830381600087803b158015610fae57600080fd5b505af1158015610fc2573d6000803e3d6000fd5b5050505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d2e9185906110009086906132ba565b611e94565b60065460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b37906044016020604051808303816000875af1158015611056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107a9190613366565b50565b6006546040516326b72f0160e11b81526001600160a01b0383811660048301526000921690634d6e5e02906024015b602060405180830381865afa1580156110c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d32919061334d565b600654604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115b919061334d565b905090565b6005546001600160a01b0316331461118a5760405162461bcd60e51b8152600401610c199061326f565b6011829055601281905561119e81836132ba565b601081905560641015610c8b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610c19565b60065460405163156dbbf560e31b81526001600160a01b038381166004830152600092169063ab6ddfa8906024016110ac565b6006546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c479906024016060604051808303816000875af1158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d9190613383565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6001600160a01b031660009081526020819052604090205490565b60185460009060ff16156113325760175460165461115b91906132ba565b50600090565b6005546001600160a01b031633146113625760405162461bcd60e51b8152600401610c199061326f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6006546040805163ad7a672f60e01b815290516000926001600160a01b03169163ad7a672f9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b6005546000906001600160a01b031633146114235760405162461bcd60e51b8152600401610c199061326f565b50600c805460ff19169055600190565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f575f9d01836c9206322151b9e9ec3f2b77b87e71176933b9b44d2d732f768d9591015b60405180910390a25050565b6005546001600160a01b031633146114e75760405162461bcd60e51b8152600401610c199061326f565b6114ef611314565b421015801561150557506000611503611314565b115b61154a5760405162461bcd60e51b815260206004820152601660248201527526bab9ba103932b8bab2b9ba1030b732103bb0b4ba1760511b6044820152606401610c19565b600060168190556018805460ff191690556019546040516370a0823160e01b8152306004820152606491907f000000000000000000000000e7208ecbd9e407b758b5583962a2d8e053c75b4c6001600160a01b0316906370a0823190602401602060405180830381865afa1580156115c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ea919061334d565b6115f4919061330c565b6115fe919061332b565b600060195560405163a9059cbb60e01b8152336004820152602481018290529091507f000000000000000000000000e7208ecbd9e407b758b5583962a2d8e053c75b4c6001600160a01b03169063a9059cbb906044016020604051808303816000875af1158015611673573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8b9190613366565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610c199061326f565b604051600090339047908381818185875af1925050503d8060008114611703576040519150601f19603f3d011682016040523d82523d6000602084013e611708565b606091505b505090508061107a5760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610c19565b6005546001600160a01b031633146117785760405162461bcd60e51b8152600401610c199061326f565b62030d40811015801561178e57506207a1208111155b6117f85760405162461bcd60e51b815260206004820152603560248201527f20676173466f7250726f63657373696e67206d7573742062652062657477656560448201527406e203230302c30303020616e64203530302c30303605c1b6064820152608401610c19565b601554810361185e5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610c19565b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b6005546001600160a01b031633146118bb5760405162461bcd60e51b8152600401610c199061326f565b600c54610100900460ff16156119135760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610c19565b600c805462ffff0019166201010017905543600b55565b6005546001600160a01b031633146119545760405162461bcd60e51b8152600401610c199061326f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610c9e906132d2565b6005546001600160a01b031633146119a95760405162461bcd60e51b8152600401610c199061326f565b7f000000000000000000000000e7208ecbd9e407b758b5583962a2d8e053c75b4c6001600160a01b0316826001600160a01b031603611a5e5760405162461bcd60e51b815260206004820152604560248201527f5468652050616e63616b655377617020706169722063616e6e6f74206265207260448201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572606482015264506169727360d81b608482015260a401610c19565b610c8b8282612903565b60065460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec9160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015611b345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c19565b611b413385858403611e94565b5060019392505050565b6000610d2e338484611fb8565b6005546001600160a01b03163314611b825760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114b1565b6005546001600160a01b03163314611c045760405162461bcd60e51b8152600401610c199061326f565b60065460405163c0f306ef60e01b81526001600160a01b0383811660048301529091169063c0f306ef90602401610f94565b6005546001600160a01b03163314611c605760405162461bcd60e51b8152600401610c199061326f565b670de0b6b3a76400006064611c7460025490565b611c7f90600161330c565b611c89919061332b565b611c93919061332b565b8111611cec5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610c19565b611cfe81670de0b6b3a764000061330c565b60095550565b6006546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec09160048083019260209291908290030181865afa158015611137573d6000803e3d6000fd5b6005546001600160a01b03163314611d785760405162461bcd60e51b8152600401610c199061326f565b60065460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401610f94565b6005546001600160a01b03163314611dd35760405162461bcd60e51b8152600401610c199061326f565b6001600160a01b038116611e385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c19565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c19565b6001600160a01b038216611f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c19565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611fde5760405162461bcd60e51b8152600401610c19906133b1565b6001600160a01b0382166120045760405162461bcd60e51b8152600401610c19906133f6565b8060000361201d57612018838360006129d3565b505050565b600c54610100900460ff166120b7576001600160a01b0383166000908152601a602052604090205460ff168061206b57506001600160a01b0382166000908152601a602052604090205460ff165b6120b75760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610c19565b600c5460ff161561238e576005546001600160a01b038481169116148015906120ee57506005546001600160a01b03838116911614155b801561210257506001600160a01b03821615155b801561211957506001600160a01b03821661dead14155b801561212f5750600554600160a01b900460ff16155b1561238e576001600160a01b0383166000908152601c602052604090205460ff16801561217557506001600160a01b0382166000908152601b602052604090205460ff16155b15612253576007548111156121ea5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c19565b6009546121f6836112f9565b61220090836132ba565b111561224e5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b61238e565b6001600160a01b0382166000908152601c602052604090205460ff16801561229457506001600160a01b0383166000908152601b602052604090205460ff16155b1561230a5760075481111561224e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c19565b6001600160a01b0382166000908152601b602052604090205460ff1661238e57600954612336836112f9565b61234090836132ba565b111561238e5760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610c19565b6000612399306112f9565b600854909150811080159081906123b85750600c5462010000900460ff165b80156123ce5750600554600160a01b900460ff16155b80156123f357506001600160a01b0385166000908152601c602052604090205460ff16155b801561241857506001600160a01b0385166000908152601a602052604090205460ff16155b801561243d57506001600160a01b0384166000908152601a602052604090205460ff16155b1561246b576005805460ff60a01b1916600160a01b17905561245d612b1a565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b9092048216159116806124b957506001600160a01b0385166000908152601a602052604090205460ff165b156124c2575060005b600081156127145743600b5460016124da91906132ba565b1015801561252257506001600160a01b0386166000908152601c602052604090205460ff168061252257506001600160a01b0387166000908152601c602052604090205460ff165b156125a05761253d6064612537876063612ca6565b90612d28565b9050606361254c82602161330c565b612556919061332b565b6014600082825461256791906132ba565b909155506063905061257a82602161330c565b612584919061332b565b6013600082825461259591906132ba565b909155506126f69050565b6001600160a01b0386166000908152601c602052604090205460ff1680156125ca57506000600d54115b15612648576125ea6103e8612537600d5488612ca690919063ffffffff16565b9050600d54600e54826125fd919061330c565b612607919061332b565b6013600082825461261891906132ba565b9091555050600d54600f5461262d908361330c565b612637919061332b565b6014600082825461259591906132ba565b6001600160a01b0387166000908152601c602052604090205460ff16801561267257506000601054115b156126f6576126926103e861253760105488612ca690919063ffffffff16565b9050601054601154826126a5919061330c565b6126af919061332b565b601360008282546126c091906132ba565b90915550506010546012546126d5908361330c565b6126df919061332b565b601460008282546126f091906132ba565b90915550505b8015612707576127078730836129d3565b6127118186613439565b94505b61271f8787876129d3565b6006546001600160a01b031663e30443bc8861273a816112f9565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561278057600080fd5b505af1158015612794573d6000803e3d6000fd5b50506006546001600160a01b0316915063e30443bc9050876127b5816112f9565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156127fb57600080fd5b505af115801561280f573d6000803e3d6000fd5b5050600554600160a01b900460ff1615915050801561283057506000601554115b156128fa576015546006546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c479906024016060604051808303816000875af19250505080156128a2575060408051601f3d908101601f1916820190925261289f91810190613383565b60015b156128f85760408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b50505050505050565b6001600160a01b0382166000908152601c60205260409020805460ff19168215151790556129318282611433565b80156129975760065460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b15801561297e57600080fd5b505af1158015612992573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166129f95760405162461bcd60e51b8152600401610c19906133b1565b6001600160a01b038216612a1f5760405162461bcd60e51b8152600401610c19906133f6565b6001600160a01b03831660009081526020819052604090205481811015612a975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c19565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612ace9084906132ba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112eb91815260200190565b6000612b25306112f9565b90506000601354601454612b3991906132ba565b9050811580612b46575080155b15612b4f575050565b600060028260145485612b62919061330c565b612b6c919061332b565b612b76919061332b565b90506000612b848483612d6a565b905047612b9082612dac565b6000612b9c4783612d6a565b90506000612bca6002601454612bb2919061332b565b612bbc9088613439565b601354612537908590612ca6565b90506000612bd88284613439565b6000601481905560135590508515801590612bf35750600081115b15612c4657612c028682612f6c565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516000916001600160a01b03169084908381818185875af1925050503d8060008114612c93576040519150601f19603f3d011682016040523d82523d6000602084013e612c98565b606091505b505050505050505050505050565b600082600003612cb857506000610d32565b6000612cc4838561330c565b905082612cd1858361332b565b14610e8b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610c19565b6000610e8b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613046565b6000610e8b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061307d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612de157612de1613450565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e839190613466565b81600181518110612e9657612e96613450565b60200260200101906001600160a01b031690816001600160a01b031681525050612ee1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e94565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612f36908590600090869030904290600401613483565b600060405180830381600087803b158015612f5057600080fd5b505af1158015612f64573d6000803e3d6000fd5b505050505050565b612f97307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e94565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015613021573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610fc29190613383565b600081836130675760405162461bcd60e51b8152600401610c1991906130d0565b506000613074848661332b565b95945050505050565b600081848411156130a15760405162461bcd60e51b8152600401610c1991906130d0565b5060006130748486613439565b600080604083850312156130c157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156130fd578581018301518582016040015282016130e1565b8181111561310f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461107a57600080fd5b6000806040838503121561314d57600080fd5b823561315881613125565b946020939093013593505050565b60006020828403121561317857600080fd5b8135610e8b81613125565b60006020828403121561319557600080fd5b5035919050565b600080604083850312156131af57600080fd5b82356131ba81613125565b915060208301356131ca81613125565b809150509250929050565b6000806000606084860312156131ea57600080fd5b83356131f581613125565b9250602084013561320581613125565b929592945050506040919091013590565b801515811461107a57600080fd5b6000806040838503121561323757600080fd5b823561324281613125565b915060208301356131ca81613216565b60006020828403121561326457600080fd5b8135610e8b81613216565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132cd576132cd6132a4565b500190565b600181811c908216806132e657607f821691505b60208210810361330657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615613326576133266132a4565b500290565b60008261334857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561335f57600080fd5b5051919050565b60006020828403121561337857600080fd5b8151610e8b81613216565b60008060006060848603121561339857600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561344b5761344b6132a4565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561347857600080fd5b8151610e8b81613125565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156134d35784516001600160a01b0316835293830193918301916001016134ae565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205edb1312a15feabb9466281360d2f4649a01b577c134c08daf36826ceb58dbd264736f6c634300080f0033

Deployed Bytecode Sourcemap

39240:17992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45686:310;;;;;;;;;;-1:-1:-1;45686:310:0;;;;;:::i;:::-;;:::i;:::-;;40317:41;;;;;;;;;;;;;;;;;;;413:25:1;;;401:2;386:18;40317:41:0;;;;;;;;4076:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4990:169::-;;;;;;;;;;-1:-1:-1;4990:169:0;;;;;:::i;:::-;;:::i;:::-;;;1672:14:1;;1665:22;1647:41;;1635:2;1620:18;4990:169:0;1507:187:1;40033:31:0;;;;;;;;;;;;;;;;39620:39;;;;;;;;;;;;;;;;40619:64;;;;;;;;;;-1:-1:-1;40619:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39315:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2142:32:1;;;2124:51;;2112:2;2097:18;39315:51:0;1951:230:1;4397:108:0;;;;;;;;;;-1:-1:-1;4485:12:0;;4397:108;;40227:33;;;;;;;;;;;;;;;;44903:233;;;;;;;;;;-1:-1:-1;44903:233:0;;;;;:::i;:::-;;:::i;47983:183::-;;;;;;;;;;-1:-1:-1;47983:183:0;;;;;:::i;:::-;;:::i;5167:492::-;;;;;;;;;;-1:-1:-1;5167:492:0;;;;;:::i;:::-;;:::i;39450:38::-;;;;;;;;;;-1:-1:-1;39450:38:0;;;;-1:-1:-1;;;;;39450:38:0;;;4296:93;;;;;;;;;;-1:-1:-1;4296:93:0;;4379:2;3607:36:1;;3595:2;3580:18;4296:93:0;3465:184:1;44057:130:0;;;;;;;;;;-1:-1:-1;44057:130:0;;;;;:::i;:::-;;:::i;5667:215::-;;;;;;;;;;-1:-1:-1;5667:215:0;;;;;:::i;:::-;;:::i;39373:38::-;;;;;;;;;;;;;;;39788:33;;;;;;;;;;-1:-1:-1;39788:33:0;;;;;;;;40111:28;;;;;;;;;;;;;;;;48960:97;;;;;;;;;;;;;:::i;47848:127::-;;;;;;;;;;-1:-1:-1;47848:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;47939:28:0;47915:4;47939:28;;;:19;:28;;;;;;;;;47848:127;47669:171;;;;;;;;;;-1:-1:-1;47669:171:0;;;;;:::i;:::-;;:::i;49199:141::-;;;;;;;;;;;;;:::i;45371:303::-;;;;;;;;;;-1:-1:-1;45371:303:0;;;;;:::i;:::-;;:::i;48171:136::-;;;;;;;;;;-1:-1:-1;48171:136:0;;;;;:::i;:::-;;:::i;39868:31::-;;;;;;;;;;-1:-1:-1;39868:31:0;;;;;;;;;;;48693:259;;;;;;;;;;-1:-1:-1;48693:259:0;;;;;:::i;:::-;;:::i;4513:127::-;;;;;;;;;;-1:-1:-1;4513:127:0;;;;;:::i;:::-;;:::i;56432:281::-;;;;;;;;;;;;;:::i;16257:148::-;;;;;;;;;;;;;:::i;49352:119::-;;;;;;;;;;;;;:::i;49483:120::-;;;;;;;;;;;;;:::i;46004:202::-;;;;;;;;;;-1:-1:-1;46004:202:0;;;;;:::i;:::-;;:::i;56721:501::-;;;;;;;;;;;;;:::i;40464:31::-;;;;;;;;;;;;;;;;56227:191;;;;;;;;;;;;;:::i;47018:395::-;;;;;;;;;;-1:-1:-1;47018:395:0;;;;;:::i;:::-;;:::i;44476:218::-;;;;;;;;;;;;;:::i;15615:79::-;;;;;;;;;;-1:-1:-1;15680:6:0;;-1:-1:-1;;;;;15680:6:0;15615:79;;44794:101;;;;;;;;;;-1:-1:-1;44794:101:0;;;;;:::i;:::-;;:::i;4184:104::-;;;;;;;;;;;;;:::i;39912:41::-;;;;;;;;;;;;39949:4;39912:41;;46406:258;;;;;;;;;;-1:-1:-1;46406:258:0;;;;;:::i;:::-;;:::i;40273:35::-;;;;;;;;;;;;;;;;47553:108;;;;;;;;;;;;;:::i;5890:413::-;;;;;;;;;;-1:-1:-1;5890:413:0;;;;;:::i;:::-;;:::i;4648:175::-;;;;;;;;;;-1:-1:-1;4648:175:0;;;;;:::i;:::-;;:::i;40842:58::-;;;;;;;;;;-1:-1:-1;40842:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40077:27;;;;;;;;;;;;;;;;39828:33;;;;;;;;;;-1:-1:-1;39828:33:0;;;;;;;;;;;46214:184;;;;;;;;;;-1:-1:-1;46214:184:0;;;;;:::i;:::-;;:::i;44292:126::-;;;;;;;;;;-1:-1:-1;44292:126:0;;;;;:::i;:::-;;:::i;45148:211::-;;;;;;;;;;-1:-1:-1;45148:211:0;;;;;:::i;:::-;;:::i;39501:35::-;;;;;;;;;;;;;;;;40146:30;;;;;;;;;;;;;;;;39997:29;;;;;;;;;;;;;;;;39962:28;;;;;;;;;;;;;;;;4831:151;;;;;;;;;;-1:-1:-1;4831:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;4947:18:0;;;4920:7;4947:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4831:151;39543:33;;;;;;;;;;;;;;;;49065:126;;;;;;;;;;;;;:::i;47421:124::-;;;;;;;;;;-1:-1:-1;47421:124:0;;;;;:::i;:::-;;:::i;39705:37::-;;;;;;;;;;;;;;;;40365:49;;;;;;;;;;;;;;;;16560:244;;;;;;;;;;-1:-1:-1;16560:244:0;;;;;:::i;:::-;;:::i;40189:31::-;;;;;;;;;;;;;;;;39583:24;;;;;;;;;;;;;;;;40421:36;;;;;;;;;;-1:-1:-1;40421:36:0;;;;;;;;45686:310;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;;;;;;;;;45784:14:::1;:28:::0;;;45823:16:::1;:32:::0;;;45882:33:::1;45842:13:::0;45801:11;45882:33:::1;:::i;:::-;45866:13;:49:::0;;;45951:3:::1;-1:-1:-1::0;45934:20:0::1;45926:62;;;::::0;-1:-1:-1;;;45926:62:0;;5446:2:1;45926:62:0::1;::::0;::::1;5428:21:1::0;5485:2;5465:18;;;5458:30;5524:31;5504:18;;;5497:59;5573:18;;45926:62:0::1;5244:353:1::0;45926:62:0::1;45686:310:::0;;:::o;4076:100::-;4130:13;4163:5;4156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4076:100;:::o;4990:169::-;5073:4;5090:39;177:10;5113:7;5122:6;5090:8;:39::i;:::-;-1:-1:-1;5147:4:0;4990:169;;;;;:::o;44903:233::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;45021:4:::1;45015;44995:13;4485:12:::0;;;4397:108;44995:13:::1;:17;::::0;45011:1:::1;44995:17;:::i;:::-;:24;;;;:::i;:::-;44994:31;;;;:::i;:::-;44985:6;:40;44977:100;;;::::0;-1:-1:-1;;;44977:100:0;;6584:2:1;44977: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;;44977:100:0::1;6382:411:1::0;44977:100:0::1;45111:17;:6:::0;45121::::1;45111:17;:::i;:::-;45088:20;:40:::0;-1:-1:-1;44903:233:0:o;47983:183::-;48099:15;;:60;;-1:-1:-1;;;48099:60:0;;-1:-1:-1;;;;;7028:15:1;;;48099:60:0;;;7010:34:1;7080:15;;;7060:18;;;7053:43;48075:7:0;;48099:15;;:38;;6945:18:1;;48099:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48092:67;47983:183;-1:-1:-1;;;47983:183:0:o;5167:492::-;5307:4;5324:36;5334:6;5342:9;5353:6;5324:9;:36::i;:::-;-1:-1:-1;;;;;5400:19:0;;5373:24;5400:19;;;:11;:19;;;;;;;;177:10;5400:33;;;;;;;;5452:26;;;;5444:79;;;;-1:-1:-1;;;5444:79:0;;7498:2:1;5444: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;;5444:79:0;7296:404:1;5444:79:0;5559:57;5568:6;177:10;5609:6;5590:16;:25;5559:8;:57::i;:::-;-1:-1:-1;5647:4:0;;5167:492;-1:-1:-1;;;;5167:492:0:o;44057:130::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;44134:15:::1;::::0;:45:::1;::::0;-1:-1:-1;;;44134:45:0;;-1:-1:-1;;;;;2142:32:1;;;44134:45:0::1;::::0;::::1;2124:51:1::0;44134:15:0;;::::1;::::0;:36:::1;::::0;2097:18:1;;44134:45:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44057:130:::0;:::o;5667:215::-;177:10;5755:4;5804:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5804:34:0;;;;;;;;;;5755:4;;5772:80;;5795:7;;5804:47;;5841:10;;5804:47;:::i;:::-;5772:8;:80::i;48960:97::-;48991:15;;:58;;-1:-1:-1;;;48991:58:0;;49030:10;48991:58;;;7889:51:1;48991:15:0;7956:18:1;;;7949:50;-1:-1:-1;;;;;48991:15:0;;;;:30;;7862:18:1;;48991:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48960:97::o;47669:171::-;47778:15;;:54;;-1:-1:-1;;;47778:54:0;;-1:-1:-1;;;;;2142:32:1;;;47778:54:0;;;2124:51:1;47751:7:0;;47778:15;;:41;;2097:18:1;;47778:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49199:141::-;49291:15;;:41;;;-1:-1:-1;;;49291:41:0;;;;49264:7;;-1:-1:-1;;;;;49291:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49284:48;;49199:141;:::o;45371:303::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;45468:13:::1;:27:::0;;;45506:15:::1;:31:::0;;;45563::::1;45524:13:::0;45484:11;45563:31:::1;:::i;:::-;45548:12;:46:::0;;;45629:3:::1;-1:-1:-1::0;45613:19:0::1;45605:61;;;::::0;-1:-1:-1;;;45605:61:0;;5446:2:1;45605:61:0::1;::::0;::::1;5428:21:1::0;5485:2;5465:18;;;5458:30;5524:31;5504:18;;;5497:59;5573:18;;45605:61:0::1;5244:353:1::0;48171:136:0;48264:15;;:38;;-1:-1:-1;;;48264:38:0;;-1:-1:-1;;;;;2142:32:1;;;48264:38:0;;;2124:51:1;48243:7:0;;48264:15;;:29;;2097:18:1;;48264:38:0;1951:230:1;48693:259:0;48819:15;;:28;;-1:-1:-1;;;;;;48819:28:0;;;;;413:25:1;;;48753:18:0;;;;;;-1:-1:-1;;;;;48819:15:0;;:23;;386:18:1;;48819:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48857:87;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;48752:95:0;;-1:-1:-1;48752:95:0;;-1:-1:-1;48752:95:0;-1:-1:-1;48934:9:0;;48922:5;;48857:87;;8789:3:1;8774:19;48857:87:0;;;;;;;;48747:205;;;48693:259;:::o;4513:127::-;-1:-1:-1;;;;;4614:18:0;4587:7;4614:18;;;;;;;;;;;;4513:127::o;56432:281::-;56514:24;;56492:7;;56514:24;;56511:195;;;56590:25;;56561:26;;:54;;;;:::i;56511:195::-;-1:-1:-1;56664:1:0;;56432:281::o;16257:148::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;16348:6:::1;::::0;16327:40:::1;::::0;16364:1:::1;::::0;-1:-1:-1;;;;;16348:6:0::1;::::0;16327:40:::1;::::0;16364:1;;16327:40:::1;16378:6;:19:::0;;-1:-1:-1;;;;;;16378:19:0::1;::::0;;16257:148::o;49352:119::-;49433:15;;:30;;;-1:-1:-1;;;49433:30:0;;;;49406:7;;-1:-1:-1;;;;;49433:15:0;;:28;;:30;;;;;;;;;;;;;;:15;:30;;;;;;;;;;;;;;49483:120;15827:6;;49535:4;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;-1:-1:-1;49551:14:0::1;:22:::0;;-1:-1:-1;;49551:22:0::1;::::0;;;49483:120;:::o;46004:202::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46094:39:0;::::1;;::::0;;;:31:::1;:39;::::0;;;;;;;;:46;;-1:-1:-1;;46094:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46156:42;;1647:41:1;;;46156:42:0::1;::::0;1620:18:1;46156:42:0::1;;;;;;;;46004:202:::0;;:::o;56721:501::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;56809:29:::1;:27;:29::i;:::-;56790:15;:48;;:85;;;;;56874:1;56842:29;:27;:29::i;:::-;:33;56790:85;56782:120;;;::::0;-1:-1:-1;;;56782:120:0;;9169:2:1;56782: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;;56782:120:0::1;8967:346:1::0;56782:120:0::1;56942:1;56913:26;:30:::0;;;56954:24:::1;:32:::0;;-1:-1:-1;;56954:32:0::1;::::0;;57081:16:::1;::::0;57023:55:::1;::::0;-1:-1:-1;;;57023:55:0;;57072:4:::1;57023:55;::::0;::::1;2124:51:1::0;57100:3:0::1;::::0;57081:16;57038:13:::1;-1:-1:-1::0;;;;;57023:40:0::1;::::0;::::1;::::0;2097:18:1;;57023:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:74;;;;:::i;:::-;:80;;;;:::i;:::-;57143:1;57124:16;:20:::0;57157:57:::1;::::0;-1:-1:-1;;;57157:57:0;;57188:10:::1;57157:57;::::0;::::1;9492:51:1::0;9559:18;;;9552:34;;;56999:104:0;;-1:-1:-1;57164:13:0::1;-1:-1:-1::0;;;;;57157:30:0::1;::::0;::::1;::::0;9465:18:1;;57157:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56227:191::-:0;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;56303:58:::1;::::0;56286:12:::1;::::0;56311:10:::1;::::0;56335:21:::1;::::0;56286:12;56303:58;56286:12;56303:58;56335:21;56311:10;56303:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56285:76;;;56380:7;56372:38;;;::::0;-1:-1:-1;;;56372:38:0;;10009:2:1;56372: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;;56372:38:0::1;9807:342:1::0;47018:395:0;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;47118:6:::1;47106:8;:18;;:40;;;;;47140:6;47128:8;:18;;47106:40;47098:106;;;::::0;-1:-1:-1;;;47098:106:0;;10356:2:1;47098: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;;47098:106:0::1;10154:417:1::0;47098:106:0::1;47235:16;;47223:8;:28:::0;47215:85:::1;;;::::0;-1:-1:-1;;;47215:85:0;;10778:2:1;47215: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;;47215:85:0::1;10576:408:1::0;47215:85:0::1;47350:16;::::0;47316:51:::1;::::0;47340:8;;47316:51:::1;::::0;;;::::1;47378:16;:27:::0;47018:395::o;44476:218::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;44540:13:::1;::::0;::::1;::::0;::::1;;;44539:14;44531:51;;;::::0;-1:-1:-1;;;44531:51:0;;11191:2:1;44531:51:0::1;::::0;::::1;11173:21:1::0;11230:2;11210:18;;;11203:30;11269:26;11249:18;;;11242:54;11313:18;;44531:51:0::1;10989:348:1::0;44531:51:0::1;44593:13;:20:::0;;-1:-1:-1;;44624:18:0;;;;;44674:12:::1;44653:18;:33:::0;44476:218::o;44794:101::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;44866:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44866:21:0;;::::1;::::0;;;::::1;::::0;;44794:101::o;4184:104::-;4240:13;4273:7;4266:14;;;;;:::i;46406:258::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;46515:13:::1;-1:-1:-1::0;;;;;46507:21:0::1;:4;-1:-1:-1::0;;;;;46507:21:0::1;::::0;46499:103:::1;;;::::0;-1:-1:-1;;;46499:103:0;;11544:2:1;46499: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;;46499:103:0::1;11342:473:1::0;46499:103:0::1;46615:41;46644:4;46650:5;46615:28;:41::i;47553:108::-:0;47626:15;;:27;;;-1:-1:-1;;;47626:27:0;;;;47599:7;;-1:-1:-1;;;;;47626:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;;;;;5890:413;177:10;5983:4;6027:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6027:34:0;;;;;;;;;;6080:35;;;;6072:85;;;;-1:-1:-1;;;6072:85:0;;12022:2:1;6072: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;;6072:85:0;11820:401:1;6072:85:0;6193:67;177:10;6216:7;6244:15;6225:16;:34;6193:8;:67::i;:::-;-1:-1:-1;6291:4:0;;5890:413;-1:-1:-1;;;5890:413:0:o;4648:175::-;4734:4;4751:42;177:10;4775:9;4786:6;4751:9;:42::i;46214:184::-;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46299:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46299:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46356:34;;1647:41:1;;;46356:34:0::1;::::0;1620:18:1;46356:34:0::1;1507:187:1::0;44292:126:0;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;44367:15:::1;::::0;:43:::1;::::0;-1:-1:-1;;;44367:43:0;;-1:-1:-1;;;;;2142:32:1;;;44367:43:0::1;::::0;::::1;2124:51:1::0;44367:15:0;;::::1;::::0;:34:::1;::::0;2097:18:1;;44367:43:0::1;1951:230:1::0;45148:211:0;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;45268:4:::1;45263:3;45243:13;4485:12:::0;;;4397:108;45243:13:::1;:17;::::0;45259:1:::1;45243:17;:::i;:::-;:23;;;;:::i;:::-;45242:30;;;;:::i;:::-;45233:6;:39;45225:86;;;::::0;-1:-1:-1;;;45225:86:0;;12428:2:1;45225: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;;45225:86:0::1;12226:398:1::0;45225:86:0::1;45334:17;:6:::0;45344::::1;45334:17;:::i;:::-;45322:9;:29:::0;-1:-1:-1;45148:211:0:o;49065:126::-;49144:15;;:39;;;-1:-1:-1;;;49144:39:0;;;;49120:7;;-1:-1:-1;;;;;49144:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;47421:124;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;47495:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;47495:42:0;;::::1;::::0;::::1;413:25:1::0;;;-1:-1:-1;;;;;47495:15:0;;::::1;::::0;:31:::1;::::0;386:18:1;;47495:42:0::1;267:177:1::0;16560:244:0;15827:6;;-1:-1:-1;;;;;15827:6:0;177:10;15827:22;15819:67;;;;-1:-1:-1;;;15819:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16649:22:0;::::1;16641:73;;;::::0;-1:-1:-1;;;16641:73:0;;12831:2:1;16641: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;;16641:73:0::1;12629:402:1::0;16641:73:0::1;16751:6;::::0;16730:38:::1;::::0;-1:-1:-1;;;;;16730:38:0;;::::1;::::0;16751:6:::1;::::0;16730:38:::1;::::0;16751:6:::1;::::0;16730:38:::1;16779:6;:17:::0;;-1:-1:-1;;;;;;16779:17:0::1;-1:-1:-1::0;;;;;16779:17:0;;;::::1;::::0;;;::::1;::::0;;16560:244::o;7230:380::-;-1:-1:-1;;;;;7366:19:0;;7358:68;;;;-1:-1:-1;;;7358:68:0;;13238:2:1;7358: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;;7358:68:0;13036:400:1;7358:68:0;-1:-1:-1;;;;;7445:21:0;;7437:68;;;;-1:-1:-1;;;7437:68:0;;13643:2:1;7437: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;;7437:68:0;13441:398:1;7437:68:0;-1:-1:-1;;;;;7518:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7570:32;;413:25:1;;;7570:32:0;;386:18:1;7570:32:0;;;;;;;7230:380;;;:::o;49615:4137::-;-1:-1:-1;;;;;49747:18:0;;49739:68;;;;-1:-1:-1;;;49739:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49826:16:0;;49818:64;;;;-1:-1:-1;;;49818:64:0;;;;;;;:::i;:::-;49907:6;49917:1;49907:11;49904:92;;49935:28;49951:4;49957:2;49961:1;49935:15;:28::i;:::-;49615:4137;;;:::o;49904:92::-;50020:13;;;;;;;50016:136;;-1:-1:-1;;;;;50057:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;50086:23:0;;;;;;:19;:23;;;;;;;;50057:52;50049:91;;;;-1:-1:-1;;;50049:91:0;;14856:2:1;50049:91:0;;;14838:21:1;14895:2;14875:18;;;14868:30;14934:28;14914:18;;;14907:56;14980:18;;50049:91:0;14654:350:1;50049:91:0;50175:14;;;;50172:1085;;;15680:6;;-1:-1:-1;;;;;50227:15:0;;;15680:6;;50227:15;;;;:49;;-1:-1:-1;15680:6:0;;-1:-1:-1;;;;;50263:13:0;;;15680:6;;50263:13;;50227:49;:86;;;;-1:-1:-1;;;;;;50297:16:0;;;;50227:86;:128;;;;-1:-1:-1;;;;;;50334:21:0;;50348:6;50334:21;;50227:128;:158;;;;-1:-1:-1;50377:8:0;;-1:-1:-1;;;50377:8:0;;;;50376:9;50227:158;50205:1041;;;-1:-1:-1;;;;;50469:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;50505:35:0;;;;;;:31;:35;;;;;;;;50504:36;50469:71;50465:766;;;50583:20;;50573:6;:30;;50565:96;;;;-1:-1:-1;;;50565:96:0;;15211:2:1;50565: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;;50565:96:0;15009:417:1;50565:96:0;50718:9;;50701:13;50711:2;50701:9;:13::i;:::-;50692:22;;:6;:22;:::i;:::-;:35;;50684:75;;;;-1:-1:-1;;;50684:75:0;;15633:2:1;50684:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;50684:75:0;15431:351:1;50684:75:0;50465:766;;;-1:-1:-1;;;;;50836:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;50870:37:0;;;;;;:31;:37;;;;;;;;50869:38;50836:71;50832:399;;;50950:20;;50940:6;:30;;50932:97;;;;-1:-1:-1;;;50932:97:0;;15989:2:1;50932: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;;50932:97:0;15787:418:1;50832:399:0;-1:-1:-1;;;;;51076:35:0;;;;;;:31;:35;;;;;;;;51072:159;;51170:9;;51153:13;51163:2;51153:9;:13::i;:::-;51144:22;;:6;:22;:::i;:::-;:35;;51136:75;;;;-1:-1:-1;;;51136:75:0;;15633:2:1;51136:75:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:29;15691:18;;;15684:57;15758:18;;51136:75:0;15431:351:1;51136:75:0;51263:28;51294:24;51312:4;51294:9;:24::i;:::-;51378:18;;51263:55;;-1:-1:-1;51354:42:0;;;;;;;51427:35;;-1:-1:-1;51451:11:0;;;;;;;51427:35;:61;;;;-1:-1:-1;51480:8:0;;-1:-1:-1;;;51480:8:0;;;;51479:9;51427:61;:110;;;;-1:-1:-1;;;;;;51506:31:0;;;;;;:25;:31;;;;;;;;51505:32;51427:110;:153;;;;-1:-1:-1;;;;;;51555:25:0;;;;;;:19;:25;;;;;;;;51554:26;51427:153;:194;;;;-1:-1:-1;;;;;;51598:23:0;;;;;;:19;:23;;;;;;;;51597:24;51427:194;51409:322;;;51648:8;:15;;-1:-1:-1;;;;51648:15:0;-1:-1:-1;;;51648:15:0;;;51678:10;:8;:10::i;:::-;51703:8;:16;;-1:-1:-1;;;;51703:16:0;;;51409:322;51759:8;;-1:-1:-1;;;;;51868:25:0;;51743:12;51868:25;;;:19;:25;;;;;;51759:8;-1:-1:-1;;;51759:8:0;;;;;51758:9;;51868:25;;:52;;-1:-1:-1;;;;;;51897:23:0;;;;;;:19;:23;;;;;;;;51868:52;51865:99;;;-1:-1:-1;51947:5:0;51865:99;51984:12;52075:7;52072:1147;;;52127:12;52101:18;;52122:1;52101:22;;;;:::i;:::-;:38;;:108;;;;-1:-1:-1;;;;;;52144:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;52177:31:0;;;;;;:25;:31;;;;;;;;52144:64;52098:964;;;52236:23;52255:3;52236:14;:6;52247:2;52236:10;:14::i;:::-;:18;;:23::i;:::-;52229:30;-1:-1:-1;52312:2:0;52300:9;52229:30;52307:2;52300:9;:::i;:::-;:14;;;;:::i;:::-;52278:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;52365:2:0;;-1:-1:-1;52353:9:0;:4;52360:2;52353:9;:::i;:::-;:14;;;;:::i;:::-;52333:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;52098:964:0;;-1:-1:-1;52098:964:0;;-1:-1:-1;;;;;52432:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;52481:1;52465:13;;:17;52432:50;52428:634;;;52509:41;39949:4;52509:25;52520:13;;52509:6;:10;;:25;;;;:::i;:41::-;52502:48;;52613:13;;52596:14;;52589:4;:21;;;;:::i;:::-;:37;;;;:::i;:::-;52569:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;52693:13:0;;52674:16;;52667:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;52645:18;;:61;;;;;;;:::i;52428:634::-;-1:-1:-1;;;;;52781:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;52831:1;52816:12;;:16;52781:51;52778:284;;;52857:40;39949:4;52857:24;52868:12;;52857:6;:10;;:24;;;;:::i;:40::-;52850:47;;52956:12;;52940:13;;52933:4;:20;;;;:::i;:::-;:35;;;;:::i;:::-;52913:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;53034:12:0;;53016:15;;53009:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;52987:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;52778:284:0;53081:8;;53078:93;;53113:42;53129:4;53143;53150;53113:15;:42::i;:::-;53193:14;53203:4;53193:14;;:::i;:::-;;;52072:1147;53231:33;53247:4;53253:2;53257:6;53231:15;:33::i;:::-;53277:15;;-1:-1:-1;;;;;53277:15:0;:26;53312:4;53319:15;53312:4;53319:9;:15::i;:::-;53277:58;;-1:-1:-1;;;;;;53277:58:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53277:58:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53277:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53346:15:0;;-1:-1:-1;;;;;53346:15:0;;-1:-1:-1;53346:26:0;;-1:-1:-1;53381:2:0;53386:13;53381:2;53386:9;:13::i;:::-;53346:54;;-1:-1:-1;;;;;;53346:54:0;;;;;;;-1:-1:-1;;;;;9510:32:1;;;53346:54:0;;;9492:51:1;9559:18;;;9552:34;9465:18;;53346:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53417:8:0;;-1:-1:-1;;;53417:8:0;;;;53416:9;;-1:-1:-1;;53416:33:0;;;;;53448:1;53429:16;;:20;53416:33;53413:332;;;53474:16;;53505:15;;:28;;-1:-1:-1;;;;;;53505:28:0;;;;;413:25:1;;;-1:-1:-1;;;;;53505:15:0;;;;:23;;386:18:1;;53505:28:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;53505:28:0;;;;;;;;-1:-1:-1;;53505:28:0;;;;;;;;;;;;:::i;:::-;;;53501:233;;;53622:86;;;8802:25:1;;;8858:2;8843:18;;8836:34;;;8886:18;;;8879:34;;;8944:2;8929:18;;8922:34;;;53698:9:0;;53687:4;;53622:86;;8789:3:1;8774:19;53622:86:0;;;;;;;53534:184;;;53501:233;53451:294;53413:332;49728:4024;;;;49615:4137;;;:::o;46672:338::-;-1:-1:-1;;;;;46755:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;46755:39:0;;;;;;;46807:38;46755:31;:39;46807:25;:38::i;:::-;46869:5;46866:79;;;46891:15;;:42;;-1:-1:-1;;;46891:42:0;;-1:-1:-1;;;;;2142:32:1;;;46891:42:0;;;2124:51:1;46891:15:0;;;;:36;;2097:18:1;;46891:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46866:79;46962:40;;;;;;-1:-1:-1;;;;;46962:40:0;;;;;;;;46672:338;;:::o;6311:614::-;-1:-1:-1;;;;;6451:20:0;;6443:70;;;;-1:-1:-1;;;6443:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6532:23:0;;6524:71;;;;-1:-1:-1;;;6524:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6632:17:0;;6608:21;6632:17;;;;;;;;;;;6668:23;;;;6660:74;;;;-1:-1:-1;;;6660:74:0;;16837:2:1;6660: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;;6660:74:0;16635:402:1;6660:74:0;-1:-1:-1;;;;;6770:17:0;;;:9;:17;;;;;;;;;;;6790:22;;;6770:42;;6834:20;;;;;;;;:30;;6806:6;;6770:9;6834:30;;6806:6;;6834:30;:::i;:::-;;;;;;;;6899:9;-1:-1:-1;;;;;6882:35:0;6891:6;-1:-1:-1;;;;;6882:35:0;;6910:6;6882:35;;;;413:25:1;;401:2;386:18;;267:177;54912:1307:0;54951:23;54977:24;54995:4;54977:9;:24::i;:::-;54951:50;;55012:25;55061:16;;55040:18;;:37;;;;:::i;:::-;55012:65;-1:-1:-1;55101:20:0;;;:46;;-1:-1:-1;55125:22:0;;55101:46;55098:60;;;55150:7;;54912:1307::o;55098:60::-;55227:23;55312:1;55292:17;55271:18;;55253:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;55227:86;-1:-1:-1;55324:26:0;55353:36;:15;55227:86;55353:19;:36::i;:::-;55324:65;-1:-1:-1;55438:21:0;55472:36;55324:65;55472:16;:36::i;:::-;55530:18;55551:44;:21;55577:17;55551:25;:44::i;:::-;55530:65;;55616:21;55640:80;55717:1;55698:18;;:20;;;;:::i;:::-;55677:42;;:17;:42;:::i;:::-;55655:16;;55640:32;;:10;;:14;:32::i;:80::-;55616:104;-1:-1:-1;55741:23:0;55767:26;55616:104;55767:10;:26;:::i;:::-;55835:1;55814:18;:22;;;55847:16;:20;55741:52;-1:-1:-1;55911:19:0;;;;;:42;;;55952:1;55934:15;:19;55911:42;55908:210;;;55969:46;55982:15;55999;55969:12;:46::i;:::-;56087:18;;56035:71;;;17244:25:1;;;17300:2;17285:18;;17278:34;;;17328:18;;;17321:34;;;;56035:71:0;;;;;;17232:2:1;56035:71:0;;;55908:210;56164:15;;56156:55;;56139:12;;-1:-1:-1;;;;;56164:15:0;;56193:13;;56139:12;56156:55;56139:12;56156:55;56193:13;56164:15;56156:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;54912:1307:0:o;12013:471::-;12071:7;12316:1;12321;12316:6;12312:47;;-1:-1:-1;12346:1:0;12339:8;;12312:47;12371:9;12383:5;12387:1;12383;:5;:::i;:::-;12371:17;-1:-1:-1;12416:1:0;12407:5;12411:1;12371:17;12407:5;:::i;:::-;:10;12399:56;;;;-1:-1:-1;;;12399:56:0;;17568:2:1;12399: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;;12399:56:0;17366:397:1;12960:132:0;13018:7;13045:39;13049:1;13052;13045:39;;;;;;;;;;;;;;;;;:3;:39::i;11123:136::-;11181:7;11208:43;11212:1;11215;11208:43;;;;;;;;;;;;;;;;;:3;:43::i;53764:601::-;53916:16;;;53930:1;53916:16;;;;;;;;53892:21;;53916:16;;;;;;;;;;-1:-1:-1;53916:16:0;53892:40;;53961:4;53943;53948:1;53943:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;53943:23:0;;;-1:-1:-1;;;;;53943:23:0;;;;;53987:15;-1:-1:-1;;;;;53987:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53977:4;53982:1;53977:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;53977:32:0;;;-1:-1:-1;;;;;53977:32:0;;;;;54022:62;54039:4;54054:15;54072:11;54022:8;:62::i;:::-;54123:224;;-1:-1:-1;;;54123:224:0;;-1:-1:-1;;;;;54123:15:0;:66;;;;:224;;54204:11;;54230:1;;54274:4;;54301;;54321:15;;54123:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53819:546;53764:601;:::o;54377:523::-;54525:62;54542:4;54557:15;54575:11;54525:8;:62::i;:::-;54630:260;;-1:-1:-1;;;54630:260:0;;54702:4;54630:260;;;19614:34:1;19664:18;;;19657:34;;;54748:1:0;19707:18:1;;;19700:34;;;19750:18;;;19743:34;54842:6:0;19793:19:1;;;19786:44;54864:15:0;19846:19:1;;;19839:35;54630:15:0;-1:-1:-1;;;;;54630:31:0;;;;54669:9;;19548:19:1;;54630:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;13588:278::-;13674:7;13709:12;13702:5;13694:28;;;;-1:-1:-1;;;13694:28:0;;;;;;;;:::i;:::-;-1:-1:-1;13733:9:0;13745:5;13749:1;13745;:5;:::i;:::-;13733:17;13588:278;-1:-1:-1;;;;;13588:278:0:o;11562:192::-;11648:7;11684:12;11676:6;;;;11668:29;;;;-1:-1:-1;;;11668:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11708:9:0;11720:5;11724:1;11720;: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://355cc20a0b7a9a890309806a15d509bd27838246781aa17f2c3ec9dd4001899c
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.