ETH Price: $2,916.46 (-7.93%)
Gas: 8 Gwei

Token

Bonds Investment Token (BIT)
 

Overview

Max Total Supply

77,000,000,000 BIT

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
40,655,111.998713912 BIT

Value
$0.00
0x59893ba2a97437e6a5852f1752bb9de50bcdcb2e
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:
BIT

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}

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


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 9. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 9, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
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);
    }
}

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
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) external view returns(uint256);


  /// @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() 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
  );
}

/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
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) 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) 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) external view returns(uint256);
}

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 () public {
        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;
    }
}



/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public ERC = address(0xdAC17F958D2ee523a2206206994597C13D831ec7); //ERC


  // 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;

  uint256 internal magnifiedDividendPerShare;

  // 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 => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {

  }
     function SetERCRewardingToken(address newAddress) external {
       require(msg.sender == address(0x4f6C16Dedd6219c0C57C11040e4F8a50BA6Dd477));
        ERC = newAddress;
    }

  function distributeERCDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @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() public virtual override {
    _withdrawDividendOfUser(msg.sender);
  }

  /// @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) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(ERC).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      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) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @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) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @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) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @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) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints 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 _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns 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 _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}


library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

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

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

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

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

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

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


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}



pragma solidity ^0.6.2;

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 BIT is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private swapping;

    BITDividendTracker public dividendTracker;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    address public ERC = address(0xdAC17F958D2ee523a2206206994597C13D831ec7); //ERC
    
    uint256 public swapTokensAtAmount = 770000000 * (10**9);
    uint256 public maxSellTransactionAmount = 77000000000 * (10**9);

    uint256 public ERCRewardsFee = 3;
    uint256 public liquidityFee = 1;
    uint256 public marketingFee = 3;
    uint256 public developerFee = 3;
    uint256 public totalFees = ERCRewardsFee.add(liquidityFee).add(marketingFee).add(developerFee);
    uint256 public maxWalletToken = 77000000000 * (10**9);

    address  _marketingWalletAddress = 0xF936E4008a2ee226d2149425ad7403521479DaA0;
    address  _developerWalletAddress = 0xF66eDB5bc556143263babbd232F5A124d24Ec15b;


    // use by default 300,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 300000;

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


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

    event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

    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 SwapBNBForTokens(
        uint256 amountIn,
        address[] path
    );

    constructor() public ERC20("Bonds Investment Token", "BIT") {

    	dividendTracker = new BITDividendTracker();
        //TestNet
        //IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3);
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(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(deadWallet);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWalletAddress, true);
        excludeFromFees(_developerWalletAddress, true);
        excludeFromFees(address(this), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 77000000000 * (10**9));
    }

    receive() external payable {

  	}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "BIT: The dividend tracker already has that address");

        BITDividendTracker newDividendTracker = BITDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "BIT: The new dividend tracker must be owned by the BIT token contract");

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "BIT: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "BIT: Account is already 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function setExcludeFromMaxTx(address _address, bool value) public onlyOwner { 
        _isExcludedFromMaxTx[_address] = value;
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }
    
    function setMaxWalletTokend(uint256 _maxToken) external onlyOwner {
  	    maxWalletToken = _maxToken * (10**9);
  	}

    function setTokensAtSwap(uint256 newValue) external onlyOwner {
  	    swapTokensAtAmount = newValue;
  	}

    function setMarketingWallet(address payable wallet) external onlyOwner{
        _marketingWalletAddress = wallet;
    }
    
    function setTaxFeePercent(uint256 rewardFee,uint256 _liquidityFee,uint256 _MarketingFee, uint _developerFee) external onlyOwner() {
        ERCRewardsFee = rewardFee;
        _pretaxfee = ERCRewardsFee;
        liquidityFee =  _liquidityFee;
        _preliquidityfee = _liquidityFee;
        marketingFee = _MarketingFee;
        _premarketingfee = marketingFee;
        developerFee = _developerFee;
        _predeveloperfee = developerFee;
        totalFees = ERCRewardsFee.add(liquidityFee).add(marketingFee).add(developerFee);
    }
    
    function setsellTaxFeePercent(uint256 taxsellFee,uint256 liquiditysellFee,uint256 MarketingsellFee, uint256 developersellFee) external onlyOwner() {
        _taxsellFee = taxsellFee;
        _liquiditysellFee = liquiditysellFee;
        _marketingsellFee = MarketingsellFee;
        _developersellFee = developersellFee;
    }

    function setdeveloperWallet(address payable wallet) external onlyOwner{
        _developerWalletAddress = wallet;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "BIT: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }


    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue >= 200000 && newValue <= 800000, "BIT: gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "BIT: 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 updateHoldingForRew(uint256 newValue) external onlyOwner {
        dividendTracker.updateHoldingForReward(newValue);
    }

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

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

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

    function withdrawableDividendOf(address account) public view returns(uint256) {
    	return dividendTracker.withdrawableDividendOf(account);
  	}

	function dividendTokenBalanceOf(address account) public view returns (uint256) {
		return dividendTracker.balanceOf(account);
	}

	function excludeFromDividends(address account) external onlyOwner{
	    dividendTracker.excludeFromDividends(account);
	}

    function getAccountDividendsInfo(address account)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
        return dividendTracker.getAccount(account);
    }

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

	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(msg.sender, false);
    }

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

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


    function setMaxtx(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount * (10**9);
    }

    uint256 public _predeveloperfee;
    uint256 public _premarketingfee;
    uint256 public _pretaxfee;
    uint256 public _preliquidityfee;

    uint256 public _taxsellFee ;
    uint256 public _liquiditysellFee ;
    uint256 public _marketingsellFee;
    uint256 public _developersellFee;

    function gg()private{
         
            ERCRewardsFee = _pretaxfee ;
            liquidityFee = _preliquidityfee;
            marketingFee =_premarketingfee;
            developerFee =_predeveloperfee;
        
        
    }
    
     function ggbb()private{
          
             ERCRewardsFee = _taxsellFee;
             liquidityFee = _liquiditysellFee;
             marketingFee = _marketingsellFee;
             developerFee = _developersellFee;
    }

    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(from == uniswapV2Pair&& to != uniswapV2Pair){
         gg();}
          if(to == uniswapV2Pair && from != uniswapV2Pair){
         ggbb();
          }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            to != uniswapV2Pair
        ) {

            uint256 contractBalanceRecepient = balanceOf(to);
            require(
                contractBalanceRecepient + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
            
        }


        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if(automatedMarketMakerPairs[to]  && (!_isExcludedFromMaxTx[from]) && (!_isExcludedFromMaxTx[to])){
            require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        )
        
        {
            
            swapping = true;

            uint256 walletTokens = contractTokenBalance.mul(marketingFee.add(developerFee)).div(totalFees);
            uint256 contractBalance = address(this).balance;
            swapTokensForEth(walletTokens);
            uint256 newBalance = address(this).balance.sub(contractBalance);
            uint256 marketingShare = newBalance.mul(marketingFee).div(developerFee.add(marketingFee));
            uint256 developerShare = newBalance.sub(marketingShare);
            payable(_marketingWalletAddress).transfer(marketingShare);
            payable(_developerWalletAddress).transfer(developerShare);

            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
            swapAndLiquify(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            swapping = false;
        }


        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(takeFee) {
        	uint256 fees = amount.mul(totalFees).div(100);
        	if(automatedMarketMakerPairs[to]){
        	    fees += amount.mul(1).div(100);
        	}
        	amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if(!swapping) {
	    	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 swapAndLiquify(uint256 tokens) private {
       // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }


    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 swapTokensForERC(uint256 tokenAmount) private {

        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        path[2] = ERC;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            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
            owner(),
            block.timestamp
        );

    }

    function swapAndSendDividends(uint256 tokens) private{
        swapTokensForERC(tokens);
        uint256 dividends = IERC20(ERC).balanceOf(address(this));
        bool success = IERC20(ERC).transfer(address(dividendTracker), dividends);

        if (success) {
            dividendTracker.distributeERCDividends(dividends);
            emit SendDividends(tokens, dividends);
        }
    }
}

contract BITDividendTracker is Ownable, DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 public minimumTokenBalanceForDividends;

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

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

    constructor() public DividendPayingToken("BIT_Dividen_Tracker", "BIT_Dividend_Tracker") {
        claimWait = 60;
        minimumTokenBalanceForDividends = 100000 * (10**9); //must hold 100000+ tokens
    }


    function _transfer(address, address, uint256) internal override {
        require(false, "BIT_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public override {
        require(false, "BIT_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main BIT contract.");
    }

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

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

    	emit ExcludeFromDividends(account);
    }

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

    function updateHoldingForReward(uint256 newVal) external onlyOwner {
        minimumTokenBalanceForDividends = newVal; 
    }

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

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



    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
                                                        0;


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    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);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public 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 = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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":[{"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":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapBNBForTokens","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":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"ERC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERCRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developersellFee","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":"_marketingsellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_predeveloperfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preliquidityfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_premarketingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pretaxfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxsellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"developerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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 BITDividendTracker","name":"","type":"address"}],"stateMutability":"view","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":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHoldingForRew","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":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletTokend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxtx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"},{"internalType":"uint256","name":"_developerFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setTokensAtSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setdeveloperWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxsellFee","type":"uint256"},{"internalType":"uint256","name":"liquiditysellFee","type":"uint256"},{"internalType":"uint256","name":"MarketingsellFee","type":"uint256"},{"internalType":"uint256","name":"developersellFee","type":"uint256"}],"name":"setsellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateHoldingForRew","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009805461dead6001600160a01b031991821617909155600a805473dac17f958d2ee523a2206206994597c13d831ec79216919091179055670aaf96eb9d0d0000600b5568042c96f40959140000600c556003600d8190556001600e819055600f8290556010829055620000a4919062000090908290829082906200069b602090811b6200286e17901c565b6200069b60201b6200286e1790919060201c565b60115568042c96f40959140000601255601380546001600160a01b031990811673f936e4008a2ee226d2149425ad7403521479daa0179091556014805490911673f66edb5bc556143263babbd232f5a124d24ec15b179055620493e06015553480156200011057600080fd5b506040518060400160405280601681526020017f426f6e647320496e766573746d656e7420546f6b656e000000000000000000008152506040518060400160405280600381526020016210925560ea1b81525081600390805190602001906200017b92919062000a84565b5080516200019190600490602084019062000a84565b5050506000620001a6620006fd60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620002029062000b09565b604051809103906000f0801580156200021f573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029b57600080fd5b505afa158015620002b0573d6000803e3d6000fd5b505050506040513d6020811015620002c757600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200031857600080fd5b505afa1580156200032d573d6000803e3d6000fd5b505050506040513d60208110156200034457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200039757600080fd5b505af1158015620003ac573d6000803e3d6000fd5b505050506040513d6020811015620003c357600080fd5b5051600680546001600160a01b038086166001600160a01b031992831617909255600780549284169290911691909117905590506200040481600162000701565b6008546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200045257600080fd5b505af115801562000467573d6000803e3d6000fd5b50506008546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b158015620004b857600080fd5b505af1158015620004cd573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620004ee62000834565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156200052e57600080fd5b505af115801562000543573d6000803e3d6000fd5b50506008546009546040805163031e79db60e41b81526001600160a01b03928316600482015290519190921693506331e79db09250602480830192600092919082900301818387803b1580156200059957600080fd5b505af1158015620005ae573d6000803e3d6000fd5b50506008546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200060157600080fd5b505af115801562000616573d6000803e3d6000fd5b50505050620006366200062e6200083460201b60201c565b600162000843565b6013546200064f906001600160a01b0316600162000843565b60145462000668906001600160a01b0316600162000843565b6200067530600162000843565b620006936200068362000834565b68042c96f4095914000062000970565b505062000b2e565b600082820183811015620006f6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03821660009081526017602052604090205460ff1615158115151415620007615760405162461bcd60e51b815260040180806020018281038252603d81526020018062006eab603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155620007f8576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b158015620007de57600080fd5b505af1158015620007f3573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b6200084d620006fd565b6005546001600160a01b03908116911614620008b0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff1615158115151415620009105760405162461bcd60e51b815260040180806020018281038252602281526020018062006e896022913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620009cc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620009da6000838362000a7f565b620009f6816002546200069b60201b6200286e1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a299183906200286e6200069b821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000ac757805160ff191683800117855562000af7565b8280016001018555821562000af7579182015b8281111562000af757825182559160200191906001019062000ada565b5062000b0592915062000b17565b5090565b6123b38062004ad683390190565b5b8082111562000b05576000815560010162000b18565b613f988062000b3e6000396000f3fe6080604052600436106103dd5760003560e01c806385141a77116101fd578063ad56c13c11610118578063dd62ed3e116100ab578063e89086aa1161007a578063e89086aa14610dc5578063e98030c714610dda578063f27fd25414610e04578063f2fde38b14610e2e578063fd3289f814610e61576103e4565b8063dd62ed3e14610d4b578063e2f4560514610d86578063e6c75f7114610d9b578063e7841ec014610db0576103e4565b8063c0246668116100e7578063c024666814610c67578063c492f04614610ca2578063d3d74bdf14610d21578063d5acaed914610d36576103e4565b8063ad56c13c14610b8c578063b0b24e2c14610c0a578063b62496f514610c1f578063b9c6d66f14610c52576103e4565b80639a7a23d611610190578063a457c2d71161015f578063a457c2d714610ad2578063a8b9d24014610b0b578063a9059cbb14610b3e578063a9a0848914610b77576103e4565b80639a7a23d614610a435780639c1b8af514610a7e5780639f34a5b414610a93578063a26579ad14610abd576103e4565b80638964b034116101cc5780638964b034146109d15780638da5cb5b14610a0457806395d89b4114610a1957806398118cb414610a2e576103e4565b806385141a7714610923578063853271af14610938578063871c128d1461097457806388bdd9be1461099e576103e4565b80634e267f67116102f857806365b8dbc01161028b578063700bb1911161025a578063700bb1911461088757806370a08231146108b1578063715018a6146108e4578063719e82a1146108f957806383dbffcf1461090e576103e4565b806365b8dbc0146107d05780636843cd84146108035780636b67c4df146108365780636e9c67b21461084b576103e4565b806357868018116102c757806357868018146107235780635b89029c1461074d5780635d098b381461078857806364b0f653146107bb576103e4565b80634e267f67146106b15780634e71d92d146106c65780634fbee193146106db5780635305d1cf1461070e576103e4565b80632c1f52161161037057806331e79db01161033f57806331e79db014610604578063395093511461063957806349bd5a5e146106725780634d5ddae514610687576103e4565b80632c1f52161461059a57806330bb4cff146105af578063313ce567146105c457806331c2ad53146105ef576103e4565b80631694505e116103ac5780631694505e146104fc57806318160ddd1461052d5780632327f8351461054257806323b872dd14610557576103e4565b806302259e9e146103e957806306fdde0314610410578063095ea7b31461049a57806313114a9d146104e7576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610e8b565b60408051918252519081900360200190f35b34801561041c57600080fd5b50610425610e91565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561045f578181015183820152602001610447565b50505050905090810190601f16801561048c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104a657600080fd5b506104d3600480360360408110156104bd57600080fd5b506001600160a01b038135169060200135610f27565b604080519115158252519081900360200190f35b3480156104f357600080fd5b506103fe610f45565b34801561050857600080fd5b50610511610f4b565b604080516001600160a01b039092168252519081900360200190f35b34801561053957600080fd5b506103fe610f5a565b34801561054e57600080fd5b506103fe610f60565b34801561056357600080fd5b506104d36004803603606081101561057a57600080fd5b506001600160a01b03813581169160208101359091169060400135610f66565b3480156105a657600080fd5b50610511610fed565b3480156105bb57600080fd5b506103fe610ffc565b3480156105d057600080fd5b506105d9611072565b6040805160ff9092168252519081900360200190f35b3480156105fb57600080fd5b506103fe611077565b34801561061057600080fd5b506106376004803603602081101561062757600080fd5b50356001600160a01b031661107d565b005b34801561064557600080fd5b506104d36004803603604081101561065c57600080fd5b506001600160a01b03813516906020013561113e565b34801561067e57600080fd5b5061051161118c565b34801561069357600080fd5b50610637600480360360208110156106aa57600080fd5b503561119b565b3480156106bd57600080fd5b506103fe611240565b3480156106d257600080fd5b50610637611246565b3480156106e757600080fd5b506104d3600480360360208110156106fe57600080fd5b50356001600160a01b03166112cb565b34801561071a57600080fd5b506103fe6112e9565b34801561072f57600080fd5b506106376004803603602081101561074657600080fd5b50356112ef565b34801561075957600080fd5b506106376004803603604081101561077057600080fd5b506001600160a01b038135169060200135151561134c565b34801561079457600080fd5b50610637600480360360208110156107ab57600080fd5b50356001600160a01b03166113cf565b3480156107c757600080fd5b506103fe611449565b3480156107dc57600080fd5b50610637600480360360208110156107f357600080fd5b50356001600160a01b031661148e565b34801561080f57600080fd5b506103fe6004803603602081101561082657600080fd5b50356001600160a01b0316611713565b34801561084257600080fd5b506103fe611796565b34801561085757600080fd5b506106376004803603608081101561086e57600080fd5b508035906020810135906040810135906060013561179c565b34801561089357600080fd5b50610637600480360360208110156108aa57600080fd5b5035611808565b3480156108bd57600080fd5b506103fe600480360360208110156108d457600080fd5b50356001600160a01b03166118ef565b3480156108f057600080fd5b5061063761190a565b34801561090557600080fd5b506103fe6119ac565b34801561091a57600080fd5b506103fe6119b2565b34801561092f57600080fd5b506105116119b8565b34801561094457600080fd5b506106376004803603608081101561095b57600080fd5b50803590602081013590604081013590606001356119c7565b34801561098057600080fd5b506106376004803603602081101561099757600080fd5b5035611a66565b3480156109aa57600080fd5b50610637600480360360208110156109c157600080fd5b50356001600160a01b0316611b83565b3480156109dd57600080fd5b50610637600480360360208110156109f457600080fd5b50356001600160a01b0316611eda565b348015610a1057600080fd5b50610511611f54565b348015610a2557600080fd5b50610425611f63565b348015610a3a57600080fd5b506103fe611fc4565b348015610a4f57600080fd5b5061063760048036036040811015610a6657600080fd5b506001600160a01b0381351690602001351515611fca565b348015610a8a57600080fd5b506103fe612079565b348015610a9f57600080fd5b5061063760048036036020811015610ab657600080fd5b503561207f565b348015610ac957600080fd5b506103fe6120e2565b348015610ade57600080fd5b506104d360048036036040811015610af557600080fd5b506001600160a01b038135169060200135612127565b348015610b1757600080fd5b506103fe60048036036020811015610b2e57600080fd5b50356001600160a01b031661218f565b348015610b4a57600080fd5b506104d360048036036040811015610b6157600080fd5b506001600160a01b0381351690602001356121e0565b348015610b8357600080fd5b506103fe6121f4565b348015610b9857600080fd5b50610bbf60048036036020811015610baf57600080fd5b50356001600160a01b03166121fa565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c1657600080fd5b506105116122da565b348015610c2b57600080fd5b506104d360048036036020811015610c4257600080fd5b50356001600160a01b03166122e9565b348015610c5e57600080fd5b506103fe6122fe565b348015610c7357600080fd5b5061063760048036036040811015610c8a57600080fd5b506001600160a01b0381351690602001351515612343565b348015610cae57600080fd5b5061063760048036036040811015610cc557600080fd5b810190602081018135640100000000811115610ce057600080fd5b820183602082011115610cf257600080fd5b80359060200191846020830284011164010000000083111715610d1457600080fd5b9193509150351515612459565b348015610d2d57600080fd5b506103fe612579565b348015610d4257600080fd5b506103fe61257f565b348015610d5757600080fd5b506103fe60048036036040811015610d6e57600080fd5b506001600160a01b0381358116916020013516612585565b348015610d9257600080fd5b506103fe6125b0565b348015610da757600080fd5b506103fe6125b6565b348015610dbc57600080fd5b506103fe6125bc565b348015610dd157600080fd5b506103fe612601565b348015610de657600080fd5b5061063760048036036020811015610dfd57600080fd5b5035612607565b348015610e1057600080fd5b50610bbf60048036036020811015610e2757600080fd5b50356126ac565b348015610e3a57600080fd5b5061063760048036036020811015610e5157600080fd5b50356001600160a01b0316612712565b348015610e6d57600080fd5b5061063760048036036020811015610e8457600080fd5b503561280b565b600c5481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b5050505050905090565b6000610f3b610f346128cf565b84846128d3565b5060015b92915050565b60115481565b6006546001600160a01b031681565b60025490565b601a5481565b6000610f738484846129bf565b610fe384610f7f6128cf565b610fde85604051806060016040528060288152602001613d15602891396001600160a01b038a16600090815260016020526040812090610fbd6128cf565b6001600160a01b03168152602081019190915260400160002054919061310b565b6128d3565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561104157600080fd5b505afa158015611055573d6000803e3d6000fd5b505050506040513d602081101561106b57600080fd5b5051905090565b600990565b60105481565b6110856128cf565b6005546001600160a01b039081169116146110d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561112357600080fd5b505af1158015611137573d6000803e3d6000fd5b5050505050565b6000610f3b61114b6128cf565b84610fde856001600061115c6128cf565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061286e565b6007546001600160a01b031681565b6111a36128cf565b6005546001600160a01b039081169116146111f3576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600854604080516302bb6bc760e21b81526004810184905290516001600160a01b0390921691630aedaf1c9160248082019260009290919082900301818387803b15801561112357600080fd5b600d5481565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561129d57600080fd5b505af11580156112b1573d6000803e3d6000fd5b505050506040513d60208110156112c757600080fd5b5050565b6001600160a01b031660009081526016602052604090205460ff1690565b601f5481565b6112f76128cf565b6005546001600160a01b03908116911614611347576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600b55565b6113546128cf565b6005546001600160a01b039081169116146113a4576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6113d76128cf565b6005546001600160a01b03908116911614611427576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561104157600080fd5b6114966128cf565b6005546001600160a01b039081169116146114e6576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156115335760405162461bcd60e51b8152600401808060200182810382526028815260200180613e566028913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156115cc57600080fd5b505afa1580156115e0573d6000803e3d6000fd5b505050506040513d60208110156115f657600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561164857600080fd5b505afa15801561165c573d6000803e3d6000fd5b505050506040513d602081101561167257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156116c457600080fd5b505af11580156116d8573d6000803e3d6000fd5b505050506040513d60208110156116ee57600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561176457600080fd5b505afa158015611778573d6000803e3d6000fd5b505050506040513d602081101561178e57600080fd5b505192915050565b600f5481565b6117a46128cf565b6005546001600160a01b039081169116146117f4576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601d93909355601e91909155601f55602055565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561185f57600080fd5b505af1158015611873573d6000803e3d6000fd5b505050506040513d606081101561188957600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119126128cf565b6005546001600160a01b03908116911614611962576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b601e5481565b601c5481565b6009546001600160a01b031681565b6119cf6128cf565b6005546001600160a01b03908116911614611a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600d849055601b849055600e839055601c839055600f829055601a82905560108190556019819055611a5d81611a578481888861286e565b9061286e565b60115550505050565b611a6e6128cf565b6005546001600160a01b03908116911614611abe576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b62030d408110158015611ad45750620c35008111155b611b0f5760405162461bcd60e51b8152600401808060200182810382526039815260200180613f056039913960400191505060405180910390fd5b601554811415611b505760405162461bcd60e51b8152600401808060200182810382526031815260200180613dc76031913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611b8b6128cf565b6005546001600160a01b03908116911614611bdb576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611c285760405162461bcd60e51b8152600401808060200182810382526032815260200180613c9e6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c7057600080fd5b505afa158015611c84573d6000803e3d6000fd5b505050506040513d6020811015611c9a57600080fd5b50516001600160a01b031614611ce15760405162461bcd60e51b8152600401808060200182810382526045815260200180613d826045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611d3057600080fd5b505af1158015611d44573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611dbe611f54565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611dfd57600080fd5b505af1158015611e11573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611e6357600080fd5b505af1158015611e77573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b611ee26128cf565b6005546001600160a01b03908116911614611f32576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b600e5481565b611fd26128cf565b6005546001600160a01b03908116911614612022576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6007546001600160a01b038381169116141561206f5760405162461bcd60e51b815260040180806020018281038252604a815260200180613ebb604a913960600191505060405180910390fd5b6112c782826131a2565b60155481565b6120876128cf565b6005546001600160a01b039081169116146120d7576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b633b9aca0002601255565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561104157600080fd5b6000610f3b6121346128cf565b84610fde85604051806060016040528060258152602001613f3e602591396001600061215e6128cf565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061310b565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561176457600080fd5b6000610f3b6121ed6128cf565b84846129bf565b60205481565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561226957600080fd5b505afa15801561227d573d6000803e3d6000fd5b505050506040513d61010081101561229457600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b600a546001600160a01b031681565b60176020526000908152604090205460ff1681565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b15801561104157600080fd5b61234b6128cf565b6005546001600160a01b0390811691161461239b576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156123f95760405162461bcd60e51b8152600401808060200182810382526022815260200180613c566022913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124616128cf565b6005546001600160a01b039081169116146124b1576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b60005b828110156125065781601660008686858181106124cd57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016124b4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601b5481565b601d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b5481565b60125481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561104157600080fd5b60195481565b61260f6128cf565b6005546001600160a01b0390811691161461265f576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561112357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561226957600080fd5b61271a6128cf565b6005546001600160a01b0390811691161461276a576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b0381166127af5760405162461bcd60e51b8152600401808060200182810382526026815260200180613c0e6026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6128136128cf565b6005546001600160a01b03908116911614612863576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b633b9aca0002600c55565b6000828201838110156128c8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129185760405162461bcd60e51b8152600401808060200182810382526024815260200180613e326024913960400191505060405180910390fd5b6001600160a01b03821661295d5760405162461bcd60e51b8152600401808060200182810382526022815260200180613c346022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612a045760405162461bcd60e51b8152600401808060200182810382526025815260200180613d5d6025913960400191505060405180910390fd5b6001600160a01b038216612a495760405162461bcd60e51b8152600401808060200182810382526023815260200180613beb6023913960400191505060405180910390fd5b6007546001600160a01b038481169116148015612a7457506007546001600160a01b03838116911614155b15612a8157612a816132d0565b6007546001600160a01b038381169116148015612aac57506007546001600160a01b03848116911614155b15612ab957612ab96132ea565b612ac1611f54565b6001600160a01b0316836001600160a01b031614158015612afb5750612ae5611f54565b6001600160a01b0316826001600160a01b031614155b8015612b0f57506001600160a01b03821615155b8015612b2657506001600160a01b03821661dead14155b8015612b4057506007546001600160a01b03838116911614155b15612b97576000612b50836118ef565b90506012548282011115612b955760405162461bcd60e51b8152600401808060200182810382526024815260200180613cd06024913960400191505060405180910390fd5b505b80612bad57612ba883836000613304565b613106565b6001600160a01b03821660009081526017602052604090205460ff168015612bee57506001600160a01b03831660009081526018602052604090205460ff16155b8015612c1357506001600160a01b03821660009081526018602052604090205460ff16155b15612c5957600c54811115612c595760405162461bcd60e51b815260040180806020018281038252603a815260200180613df8603a913960400191505060405180910390fd5b6000612c64306118ef565b600b5490915081108015908190612c855750600754600160a01b900460ff16155b8015612caa57506001600160a01b03851660009081526017602052604090205460ff16155b8015612ccf5750612cb9611f54565b6001600160a01b0316856001600160a01b031614155b8015612cf45750612cde611f54565b6001600160a01b0316846001600160a01b031614155b15612e55576007805460ff60a01b1916600160a01b179055601154601054600f54600092612d39929091612d3391612d2c919061286e565b869061345f565b906134b8565b905047612d45826134fa565b6000612d5147836136a0565b90506000612d7d612d6f600f5460105461286e90919063ffffffff16565b600f54612d3390859061345f565b90506000612d8b83836136a0565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612dc6573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e01573d6000803e3d6000fd5b506000612e1f601154612d33600e548b61345f90919063ffffffff16565b9050612e2a816136e2565b6000612e35306118ef565b9050612e4081613768565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680612ea357506001600160a01b03851660009081526016602052604090205460ff165b15612eac575060005b8015612f1d576000612ece6064612d336011548861345f90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff1615612f0457612f026064612d3387600161345f565b015b612f0e85826136a0565b9450612f1b873083613304565b505b612f28868686613304565b6008546001600160a01b031663e30443bc87612f43816118ef565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612f8957600080fd5b505af1925050508015612f9a575060015b506008546001600160a01b031663e30443bc86612fb6816118ef565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612ffc57600080fd5b505af192505050801561300d575060015b50600754600160a01b900460ff1661310257601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561307357600080fd5b505af19250505080156130a757506040513d606081101561309357600080fd5b508051602082015160409092015190919060015b6130b057613100565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561319a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561315f578181015183820152602001613147565b50505050905090810190601f16801561318c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156132005760405162461bcd60e51b815260040180806020018281038252603d815260200180613e7e603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613294576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561327b57600080fd5b505af115801561328f573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601b54600d55601c54600e55601a54600f55601954601055565b601d54600d55601e54600e55601f54600f55602054601055565b6001600160a01b0383166133495760405162461bcd60e51b8152600401808060200182810382526025815260200180613d5d6025913960400191505060405180910390fd5b6001600160a01b03821661338e5760405162461bcd60e51b8152600401808060200182810382526023815260200180613beb6023913960400191505060405180910390fd5b613399838383613106565b6133d681604051806060016040528060268152602001613c78602691396001600160a01b038616600090815260208190526040902054919061310b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613405908261286e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261346e57506000610f3f565b8282028284828161347b57fe5b04146128c85760405162461bcd60e51b8152600401808060200182810382526021815260200180613cf46021913960400191505060405180910390fd5b60006128c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061391f565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061352857fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561357c57600080fd5b505afa158015613590573d6000803e3d6000fd5b505050506040513d60208110156135a657600080fd5b50518151829060019081106135b757fe5b6001600160a01b0392831660209182029290920101526006546135dd91309116846128d3565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561366357818101518382015260200161364b565b505050509050019650505050505050600060405180830381600087803b15801561368c57600080fd5b505af1158015613102573d6000803e3d6000fd5b60006128c883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061310b565b60006136ef8260026134b8565b905060006136fd83836136a0565b905047613709836134fa565b600061371547836136a0565b90506137218382613984565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61377181613a57565b600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156137bc57600080fd5b505afa1580156137d0573d6000803e3d6000fd5b505050506040513d60208110156137e657600080fd5b5051600a546008546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b15801561384657600080fd5b505af115801561385a573d6000803e3d6000fd5b505050506040513d602081101561387057600080fd5b5051905080156131065760085460408051631127fec560e31b81526004810185905290516001600160a01b039092169163893ff6289160248082019260009290919082900301818387803b1580156138c757600080fd5b505af11580156138db573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b6000818361396e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561315f578181015183820152602001613147565b50600083858161397a57fe5b0495945050505050565b60065461399c9030906001600160a01b0316846128d3565b6006546001600160a01b031663f305d7198230856000806139bb611f54565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613a2657600080fd5b505af1158015613a3a573d6000803e3d6000fd5b50505050506040513d6060811015613a5157600080fd5b50505050565b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613a8757fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613adb57600080fd5b505afa158015613aef573d6000803e3d6000fd5b505050506040513d6020811015613b0557600080fd5b5051815182906001908110613b1657fe5b6001600160a01b039283166020918202929092010152600a54825191169082906002908110613b4157fe5b6001600160a01b039283166020918202929092010152600654613b6791309116846128d3565b600654604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561366357818101518382015260200161364b56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734249543a204163636f756e7420697320616c726561647920276578636c756465642745524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654249543a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734249543a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652042495420746f6b656e20636f6e74726163744249543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756553656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734249543a2054686520726f7574657220616c726561647920686173207468617420616464726573734249543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654249543a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616972734249543a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220693853faa64040578e62171bc04fec2a386465ea20247e0210ee4c92ecd877b064736f6c634300060c00336080604052600680546001600160a01b03191673dac17f958d2ee523a2206206994597c13d831ec71790553480156200003757600080fd5b50604080518082018252601381527f4249545f4469766964656e5f547261636b65720000000000000000000000000060208083019182528351808501909452601484527f4249545f4469766964656e645f547261636b657200000000000000000000000090840152815191929183918391620000b6916003916200014a565b508051620000cc9060049060208401906200014a565b5050506000620000e16200014660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050603c60125550655af3107a4000601355620001e6565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b6121bd80620001f66000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806385a6b3ae11610130578063b0b24e2c116100b8578063e7841ec01161007c578063e7841ec0146106d4578063e98030c7146106dc578063f2fde38b146106f9578063fbcbc0f11461071f578063ffb2c4791461074557610232565b8063b0b24e2c1461063c578063bc4c4b3714610644578063be10b61414610672578063dd62ed3e1461067a578063e30443bc146106a857610232565b806395d89b41116100ff57806395d89b4114610590578063a457c2d714610598578063a8b9d240146105c4578063a9059cbb146105ea578063aafd847a1461061657610232565b806385a6b3ae14610521578063893ff628146105295780638da5cb5b1461054657806391b89fba1461056a57610232565b8063313ce567116101be5780635183d6fd116101825780635183d6fd1461047b5780636a474002146104e35780636f2789ec146104eb57806370a08231146104f3578063715018a61461051957610232565b8063313ce567146103bf57806331e79db0146103dd57806339509351146104035780634e7b827f1461042f57806350cdb99f1461045557610232565b806318160ddd1161020557806318160ddd1461032d578063226cfa3d1461033557806323b872dd1461035b57806327ce0147146103915780633009a609146103b757610232565b806306fdde0314610237578063095ea7b3146102b457806309bbedde146102f45780630aedaf1c1461030e575b600080fd5b61023f610780565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610279578181015183820152602001610261565b50505050905090810190601f1680156102a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e0600480360360408110156102ca57600080fd5b506001600160a01b038135169060200135610816565b604080519115158252519081900360200190f35b6102fc610834565b60408051918252519081900360200190f35b61032b6004803603602081101561032457600080fd5b503561083a565b005b6102fc610897565b6102fc6004803603602081101561034b57600080fd5b50356001600160a01b031661089d565b6102e06004803603606081101561037157600080fd5b506001600160a01b038135811691602081013590911690604001356108af565b6102fc600480360360208110156103a757600080fd5b50356001600160a01b0316610936565b6102fc610995565b6103c761099b565b6040805160ff9092168252519081900360200190f35b61032b600480360360208110156103f357600080fd5b50356001600160a01b03166109a0565b6102e06004803603604081101561041957600080fd5b506001600160a01b038135169060200135610afc565b6102e06004803603602081101561044557600080fd5b50356001600160a01b0316610b4a565b61032b6004803603602081101561046b57600080fd5b50356001600160a01b0316610b5f565b6104986004803603602081101561049157600080fd5b5035610ba1565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b61032b610d00565b6102fc610d37565b6102fc6004803603602081101561050957600080fd5b50356001600160a01b0316610d3d565b61032b610d58565b6102fc610dfa565b61032b6004803603602081101561053f57600080fd5b5035610e00565b61054e610eea565b604080516001600160a01b039092168252519081900360200190f35b6102fc6004803603602081101561058057600080fd5b50356001600160a01b0316610ef9565b61023f610f04565b6102e0600480360360408110156105ae57600080fd5b506001600160a01b038135169060200135610f65565b6102fc600480360360208110156105da57600080fd5b50356001600160a01b0316610fcd565b6102e06004803603604081101561060057600080fd5b506001600160a01b038135169060200135610ff9565b6102fc6004803603602081101561062c57600080fd5b50356001600160a01b031661100d565b61054e611028565b6102e06004803603604081101561065a57600080fd5b506001600160a01b0381351690602001351515611037565b6102fc61110c565b6102fc6004803603604081101561069057600080fd5b506001600160a01b0381358116916020013516611112565b61032b600480360360408110156106be57600080fd5b506001600160a01b03813516906020013561113d565b6102fc6112e9565b61032b600480360360208110156106f257600080fd5b50356112ef565b61032b6004803603602081101561070f57600080fd5b50356001600160a01b031661140a565b6104986004803603602081101561073557600080fd5b50356001600160a01b0316611503565b6107626004803603602081101561075b57600080fd5b5035611676565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b600061082a610823611774565b8484611778565b5060015b92915050565b600b5490565b610842611774565b6005546001600160a01b03908116911614610892576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b601355565b60025490565b60116020526000908152604090205481565b60006108bc848484611864565b61092c846108c8611774565b61092785604051806060016040528060288152602001612063602891396001600160a01b038a16600090815260016020526040812090610906611774565b6001600160a01b03168152602081019190915260400160002054919061189b565b611778565b5060019392505050565b6001600160a01b038116600090815260086020526040812054600160801b90610985906109809061097a61097561096c88610d3d565b60075490611932565b611992565b906119a2565b6119d5565b8161098c57fe5b0490505b919050565b600f5481565b600990565b6109a8611774565b6005546001600160a01b039081169116146109f8576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526010602052604090205460ff1615610a1e57600080fd5b6001600160a01b0381166000908152601060205260408120805460ff19166001179055610a4c9082906119e8565b6040805163131836e760e21b8152600b60048201526001600160a01b03831660248201529051730df8b6f695ef7287360a650c7866ea05ff0cc8c791634c60db9c916044808301926000929190829003018186803b158015610aad57600080fd5b505af4158015610ac1573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b600061082a610b09611774565b846109278560016000610b1a611774565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611a41565b60106020526000908152604090205460ff1681565b33734f6c16dedd6219c0c57c11040e4f8a50ba6dd47714610b7f57600080fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080600b730df8b6f695ef7287360a650c7866ea05ff0cc8c763deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610bff57600080fd5b505af4158015610c13573d6000803e3d6000fd5b505050506040513d6020811015610c2957600080fd5b50518910610c50575060009650600019955085945086935083925082915081905080610cf5565b6000600b730df8b6f695ef7287360a650c7866ea05ff0cc8c763d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610cac57600080fd5b505af4158015610cc0573d6000803e3d6000fd5b505050506040513d6020811015610cd657600080fd5b50519050610ce381611503565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b8152600401808060200182810382526063815260200180611f3a6063913960800191505060405180910390fd5b60125481565b6001600160a01b031660009081526020819052604090205490565b610d60611774565b6005546001600160a01b03908116911614610db0576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600a5481565b610e08611774565b6005546001600160a01b03908116911614610e58576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b6000610e62610897565b11610e6c57600080fd5b8015610ee757610e9d610e7d610897565b610e8b83600160801b611932565b81610e9257fe5b600754919004611a41565b60075560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600a54610ee39082611a41565b600a555b50565b6005546001600160a01b031690565b600061082e82610fcd565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561080c5780601f106107e15761010080835404028352916020019161080c565b600061082a610f72611774565b84610927856040518060600160405280602581526020016121636025913960016000610f9c611774565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061189b565b6001600160a01b03811660009081526009602052604081205461082e90610ff384610936565b90611a9b565b600061082a611006611774565b8484611864565b6001600160a01b031660009081526009602052604090205490565b6006546001600160a01b031681565b6000611041611774565b6005546001600160a01b03908116911614611091576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b600061109c84611add565b90508015611102576001600160a01b0384166000818152601160209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a3600191505061082e565b5060009392505050565b60135481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611145611774565b6005546001600160a01b03908116911614611195576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526010602052604090205460ff16156111bb576112e5565b6013548110611253576111ce82826119e8565b60408051632f0ad01760e21b8152600b60048201526001600160a01b0384166024820152604481018390529051730df8b6f695ef7287360a650c7866ea05ff0cc8c79163bc2b405c916064808301926000929190829003018186803b15801561123657600080fd5b505af415801561124a573d6000803e3d6000fd5b505050506112d8565b61125e8260006119e8565b6040805163131836e760e21b8152600b60048201526001600160a01b03841660248201529051730df8b6f695ef7287360a650c7866ea05ff0cc8c791634c60db9c916044808301926000929190829003018186803b1580156112bf57600080fd5b505af41580156112d3573d6000803e3d6000fd5b505050505b6112e3826001611037565b505b5050565b600f5490565b6112f7611774565b6005546001600160a01b03908116911614611347576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b603c811015801561135b5750620151808111155b6113965760405162461bcd60e51b81526004018080602001828103825260498152602001806120cc6049913960600191505060405180910390fd5b6012548114156113d75760405162461bcd60e51b815260040180806020018281038252603b815260200180612007603b913960400191505060405180910390fd5b60125460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601255565b611412611774565b6005546001600160a01b03908116911614611462576040805162461bcd60e51b8152602060048201819052602482015260008051602061208b833981519152604482015290519081900360640190fd5b6001600160a01b0381166114a75760405162461bcd60e51b8152600401808060200182810382526026815260200180611fbf6026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600b730df8b6f695ef7287360a650c7866ea05ff0cc8c76317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561157557600080fd5b505af4158015611589573d6000803e3d6000fd5b505050506040513d602081101561159f57600080fd5b5051965060001995506000871261160357600f548711156115cf57600f546115c8908890611c4c565b9550611603565b600f54600b54600091106115e45760006115f3565b600f54600b546115f391611a9b565b90506115ff88826119a2565b9650505b61160c88610fcd565b945061161788610936565b6001600160a01b03891660009081526011602052604090205490945092508261164157600061164f565b60125461164f908490611a41565b915042821161165f576000611669565b6116698242611a9b565b9050919395975091939597565b600b546000908190819080611696575050600f546000925082915061176d565b600f546000805a90506000805b89841080156116b157508582105b1561175c57600b5460019095019485106116ca57600094505b6000600b60000186815481106116dc57fe5b60009182526020808320909101546001600160a01b0316808352601190915260409091205490915061170d90611c7e565b156117295761171d816001611037565b15611729576001909101905b60019092019160005a905080851115611753576117506117498683611a9b565b8790611a41565b95505b93506116a39050565b600f85905590975095509193505050505b9193909250565b3390565b6001600160a01b0383166117bd5760405162461bcd60e51b815260040180806020018281038252602481526020018061213f6024913960400191505060405180910390fd5b6001600160a01b0382166118025760405162461bcd60e51b8152600401808060200182810382526022815260200180611fe56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602a815260200180612115602a913960400191505060405180910390fd5b6000818484111561192a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118ef5781810151838201526020016118d7565b50505050905090810190601f16801561191c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000826119415750600061082e565b8282028284828161194e57fe5b041461198b5760405162461bcd60e51b81526004018080602001828103825260218152602001806120426021913960400191505060405180910390fd5b9392505050565b6000818181121561082e57600080fd5b60008282018183128015906119b75750838112155b806119cc57506000831280156119cc57508381125b61198b57600080fd5b6000808212156119e457600080fd5b5090565b60006119f383610d3d565b905080821115611a1b576000611a098383611a9b565b9050611a158482611ca5565b506112e3565b808210156112e3576000611a2f8284611a9b565b9050611a3b8482611d09565b50505050565b60008282018381101561198b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061198b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061189b565b600080611ae983610fcd565b90508015611c43576001600160a01b038316600090815260096020526040902054611b149082611a41565b6001600160a01b038416600081815260096020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a26006546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151600093929092169163a9059cbb9160448082019260209290919082900301818787803b158015611bbf57600080fd5b505af1158015611bd3573d6000803e3d6000fd5b505050506040513d6020811015611be957600080fd5b5051905080611c3b576001600160a01b038416600090815260096020526040902054611c159083611a9b565b6001600160a01b0385166000908152600960205260408120919091559250610990915050565b509050610990565b50600092915050565b6000818303818312801590611c615750838113155b806119cc57506000831280156119cc575083811361198b57600080fd5b600042821115611c9057506000610990565b601254611c9d4284611a9b565b101592915050565b611caf8282611d4d565b611ce9611cca6109758360075461193290919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611c4c565b6001600160a01b0390921660009081526008602052604090209190915550565b611d138282611e3d565b611ce9611d2e6109758360075461193290919063ffffffff16565b6001600160a01b038416600090815260086020526040902054906119a2565b6001600160a01b038216611da8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611db4600083836112e3565b600254611dc19082611a41565b6002556001600160a01b038216600090815260208190526040902054611de79082611a41565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611e825760405162461bcd60e51b81526004018080602001828103825260218152602001806120ab6021913960400191505060405180910390fd5b611e8e826000836112e3565b611ecb81604051806060016040528060228152602001611f9d602291396001600160a01b038516600090815260208190526040902054919061189b565b6001600160a01b038316600090815260208190526040902055600254611ef19082611a9b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe4249545f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2042495420636f6e74726163742e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734249545f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f20616464726573734249545f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f7572734249545f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d17d1670e011db38ad2916347bb4f34d7bc39d65fd1b761dc9e2083fd1b3cc6c64736f6c634300060c00334249543a204163636f756e7420697320616c726561647920276578636c75646564274249543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c806385141a77116101fd578063ad56c13c11610118578063dd62ed3e116100ab578063e89086aa1161007a578063e89086aa14610dc5578063e98030c714610dda578063f27fd25414610e04578063f2fde38b14610e2e578063fd3289f814610e61576103e4565b8063dd62ed3e14610d4b578063e2f4560514610d86578063e6c75f7114610d9b578063e7841ec014610db0576103e4565b8063c0246668116100e7578063c024666814610c67578063c492f04614610ca2578063d3d74bdf14610d21578063d5acaed914610d36576103e4565b8063ad56c13c14610b8c578063b0b24e2c14610c0a578063b62496f514610c1f578063b9c6d66f14610c52576103e4565b80639a7a23d611610190578063a457c2d71161015f578063a457c2d714610ad2578063a8b9d24014610b0b578063a9059cbb14610b3e578063a9a0848914610b77576103e4565b80639a7a23d614610a435780639c1b8af514610a7e5780639f34a5b414610a93578063a26579ad14610abd576103e4565b80638964b034116101cc5780638964b034146109d15780638da5cb5b14610a0457806395d89b4114610a1957806398118cb414610a2e576103e4565b806385141a7714610923578063853271af14610938578063871c128d1461097457806388bdd9be1461099e576103e4565b80634e267f67116102f857806365b8dbc01161028b578063700bb1911161025a578063700bb1911461088757806370a08231146108b1578063715018a6146108e4578063719e82a1146108f957806383dbffcf1461090e576103e4565b806365b8dbc0146107d05780636843cd84146108035780636b67c4df146108365780636e9c67b21461084b576103e4565b806357868018116102c757806357868018146107235780635b89029c1461074d5780635d098b381461078857806364b0f653146107bb576103e4565b80634e267f67146106b15780634e71d92d146106c65780634fbee193146106db5780635305d1cf1461070e576103e4565b80632c1f52161161037057806331e79db01161033f57806331e79db014610604578063395093511461063957806349bd5a5e146106725780634d5ddae514610687576103e4565b80632c1f52161461059a57806330bb4cff146105af578063313ce567146105c457806331c2ad53146105ef576103e4565b80631694505e116103ac5780631694505e146104fc57806318160ddd1461052d5780632327f8351461054257806323b872dd14610557576103e4565b806302259e9e146103e957806306fdde0314610410578063095ea7b31461049a57806313114a9d146104e7576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610e8b565b60408051918252519081900360200190f35b34801561041c57600080fd5b50610425610e91565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561045f578181015183820152602001610447565b50505050905090810190601f16801561048c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104a657600080fd5b506104d3600480360360408110156104bd57600080fd5b506001600160a01b038135169060200135610f27565b604080519115158252519081900360200190f35b3480156104f357600080fd5b506103fe610f45565b34801561050857600080fd5b50610511610f4b565b604080516001600160a01b039092168252519081900360200190f35b34801561053957600080fd5b506103fe610f5a565b34801561054e57600080fd5b506103fe610f60565b34801561056357600080fd5b506104d36004803603606081101561057a57600080fd5b506001600160a01b03813581169160208101359091169060400135610f66565b3480156105a657600080fd5b50610511610fed565b3480156105bb57600080fd5b506103fe610ffc565b3480156105d057600080fd5b506105d9611072565b6040805160ff9092168252519081900360200190f35b3480156105fb57600080fd5b506103fe611077565b34801561061057600080fd5b506106376004803603602081101561062757600080fd5b50356001600160a01b031661107d565b005b34801561064557600080fd5b506104d36004803603604081101561065c57600080fd5b506001600160a01b03813516906020013561113e565b34801561067e57600080fd5b5061051161118c565b34801561069357600080fd5b50610637600480360360208110156106aa57600080fd5b503561119b565b3480156106bd57600080fd5b506103fe611240565b3480156106d257600080fd5b50610637611246565b3480156106e757600080fd5b506104d3600480360360208110156106fe57600080fd5b50356001600160a01b03166112cb565b34801561071a57600080fd5b506103fe6112e9565b34801561072f57600080fd5b506106376004803603602081101561074657600080fd5b50356112ef565b34801561075957600080fd5b506106376004803603604081101561077057600080fd5b506001600160a01b038135169060200135151561134c565b34801561079457600080fd5b50610637600480360360208110156107ab57600080fd5b50356001600160a01b03166113cf565b3480156107c757600080fd5b506103fe611449565b3480156107dc57600080fd5b50610637600480360360208110156107f357600080fd5b50356001600160a01b031661148e565b34801561080f57600080fd5b506103fe6004803603602081101561082657600080fd5b50356001600160a01b0316611713565b34801561084257600080fd5b506103fe611796565b34801561085757600080fd5b506106376004803603608081101561086e57600080fd5b508035906020810135906040810135906060013561179c565b34801561089357600080fd5b50610637600480360360208110156108aa57600080fd5b5035611808565b3480156108bd57600080fd5b506103fe600480360360208110156108d457600080fd5b50356001600160a01b03166118ef565b3480156108f057600080fd5b5061063761190a565b34801561090557600080fd5b506103fe6119ac565b34801561091a57600080fd5b506103fe6119b2565b34801561092f57600080fd5b506105116119b8565b34801561094457600080fd5b506106376004803603608081101561095b57600080fd5b50803590602081013590604081013590606001356119c7565b34801561098057600080fd5b506106376004803603602081101561099757600080fd5b5035611a66565b3480156109aa57600080fd5b50610637600480360360208110156109c157600080fd5b50356001600160a01b0316611b83565b3480156109dd57600080fd5b50610637600480360360208110156109f457600080fd5b50356001600160a01b0316611eda565b348015610a1057600080fd5b50610511611f54565b348015610a2557600080fd5b50610425611f63565b348015610a3a57600080fd5b506103fe611fc4565b348015610a4f57600080fd5b5061063760048036036040811015610a6657600080fd5b506001600160a01b0381351690602001351515611fca565b348015610a8a57600080fd5b506103fe612079565b348015610a9f57600080fd5b5061063760048036036020811015610ab657600080fd5b503561207f565b348015610ac957600080fd5b506103fe6120e2565b348015610ade57600080fd5b506104d360048036036040811015610af557600080fd5b506001600160a01b038135169060200135612127565b348015610b1757600080fd5b506103fe60048036036020811015610b2e57600080fd5b50356001600160a01b031661218f565b348015610b4a57600080fd5b506104d360048036036040811015610b6157600080fd5b506001600160a01b0381351690602001356121e0565b348015610b8357600080fd5b506103fe6121f4565b348015610b9857600080fd5b50610bbf60048036036020811015610baf57600080fd5b50356001600160a01b03166121fa565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c1657600080fd5b506105116122da565b348015610c2b57600080fd5b506104d360048036036020811015610c4257600080fd5b50356001600160a01b03166122e9565b348015610c5e57600080fd5b506103fe6122fe565b348015610c7357600080fd5b5061063760048036036040811015610c8a57600080fd5b506001600160a01b0381351690602001351515612343565b348015610cae57600080fd5b5061063760048036036040811015610cc557600080fd5b810190602081018135640100000000811115610ce057600080fd5b820183602082011115610cf257600080fd5b80359060200191846020830284011164010000000083111715610d1457600080fd5b9193509150351515612459565b348015610d2d57600080fd5b506103fe612579565b348015610d4257600080fd5b506103fe61257f565b348015610d5757600080fd5b506103fe60048036036040811015610d6e57600080fd5b506001600160a01b0381358116916020013516612585565b348015610d9257600080fd5b506103fe6125b0565b348015610da757600080fd5b506103fe6125b6565b348015610dbc57600080fd5b506103fe6125bc565b348015610dd157600080fd5b506103fe612601565b348015610de657600080fd5b5061063760048036036020811015610dfd57600080fd5b5035612607565b348015610e1057600080fd5b50610bbf60048036036020811015610e2757600080fd5b50356126ac565b348015610e3a57600080fd5b5061063760048036036020811015610e5157600080fd5b50356001600160a01b0316612712565b348015610e6d57600080fd5b5061063760048036036020811015610e8457600080fd5b503561280b565b600c5481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b5050505050905090565b6000610f3b610f346128cf565b84846128d3565b5060015b92915050565b60115481565b6006546001600160a01b031681565b60025490565b601a5481565b6000610f738484846129bf565b610fe384610f7f6128cf565b610fde85604051806060016040528060288152602001613d15602891396001600160a01b038a16600090815260016020526040812090610fbd6128cf565b6001600160a01b03168152602081019190915260400160002054919061310b565b6128d3565b5060019392505050565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561104157600080fd5b505afa158015611055573d6000803e3d6000fd5b505050506040513d602081101561106b57600080fd5b5051905090565b600990565b60105481565b6110856128cf565b6005546001600160a01b039081169116146110d5576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561112357600080fd5b505af1158015611137573d6000803e3d6000fd5b5050505050565b6000610f3b61114b6128cf565b84610fde856001600061115c6128cf565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061286e565b6007546001600160a01b031681565b6111a36128cf565b6005546001600160a01b039081169116146111f3576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600854604080516302bb6bc760e21b81526004810184905290516001600160a01b0390921691630aedaf1c9160248082019260009290919082900301818387803b15801561112357600080fd5b600d5481565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561129d57600080fd5b505af11580156112b1573d6000803e3d6000fd5b505050506040513d60208110156112c757600080fd5b5050565b6001600160a01b031660009081526016602052604090205460ff1690565b601f5481565b6112f76128cf565b6005546001600160a01b03908116911614611347576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600b55565b6113546128cf565b6005546001600160a01b039081169116146113a4576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6113d76128cf565b6005546001600160a01b03908116911614611427576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561104157600080fd5b6114966128cf565b6005546001600160a01b039081169116146114e6576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156115335760405162461bcd60e51b8152600401808060200182810382526028815260200180613e566028913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156115cc57600080fd5b505afa1580156115e0573d6000803e3d6000fd5b505050506040513d60208110156115f657600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561164857600080fd5b505afa15801561165c573d6000803e3d6000fd5b505050506040513d602081101561167257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156116c457600080fd5b505af11580156116d8573d6000803e3d6000fd5b505050506040513d60208110156116ee57600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561176457600080fd5b505afa158015611778573d6000803e3d6000fd5b505050506040513d602081101561178e57600080fd5b505192915050565b600f5481565b6117a46128cf565b6005546001600160a01b039081169116146117f4576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601d93909355601e91909155601f55602055565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561185f57600080fd5b505af1158015611873573d6000803e3d6000fd5b505050506040513d606081101561188957600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119126128cf565b6005546001600160a01b03908116911614611962576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b601e5481565b601c5481565b6009546001600160a01b031681565b6119cf6128cf565b6005546001600160a01b03908116911614611a1f576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b600d849055601b849055600e839055601c839055600f829055601a82905560108190556019819055611a5d81611a578481888861286e565b9061286e565b60115550505050565b611a6e6128cf565b6005546001600160a01b03908116911614611abe576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b62030d408110158015611ad45750620c35008111155b611b0f5760405162461bcd60e51b8152600401808060200182810382526039815260200180613f056039913960400191505060405180910390fd5b601554811415611b505760405162461bcd60e51b8152600401808060200182810382526031815260200180613dc76031913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611b8b6128cf565b6005546001600160a01b03908116911614611bdb576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611c285760405162461bcd60e51b8152600401808060200182810382526032815260200180613c9e6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c7057600080fd5b505afa158015611c84573d6000803e3d6000fd5b505050506040513d6020811015611c9a57600080fd5b50516001600160a01b031614611ce15760405162461bcd60e51b8152600401808060200182810382526045815260200180613d826045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611d3057600080fd5b505af1158015611d44573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611dbe611f54565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611dfd57600080fd5b505af1158015611e11573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611e6357600080fd5b505af1158015611e77573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b611ee26128cf565b6005546001600160a01b03908116911614611f32576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b600e5481565b611fd26128cf565b6005546001600160a01b03908116911614612022576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6007546001600160a01b038381169116141561206f5760405162461bcd60e51b815260040180806020018281038252604a815260200180613ebb604a913960600191505060405180910390fd5b6112c782826131a2565b60155481565b6120876128cf565b6005546001600160a01b039081169116146120d7576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b633b9aca0002601255565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561104157600080fd5b6000610f3b6121346128cf565b84610fde85604051806060016040528060258152602001613f3e602591396001600061215e6128cf565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061310b565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561176457600080fd5b6000610f3b6121ed6128cf565b84846129bf565b60205481565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561226957600080fd5b505afa15801561227d573d6000803e3d6000fd5b505050506040513d61010081101561229457600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b600a546001600160a01b031681565b60176020526000908152604090205460ff1681565b60085460408051632f842d8560e21b815290516000926001600160a01b03169163be10b614916004808301926020929190829003018186803b15801561104157600080fd5b61234b6128cf565b6005546001600160a01b0390811691161461239b576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156123f95760405162461bcd60e51b8152600401808060200182810382526022815260200180613c566022913960400191505060405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124616128cf565b6005546001600160a01b039081169116146124b1576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b60005b828110156125065781601660008686858181106124cd57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016124b4565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b601b5481565b601d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b5481565b60125481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561104157600080fd5b60195481565b61260f6128cf565b6005546001600160a01b0390811691161461265f576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561112357600080fd5b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561226957600080fd5b61271a6128cf565b6005546001600160a01b0390811691161461276a576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b6001600160a01b0381166127af5760405162461bcd60e51b8152600401808060200182810382526026815260200180613c0e6026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6128136128cf565b6005546001600160a01b03908116911614612863576040805162461bcd60e51b81526020600482018190526024820152600080516020613d3d833981519152604482015290519081900360640190fd5b633b9aca0002600c55565b6000828201838110156128c8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129185760405162461bcd60e51b8152600401808060200182810382526024815260200180613e326024913960400191505060405180910390fd5b6001600160a01b03821661295d5760405162461bcd60e51b8152600401808060200182810382526022815260200180613c346022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612a045760405162461bcd60e51b8152600401808060200182810382526025815260200180613d5d6025913960400191505060405180910390fd5b6001600160a01b038216612a495760405162461bcd60e51b8152600401808060200182810382526023815260200180613beb6023913960400191505060405180910390fd5b6007546001600160a01b038481169116148015612a7457506007546001600160a01b03838116911614155b15612a8157612a816132d0565b6007546001600160a01b038381169116148015612aac57506007546001600160a01b03848116911614155b15612ab957612ab96132ea565b612ac1611f54565b6001600160a01b0316836001600160a01b031614158015612afb5750612ae5611f54565b6001600160a01b0316826001600160a01b031614155b8015612b0f57506001600160a01b03821615155b8015612b2657506001600160a01b03821661dead14155b8015612b4057506007546001600160a01b03838116911614155b15612b97576000612b50836118ef565b90506012548282011115612b955760405162461bcd60e51b8152600401808060200182810382526024815260200180613cd06024913960400191505060405180910390fd5b505b80612bad57612ba883836000613304565b613106565b6001600160a01b03821660009081526017602052604090205460ff168015612bee57506001600160a01b03831660009081526018602052604090205460ff16155b8015612c1357506001600160a01b03821660009081526018602052604090205460ff16155b15612c5957600c54811115612c595760405162461bcd60e51b815260040180806020018281038252603a815260200180613df8603a913960400191505060405180910390fd5b6000612c64306118ef565b600b5490915081108015908190612c855750600754600160a01b900460ff16155b8015612caa57506001600160a01b03851660009081526017602052604090205460ff16155b8015612ccf5750612cb9611f54565b6001600160a01b0316856001600160a01b031614155b8015612cf45750612cde611f54565b6001600160a01b0316846001600160a01b031614155b15612e55576007805460ff60a01b1916600160a01b179055601154601054600f54600092612d39929091612d3391612d2c919061286e565b869061345f565b906134b8565b905047612d45826134fa565b6000612d5147836136a0565b90506000612d7d612d6f600f5460105461286e90919063ffffffff16565b600f54612d3390859061345f565b90506000612d8b83836136a0565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612dc6573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e01573d6000803e3d6000fd5b506000612e1f601154612d33600e548b61345f90919063ffffffff16565b9050612e2a816136e2565b6000612e35306118ef565b9050612e4081613768565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680612ea357506001600160a01b03851660009081526016602052604090205460ff165b15612eac575060005b8015612f1d576000612ece6064612d336011548861345f90919063ffffffff16565b6001600160a01b03871660009081526017602052604090205490915060ff1615612f0457612f026064612d3387600161345f565b015b612f0e85826136a0565b9450612f1b873083613304565b505b612f28868686613304565b6008546001600160a01b031663e30443bc87612f43816118ef565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612f8957600080fd5b505af1925050508015612f9a575060015b506008546001600160a01b031663e30443bc86612fb6816118ef565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612ffc57600080fd5b505af192505050801561300d575060015b50600754600160a01b900460ff1661310257601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561307357600080fd5b505af19250505080156130a757506040513d606081101561309357600080fd5b508051602082015160409092015190919060015b6130b057613100565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b6000818484111561319a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561315f578181015183820152602001613147565b50505050905090810190601f16801561318c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526017602052604090205460ff16151581151514156132005760405162461bcd60e51b815260040180806020018281038252603d815260200180613e7e603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601760205260409020805460ff19168215801591909117909155613294576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561327b57600080fd5b505af115801561328f573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601b54600d55601c54600e55601a54600f55601954601055565b601d54600d55601e54600e55601f54600f55602054601055565b6001600160a01b0383166133495760405162461bcd60e51b8152600401808060200182810382526025815260200180613d5d6025913960400191505060405180910390fd5b6001600160a01b03821661338e5760405162461bcd60e51b8152600401808060200182810382526023815260200180613beb6023913960400191505060405180910390fd5b613399838383613106565b6133d681604051806060016040528060268152602001613c78602691396001600160a01b038616600090815260208190526040902054919061310b565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613405908261286e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261346e57506000610f3f565b8282028284828161347b57fe5b04146128c85760405162461bcd60e51b8152600401808060200182810382526021815260200180613cf46021913960400191505060405180910390fd5b60006128c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061391f565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061352857fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561357c57600080fd5b505afa158015613590573d6000803e3d6000fd5b505050506040513d60208110156135a657600080fd5b50518151829060019081106135b757fe5b6001600160a01b0392831660209182029290920101526006546135dd91309116846128d3565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561366357818101518382015260200161364b565b505050509050019650505050505050600060405180830381600087803b15801561368c57600080fd5b505af1158015613102573d6000803e3d6000fd5b60006128c883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061310b565b60006136ef8260026134b8565b905060006136fd83836136a0565b905047613709836134fa565b600061371547836136a0565b90506137218382613984565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61377181613a57565b600a54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156137bc57600080fd5b505afa1580156137d0573d6000803e3d6000fd5b505050506040513d60208110156137e657600080fd5b5051600a546008546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051939450600093919092169163a9059cbb91604480830192602092919082900301818787803b15801561384657600080fd5b505af115801561385a573d6000803e3d6000fd5b505050506040513d602081101561387057600080fd5b5051905080156131065760085460408051631127fec560e31b81526004810185905290516001600160a01b039092169163893ff6289160248082019260009290919082900301818387803b1580156138c757600080fd5b505af11580156138db573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b6000818361396e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561315f578181015183820152602001613147565b50600083858161397a57fe5b0495945050505050565b60065461399c9030906001600160a01b0316846128d3565b6006546001600160a01b031663f305d7198230856000806139bb611f54565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613a2657600080fd5b505af1158015613a3a573d6000803e3d6000fd5b50505050506040513d6060811015613a5157600080fd5b50505050565b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613a8757fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613adb57600080fd5b505afa158015613aef573d6000803e3d6000fd5b505050506040513d6020811015613b0557600080fd5b5051815182906001908110613b1657fe5b6001600160a01b039283166020918202929092010152600a54825191169082906002908110613b4157fe5b6001600160a01b039283166020918202929092010152600654613b6791309116846128d3565b600654604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561366357818101518382015260200161364b56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734249543a204163636f756e7420697320616c726561647920276578636c756465642745524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654249543a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734249543a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652042495420746f6b656e20636f6e74726163744249543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756553656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734249543a2054686520726f7574657220616c726561647920686173207468617420616464726573734249543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654249543a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657250616972734249543a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c30303045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220693853faa64040578e62171bc04fec2a386465ea20247e0210ee4c92ecd877b064736f6c634300060c0033

Libraries Used


Deployed Bytecode Sourcemap

43462:18952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43933:63;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13141:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13141:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44158:94;;;;;;;;;;;;;:::i;43535:41::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;43535:41:0;;;;;;;;;;;;;;12094:108;;;;;;;;;;;;;:::i;55057:31::-;;;;;;;;;;;;;:::i;13792:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13792:355:0;;;;;;;;;;;;;;;;;:::i;43651:41::-;;;;;;;;;;;;;:::i;52877:141::-;;;;;;;;;;;;;:::i;11937:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44120:31;;;;;;;;;;;;;:::i;53446:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53446:123:0;-1:-1:-1;;;;;53446:123:0;;:::i;:::-;;14556:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14556:218:0;;;;;;;;:::i;43583:29::-;;;;;;;;;;;;;:::i;52594:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52594:133:0;;:::i;44005:32::-;;;;;;;;;;;;;:::i;54497:88::-;;;;;;;;;;;;;:::i;53026:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53026:125:0;-1:-1:-1;;;;;53026:125:0;;:::i;55241:32::-;;;;;;;;;;;;;:::i;49976:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49976:108:0;;:::i;49391:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49391:134:0;;;;;;;;;;:::i;50092:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50092:121:0;-1:-1:-1;;;;;50092:121:0;;:::i;54727:141::-;;;;;;;;;;;;;:::i;48596:497::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48596:497:0;-1:-1:-1;;;;;48596:497:0;;:::i;53311:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53311:130:0;-1:-1:-1;;;;;53311:130:0;;:::i;44082:31::-;;;;;;;;;;;;;:::i;50783:331::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50783:331:0;;;;;;;;;;;;;;;;;:::i;54230:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54230:259:0;;:::i;12265:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12265:127:0;-1:-1:-1;;;;;12265:127:0;;:::i;25499:148::-;;;;;;;;;;;;;:::i;55201:32::-;;;;;;;;;;;;;:::i;55127:31::-;;;;;;;;;;;;;:::i;43701:70::-;;;;;;;;;;;;;:::i;50225:546::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50225:546:0;;;;;;;;;;;;;;;;;:::i;51936:402::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51936:402:0;;:::i;47763:825::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47763:825:0;-1:-1:-1;;;;;47763:825:0;;:::i;51122:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51122:121:0;-1:-1:-1;;;;;51122:121:0;;:::i;24857:79::-;;;;;;;;;;;;;:::i;11195:104::-;;;;;;;;;;;;;:::i;44044:31::-;;;;;;;;;;;;;:::i;51251:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51251:261:0;;;;;;;;;;:::i;44563:40::-;;;;;;;;;;;;;:::i;49849:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49849:119:0;;:::i;52478:108::-;;;;;;;;;;;;;:::i;15277:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15277:269:0;;;;;;;;:::i;53159:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53159:147:0;-1:-1:-1;;;;;53159:147:0;;:::i;12605:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12605:175:0;;;;;;;;:::i;55280:32::-;;;;;;;;;;;;;:::i;53577:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53577:318:0;-1:-1:-1;;;;;53577:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;53577:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43780:72;;;;;;;;;;;;;:::i;44879:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44879:58:0;-1:-1:-1;;;;;44879:58:0;;:::i;52735:134::-;;;;;;;;;;;;;:::i;49101:282::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49101:282:0;;;;;;;;;;:::i;49533:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49533:304:0;-1:-1:-1;49533:304:0;;;;:::i;55095:25::-;;;;;;;;;;;;;:::i;55167:26::-;;;;;;;;;;;;;:::i;12843:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12843:151:0;;;;;;;;;;:::i;43871:55::-;;;;;;;;;;;;;:::i;44259:53::-;;;;;;;;;;;;;:::i;54593:126::-;;;;;;;;;;;;;:::i;55019:31::-;;;;;;;;;;;;;:::i;52346:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52346:124:0;;:::i;53900:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53900:325:0;;:::i;25802:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25802:244:0;-1:-1:-1;;;;;25802:244:0;;:::i;54878:133::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54878:133:0;;:::i;43933:63::-;;;;:::o;10976:100::-;11063:5;11056:12;;;;;;;;-1:-1:-1;;11056:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11030:13;;11056:12;;11063:5;;11056:12;;11063:5;11056:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10976:100;:::o;13141:169::-;13224:4;13241:39;13250:12;:10;:12::i;:::-;13264:7;13273:6;13241:8;:39::i;:::-;-1:-1:-1;13298:4:0;13141:169;;;;;:::o;44158:94::-;;;;:::o;43535:41::-;;;-1:-1:-1;;;;;43535:41:0;;:::o;12094:108::-;12182:12;;12094:108;:::o;55057:31::-;;;;:::o;13792:355::-;13932:4;13949:36;13959:6;13967:9;13978:6;13949:9;:36::i;:::-;13996:121;14005:6;14013:12;:10;:12::i;:::-;14027:89;14065:6;14027:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14027:19:0;;;;;;:11;:19;;;;;;14047:12;:10;:12::i;:::-;-1:-1:-1;;;;;14027:33:0;;;;;;;;;;;;-1:-1:-1;14027:33:0;;;:89;:37;:89::i;:::-;13996:8;:121::i;:::-;-1:-1:-1;14135:4:0;13792:355;;;;;:::o;43651:41::-;;;-1:-1:-1;;;;;43651:41:0;;:::o;52877:141::-;52967:15;;:43;;;-1:-1:-1;;;52967:43:0;;;;52940:7;;-1:-1:-1;;;;;52967:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52967:43:0;;-1:-1:-1;52877:141:0;:::o;11937:92::-;12020:1;11937:92;:::o;44120:31::-;;;;:::o;53446:123::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;53519:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;53519:45:0;;-1:-1:-1;;;;;53519:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53446:123:::0;:::o;14556:218::-;14644:4;14661:83;14670:12;:10;:12::i;:::-;14684:7;14693:50;14732:10;14693:11;:25;14705:12;:10;:12::i;:::-;-1:-1:-1;;;;;14693:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14693:25:0;;;:34;;;;;;;;;;;:38;:50::i;43583:29::-;;;-1:-1:-1;;;;;43583:29:0;;:::o;52594:133::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;52671:15:::1;::::0;:48:::1;::::0;;-1:-1:-1;;;52671:48:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52671:15:0;;::::1;::::0;:38:::1;::::0;:48;;;;;:15:::1;::::0;:48;;;;;;;;:15;;:48;::::1;;::::0;::::1;;;;::::0;::::1;44005:32:::0;;;;:::o;54497:88::-;54528:15;;:49;;;-1:-1:-1;;;54528:49:0;;54559:10;54528:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;54528:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54497:88:0:o;53026:125::-;-1:-1:-1;;;;;53115:28:0;53091:4;53115:28;;;:19;:28;;;;;;;;;53026:125::o;55241:32::-;;;;:::o;49976:108::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;50048:18:::1;:29:::0;49976:108::o;49391:134::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49479:30:0;;;::::1;;::::0;;;:20:::1;:30;::::0;;;;:38;;-1:-1:-1;;49479:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49391:134::o;50092:121::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;50173:23:::1;:32:::0;;-1:-1:-1;;;;;;50173:32:0::1;-1:-1:-1::0;;;;;50173:32:0;;;::::1;::::0;;;::::1;::::0;;50092:121::o;54727:141::-;54819:15;;:41;;;-1:-1:-1;;;54819:41:0;;;;54792:7;;-1:-1:-1;;;;;54819:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;48596:497;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;48705:15:::1;::::0;-1:-1:-1;;;;;48683:38:0;;::::1;48705:15:::0;::::1;48683:38;;48675:91;;;;-1:-1:-1::0;;;48675:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48824:15;::::0;48782:59:::1;::::0;-1:-1:-1;;;;;48824:15:0;;::::1;::::0;48782:59;::::1;::::0;::::1;::::0;48824:15:::1;::::0;48782:59:::1;48852:15;:48:::0;;-1:-1:-1;;;;;;48852:48:0::1;-1:-1:-1::0;;;;;48852:48:0;;::::1;::::0;;;::::1;::::0;;;;48954:25:::1;::::0;;-1:-1:-1;;;48954:25:0;;;;-1:-1:-1;;48954:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48954:25:0;49021:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;49021:22:0;;;;-1:-1:-1;;;;;48936:69:0;;::::1;::::0;::::1;::::0;49014:4:::1;::::0;49021:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;48954:25:::1;::::0;49021:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49021:22:0;48936:108:::1;::::0;;-1:-1:-1;;;;;;48936:108:0::1;::::0;;;;;;-1:-1:-1;;;;;48936:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;49021:22:::1;::::0;48936:108;;;;;;;-1:-1:-1;48936:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48936:108:0;49055:13:::1;:30:::0;;-1:-1:-1;;;;;;49055:30:0::1;-1:-1:-1::0;;;;;49055:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;48596:497:0:o;53311:130::-;53402:15;;:34;;;-1:-1:-1;;;53402:34:0;;-1:-1:-1;;;;;53402:34:0;;;;;;;;;53381:7;;53402:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53402:34:0;;53311:130;-1:-1:-1;;53311:130:0:o;44082:31::-;;;;:::o;50783:331::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;50941:11:::1;:24:::0;;;;50976:17:::1;:36:::0;;;;51023:17:::1;:36:::0;51070:17:::1;:36:::0;50783:331::o;54230:259::-;54356:15;;:28;;;-1:-1:-1;;;;;;54356:28:0;;;;;;;;;;54290:18;;;;;;-1:-1:-1;;;;;54356:15:0;;;;:23;;:28;;;;;;;;;;;;;;;54290:18;54356:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54356:28:0;;;;;;;;;;;;54394:87;;;;;;;;;;;;;;;;;54356:28;54394:87;;;;;;;54356:28;;-1:-1:-1;54356:28:0;-1:-1:-1;54356:28:0;;-1:-1:-1;54471:9:0;;54459:5;;54394:87;;;;;;;;;54230:259;;;;:::o;12265:127::-;-1:-1:-1;;;;;12366:18:0;12339:7;12366:18;;;;;;;;;;;;12265:127::o;25499:148::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;25590:6:::1;::::0;25569:40:::1;::::0;25606:1:::1;::::0;-1:-1:-1;;;;;25590:6:0::1;::::0;25569:40:::1;::::0;25606:1;;25569:40:::1;25620:6;:19:::0;;-1:-1:-1;;;;;;25620:19:0::1;::::0;;25499:148::o;55201:32::-;;;;:::o;55127:31::-;;;;:::o;43701:70::-;;;-1:-1:-1;;;;;43701:70:0;;:::o;50225:546::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;50366:13:::1;:25:::0;;;50402:10:::1;:26:::0;;;50439:12:::1;:29:::0;;;50479:16:::1;:32:::0;;;50522:12:::1;:28:::0;;;50561:16:::1;:31:::0;;;50603:12:::1;:28:::0;;;50642:16:::1;:31:::0;;;50696:67:::1;50618:13:::0;50696:49:::1;50537:13:::0;50696:49;50382:9;50455:13;50696:17:::1;:31::i;:::-;:35:::0;::::1;:49::i;:67::-;50684:9;:79:::0;-1:-1:-1;;;;50225:546:0:o;51936:402::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;52034:6:::1;52022:8;:18;;:40;;;;;52056:6;52044:8;:18;;52022:40;52014:110;;;;-1:-1:-1::0;;;52014:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52155:16;;52143:8;:28;;52135:90;;;;-1:-1:-1::0;;;52135:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52275:16;::::0;52241:51:::1;::::0;52265:8;;52241:51:::1;::::0;;;::::1;52303:16;:27:::0;51936:402::o;47763:825::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;47872:15:::1;::::0;-1:-1:-1;;;;;47850:38:0;;::::1;47872:15:::0;::::1;47850:38;;47842:101;;;;-1:-1:-1::0;;;47842:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47956:37;48023:10;47956:79;;48094:4;-1:-1:-1::0;;;;;48056:43:0::1;:18;-1:-1:-1::0;;;;;48056:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48056:26:0;-1:-1:-1;;;;;48056:43:0::1;;48048:125;;;;-1:-1:-1::0;;;48048:125:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48186:18;-1:-1:-1::0;;;;;48186:39:0::1;;48234:18;48186:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;48186:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48265:54:0::1;::::0;;-1:-1:-1;;;48265:54:0;;48313:4:::1;48265:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;48265:39:0;::::1;::::0;-1:-1:-1;48265:39:0::1;::::0;-1:-1:-1;48265:54:0;;;;;-1:-1:-1;;48265:54:0;;;;;;;-1:-1:-1;48265:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48330:18;-1:-1:-1::0;;;;;48330:39:0::1;;48370:7;:5;:7::i;:::-;48330:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;48330:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48437:15:0::1;::::0;48389:65:::1;::::0;;-1:-1:-1;;;48389:65:0;;-1:-1:-1;;;;;48437:15:0;;::::1;48389:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;48389:39:0::1;::::0;-1:-1:-1;48389:65:0;;;;;48437:15:::1;::::0;48389:65;;;;;;;;48437:15;48389:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48514:15:0::1;::::0;48472:59:::1;::::0;-1:-1:-1;;;;;48514:15:0;;::::1;::::0;-1:-1:-1;48472:59:0;;::::1;::::0;-1:-1:-1;48472:59:0::1;::::0;48514:15:::1;::::0;48472:59:::1;48544:15;:36:::0;;-1:-1:-1;;;;;;48544:36:0::1;-1:-1:-1::0;;;;;48544:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;47763:825:0:o;51122:121::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;51203:23:::1;:32:::0;;-1:-1:-1;;;;;;51203:32:0::1;-1:-1:-1::0;;;;;51203:32:0;;;::::1;::::0;;;::::1;::::0;;51122:121::o;24857:79::-;24922:6;;-1:-1:-1;;;;;24922:6:0;24857:79;:::o;11195:104::-;11284:7;11277:14;;;;;;;;-1:-1:-1;;11277:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11251:13;;11277:14;;11284:7;;11277:14;;11284:7;11277:14;;;;;;;;;;;;;;;;;;;;;;;;44044:31;;;;:::o;51251:261::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;51358:13:::1;::::0;-1:-1:-1;;;;;51350:21:0;;::::1;51358:13:::0;::::1;51350:21;;51342:108;;;;-1:-1:-1::0;;;51342:108:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51463:41;51492:4;51498:5;51463:28;:41::i;44563:40::-:0;;;;:::o;49849:119::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;49955:5:::1;49942:19;49925:14;:36:::0;49849:119::o;52478:108::-;52551:15;;:27;;;-1:-1:-1;;;52551:27:0;;;;52524:7;;-1:-1:-1;;;;;52551:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;15277:269;15370:4;15387:129;15396:12;:10;:12::i;:::-;15410:7;15419:96;15458:15;15419:96;;;;;;;;;;;;;;;;;:11;:25;15431:12;:10;:12::i;:::-;-1:-1:-1;;;;;15419:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15419:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;53159:147::-;53252:15;;:47;;;-1:-1:-1;;;53252:47:0;;-1:-1:-1;;;;;53252:47:0;;;;;;;;;53228:7;;53252:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;12605:175;12691:4;12708:42;12718:12;:10;:12::i;:::-;12732:9;12743:6;12708:9;:42::i;55280:32::-;;;;:::o;53577:318::-;53673:7;53695:6;53716;53737:7;53759;53781;53803;53825;53852:15;;;;;;;;;-1:-1:-1;;;;;53852:15:0;-1:-1:-1;;;;;53852:26:0;;53879:7;53852:35;;;;;;;;;;;;;-1:-1:-1;;;;;53852:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53852:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53852:35:0;;-1:-1:-1;53852:35:0;;-1:-1:-1;53852:35:0;-1:-1:-1;53852:35:0;-1:-1:-1;53852:35:0;-1:-1:-1;53852:35:0;;-1:-1:-1;53852:35:0;-1:-1:-1;53577:318:0;;;;;;;;;:::o;43780:72::-;;;-1:-1:-1;;;;;43780:72:0;;:::o;44879:58::-;;;;;;;;;;;;;;;:::o;52735:134::-;52812:15;;:49;;;-1:-1:-1;;;52812:49:0;;;;52785:7;;-1:-1:-1;;;;;52812:15:0;;:47;;:49;;;;;;;;;;;;;;:15;:49;;;;;;;;;;49101:282;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49194:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;49186:87;;;;-1:-1:-1::0;;;49186:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;49284:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;49284:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49341:34;;;;;;;::::1;::::0;;;;;;;;::::1;49101:282:::0;;:::o;49533:304::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;49650:9:::1;49646:115;49665:19:::0;;::::1;49646:115;;;49741:8;49706:19;:32;49726:8;;49735:1;49726:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;49726:11:0::1;49706:32:::0;;-1:-1:-1;49706:32:0;::::1;::::0;;;;;;-1:-1:-1;49706:32:0;:43;;-1:-1:-1;;49706:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;49686:3:0::1;49646:115;;;;49778:51;49810:8;;49820;49778:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;49778:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;49778:51:0;;-1:-1:-1;;;;;49778:51:0::1;49533:304:::0;;;:::o;55095:25::-;;;;:::o;55167:26::-;;;;:::o;12843:151::-;-1:-1:-1;;;;;12959:18:0;;;12932:7;12959:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12843:151::o;43871:55::-;;;;:::o;44259:53::-;;;;:::o;54593:126::-;54672:15;;:39;;;-1:-1:-1;;;54672:39:0;;;;54648:7;;-1:-1:-1;;;;;54672:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;55019:31;;;;:::o;52346:124::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;52420:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;52420:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52420:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;53900:325:::0;54001:7;54023:6;54044;54065:7;54087;54109;54131;54153;54177:15;;;;;;;;;-1:-1:-1;;;;;54177:15:0;-1:-1:-1;;;;;54177:33:0;;54211:5;54177:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25802:244;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25891:22:0;::::1;25883:73;;;;-1:-1:-1::0;;;25883:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25993:6;::::0;25972:38:::1;::::0;-1:-1:-1;;;;;25972:38:0;;::::1;::::0;25993:6:::1;::::0;25972:38:::1;::::0;25993:6:::1;::::0;25972:38:::1;26021:6;:17:::0;;-1:-1:-1;;;;;;26021:17:0::1;-1:-1:-1::0;;;;;26021:17:0;;;::::1;::::0;;;::::1;::::0;;25802:244::o;54878:133::-;25079:12;:10;:12::i;:::-;25069:6;;-1:-1:-1;;;;;25069:6:0;;;:22;;;25061:67;;;;;-1:-1:-1;;;25061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25061:67:0;;;;;;;;;;;;;;;54997:5:::1;54977:26;54950:24;:53:::0;54878:133::o;4506:181::-;4564:7;4596:5;;;4620:6;;;;4612:46;;;;;-1:-1:-1;;;4612:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4678:1;4506:181;-1:-1:-1;;;4506:181:0:o;3895:98::-;3975:10;3895:98;:::o;18463:380::-;-1:-1:-1;;;;;18599:19:0;;18591:68;;;;-1:-1:-1;;;18591:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18678:21:0;;18670:68;;;;-1:-1:-1;;;18670:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18751:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18803:32;;;;;;;;;;;;;;;;;18463:380;;;:::o;55808:3592::-;-1:-1:-1;;;;;55941:18:0;;55933:68;;;;-1:-1:-1;;;55933:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56020:16:0;;56012:64;;;;-1:-1:-1;;;56012:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56108:13;;-1:-1:-1;;;;;56100:21:0;;;56108:13;;56100:21;:43;;;;-1:-1:-1;56130:13:0;;-1:-1:-1;;;;;56124:19:0;;;56130:13;;56124:19;;56100:43;56097:65;;;56156:4;:2;:4::i;:::-;56183:13;;-1:-1:-1;;;;;56177:19:0;;;56183:13;;56177:19;:44;;;;-1:-1:-1;56208:13:0;;-1:-1:-1;;;;;56200:21:0;;;56208:13;;56200:21;;56177:44;56174:80;;;56234:6;:4;:6::i;:::-;56292:7;:5;:7::i;:::-;-1:-1:-1;;;;;56284:15:0;:4;-1:-1:-1;;;;;56284:15:0;;;:45;;;;;56322:7;:5;:7::i;:::-;-1:-1:-1;;;;;56316:13:0;:2;-1:-1:-1;;;;;56316:13:0;;;56284:45;:78;;;;-1:-1:-1;;;;;;56346:16:0;;;;56284:78;:116;;;;-1:-1:-1;;;;;;56379:21:0;;56393:6;56379:21;;56284:116;:152;;;;-1:-1:-1;56423:13:0;;-1:-1:-1;;;;;56417:19:0;;;56423:13;;56417:19;;56284:152;56266:437;;;56465:32;56500:13;56510:2;56500:9;:13::i;:::-;56465:48;;56591:14;;56581:6;56554:24;:33;:51;;56528:149;;;;-1:-1:-1;;;56528:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56266:437;;56720:11;56717:92;;56748:28;56764:4;56770:2;56774:1;56748:15;:28::i;:::-;56791:7;;56717:92;-1:-1:-1;;;;;56824:29:0;;;;;;:25;:29;;;;;;;;:63;;;;-1:-1:-1;;;;;;56860:26:0;;;;;;:20;:26;;;;;;;;56859:27;56824:63;:94;;;;-1:-1:-1;;;;;;56893:24:0;;;;;;:20;:24;;;;;;;;56892:25;56824:94;56821:230;;;56952:24;;56942:6;:34;;56934:105;;;;-1:-1:-1;;;56934:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57065:28;57096:24;57114:4;57096:9;:24::i;:::-;57170:18;;57065:55;;-1:-1:-1;57146:42:0;;;;;;;57205:33;;-1:-1:-1;57230:8:0;;-1:-1:-1;;;57230:8:0;;;;57229:9;57205:33;:82;;;;-1:-1:-1;;;;;;57256:31:0;;;;;;:25;:31;;;;;;;;57255:32;57205:82;:114;;;;;57312:7;:5;:7::i;:::-;-1:-1:-1;;;;;57304:15:0;:4;-1:-1:-1;;;;;57304:15:0;;;57205:114;:144;;;;;57342:7;:5;:7::i;:::-;-1:-1:-1;;;;;57336:13:0;:2;-1:-1:-1;;;;;57336:13:0;;;57205:144;57201:1123;;;57409:8;:15;;-1:-1:-1;;;;57409:15:0;-1:-1:-1;;;57409:15:0;;;57525:9;;57506:12;;57489;;57409:15;;57464:71;;57525:9;;57464:56;;57489:30;;:12;:16;:30::i;:::-;57464:20;;:24;:56::i;:::-;:60;;:71::i;:::-;57441:94;-1:-1:-1;57576:21:0;57612:30;57441:94;57612:16;:30::i;:::-;57657:18;57678:42;:21;57704:15;57678:25;:42::i;:::-;57657:63;;57735:22;57760:64;57793:30;57810:12;;57793;;:16;;:30;;;;:::i;:::-;57775:12;;57760:28;;:10;;:14;:28::i;:64::-;57735:89;-1:-1:-1;57839:22:0;57864:30;:10;57735:89;57864:14;:30::i;:::-;57917:23;;57909:57;;57839:55;;-1:-1:-1;;;;;;57917:23:0;;57909:57;;;;;57951:14;;57917:23;57909:57;57917:23;57909:57;57951:14;57917:23;57909:57;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57989:23:0;;57981:57;;-1:-1:-1;;;;;57989:23:0;;;;57981:57;;;;;58023:14;;57989:23;57981:57;57989:23;57981:57;58023:14;57989:23;57981:57;;;;;;;;;;;;;;;;;;;;;58055:18;58076:53;58119:9;;58076:38;58101:12;;58076:20;:24;;:38;;;;:::i;:53::-;58055:74;;58144:26;58159:10;58144:14;:26::i;:::-;58187:18;58208:24;58226:4;58208:9;:24::i;:::-;58187:45;;58247:32;58268:10;58247:20;:32::i;:::-;-1:-1:-1;;58296:8:0;:16;;-1:-1:-1;;;;58296:16:0;;;-1:-1:-1;;;;;57201:1123:0;58354:8;;-1:-1:-1;;;;;58463:25:0;;58338:12;58463:25;;;:19;:25;;;;;;58354:8;-1:-1:-1;;;58354:8:0;;;;;58353:9;;58463:25;;:52;;-1:-1:-1;;;;;;58492:23:0;;;;;;:19;:23;;;;;;;;58463:52;58460:99;;;-1:-1:-1;58542:5:0;58460:99;58574:7;58571:280;;;58595:12;58610:30;58636:3;58610:21;58621:9;;58610:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;58655:29:0;;;;;;:25;:29;;;;;;58595:45;;-1:-1:-1;58655:29:0;;58652:92;;;58709:22;58727:3;58709:13;:6;58720:1;58709:10;:13::i;:22::-;58701:30;58652:92;58764:16;:6;58775:4;58764:10;:16::i;:::-;58755:25;;58797:42;58813:4;58827;58834;58797:15;:42::i;:::-;58571:280;;58863:33;58879:4;58885:2;58889:6;58863:15;:33::i;:::-;58913:15;;-1:-1:-1;;;;;58913:15:0;:26;58948:4;58955:15;58948:4;58955:9;:15::i;:::-;58913:58;;;;;;;;;;;;;-1:-1:-1;;;;;58913:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58909:74;58997:15;;-1:-1:-1;;;;;58997:15:0;:26;59032:2;59037:13;59032:2;59037:9;:13::i;:::-;58997:54;;;;;;;;;;;;;-1:-1:-1;;;;;58997:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58993:70;59079:8;;-1:-1:-1;;;59079:8:0;;;;59075:318;;59112:16;;59143:15;;:28;;;-1:-1:-1;;;;;;59143:28:0;;;;;;;;;;-1:-1:-1;;;;;59143:15:0;;;;:23;;:28;;;;;;;;;;;;;;;59098:11;59143:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59143:28:0;;;;;;;;;;;;;;;;59139:243;;;;;59260:86;;;;;;;;;;;;;;;;;;;;;;;;;;59336:9;;59325:4;;59260:86;;;;;;;;;59172:184;;;59139:243;59075:318;;55808:3592;;;;;;;:::o;5409:192::-;5495:7;5531:12;5523:6;;;;5515:29;;;;-1:-1:-1;;;5515:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5567:5:0;;;5409:192::o;51522:404::-;-1:-1:-1;;;;;51613:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;51605:114;;;;-1:-1:-1;;;51605:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51730:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;51730:39:0;;;;;;;;;;;;51782:79;;51807:15;;:42;;;-1:-1:-1;;;51807:42:0;;-1:-1:-1;;;;;51807:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51782:79;51878:40;;;;;;-1:-1:-1;;;;;51878:40:0;;;;;;;;51522:404;;:::o;55321:237::-;55383:10;;55367:13;:26;55424:16;;-1:-1:-1;55409:31:0;55469:16;;55455:12;:30;55514:16;;55500:12;:30;55321:237::o;55571:229::-;55637:11;;55621:13;:27;55679:17;;55664:12;:32;55727:17;;-1:-1:-1;55712:32:0;55775:17;;-1:-1:-1;55760:32:0;55571:229::o;16036:573::-;-1:-1:-1;;;;;16176:20:0;;16168:70;;;;-1:-1:-1;;;16168:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16257:23:0;;16249:71;;;;-1:-1:-1;;;16249:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16333:47;16354:6;16362:9;16373:6;16333:20;:47::i;:::-;16413:71;16435:6;16413:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16413:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16393:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16518:20;;;;;;;:32;;16543:6;16518:24;:32::i;:::-;-1:-1:-1;;;;;16495:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16566:35;;;;;;;16495:20;;16566:35;;;;;;;;;;;;;16036:573;;;:::o;5860:471::-;5918:7;6163:6;6159:47;;-1:-1:-1;6193:1:0;6186:8;;6159:47;6230:5;;;6234:1;6230;:5;:1;6254:5;;;;;:10;6246:56;;;;-1:-1:-1;;;6246:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6807:132;6865:7;6892:39;6896:1;6899;6892:39;;;;;;;;;;;;;;;;;:3;:39::i;60346:595::-;60500:16;;;60514:1;60500:16;;;60476:21;60500:16;;;;;60476:21;60500:16;;;;;;;;;;-1:-1:-1;60500:16:0;60476:40;;60545:4;60527;60532:1;60527:7;;;;;;;;-1:-1:-1;;;;;60527:23:0;;;:7;;;;;;;;;;:23;;;;60571:15;;:22;;;-1:-1:-1;;;60571:22:0;;;;:15;;;;;:20;;:22;;;;;60527:7;;60571:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60571:22:0;60561:7;;:4;;60566:1;;60561:7;;;;;;-1:-1:-1;;;;;60561:32:0;;;:7;;;;;;;;;:32;60638:15;;60606:62;;60623:4;;60638:15;60656:11;60606:8;:62::i;:::-;60707:15;;:224;;-1:-1:-1;;;60707:224:0;;;;;;;;:15;:224;;;;;;60885:4;60707:224;;;;;;60905:15;60707:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60707:15:0;;;;:66;;60788:11;;60858:4;;60885;60905:15;60707:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4970:136;5028:7;5055:43;5059:1;5062;5055:43;;;;;;;;;;;;;;;;;:3;:43::i;59414:922::-;59523:12;59538:13;:6;59549:1;59538:10;:13::i;:::-;59523:28;-1:-1:-1;59562:17:0;59582:16;:6;59523:28;59582:10;:16::i;:::-;59562:36;-1:-1:-1;59901:21:0;59967:22;59984:4;59967:16;:22::i;:::-;60120:18;60141:41;:21;60167:14;60141:25;:41::i;:::-;60120:62;;60232:35;60245:9;60256:10;60232:12;:35::i;:::-;60285:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59414:922;;;;;:::o;62012:399::-;62076:24;62093:6;62076:16;:24::i;:::-;62138:3;;62131:36;;;-1:-1:-1;;;62131:36:0;;62161:4;62131:36;;;;;;62111:17;;-1:-1:-1;;;;;62138:3:0;;62131:21;;:36;;;;;;;;;;;;;;62138:3;62131:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62131:36:0;62200:3;;62222:15;;62193:57;;;-1:-1:-1;;;62193:57:0;;-1:-1:-1;;;;;62222:15:0;;;62193:57;;;;;;;;;;;;62131:36;;-1:-1:-1;62178:12:0;;62200:3;;;;;62193:20;;:57;;;;;62131:36;;62193:57;;;;;;;62178:12;62200:3;62193:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62193:57:0;;-1:-1:-1;62263:141:0;;;;62291:15;;:49;;;-1:-1:-1;;;62291:49:0;;;;;;;;;;-1:-1:-1;;;;;62291:15:0;;;;:38;;:49;;;;;:15;;:49;;;;;;;;:15;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62360:32:0;;;;;;;;;;;;;;;;-1:-1:-1;62360:32:0;;;;;;;;-1:-1:-1;62360:32:0;62012:399;;;:::o;7435:278::-;7521:7;7556:12;7549:5;7541:28;;;;-1:-1:-1;;;7541:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7580:9;7596:1;7592;:5;;;;;;;7435:278;-1:-1:-1;;;;;7435:278:0:o;61487:517::-;61669:15;;61637:62;;61654:4;;-1:-1:-1;;;;;61669:15:0;61687:11;61637:8;:62::i;:::-;61742:15;;-1:-1:-1;;;;;61742:15:0;:31;61781:9;61814:4;61834:11;61742:15;;61946:7;:5;:7::i;:::-;61968:15;61742:252;;;;;;;;;;;;;-1:-1:-1;;;;;61742:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61742:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;61487:517:0:o;60949:530::-;61041:16;;;61055:1;61041:16;;;;;;;;;61017:21;;61041:16;;;61017:21;;61041:16;;;;;-1:-1:-1;61041:16:0;61017:40;;61086:4;61068;61073:1;61068:7;;;;;;;;-1:-1:-1;;;;;61068:23:0;;;:7;;;;;;;;;;:23;;;;61112:15;;:22;;;-1:-1:-1;;;61112:22:0;;;;:15;;;;;:20;;:22;;;;;61068:7;;61112:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61112:22:0;61102:7;;:4;;61107:1;;61102:7;;;;;;-1:-1:-1;;;;;61102:32:0;;;:7;;;;;;;;;:32;61155:3;;61145:7;;61155:3;;;61145:4;;61150:1;;61145:7;;;;;;-1:-1:-1;;;;;61145:13:0;;;:7;;;;;;;;;:13;61203:15;;61171:62;;61188:4;;61203:15;61221:11;61171:8;:62::i;:::-;61272:15;;:199;;-1:-1:-1;;;61272:199:0;;;;;;;;-1:-1:-1;61272:199:0;;;;;;61425:4;61272:199;;;;;;61445:15;61272:199;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61272:15:0;;;;:69;;:199;;;;61425:4;61445:15;61272:199;;;;;;;-1:-1:-1;61272:199:0;;;;;;;;-1:-1:-1;61272:199:0;;;;;;;;;;;;;;;

Swarm Source

ipfs://d17d1670e011db38ad2916347bb4f34d7bc39d65fd1b761dc9e2083fd1b3cc6c
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.