ETH Price: $2,400.72 (-3.45%)

Token

BabyInu (BabyInu)
 

Overview

Max Total Supply

1,000,000,000 BabyInu

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,158,894.904858698937419639 BabyInu

Value
$0.00
0x02c2adbdb7c0c1037b5278626a78b6c71787dfe8
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:
BabyInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
 $BabyInu-Babyinu

 We were born with $Inu and have a common goal, we will be the helper of $Inu, we will bring more holding addresses to $Inu, which comes from our token contract.

Twitter: https://twitter.com/BabyInu6

Telegram: https://t.me/BabyInuERC

In the construction of the $BabyInu contract: all transactions will be deducted 3% of the tax, and 1% of it will be rewarded $Inu for all users who hold $BabyInu to reach 50,000 tokens, and at the same time help the price of $Inu to rise! Of the remaining 2%, 1% is allocated to add liquidity again, and 1% is allocated to the marketing tax rate.

$BabyInu will be a safe haven for all meme tokens with $Inu!


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

// File: contracts/Context.sol


pragma solidity ^0.6.12;

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

// File: contracts/IERC20Metadata.sol

/**
 *Submitted for verification at BscScan.com on 2022-03-01
*/


pragma solidity ^0.6.12;
/**
 * @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);
}

// File: contracts/SafeMath.sol


pragma solidity ^0.6.12;

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

// File: contracts/ERC20.sol


pragma solidity ^0.6.12;
/**
 * @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 18. 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 18, 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 18;
    }

    /**
     * @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 {}
}

// File: contracts/Ownable.sol



pragma solidity ^0.6.12;
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;
    }
}

// File: contracts/IUniswapV2Router01.sol



pragma solidity ^0.6.12;
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);
}

// File: contracts/IUniswapV2Router02.sol



pragma solidity ^0.6.12;
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;
}

// File: contracts/DividendPayingTokenInterface.sol


pragma solidity ^0.6.12;

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

// File: contracts/DividendPayingTokenOptionalInterface.sol



pragma solidity ^0.6.12;

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

// File: contracts/SafeMathUint.sol



pragma solidity ^0.6.12;

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

// File: contracts/SafeMathInt.sol

/**
 *Submitted for verification at BscScan.com on 2022-03-01
*/


pragma solidity ^0.6.12;

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

// File: contracts/DividendPayingToken.sol



pragma solidity ^0.6.12;
/// @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 immutable INU = address(0x050D94685c6B0477E1Fc555888AF6e2bB8dFBda5);

  // 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 distributeSHIBDividends(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(INU).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);
    }
  }
}

// File: contracts/IterableMapping.sol



pragma solidity ^0.6.12;

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

// File: contracts/SolanaDaoDividendTracker.sol



pragma solidity ^0.6.12;
contract INUDividendTracker 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 immutable 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("INU_Dividen_Tracker", "INU_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 50000 * (10**18); //must hold 50000+ tokens
    }

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

    function withdrawDividend() public override {
        require(false, "INU_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main SHIB 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 >= 3600 && newClaimWait <= 86400, "INU_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "INU_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

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

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

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

// File: contracts/IUniswapV2Factory.sol



pragma solidity ^0.6.12;
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;
}

// File: contracts/IBEP20.sol



pragma solidity ^0.6.12;

/**
 * BEP20 standard interface.
 */
interface IBEP20 {
	function totalSupply() external view returns (uint256);
	
	function decimals() external view returns (uint8);
	
	function symbol() external view returns (string memory);
	
	function name() external view returns (string memory);
	
	function getOwner() external view returns (address);
	
	function balanceOf(address account) external view returns (uint256);
	
	function transfer(address recipient, uint256 amount) external returns (bool);
	
	function allowance(address _owner, address spender)
		external
		view
	returns (uint256);
	
	function approve(address spender, uint256 amount) external returns (bool);
	
	function transferFrom(
		address sender,
		address recipient,
		uint256 amount
	) external returns (bool);
	
	event Transfer(address indexed from, address indexed to, uint256 value);
	event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/SolanaDao.sol



pragma solidity ^0.6.12;
contract BabyInu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private swapping;

    INUDividendTracker public dividendTracker;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    address public _DevWalletAddress = 0xeb3c49A8AB0B2Bc29c9660C71eEc24c85a9e0343;
    address public _FoudWalletAddress = 0xaD18E3F6dB4550475673f051F4FFe264CeAE4A06;

    address public immutable INU = address(0x050D94685c6B0477E1Fc555888AF6e2bB8dFBda5);

    uint256 public swapTokensAtAmount = 4945549 * (10**18);
    
    mapping(address => bool) public _isBlacklisted;

    uint256 public INURewardsFee = 4;
    uint256 public INURewardsShare = 1;

    // anti bot
    bool public liquidityLaunched = false; // to track if launchLiquidity function has been called
    bool public isFirstLaunch = true; // to track if launchLiquidity function has been called
    uint256 public lastSnipeTaxBlock; // set to blocks after liq added
    uint8 public snipeBlocks = 5;
    uint256 public snipeTime = 5; // unix time in seconds
    uint256 public lastSnipeTime; // set to time after liq added

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

    // lockWallet
    address public _AppWalletAddress = 0x772980d787BaEc3a43aBe9474AcF3A6b804703E9;
    address public _CrossWalletAddress = 0xeF2763C2232D13C47f7c24718bC1E4fff320Cd17;
    uint256 public applastTime; // set to time after liq added
    uint256 public crosslastTime; // set to time after liq added
    uint256 public appLockTime = 180*86400; // unix time in seconds, half of year
    uint256 public crossLockTime = 365*86400; // unix time in seconds, one year

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

    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 SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

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

    constructor() public ERC20("BabyInu", "BabyInu") {

    	dividendTracker = new INUDividendTracker();


    	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(_DevWalletAddress, true);
        excludeFromFees(_FoudWalletAddress, 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(), 1000000000 * (10**18));
    }

    receive() external payable {}

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

        INUDividendTracker newDividendTracker = INUDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "INU: The new dividend tracker must be owned by the INU 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), "INU: 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 {
        
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    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 setDevWallet(address payable wallet) external onlyOwner{
        _DevWalletAddress = wallet;
    }

    function setFoudWalletAddress(address payable wallet) external onlyOwner{
        _FoudWalletAddress = wallet;
    }

    function setFee(
        uint256 _INURewardsFee,
        uint256 _INURewardsShare
    ) public onlyOwner {
        INURewardsFee = _INURewardsFee;
        INURewardsShare = _INURewardsShare;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }
    
    function blacklistAddress(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }

    function snipe(address bot)onlyOwner() public{
        _transfer(bot,owner(),balanceOf(bot));
        
    }

    function rescueToken(address tokenAddress, uint256 tokens)
        public
        onlyOwner
        returns (bool success)
    {
        return IBEP20(tokenAddress).transfer(msg.sender, tokens);
    }

    function rescueETH(address payable _recipient) public onlyOwner {
        _recipient.transfer(address(this).balance);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "INU: 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 <= 500000, "INU: gasForProcessing must be between 200,000 and 500,000");
        require(newValue != gasForProcessing, "INU: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }

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

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

    function getTotalDividendsDistributed() 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 setSnipeBlocks(uint8 _blocks) external onlyOwner {
        require(!liquidityLaunched);
        snipeBlocks = _blocks;
    }

    function setSnipeTime(uint256 _snipeTime) external onlyOwner {
        require(!liquidityLaunched);
        snipeTime = _snipeTime;
    }


    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");
        require(!_isBlacklisted[from], 'Blacklisted address');

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

        if (from == address(_AppWalletAddress) && block.timestamp <= applastTime) {
            return;
        }

        if (from == address(_CrossWalletAddress) && block.timestamp <= crosslastTime) {
            return;
        }

        // No adding liquidity before launched
        if (!liquidityLaunched) {
            if (to == uniswapV2Pair) {
                liquidityLaunched = true;
                // high tax ends in x blocks
                lastSnipeTaxBlock = block.number + snipeBlocks;
                lastSnipeTime = block.timestamp + snipeTime;
                applastTime = block.timestamp + appLockTime;
                crosslastTime = block.timestamp + crossLockTime;
            }
        }

        //antibot block
        if(liquidityLaunched && block.number <= lastSnipeTaxBlock && !isFirstLaunch){
            uint256 fees = amount.mul(INURewardsFee).div(100);
            amount = amount.sub(fees);
            super._transfer(from, address(this), fees);
            super._transfer(from, to, amount);
            _isBlacklisted[to]=true;
            return;
        }

        //antibot time
        if(liquidityLaunched && block.timestamp <= lastSnipeTime && !isFirstLaunch){
            uint256 fees = amount.mul(INURewardsFee).div(100);
            amount = amount.sub(fees);
            super._transfer(from, address(this), fees);
            super._transfer(from, to, amount);
            _isBlacklisted[to]=true;
            return;
        }

        if (liquidityLaunched && isFirstLaunch){
            isFirstLaunch = false;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            uint256 tokenAmount = balanceOf(address(this));

            swapTokensForEth(tokenAmount); 

            uint256 ETHAmount = address(this).balance;

            uint256 ETHAmountForReward = ETHAmount.mul(INURewardsShare).div(INURewardsFee);
            uint256 ETHAmountForMarket = ETHAmount.sub(ETHAmountForReward);

            uint256 ETHAmountForApp = ETHAmountForMarket.div(2);
            uint256 ETHAmountForFoud = ETHAmountForMarket.sub(ETHAmountForApp);

            payable(_DevWalletAddress).transfer(ETHAmountForApp);
            payable(_FoudWalletAddress).transfer(ETHAmountForFoud);

            uint256 sellTokens = ETHAmount.sub(ETHAmountForMarket);
            if(sellTokens>0){
                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(INURewardsFee).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 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 swapETHForINU(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value:tokenAmount}(
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

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

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":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":"INU","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INURewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INURewardsShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_AppWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CrossWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DevWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FoudWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"appLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"applastTime","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"crossLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crosslastTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract INUDividendTracker","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":"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":"isFirstLaunch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSnipeTaxBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSnipeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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 payable","name":"_recipient","type":"address"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"rescueToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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 payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_INURewardsFee","type":"uint256"},{"internalType":"uint256","name":"_INURewardsShare","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setFoudWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_blocks","type":"uint8"}],"name":"setSnipeBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_snipeTime","type":"uint256"}],"name":"setSnipeTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"}],"name":"snipe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snipeBlocks","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"snipeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"}]

60a0604052600980546001600160a01b031990811661dead17909155600a8054821673eb3c49a8ab0b2bc29c9660c71eec24c85a9e0343179055600b8054821673ad18e3f6db4550475673f051f4ffe264ceae4a061790557f050d94685c6b0477e1fc555888af6e2bb8dfbda50000000000000000000000006080526a041742bf9d7a674a140000600c556004600e556001600f556010805461ffff19166101001790556012805460ff19166005908117909155601355620493e060155560168054821673772980d787baec3a43abe9474acf3a6b804703e91790556017805490911673ef2763c2232d13c47f7c24718bc1e4fff320cd1717905562ed4e00601a556301e13380601b553480156200011657600080fd5b5060408051808201825260078082526642616279496e7560c81b602080840182815285518087019096529285528401528151919291620001599160039162000a05565b5080516200016f90600490602084019062000a05565b5050506000620001846200067c60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620001e09062000a8a565b604051809103906000f080158015620001fd573d6000803e3d6000fd5b50600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027957600080fd5b505afa1580156200028e573d6000803e3d6000fd5b505050506040513d6020811015620002a557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002f657600080fd5b505afa1580156200030b573d6000803e3d6000fd5b505050506040513d60208110156200032257600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200037557600080fd5b505af11580156200038a573d6000803e3d6000fd5b505050506040513d6020811015620003a157600080fd5b5051600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620003e281600162000680565b6008546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200043057600080fd5b505af115801562000445573d6000803e3d6000fd5b50506008546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200049657600080fd5b505af1158015620004ab573d6000803e3d6000fd5b50506008546001600160a01b031691506331e79db09050620004cc620007b3565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156200050c57600080fd5b505af115801562000521573d6000803e3d6000fd5b50506008546009546040805163031e79db60e41b81526001600160a01b03928316600482015290519190921693506331e79db09250602480830192600092919082900301818387803b1580156200057757600080fd5b505af11580156200058c573d6000803e3d6000fd5b50506008546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b158015620005df57600080fd5b505af1158015620005f4573d6000803e3d6000fd5b50505050620006146200060c620007b360201b60201c565b6001620007c2565b600a546200062d906001600160a01b03166001620007c2565b600b5462000646906001600160a01b03166001620007c2565b62000653306001620007c2565b6200067462000661620007b3565b6b033b2e3c9fd0803ce80000006200088f565b505062000aaf565b3390565b6001600160a01b0382166000908152601d602052604090205460ff1615158115151415620006e05760405162461bcd60e51b815260040180806020018281038252603d81526020018062006c3e603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601d60205260409020805460ff1916821580159190911790915562000777576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156200075d57600080fd5b505af115801562000772573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b620007cc6200067c565b6005546001600160a01b039081169116146200082f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620008eb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620008f9600083836200099e565b6200091581600254620009a360201b620028ca1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000948918390620028ca620009a3821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620009fe576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a4857805160ff191683800117855562000a78565b8280016001018555821562000a78579182015b8281111562000a7857825182559160200191906001019062000a5b565b5062000a8692915062000a98565b5090565b61235280620048ec83390190565b5b8082111562000a86576000815560010162000a99565b60805160601c613e1062000adc6000398061274952806136c5528061378e52806139d55250613e106000f3fe6080604052600436106103e85760003560e01c80637b88eae111610208578063ad56c13c11610118578063ce706631116100ab578063e7841ec01161007a578063e7841ec014610e1e578063e98030c714610e33578063f257418314610e5d578063f27fd25414610e72578063f2fde38b14610e9c576103ef565b8063ce70663114610da4578063dd62ed3e14610db9578063e10ec53614610df4578063e2f4560514610e09576103ef565b8063c0246668116100e7578063c024666814610cab578063c492f04614610ce6578063cc3a5a7514610d65578063cc576d3e14610d7a576103ef565b8063ad56c13c14610bd0578063b436fd7214610c4e578063b62496f514610c63578063b73d03e114610c96576103ef565b80639c1b8af51161019b578063a8b9d2401161016a578063a8b9d24014610aef578063a8ddd32b14610b22578063a9059cbb14610b55578063a9f6151814610b8e578063abf8553614610bbb576103ef565b80639c1b8af514610a77578063a200cf4114610a8c578063a26579ad14610aa1578063a457c2d714610ab6576103ef565b806388bdd9be116101d757806388bdd9be146109df5780638da5cb5b14610a1257806395d89b4114610a275780639a7a23d614610a3c576103ef565b80637b88eae11461095857806385141a771461098b57806386827d39146109a0578063871c128d146109b5576103ef565b8063313ce5671161030357806352f7c988116102965780636a1961c4116102655780636a1961c4146108bc578063700bb191146108d157806370a08231146108fb578063715018a61461092e578063799939ab14610943576103ef565b806352f7c9881461081157806364b0f6531461084157806365b8dbc0146108565780636843cd8414610889576103ef565b8063455a4396116102d2578063455a43961461077957806349bd5a5e146107b45780634e71d92d146107c95780634fbee193146107de576103ef565b8063313ce567146106bf57806331e79db0146106d457806333f3d628146107075780633950935114610740576103ef565b80631cdd3be31161037b5780632618f2141161034a5780632618f214146106555780632be29fa81461066a5780632c1f52161461069557806330bb4cff146106aa576103ef565b80631cdd3be3146105975780631eb147d5146105ca5780631f53ac02146105df57806323b872dd14610612576103ef565b806314372720116103b757806314372720146105315780631694505e14610558578063181281291461056d57806318160ddd14610582576103ef565b806303588b6d146103f457806304824e701461042557806306fdde031461045a578063095ea7b3146104e4576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610ecf565b604080516001600160a01b039092168252519081900360200190f35b34801561043157600080fd5b506104586004803603602081101561044857600080fd5b50356001600160a01b0316610ede565b005b34801561046657600080fd5b5061046f610f6f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b038135169060200135611005565b604080519115158252519081900360200190f35b34801561053d57600080fd5b50610546611023565b60408051918252519081900360200190f35b34801561056457600080fd5b50610409611029565b34801561057957600080fd5b5061051d611038565b34801561058e57600080fd5b50610546611046565b3480156105a357600080fd5b5061051d600480360360208110156105ba57600080fd5b50356001600160a01b031661104c565b3480156105d657600080fd5b5061051d611061565b3480156105eb57600080fd5b506104586004803603602081101561060257600080fd5b50356001600160a01b031661106a565b34801561061e57600080fd5b5061051d6004803603606081101561063557600080fd5b506001600160a01b038135811691602081013590911690604001356110e4565b34801561066157600080fd5b5061054661116b565b34801561067657600080fd5b5061067f611171565b6040805160ff9092168252519081900360200190f35b3480156106a157600080fd5b5061040961117a565b3480156106b657600080fd5b50610546611189565b3480156106cb57600080fd5b5061067f6111ff565b3480156106e057600080fd5b50610458600480360360208110156106f757600080fd5b50356001600160a01b0316611204565b34801561071357600080fd5b5061051d6004803603604081101561072a57600080fd5b506001600160a01b0381351690602001356112c5565b34801561074c57600080fd5b5061051d6004803603604081101561076357600080fd5b506001600160a01b0381351690602001356113a1565b34801561078557600080fd5b506104586004803603604081101561079c57600080fd5b506001600160a01b03813516906020013515156113ef565b3480156107c057600080fd5b50610409611472565b3480156107d557600080fd5b50610458611481565b3480156107ea57600080fd5b5061051d6004803603602081101561080157600080fd5b50356001600160a01b0316611502565b34801561081d57600080fd5b506104586004803603604081101561083457600080fd5b5080359060200135611520565b34801561084d57600080fd5b50610546611583565b34801561086257600080fd5b506104586004803603602081101561087957600080fd5b50356001600160a01b03166115c8565b34801561089557600080fd5b50610546600480360360208110156108ac57600080fd5b50356001600160a01b031661184d565b3480156108c857600080fd5b506105466118d0565b3480156108dd57600080fd5b50610458600480360360208110156108f457600080fd5b50356118d6565b34801561090757600080fd5b506105466004803603602081101561091e57600080fd5b50356001600160a01b03166119bd565b34801561093a57600080fd5b506104586119d8565b34801561094f57600080fd5b50610546611a7a565b34801561096457600080fd5b506104586004803603602081101561097b57600080fd5b50356001600160a01b0316611a80565b34801561099757600080fd5b50610409611af5565b3480156109ac57600080fd5b50610546611b04565b3480156109c157600080fd5b50610458600480360360208110156109d857600080fd5b5035611b0a565b3480156109eb57600080fd5b5061045860048036036020811015610a0257600080fd5b50356001600160a01b0316611c27565b348015610a1e57600080fd5b50610409611f7e565b348015610a3357600080fd5b5061046f611f8d565b348015610a4857600080fd5b5061045860048036036040811015610a5f57600080fd5b506001600160a01b0381351690602001351515611fee565b348015610a8357600080fd5b5061054661209d565b348015610a9857600080fd5b506105466120a3565b348015610aad57600080fd5b506105466120a9565b348015610ac257600080fd5b5061051d60048036036040811015610ad957600080fd5b506001600160a01b0381351690602001356120ee565b348015610afb57600080fd5b5061054660048036036020811015610b1257600080fd5b50356001600160a01b0316612156565b348015610b2e57600080fd5b5061045860048036036020811015610b4557600080fd5b50356001600160a01b03166121a7565b348015610b6157600080fd5b5061051d60048036036040811015610b7857600080fd5b506001600160a01b038135169060200135612221565b348015610b9a57600080fd5b5061045860048036036020811015610bb157600080fd5b503560ff16612235565b348015610bc757600080fd5b506104096122b3565b348015610bdc57600080fd5b50610c0360048036036020811015610bf357600080fd5b50356001600160a01b03166122c2565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c5a57600080fd5b506104096123a2565b348015610c6f57600080fd5b5061051d60048036036020811015610c8657600080fd5b50356001600160a01b03166123b1565b348015610ca257600080fd5b506105466123c6565b348015610cb757600080fd5b5061045860048036036040811015610cce57600080fd5b506001600160a01b03813516906020013515156123cc565b348015610cf257600080fd5b5061045860048036036040811015610d0957600080fd5b810190602081018135640100000000811115610d2457600080fd5b820183602082011115610d3657600080fd5b80359060200191846020830284011164010000000083111715610d5857600080fd5b9193509150351515612484565b348015610d7157600080fd5b506104096125a4565b348015610d8657600080fd5b5061045860048036036020811015610d9d57600080fd5b50356125b3565b348015610db057600080fd5b50610546612620565b348015610dc557600080fd5b5061054660048036036040811015610ddc57600080fd5b506001600160a01b0381358116916020013516612626565b348015610e0057600080fd5b50610546612651565b348015610e1557600080fd5b50610546612657565b348015610e2a57600080fd5b5061054661265d565b348015610e3f57600080fd5b5061045860048036036020811015610e5657600080fd5b50356126a2565b348015610e6957600080fd5b50610409612747565b348015610e7e57600080fd5b50610c0360048036036020811015610e9557600080fd5b503561276b565b348015610ea857600080fd5b5061045860048036036020811015610ebf57600080fd5b50356001600160a01b03166127d1565b600a546001600160a01b031681565b610ee661292b565b6005546001600160a01b03908116911614610f36576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610f6b573d6000803e3d6000fd5b5050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b5050505050905090565b600061101961101261292b565b848461292f565b5060015b92915050565b60185481565b6006546001600160a01b031681565b601054610100900460ff1681565b60025490565b600d6020526000908152604090205460ff1681565b60105460ff1681565b61107261292b565b6005546001600160a01b039081169116146110c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006110f1848484612a1b565b611161846110fd61292b565b61115c85604051806060016040528060288152602001613bce602891396001600160a01b038a1660009081526001602052604081209061113b61292b565b6001600160a01b031681526020810191909152604001600020549190613115565b61292f565b5060019392505050565b60135481565b60125460ff1681565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156111ce57600080fd5b505afa1580156111e2573d6000803e3d6000fd5b505050506040513d60208110156111f857600080fd5b5051905090565b601290565b61120c61292b565b6005546001600160a01b0390811691161461125c576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156112aa57600080fd5b505af11580156112be573d6000803e3d6000fd5b5050505050565b60006112cf61292b565b6005546001600160a01b0390811691161461131f576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b0385169163a9059cbb9160448083019260209291908290030181600087803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b505050506040513d602081101561139857600080fd5b50519392505050565b60006110196113ae61292b565b8461115c85600160006113bf61292b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128ca565b6113f761292b565b6005546001600160a01b03908116911614611447576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114d857600080fd5b505af11580156114ec573d6000803e3d6000fd5b505050506040513d6020811015610f6b57600080fd5b6001600160a01b03166000908152601c602052604090205460ff1690565b61152861292b565b6005546001600160a01b03908116911614611578576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600e91909155600f55565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156111ce57600080fd5b6115d061292b565b6005546001600160a01b03908116911614611620576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561166d5760405162461bcd60e51b8152600401808060200182810382526028815260200180613c5b6028913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561170657600080fd5b505afa15801561171a573d6000803e3d6000fd5b505050506040513d602081101561173057600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561178257600080fd5b505afa158015611796573d6000803e3d6000fd5b505050506040513d60208110156117ac57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156117fe57600080fd5b505af1158015611812573d6000803e3d6000fd5b505050506040513d602081101561182857600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561189e57600080fd5b505afa1580156118b2573d6000803e3d6000fd5b505050506040513d60208110156118c857600080fd5b505192915050565b60115481565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561192d57600080fd5b505af1158015611941573d6000803e3d6000fd5b505050506040513d606081101561195757600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119e061292b565b6005546001600160a01b03908116911614611a30576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600f5481565b611a8861292b565b6005546001600160a01b03908116911614611ad8576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b611af281611ae4611f7e565b611aed846119bd565b612a1b565b50565b6009546001600160a01b031681565b600e5481565b611b1261292b565b6005546001600160a01b03908116911614611b62576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b62030d408110158015611b7857506207a1208111155b611bb35760405162461bcd60e51b8152600401808060200182810382526039815260200180613b746039913960400191505060405180910390fd5b601554811415611bf45760405162461bcd60e51b8152600401808060200182810382526031815260200180613ce56031913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611c2f61292b565b6005546001600160a01b03908116911614611c7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611ccc5760405162461bcd60e51b8152600401808060200182810382526032815260200180613d3a6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1457600080fd5b505afa158015611d28573d6000803e3d6000fd5b505050506040513d6020811015611d3e57600080fd5b50516001600160a01b031614611d855760405162461bcd60e51b8152600401808060200182810382526045815260200180613c166045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611dd457600080fd5b505af1158015611de8573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e3357600080fd5b505af1158015611e47573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611e62611f7e565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ea157600080fd5b505af1158015611eb5573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f0757600080fd5b505af1158015611f1b573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b611ff661292b565b6005546001600160a01b03908116911614612046576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6007546001600160a01b03838116911614156120935760405162461bcd60e51b815260040180806020018281038252604a815260200180613d6c604a913960600191505060405180910390fd5b610f6b82826131ac565b60155481565b601b5481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156111ce57600080fd5b60006110196120fb61292b565b8461115c85604051806060016040528060258152602001613db6602591396001600061212561292b565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613115565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561189e57600080fd5b6121af61292b565b6005546001600160a01b039081169116146121ff576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600061101961222e61292b565b8484612a1b565b61223d61292b565b6005546001600160a01b0390811691161461228d576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60105460ff161561229d57600080fd5b6012805460ff191660ff92909216919091179055565b6016546001600160a01b031681565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561233157600080fd5b505afa158015612345573d6000803e3d6000fd5b505050506040513d61010081101561235c57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b6017546001600160a01b031681565b601d6020526000908152604090205460ff1681565b60145481565b6123d461292b565b6005546001600160a01b03908116911614612424576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b61248c61292b565b6005546001600160a01b039081169116146124dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60005b828110156125315781601c60008686858181106124f857fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016124df565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600b546001600160a01b031681565b6125bb61292b565b6005546001600160a01b0390811691161461260b576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60105460ff161561261b57600080fd5b601355565b601a5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60195481565b600c5481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156111ce57600080fd5b6126aa61292b565b6005546001600160a01b039081169116146126fa576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b1580156112aa57600080fd5b7f000000000000000000000000000000000000000000000000000000000000000081565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561233157600080fd5b6127d961292b565b6005546001600160a01b03908116911614612829576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b03811661286e5760405162461bcd60e51b8152600401808060200182810382526026815260200180613b066026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015612924576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129745760405162461bcd60e51b8152600401808060200182810382526024815260200180613d166024913960400191505060405180910390fd5b6001600160a01b0382166129b95760405162461bcd60e51b8152600401808060200182810382526022815260200180613b2c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612a605760405162461bcd60e51b8152600401808060200182810382526025815260200180613c836025913960400191505060405180910390fd5b6001600160a01b038216612aa55760405162461bcd60e51b8152600401808060200182810382526023815260200180613ae36023913960400191505060405180910390fd5b6001600160a01b0383166000908152600d602052604090205460ff1615612b09576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b80612b1f57612b1a838360006132da565b613110565b6016546001600160a01b038481169116148015612b3e57506018544211155b15612b4857613110565b6017546001600160a01b038481169116148015612b6757506019544211155b15612b7157613110565b60105460ff16612bc5576007546001600160a01b0383811691161415612bc55760108054600160ff1990911617905560125460ff16430160115560135442908101601455601a548101601855601b54016019555b60105460ff168015612bd957506011544311155b8015612bed5750601054610100900460ff16155b15612c61576000612c146064612c0e600e548561343590919063ffffffff16565b9061348e565b9050612c2082826134d0565b9150612c2d8430836132da565b612c388484846132da565b506001600160a01b0382166000908152600d60205260409020805460ff19166001179055613110565b60105460ff168015612c7557506014544211155b8015612c895750601054610100900460ff16155b15612caa576000612c146064612c0e600e548561343590919063ffffffff16565b60105460ff168015612cc35750601054610100900460ff165b15612cd4576010805461ff00191690555b6000612cdf306119bd565b600c5490915081108015908190612d005750600754600160a01b900460ff16155b8015612d2557506001600160a01b0385166000908152601d602052604090205460ff16155b8015612d4a5750612d34611f7e565b6001600160a01b0316856001600160a01b031614155b8015612d6f5750612d59611f7e565b6001600160a01b0316846001600160a01b031614155b15612e93576007805460ff60a01b1916600160a01b1790556000612d92306119bd565b9050612d9d81613512565b60004790506000612dbf600e54612c0e600f548561343590919063ffffffff16565b90506000612dcd83836134d0565b90506000612ddc82600261348e565b90506000612dea83836134d0565b600a546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612e25573d6000803e3d6000fd5b50600b546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e60573d6000803e3d6000fd5b506000612e6d86856134d0565b90508015612e7e57612e7e816136b8565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680612ee157506001600160a01b0385166000908152601c602052604090205460ff165b15612eea575060005b8015612f27576000612f0c6064612c0e600e548861343590919063ffffffff16565b9050612f1885826134d0565b9450612f258730836132da565b505b612f328686866132da565b6008546001600160a01b031663e30443bc87612f4d816119bd565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612f9357600080fd5b505af1925050508015612fa4575060015b506008546001600160a01b031663e30443bc86612fc0816119bd565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561300657600080fd5b505af1925050508015613017575060015b50600754600160a01b900460ff1661310c57601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561307d57600080fd5b505af19250505080156130b157506040513d606081101561309d57600080fd5b508051602082015160409092015190919060015b6130ba5761310a565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b600081848411156131a45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613169578181015183820152602001613151565b50505050905090810190601f1680156131965780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166000908152601d602052604090205460ff161515811515141561320a5760405162461bcd60e51b815260040180806020018281038252603d815260200180613ca8603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601d60205260409020805460ff1916821580159190911790915561329e576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561328557600080fd5b505af1158015613299573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661331f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c836025913960400191505060405180910390fd5b6001600160a01b0382166133645760405162461bcd60e51b8152600401808060200182810382526023815260200180613ae36023913960400191505060405180910390fd5b61336f838383613110565b6133ac81604051806060016040528060268152602001613b4e602691396001600160a01b0386166000908152602081905260409020549190613115565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546133db90826128ca565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826134445750600061101d565b8282028284828161345157fe5b04146129245760405162461bcd60e51b8152600401808060200182810382526021815260200180613bad6021913960400191505060405180910390fd5b600061292483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138b1565b600061292483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613115565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061354057fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561359457600080fd5b505afa1580156135a8573d6000803e3d6000fd5b505050506040513d60208110156135be57600080fd5b50518151829060019081106135cf57fe5b6001600160a01b0392831660209182029290920101526006546135f5913091168461292f565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561367b578181015183820152602001613663565b505050509050019650505050505050600060405180830381600087803b1580156136a457600080fd5b505af115801561310c573d6000803e3d6000fd5b6136c181613916565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561373057600080fd5b505afa158015613744573d6000803e3d6000fd5b505050506040513d602081101561375a57600080fd5b50516008546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f00000000000000000000000000000000000000000000000000000000000000009092169163a9059cbb9160448082019260209290919082900301818787803b1580156137d857600080fd5b505af11580156137ec573d6000803e3d6000fd5b505050506040513d602081101561380257600080fd5b505190508015613110576008546040805163ec4be22d60e01b81526004810185905290516001600160a01b039092169163ec4be22d9160248082019260009290919082900301818387803b15801561385957600080fd5b505af115801561386d573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600081836139005760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613169578181015183820152602001613151565b50600083858161390c57fe5b0495945050505050565b60408051600280825260608083018452926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561397a57600080fd5b505afa15801561398e573d6000803e3d6000fd5b505050506040513d60208110156139a457600080fd5b5051815182906000906139b357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110613a0157fe5b6001600160a01b039283166020918202929092010152600654613a27913091168461292f565b60065460405163b6f9de9560e01b8152600060048201818152306044840181905242606485018190526080602486019081528751608487015287516001600160a01b039097169663b6f9de95968a96958a9594939092909160a40190602080880191028083838b5b83811015613aa7578181015183820152602001613a8f565b50505050905001955050505050506000604051808303818588803b158015613ace57600080fd5b505af115801561310a573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365494e553a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c303030536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572494e553a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520494e5520746f6b656e20636f6e7472616374494e553a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373494e553a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565494e553a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373494e553a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373494e553a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ddba2b2545f572a26b7a9888c4cf31acecc3d0466c0fef06c1d25179684405bf64736f6c634300060c003360c06040527f050d94685c6b0477e1fc555888af6e2bb8dfbda50000000000000000000000006080523480156200003557600080fd5b50604080518082018252601381527f494e555f4469766964656e5f547261636b65720000000000000000000000000060208083019182528351808501909452601484527f494e555f4469766964656e645f547261636b657200000000000000000000000090840152815191929183918391620000b4916003916200014d565b508051620000ca9060049060208401906200014d565b5050506000620000df6200014960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610e1060115550690a968163f0a57b40000060a052620001e9565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b60805160601c60a0516121386200021a60003980610f1d5280610fea5250806113425280611ac452506121386000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638da5cb5b11610125578063dd62ed3e116100ad578063ec4be22d1161007c578063ec4be22d1461067b578063f257418314610698578063f2fde38b146106a0578063fbcbc0f1146106c6578063ffb2c479146106ec5761021c565b8063dd62ed3e146105fc578063e30443bc1461062a578063e7841ec014610656578063e98030c71461065e5761021c565b8063a8b9d240116100f4578063a8b9d2401461054e578063a9059cbb14610574578063aafd847a146105a0578063bc4c4b37146105c6578063be10b614146105f45761021c565b80638da5cb5b146104d057806391b89fba146104f457806395d89b411461051a578063a457c2d7146105225761021c565b806331e79db0116101a85780636a474002116101775780636a4740021461048a5780636f2789ec1461049257806370a082311461049a578063715018a6146104c057806385a6b3ae146104c85761021c565b806331e79db0146103a857806339509351146103d05780634e7b827f146103fc5780635183d6fd146104225761021c565b8063226cfa3d116101ef578063226cfa3d1461030057806323b872dd1461032657806327ce01471461035c5780633009a60914610382578063313ce5671461038a5761021c565b806306fdde0314610221578063095ea7b31461029e57806309bbedde146102de57806318160ddd146102f8575b600080fd5b610229610727565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107bd565b604080519115158252519081900360200190f35b6102e66107db565b60408051918252519081900360200190f35b6102e66107e1565b6102e66004803603602081101561031657600080fd5b50356001600160a01b03166107e7565b6102ca6004803603606081101561033c57600080fd5b506001600160a01b038135811691602081013590911690604001356107f9565b6102e66004803603602081101561037257600080fd5b50356001600160a01b0316610880565b6102e66108df565b6103926108e5565b6040805160ff9092168252519081900360200190f35b6103ce600480360360208110156103be57600080fd5b50356001600160a01b03166108ea565b005b6102ca600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610a46565b6102ca6004803603602081101561041257600080fd5b50356001600160a01b0316610a94565b61043f6004803603602081101561043857600080fd5b5035610aa9565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b6103ce610c08565b6102e6610c3f565b6102e6600480360360208110156104b057600080fd5b50356001600160a01b0316610c45565b6103ce610c60565b6102e6610d02565b6104d8610d08565b604080516001600160a01b039092168252519081900360200190f35b6102e66004803603602081101561050a57600080fd5b50356001600160a01b0316610d17565b610229610d22565b6102ca6004803603604081101561053857600080fd5b506001600160a01b038135169060200135610d83565b6102e66004803603602081101561056457600080fd5b50356001600160a01b0316610deb565b6102ca6004803603604081101561058a57600080fd5b506001600160a01b038135169060200135610e17565b6102e6600480360360208110156105b657600080fd5b50356001600160a01b0316610e2b565b6102ca600480360360408110156105dc57600080fd5b506001600160a01b0381351690602001351515610e46565b6102e6610f1b565b6102e66004803603604081101561061257600080fd5b506001600160a01b0381358116916020013516610f3f565b6103ce6004803603604081101561064057600080fd5b506001600160a01b038135169060200135610f6a565b6102e6611134565b6103ce6004803603602081101561067457600080fd5b503561113a565b6103ce6004803603602081101561069157600080fd5b5035611256565b6104d8611340565b6103ce600480360360208110156106b657600080fd5b50356001600160a01b0316611364565b61043f600480360360208110156106dc57600080fd5b50356001600160a01b031661145d565b6107096004803603602081101561070257600080fd5b50356115d0565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107d16107ca6116ce565b84846116d2565b5060015b92915050565b600a5490565b60025490565b60106020526000908152604090205481565b60006108068484846117be565b610876846108126116ce565b61087185604051806060016040528060288152602001612008602891396001600160a01b038a166000908152600160205260408120906108506116ce565b6001600160a01b0316815260208101919091526040016000205491906117f5565b6116d2565b5060019392505050565b6001600160a01b038116600090815260076020526040812054600160801b906108cf906108ca906108c46108bf6108b688610c45565b6006549061188c565b6118ec565b906118fc565b61192f565b816108d657fe5b0490505b919050565b600e5481565b601290565b6108f26116ce565b6005546001600160a01b03908116911614610942576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600f602052604090205460ff161561096857600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610996908290611942565b6040805163131836e760e21b8152600a60048201526001600160a01b0383166024820152905173057ebdf0009194ca095bf8115eadc23ec8b21df791634c60db9c916044808301926000929190829003018186803b1580156109f757600080fd5b505af4158015610a0b573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b60006107d1610a536116ce565b846108718560016000610a646116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061199b565b600f6020526000908152604090205460ff1681565b600080600080600080600080600a73057ebdf0009194ca095bf8115eadc23ec8b21df763deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b0757600080fd5b505af4158015610b1b573d6000803e3d6000fd5b505050506040513d6020811015610b3157600080fd5b50518910610b58575060009650600019955085945086935083925082915081905080610bfd565b6000600a73057ebdf0009194ca095bf8115eadc23ec8b21df763d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610bb457600080fd5b505af4158015610bc8573d6000803e3d6000fd5b505050506040513d6020811015610bde57600080fd5b50519050610beb8161145d565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b8152600401808060200182810382526064815260200180611f1e6064913960800191505060405180910390fd5b60115481565b6001600160a01b031660009081526020819052604090205490565b610c686116ce565b6005546001600160a01b03908116911614610cb8576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60095481565b6005546001600160a01b031690565b60006107d582610deb565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b60006107d1610d906116ce565b84610871856040518060600160405280602581526020016120de6025913960016000610dba6116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906117f5565b6001600160a01b0381166000908152600860205260408120546107d590610e1184610880565b906119f5565b60006107d1610e246116ce565b84846117be565b6001600160a01b031660009081526008602052604090205490565b6000610e506116ce565b6005546001600160a01b03908116911614610ea0576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b6000610eab84611a37565b90508015610f11576001600160a01b0384166000818152601060209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a360019150506107d5565b5060009392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f726116ce565b6005546001600160a01b03908116911614610fc2576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600f602052604090205460ff1615610fe857611130565b7f0000000000000000000000000000000000000000000000000000000000000000811061109e576110198282611942565b60408051632f0ad01760e21b8152600a60048201526001600160a01b038416602482015260448101839052905173057ebdf0009194ca095bf8115eadc23ec8b21df79163bc2b405c916064808301926000929190829003018186803b15801561108157600080fd5b505af4158015611095573d6000803e3d6000fd5b50505050611123565b6110a9826000611942565b6040805163131836e760e21b8152600a60048201526001600160a01b0384166024820152905173057ebdf0009194ca095bf8115eadc23ec8b21df791634c60db9c916044808301926000929190829003018186803b15801561110a57600080fd5b505af415801561111e573d6000803e3d6000fd5b505050505b61112e826001610e46565b505b5050565b600e5490565b6111426116ce565b6005546001600160a01b03908116911614611192576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b610e1081101580156111a75750620151808111155b6111e25760405162461bcd60e51b81526004018080602001828103825260498152602001806120506049913960600191505060405180910390fd5b6011548114156112235760405162461bcd60e51b815260040180806020018281038252603b815260200180611fac603b913960400191505060405180910390fd5b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b61125e6116ce565b6005546001600160a01b039081169116146112ae576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b60006112b86107e1565b116112c257600080fd5b801561133d576112f36112d36107e1565b6112e183600160801b61188c565b816112e857fe5b60065491900461199b565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600954611339908261199b565b6009555b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b61136c6116ce565b6005546001600160a01b039081169116146113bc576040805162461bcd60e51b81526020600482018190526024820152600080516020612030833981519152604482015290519081900360640190fd5b6001600160a01b0381166114015760405162461bcd60e51b8152600401808060200182810382526026815260200180611ed66026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600a73057ebdf0009194ca095bf8115eadc23ec8b21df76317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b1580156114cf57600080fd5b505af41580156114e3573d6000803e3d6000fd5b505050506040513d60208110156114f957600080fd5b5051965060001995506000871261155d57600e5487111561152957600e54611522908890611bc6565b955061155d565b600e54600a546000911061153e57600061154d565b600e54600a5461154d916119f5565b905061155988826118fc565b9650505b61156688610deb565b945061157188610880565b6001600160a01b03891660009081526010602052604090205490945092508261159b5760006115a9565b6011546115a990849061199b565b91504282116115b95760006115c3565b6115c382426119f5565b9050919395975091939597565b600a5460009081908190806115f0575050600e54600092508291506116c7565b600e546000805a90506000805b898410801561160b57508582105b156116b657600a54600190950194851061162457600094505b6000600a600001868154811061163657fe5b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061166790611bf8565b1561168357611677816001610e46565b15611683576001909101905b60019092019160005a9050808511156116ad576116aa6116a386836119f5565b879061199b565b95505b93506115fd9050565b600e85905590975095509193505050505b9193909250565b3390565b6001600160a01b0383166117175760405162461bcd60e51b81526004018080602001828103825260248152602001806120ba6024913960400191505060405180910390fd5b6001600160a01b03821661175c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611efc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602a815260200180611f82602a913960400191505060405180910390fd5b600081848411156118845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611849578181015183820152602001611831565b50505050905090810190601f1680156118765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261189b575060006107d5565b828202828482816118a857fe5b04146118e55760405162461bcd60e51b8152600401808060200182810382526021815260200180611fe76021913960400191505060405180910390fd5b9392505050565b600081818112156107d557600080fd5b60008282018183128015906119115750838112155b80611926575060008312801561192657508381125b6118e557600080fd5b60008082121561193e57600080fd5b5090565b600061194d83610c45565b90508082111561197557600061196383836119f5565b905061196f8482611c1f565b5061112e565b8082101561112e57600061198982846119f5565b90506119958482611c83565b50505050565b6000828201838110156118e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006118e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117f5565b600080611a4383610deb565b90508015611bbd576001600160a01b038316600090815260086020526040902054611a6e908261199b565b6001600160a01b038416600081815260086020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a260007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611b3957600080fd5b505af1158015611b4d573d6000803e3d6000fd5b505050506040513d6020811015611b6357600080fd5b5051905080611bb5576001600160a01b038416600090815260086020526040902054611b8f90836119f5565b6001600160a01b03851660009081526008602052604081209190915592506108da915050565b5090506108da565b50600092915050565b6000818303818312801590611bdb5750838113155b80611926575060008312801561192657508381136118e557600080fd5b600042821115611c0a575060006108da565b601154611c1742846119f5565b101592915050565b611c298282611cc7565b611c63611c446108bf8360065461188c90919063ffffffff16565b6001600160a01b03841660009081526007602052604090205490611bc6565b6001600160a01b0390921660009081526007602052604090209190915550565b611c8d8282611db7565b611c63611ca86108bf8360065461188c90919063ffffffff16565b6001600160a01b038416600090815260076020526040902054906118fc565b6001600160a01b038216611d22576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d2e6000838361112e565b600254611d3b908261199b565b6002556001600160a01b038216600090815260208190526040902054611d61908261199b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611dfc5760405162461bcd60e51b81526004018080602001828103825260218152602001806120996021913960400191505060405180910390fd5b611e088260008361112e565b611e4581604051806060016040528060228152602001611eb4602291396001600160a01b03851660009081526020819052604090205491906117f5565b6001600160a01b038316600090815260208190526040902055600254611e6b90826119f5565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373494e555f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e205348494220636f6e74726163742e494e555f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f776564494e555f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572494e555f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f75727345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ede34dfa34c6f85bfc54596cad5c3f1d25e9ed5172d731e2b93835e1889ffb2664736f6c634300060c0033494e553a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x6080604052600436106103e85760003560e01c80637b88eae111610208578063ad56c13c11610118578063ce706631116100ab578063e7841ec01161007a578063e7841ec014610e1e578063e98030c714610e33578063f257418314610e5d578063f27fd25414610e72578063f2fde38b14610e9c576103ef565b8063ce70663114610da4578063dd62ed3e14610db9578063e10ec53614610df4578063e2f4560514610e09576103ef565b8063c0246668116100e7578063c024666814610cab578063c492f04614610ce6578063cc3a5a7514610d65578063cc576d3e14610d7a576103ef565b8063ad56c13c14610bd0578063b436fd7214610c4e578063b62496f514610c63578063b73d03e114610c96576103ef565b80639c1b8af51161019b578063a8b9d2401161016a578063a8b9d24014610aef578063a8ddd32b14610b22578063a9059cbb14610b55578063a9f6151814610b8e578063abf8553614610bbb576103ef565b80639c1b8af514610a77578063a200cf4114610a8c578063a26579ad14610aa1578063a457c2d714610ab6576103ef565b806388bdd9be116101d757806388bdd9be146109df5780638da5cb5b14610a1257806395d89b4114610a275780639a7a23d614610a3c576103ef565b80637b88eae11461095857806385141a771461098b57806386827d39146109a0578063871c128d146109b5576103ef565b8063313ce5671161030357806352f7c988116102965780636a1961c4116102655780636a1961c4146108bc578063700bb191146108d157806370a08231146108fb578063715018a61461092e578063799939ab14610943576103ef565b806352f7c9881461081157806364b0f6531461084157806365b8dbc0146108565780636843cd8414610889576103ef565b8063455a4396116102d2578063455a43961461077957806349bd5a5e146107b45780634e71d92d146107c95780634fbee193146107de576103ef565b8063313ce567146106bf57806331e79db0146106d457806333f3d628146107075780633950935114610740576103ef565b80631cdd3be31161037b5780632618f2141161034a5780632618f214146106555780632be29fa81461066a5780632c1f52161461069557806330bb4cff146106aa576103ef565b80631cdd3be3146105975780631eb147d5146105ca5780631f53ac02146105df57806323b872dd14610612576103ef565b806314372720116103b757806314372720146105315780631694505e14610558578063181281291461056d57806318160ddd14610582576103ef565b806303588b6d146103f457806304824e701461042557806306fdde031461045a578063095ea7b3146104e4576103ef565b366103ef57005b600080fd5b34801561040057600080fd5b50610409610ecf565b604080516001600160a01b039092168252519081900360200190f35b34801561043157600080fd5b506104586004803603602081101561044857600080fd5b50356001600160a01b0316610ede565b005b34801561046657600080fd5b5061046f610f6f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104a9578181015183820152602001610491565b50505050905090810190601f1680156104d65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104f057600080fd5b5061051d6004803603604081101561050757600080fd5b506001600160a01b038135169060200135611005565b604080519115158252519081900360200190f35b34801561053d57600080fd5b50610546611023565b60408051918252519081900360200190f35b34801561056457600080fd5b50610409611029565b34801561057957600080fd5b5061051d611038565b34801561058e57600080fd5b50610546611046565b3480156105a357600080fd5b5061051d600480360360208110156105ba57600080fd5b50356001600160a01b031661104c565b3480156105d657600080fd5b5061051d611061565b3480156105eb57600080fd5b506104586004803603602081101561060257600080fd5b50356001600160a01b031661106a565b34801561061e57600080fd5b5061051d6004803603606081101561063557600080fd5b506001600160a01b038135811691602081013590911690604001356110e4565b34801561066157600080fd5b5061054661116b565b34801561067657600080fd5b5061067f611171565b6040805160ff9092168252519081900360200190f35b3480156106a157600080fd5b5061040961117a565b3480156106b657600080fd5b50610546611189565b3480156106cb57600080fd5b5061067f6111ff565b3480156106e057600080fd5b50610458600480360360208110156106f757600080fd5b50356001600160a01b0316611204565b34801561071357600080fd5b5061051d6004803603604081101561072a57600080fd5b506001600160a01b0381351690602001356112c5565b34801561074c57600080fd5b5061051d6004803603604081101561076357600080fd5b506001600160a01b0381351690602001356113a1565b34801561078557600080fd5b506104586004803603604081101561079c57600080fd5b506001600160a01b03813516906020013515156113ef565b3480156107c057600080fd5b50610409611472565b3480156107d557600080fd5b50610458611481565b3480156107ea57600080fd5b5061051d6004803603602081101561080157600080fd5b50356001600160a01b0316611502565b34801561081d57600080fd5b506104586004803603604081101561083457600080fd5b5080359060200135611520565b34801561084d57600080fd5b50610546611583565b34801561086257600080fd5b506104586004803603602081101561087957600080fd5b50356001600160a01b03166115c8565b34801561089557600080fd5b50610546600480360360208110156108ac57600080fd5b50356001600160a01b031661184d565b3480156108c857600080fd5b506105466118d0565b3480156108dd57600080fd5b50610458600480360360208110156108f457600080fd5b50356118d6565b34801561090757600080fd5b506105466004803603602081101561091e57600080fd5b50356001600160a01b03166119bd565b34801561093a57600080fd5b506104586119d8565b34801561094f57600080fd5b50610546611a7a565b34801561096457600080fd5b506104586004803603602081101561097b57600080fd5b50356001600160a01b0316611a80565b34801561099757600080fd5b50610409611af5565b3480156109ac57600080fd5b50610546611b04565b3480156109c157600080fd5b50610458600480360360208110156109d857600080fd5b5035611b0a565b3480156109eb57600080fd5b5061045860048036036020811015610a0257600080fd5b50356001600160a01b0316611c27565b348015610a1e57600080fd5b50610409611f7e565b348015610a3357600080fd5b5061046f611f8d565b348015610a4857600080fd5b5061045860048036036040811015610a5f57600080fd5b506001600160a01b0381351690602001351515611fee565b348015610a8357600080fd5b5061054661209d565b348015610a9857600080fd5b506105466120a3565b348015610aad57600080fd5b506105466120a9565b348015610ac257600080fd5b5061051d60048036036040811015610ad957600080fd5b506001600160a01b0381351690602001356120ee565b348015610afb57600080fd5b5061054660048036036020811015610b1257600080fd5b50356001600160a01b0316612156565b348015610b2e57600080fd5b5061045860048036036020811015610b4557600080fd5b50356001600160a01b03166121a7565b348015610b6157600080fd5b5061051d60048036036040811015610b7857600080fd5b506001600160a01b038135169060200135612221565b348015610b9a57600080fd5b5061045860048036036020811015610bb157600080fd5b503560ff16612235565b348015610bc757600080fd5b506104096122b3565b348015610bdc57600080fd5b50610c0360048036036020811015610bf357600080fd5b50356001600160a01b03166122c2565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c5a57600080fd5b506104096123a2565b348015610c6f57600080fd5b5061051d60048036036020811015610c8657600080fd5b50356001600160a01b03166123b1565b348015610ca257600080fd5b506105466123c6565b348015610cb757600080fd5b5061045860048036036040811015610cce57600080fd5b506001600160a01b03813516906020013515156123cc565b348015610cf257600080fd5b5061045860048036036040811015610d0957600080fd5b810190602081018135640100000000811115610d2457600080fd5b820183602082011115610d3657600080fd5b80359060200191846020830284011164010000000083111715610d5857600080fd5b9193509150351515612484565b348015610d7157600080fd5b506104096125a4565b348015610d8657600080fd5b5061045860048036036020811015610d9d57600080fd5b50356125b3565b348015610db057600080fd5b50610546612620565b348015610dc557600080fd5b5061054660048036036040811015610ddc57600080fd5b506001600160a01b0381358116916020013516612626565b348015610e0057600080fd5b50610546612651565b348015610e1557600080fd5b50610546612657565b348015610e2a57600080fd5b5061054661265d565b348015610e3f57600080fd5b5061045860048036036020811015610e5657600080fd5b50356126a2565b348015610e6957600080fd5b50610409612747565b348015610e7e57600080fd5b50610c0360048036036020811015610e9557600080fd5b503561276b565b348015610ea857600080fd5b5061045860048036036020811015610ebf57600080fd5b50356001600160a01b03166127d1565b600a546001600160a01b031681565b610ee661292b565b6005546001600160a01b03908116911614610f36576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610f6b573d6000803e3d6000fd5b5050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b5050505050905090565b600061101961101261292b565b848461292f565b5060015b92915050565b60185481565b6006546001600160a01b031681565b601054610100900460ff1681565b60025490565b600d6020526000908152604090205460ff1681565b60105460ff1681565b61107261292b565b6005546001600160a01b039081169116146110c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006110f1848484612a1b565b611161846110fd61292b565b61115c85604051806060016040528060288152602001613bce602891396001600160a01b038a1660009081526001602052604081209061113b61292b565b6001600160a01b031681526020810191909152604001600020549190613115565b61292f565b5060019392505050565b60135481565b60125460ff1681565b6008546001600160a01b031681565b600854604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156111ce57600080fd5b505afa1580156111e2573d6000803e3d6000fd5b505050506040513d60208110156111f857600080fd5b5051905090565b601290565b61120c61292b565b6005546001600160a01b0390811691161461125c576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156112aa57600080fd5b505af11580156112be573d6000803e3d6000fd5b5050505050565b60006112cf61292b565b6005546001600160a01b0390811691161461131f576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b0385169163a9059cbb9160448083019260209291908290030181600087803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b505050506040513d602081101561139857600080fd5b50519392505050565b60006110196113ae61292b565b8461115c85600160006113bf61292b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128ca565b6113f761292b565b6005546001600160a01b03908116911614611447576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6008546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114d857600080fd5b505af11580156114ec573d6000803e3d6000fd5b505050506040513d6020811015610f6b57600080fd5b6001600160a01b03166000908152601c602052604090205460ff1690565b61152861292b565b6005546001600160a01b03908116911614611578576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600e91909155600f55565b600854604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156111ce57600080fd5b6115d061292b565b6005546001600160a01b03908116911614611620576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6006546001600160a01b038281169116141561166d5760405162461bcd60e51b8152600401808060200182810382526028815260200180613c5b6028913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b15801561170657600080fd5b505afa15801561171a573d6000803e3d6000fd5b505050506040513d602081101561173057600080fd5b5051600654604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561178257600080fd5b505afa158015611796573d6000803e3d6000fd5b505050506040513d60208110156117ac57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156117fe57600080fd5b505af1158015611812573d6000803e3d6000fd5b505050506040513d602081101561182857600080fd5b5051600780546001600160a01b0319166001600160a01b039092169190911790555050565b600854604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561189e57600080fd5b505afa1580156118b2573d6000803e3d6000fd5b505050506040513d60208110156118c857600080fd5b505192915050565b60115481565b600854604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561192d57600080fd5b505af1158015611941573d6000803e3d6000fd5b505050506040513d606081101561195757600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b6119e061292b565b6005546001600160a01b03908116911614611a30576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b600f5481565b611a8861292b565b6005546001600160a01b03908116911614611ad8576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b611af281611ae4611f7e565b611aed846119bd565b612a1b565b50565b6009546001600160a01b031681565b600e5481565b611b1261292b565b6005546001600160a01b03908116911614611b62576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b62030d408110158015611b7857506207a1208111155b611bb35760405162461bcd60e51b8152600401808060200182810382526039815260200180613b746039913960400191505060405180910390fd5b601554811415611bf45760405162461bcd60e51b8152600401808060200182810382526031815260200180613ce56031913960400191505060405180910390fd5b60155460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601555565b611c2f61292b565b6005546001600160a01b03908116911614611c7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546001600160a01b0382811691161415611ccc5760405162461bcd60e51b8152600401808060200182810382526032815260200180613d3a6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1457600080fd5b505afa158015611d28573d6000803e3d6000fd5b505050506040513d6020811015611d3e57600080fd5b50516001600160a01b031614611d855760405162461bcd60e51b8152600401808060200182810382526045815260200180613c166045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611dd457600080fd5b505af1158015611de8573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e3357600080fd5b505af1158015611e47573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611e62611f7e565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ea157600080fd5b505af1158015611eb5573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f0757600080fd5b505af1158015611f1b573d6000803e3d6000fd5b50506008546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600880546001600160a01b0319166001600160a01b039290921691909117905550565b6005546001600160a01b031690565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b611ff661292b565b6005546001600160a01b03908116911614612046576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6007546001600160a01b03838116911614156120935760405162461bcd60e51b815260040180806020018281038252604a815260200180613d6c604a913960600191505060405180910390fd5b610f6b82826131ac565b60155481565b601b5481565b60085460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156111ce57600080fd5b60006110196120fb61292b565b8461115c85604051806060016040528060258152602001613db6602591396001600061212561292b565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190613115565b600854604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561189e57600080fd5b6121af61292b565b6005546001600160a01b039081169116146121ff576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600061101961222e61292b565b8484612a1b565b61223d61292b565b6005546001600160a01b0390811691161461228d576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60105460ff161561229d57600080fd5b6012805460ff191660ff92909216919091179055565b6016546001600160a01b031681565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b15801561233157600080fd5b505afa158015612345573d6000803e3d6000fd5b505050506040513d61010081101561235c57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b6017546001600160a01b031681565b601d6020526000908152604090205460ff1681565b60145481565b6123d461292b565b6005546001600160a01b03908116911614612424576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152601c6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b61248c61292b565b6005546001600160a01b039081169116146124dc576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60005b828110156125315781601c60008686858181106124f857fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016124df565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600b546001600160a01b031681565b6125bb61292b565b6005546001600160a01b0390811691161461260b576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b60105460ff161561261b57600080fd5b601355565b601a5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60195481565b600c5481565b6008546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156111ce57600080fd5b6126aa61292b565b6005546001600160a01b039081169116146126fa576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6008546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b1580156112aa57600080fd5b7f000000000000000000000000050d94685c6b0477e1fc555888af6e2bb8dfbda581565b600080600080600080600080600860009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b15801561233157600080fd5b6127d961292b565b6005546001600160a01b03908116911614612829576040805162461bcd60e51b81526020600482018190526024820152600080516020613bf6833981519152604482015290519081900360640190fd5b6001600160a01b03811661286e5760405162461bcd60e51b8152600401808060200182810382526026815260200180613b066026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015612924576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129745760405162461bcd60e51b8152600401808060200182810382526024815260200180613d166024913960400191505060405180910390fd5b6001600160a01b0382166129b95760405162461bcd60e51b8152600401808060200182810382526022815260200180613b2c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612a605760405162461bcd60e51b8152600401808060200182810382526025815260200180613c836025913960400191505060405180910390fd5b6001600160a01b038216612aa55760405162461bcd60e51b8152600401808060200182810382526023815260200180613ae36023913960400191505060405180910390fd5b6001600160a01b0383166000908152600d602052604090205460ff1615612b09576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b80612b1f57612b1a838360006132da565b613110565b6016546001600160a01b038481169116148015612b3e57506018544211155b15612b4857613110565b6017546001600160a01b038481169116148015612b6757506019544211155b15612b7157613110565b60105460ff16612bc5576007546001600160a01b0383811691161415612bc55760108054600160ff1990911617905560125460ff16430160115560135442908101601455601a548101601855601b54016019555b60105460ff168015612bd957506011544311155b8015612bed5750601054610100900460ff16155b15612c61576000612c146064612c0e600e548561343590919063ffffffff16565b9061348e565b9050612c2082826134d0565b9150612c2d8430836132da565b612c388484846132da565b506001600160a01b0382166000908152600d60205260409020805460ff19166001179055613110565b60105460ff168015612c7557506014544211155b8015612c895750601054610100900460ff16155b15612caa576000612c146064612c0e600e548561343590919063ffffffff16565b60105460ff168015612cc35750601054610100900460ff165b15612cd4576010805461ff00191690555b6000612cdf306119bd565b600c5490915081108015908190612d005750600754600160a01b900460ff16155b8015612d2557506001600160a01b0385166000908152601d602052604090205460ff16155b8015612d4a5750612d34611f7e565b6001600160a01b0316856001600160a01b031614155b8015612d6f5750612d59611f7e565b6001600160a01b0316846001600160a01b031614155b15612e93576007805460ff60a01b1916600160a01b1790556000612d92306119bd565b9050612d9d81613512565b60004790506000612dbf600e54612c0e600f548561343590919063ffffffff16565b90506000612dcd83836134d0565b90506000612ddc82600261348e565b90506000612dea83836134d0565b600a546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612e25573d6000803e3d6000fd5b50600b546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e60573d6000803e3d6000fd5b506000612e6d86856134d0565b90508015612e7e57612e7e816136b8565b50506007805460ff60a01b1916905550505050505b6007546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680612ee157506001600160a01b0385166000908152601c602052604090205460ff165b15612eea575060005b8015612f27576000612f0c6064612c0e600e548861343590919063ffffffff16565b9050612f1885826134d0565b9450612f258730836132da565b505b612f328686866132da565b6008546001600160a01b031663e30443bc87612f4d816119bd565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612f9357600080fd5b505af1925050508015612fa4575060015b506008546001600160a01b031663e30443bc86612fc0816119bd565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561300657600080fd5b505af1925050508015613017575060015b50600754600160a01b900460ff1661310c57601554600854604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b15801561307d57600080fd5b505af19250505080156130b157506040513d606081101561309d57600080fd5b508051602082015160409092015190919060015b6130ba5761310a565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b600081848411156131a45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613169578181015183820152602001613151565b50505050905090810190601f1680156131965780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166000908152601d602052604090205460ff161515811515141561320a5760405162461bcd60e51b815260040180806020018281038252603d815260200180613ca8603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601d60205260409020805460ff1916821580159190911790915561329e576008546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561328557600080fd5b505af1158015613299573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661331f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c836025913960400191505060405180910390fd5b6001600160a01b0382166133645760405162461bcd60e51b8152600401808060200182810382526023815260200180613ae36023913960400191505060405180910390fd5b61336f838383613110565b6133ac81604051806060016040528060268152602001613b4e602691396001600160a01b0386166000908152602081905260409020549190613115565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546133db90826128ca565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826134445750600061101d565b8282028284828161345157fe5b04146129245760405162461bcd60e51b8152600401808060200182810382526021815260200180613bad6021913960400191505060405180910390fd5b600061292483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138b1565b600061292483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613115565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061354057fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561359457600080fd5b505afa1580156135a8573d6000803e3d6000fd5b505050506040513d60208110156135be57600080fd5b50518151829060019081106135cf57fe5b6001600160a01b0392831660209182029290920101526006546135f5913091168461292f565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561367b578181015183820152602001613663565b505050509050019650505050505050600060405180830381600087803b1580156136a457600080fd5b505af115801561310c573d6000803e3d6000fd5b6136c181613916565b60007f000000000000000000000000050d94685c6b0477e1fc555888af6e2bb8dfbda56001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561373057600080fd5b505afa158015613744573d6000803e3d6000fd5b505050506040513d602081101561375a57600080fd5b50516008546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f000000000000000000000000050d94685c6b0477e1fc555888af6e2bb8dfbda59092169163a9059cbb9160448082019260209290919082900301818787803b1580156137d857600080fd5b505af11580156137ec573d6000803e3d6000fd5b505050506040513d602081101561380257600080fd5b505190508015613110576008546040805163ec4be22d60e01b81526004810185905290516001600160a01b039092169163ec4be22d9160248082019260009290919082900301818387803b15801561385957600080fd5b505af115801561386d573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b600081836139005760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613169578181015183820152602001613151565b50600083858161390c57fe5b0495945050505050565b60408051600280825260608083018452926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561397a57600080fd5b505afa15801561398e573d6000803e3d6000fd5b505050506040513d60208110156139a457600080fd5b5051815182906000906139b357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000050d94685c6b0477e1fc555888af6e2bb8dfbda581600181518110613a0157fe5b6001600160a01b039283166020918202929092010152600654613a27913091168461292f565b60065460405163b6f9de9560e01b8152600060048201818152306044840181905242606485018190526080602486019081528751608487015287516001600160a01b039097169663b6f9de95968a96958a9594939092909160a40190602080880191028083838b5b83811015613aa7578181015183820152602001613a8f565b50505050905001955050505050506000604051808303818588803b158015613ace57600080fd5b505af115801561310a573d6000803e3d6000fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365494e553a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c303030536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572494e553a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e65642062792074686520494e5520746f6b656e20636f6e7472616374494e553a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373494e553a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565494e553a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c756545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373494e553a20546865206469766964656e6420747261636b657220616c72656164792068617320746861742061646472657373494e553a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ddba2b2545f572a26b7a9888c4cf31acecc3d0466c0fef06c1d25179684405bf64736f6c634300060c0033

Libraries Used


Deployed Bytecode Sourcemap

50433:16815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50753:77;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;50753:77:0;;;;;;;;;;;;;;58016:125;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58016:125:0;-1:-1:-1;;;;;58016:125:0;;:::i;:::-;;11985:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14152:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14152:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51973:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;50510:41;;;;;;;;;;;;;:::i;51336:32::-;;;;;;;;;;;;;:::i;13105:108::-;;;;;;;;;;;;;:::i;51082:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51082:46:0;-1:-1:-1;;;;;51082:46:0;;:::i;51236:37::-;;;;;;;;;;;;;:::i;56826:109::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56826:109:0;-1:-1:-1;;;;;56826:109:0;;:::i;14803:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14803:355:0;;;;;;;;;;;;;;;;;:::i;51538:28::-;;;;;;;;;;;;;:::i;51503:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50626:41;;;;;;;;;;;;;:::i;59223:141::-;;;;;;;;;;;;;:::i;12947:93::-;;;;;;;;;;;;;:::i;59792:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59792:123:0;-1:-1:-1;;;;;59792:123:0;;:::i;57802:206::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57802:206:0;;;;;;;;:::i;15567:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15567:218:0;;;;;;;;:::i;57552:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57552:123:0;;;;;;;;;;:::i;50558:29::-;;;;;;;;;;;;;:::i;60843:88::-;;;;;;;;;;;;;:::i;59372:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59372:125:0;-1:-1:-1;;;;;59372:125:0;;:::i;57069:202::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57069:202:0;;;;;;;:::i;61073:141::-;;;;;;;;;;;;;:::i;55807:497::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55807:497:0;-1:-1:-1;;;;;55807:497:0;;:::i;59657:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59657:130:0;-1:-1:-1;;;;;59657:130:0;;:::i;51431:32::-;;;;;;;;;;;;;:::i;60576:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60576:259:0;;:::i;13276:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13276:127:0;-1:-1:-1;;;;;13276:127:0;;:::i;21794:148::-;;;;;;;;;;;;;:::i;51176:34::-;;;;;;;;;;;;;:::i;57683:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57683:111:0;-1:-1:-1;;;;;57683:111:0;;:::i;50676:70::-;;;;;;;;;;;;;:::i;51137:32::-;;;;;;;;;;;;;:::i;58565:402::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58565:402:0;;:::i;54974:825::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54974:825:0;-1:-1:-1;;;;;54974:825:0;;:::i;21152:79::-;;;;;;;;;;;;;:::i;12204:104::-;;;;;;;;;;;;;:::i;57279:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57279:261:0;;;;;;;;;;:::i;51735:40::-;;;;;;;;;;;;;:::i;52186:::-;;;;;;;;;;;;;:::i;59107:108::-;;;;;;;;;;;;;:::i;16288:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16288:269:0;;;;;;;;:::i;59505:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59505:147:0;-1:-1:-1;;;;;59505:147:0;;:::i;56943:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56943:118:0;-1:-1:-1;;;;;56943:118:0;;:::i;13616:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13616:175:0;;;;;;;;:::i;61222:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61222:136:0;;;;:::i;51803:77::-;;;;;;;;;;;;;:::i;59923:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59923:318:0;-1:-1:-1;;;;;59923:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;59923:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51887:79;;;;;;;;;;;;;:::i;52536:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52536:58:0;-1:-1:-1;;;;;52536:58:0;;:::i;51597:28::-;;;;;;;;;;;;;:::i;56312:194::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;56312:194:0;;;;;;;;;;:::i;56514:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56514:304:0;-1:-1:-1;56514:304:0;;;;:::i;50837:78::-;;;;;;;;;;;;;:::i;61366:140::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61366:140:0;;:::i;52103:38::-;;;;;;;;;;;;;:::i;13854:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13854:151:0;;;;;;;;;;:::i;52037:28::-;;;;;;;;;;;;;:::i;51015:54::-;;;;;;;;;;;;;:::i;60939:126::-;;;;;;;;;;;;;:::i;58975:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58975:124:0;;:::i;50924:82::-;;;;;;;;;;;;;:::i;60246:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60246:325:0;;:::i;22097:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22097:244:0;-1:-1:-1;;;;;22097:244:0;;:::i;50753:77::-;;;-1:-1:-1;;;;;50753:77:0;;:::o;58016:125::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;58091:42:::1;::::0;-1:-1:-1;;;;;58091:19:0;::::1;::::0;58111:21:::1;58091:42:::0;::::1;;;::::0;::::1;::::0;;;58111:21;58091:19;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58016:125:::0;:::o;11985:100::-;12072:5;12065:12;;;;;;;;-1:-1:-1;;12065:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12039:13;;12065:12;;12072:5;;12065:12;;12072:5;12065:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11985:100;:::o;14152:169::-;14235:4;14252:39;14261:12;:10;:12::i;:::-;14275:7;14284:6;14252:8;:39::i;:::-;-1:-1:-1;14309:4:0;14152:169;;;;;:::o;51973:26::-;;;;:::o;50510:41::-;;;-1:-1:-1;;;;;50510:41:0;;:::o;51336:32::-;;;;;;;;;:::o;13105:108::-;13193:12;;13105:108;:::o;51082:46::-;;;;;;;;;;;;;;;:::o;51236:37::-;;;;;;:::o;56826:109::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;56901:17:::1;:26:::0;;-1:-1:-1;;;;;;56901:26:0::1;-1:-1:-1::0;;;;;56901:26:0;;;::::1;::::0;;;::::1;::::0;;56826:109::o;14803:355::-;14943:4;14960:36;14970:6;14978:9;14989:6;14960:9;:36::i;:::-;15007:121;15016:6;15024:12;:10;:12::i;:::-;15038:89;15076:6;15038:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15038:19:0;;;;;;:11;:19;;;;;;15058:12;:10;:12::i;:::-;-1:-1:-1;;;;;15038:33:0;;;;;;;;;;;;-1:-1:-1;15038:33:0;;;:89;:37;:89::i;:::-;15007:8;:121::i;:::-;-1:-1:-1;15146:4:0;14803:355;;;;;:::o;51538:28::-;;;;:::o;51503:::-;;;;;;:::o;50626:41::-;;;-1:-1:-1;;;;;50626:41:0;;:::o;59223:141::-;59313:15;;:43;;;-1:-1:-1;;;59313:43:0;;;;59286:7;;-1:-1:-1;;;;;59313:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59313:43:0;;-1:-1:-1;59223:141:0;:::o;12947:93::-;13030:2;12947:93;:::o;59792:123::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;59865:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;59865:45:0;;-1:-1:-1;;;;;59865: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;;;;;;;;;59792:123:::0;:::o;57802:206::-;57914:12;21374;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;57951:49:::1;::::0;;-1:-1:-1;;;57951:49:0;;57981:10:::1;57951:49;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;57951:29:0;::::1;::::0;::::1;::::0;:49;;;;;::::1;::::0;;;;;;;;-1:-1:-1;57951:29:0;:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;57951:49:0;;57802:206;-1:-1:-1;;;57802:206:0:o;15567:218::-;15655:4;15672:83;15681:12;:10;:12::i;:::-;15695:7;15704:50;15743:10;15704:11;:25;15716:12;:10;:12::i;:::-;-1:-1:-1;;;;;15704:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15704:25:0;;;:34;;;;;;;;;;;:38;:50::i;57552:123::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;57636:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;57636:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57552:123::o;50558:29::-;;;-1:-1:-1;;;;;50558:29:0;;:::o;60843:88::-;60874:15;;:49;;;-1:-1:-1;;;60874:49:0;;60905:10;60874:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;60874:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59372:125;-1:-1:-1;;;;;59461:28:0;59437:4;59461:28;;;:19;:28;;;;;;;;;59372:125::o;57069:202::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;57188:13:::1;:30:::0;;;;57229:15:::1;:34:::0;57069:202::o;61073:141::-;61165:15;;:41;;;-1:-1:-1;;;61165:41:0;;;;61138:7;;-1:-1:-1;;;;;61165:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;55807:497;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;55916:15:::1;::::0;-1:-1:-1;;;;;55894:38:0;;::::1;55916:15:::0;::::1;55894:38;;55886:91;;;;-1:-1:-1::0;;;55886:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56035:15;::::0;55993:59:::1;::::0;-1:-1:-1;;;;;56035:15:0;;::::1;::::0;55993:59;::::1;::::0;::::1;::::0;56035:15:::1;::::0;55993:59:::1;56063:15;:48:::0;;-1:-1:-1;;;;;;56063:48:0::1;-1:-1:-1::0;;;;;56063:48:0;;::::1;::::0;;;::::1;::::0;;;;56165:25:::1;::::0;;-1:-1:-1;;;56165:25:0;;;;-1:-1:-1;;56165: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;56165:25:0;56232:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;56232:22:0;;;;-1:-1:-1;;;;;56147:69:0;;::::1;::::0;::::1;::::0;56225:4:::1;::::0;56232:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;56165:25:::1;::::0;56232:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;56232:22:0;56147:108:::1;::::0;;-1:-1:-1;;;;;;56147:108:0::1;::::0;;;;;;-1:-1:-1;;;;;56147:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;56232:22:::1;::::0;56147:108;;;;;;;-1:-1:-1;56147:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;56147:108:0;56266:13:::1;:30:::0;;-1:-1:-1;;;;;;56266:30:0::1;-1:-1:-1::0;;;;;56266:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;55807:497:0:o;59657:130::-;59748:15;;:34;;;-1:-1:-1;;;59748:34:0;;-1:-1:-1;;;;;59748:34:0;;;;;;;;;59727:7;;59748:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59748:34:0;;59657:130;-1:-1:-1;;59657:130:0:o;51431:32::-;;;;:::o;60576:259::-;60702:15;;:28;;;-1:-1:-1;;;;;;60702:28:0;;;;;;;;;;60636:18;;;;;;-1:-1:-1;;;;;60702:15:0;;;;:23;;:28;;;;;;;;;;;;;;;60636:18;60702:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60702:28:0;;;;;;;;;;;;60740:87;;;;;;;;;;;;;;;;;60702:28;60740:87;;;;;;;60702:28;;-1:-1:-1;60702:28:0;-1:-1:-1;60702:28:0;;-1:-1:-1;60817:9:0;;60805:5;;60740:87;;;;;;;;;60576:259;;;;:::o;13276:127::-;-1:-1:-1;;;;;13377:18:0;13350:7;13377:18;;;;;;;;;;;;13276:127::o;21794:148::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;21885:6:::1;::::0;21864:40:::1;::::0;21901:1:::1;::::0;-1:-1:-1;;;;;21885:6:0::1;::::0;21864:40:::1;::::0;21901:1;;21864:40:::1;21915:6;:19:::0;;-1:-1:-1;;;;;;21915:19:0::1;::::0;;21794:148::o;51176:34::-;;;;:::o;57683:111::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;57739:37:::1;57749:3;57753:7;:5;:7::i;:::-;57761:14;57771:3;57761:9;:14::i;:::-;57739:9;:37::i;:::-;57683:111:::0;:::o;50676:70::-;;;-1:-1:-1;;;;;50676:70:0;;:::o;51137:32::-;;;;:::o;58565:402::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;58663:6:::1;58651:8;:18;;:40;;;;;58685:6;58673:8;:18;;58651:40;58643:110;;;;-1:-1:-1::0;;;58643:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58784:16;;58772:8;:28;;58764:90;;;;-1:-1:-1::0;;;58764:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58904:16;::::0;58870:51:::1;::::0;58894:8;;58870:51:::1;::::0;;;::::1;58932:16;:27:::0;58565:402::o;54974:825::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;55083:15:::1;::::0;-1:-1:-1;;;;;55061:38:0;;::::1;55083:15:::0;::::1;55061:38;;55053:101;;;;-1:-1:-1::0;;;55053:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55167:37;55234:10;55167:79;;55305:4;-1:-1:-1::0;;;;;55267:43:0::1;:18;-1:-1:-1::0;;;;;55267:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55267:26:0;-1:-1:-1;;;;;55267:43:0::1;;55259:125;;;;-1:-1:-1::0;;;55259:125:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55397:18;-1:-1:-1::0;;;;;55397:39:0::1;;55445:18;55397:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;55397:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55476:54:0::1;::::0;;-1:-1:-1;;;55476:54:0;;55524:4:::1;55476:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;55476:39:0;::::1;::::0;-1:-1:-1;55476:39:0::1;::::0;-1:-1:-1;55476:54:0;;;;;-1:-1:-1;;55476:54:0;;;;;;;-1:-1:-1;55476:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55541:18;-1:-1:-1::0;;;;;55541:39:0::1;;55581:7;:5;:7::i;:::-;55541:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;55541:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55648:15:0::1;::::0;55600:65:::1;::::0;;-1:-1:-1;;;55600:65:0;;-1:-1:-1;;;;;55648:15:0;;::::1;55600:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;55600:39:0::1;::::0;-1:-1:-1;55600:65:0;;;;;55648:15:::1;::::0;55600:65;;;;;;;;55648:15;55600:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55725:15:0::1;::::0;55683:59:::1;::::0;-1:-1:-1;;;;;55725:15:0;;::::1;::::0;-1:-1:-1;55683:59:0;;::::1;::::0;-1:-1:-1;55683:59:0::1;::::0;55725:15:::1;::::0;55683:59:::1;55755:15;:36:::0;;-1:-1:-1;;;;;;55755:36:0::1;-1:-1:-1::0;;;;;55755:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;54974:825:0:o;21152:79::-;21217:6;;-1:-1:-1;;;;;21217:6:0;21152:79;:::o;12204:104::-;12293:7;12286:14;;;;;;;;-1:-1:-1;;12286:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12260:13;;12286:14;;12293:7;;12286:14;;12293:7;12286:14;;;;;;;;;;;;;;;;;;;;;;;;57279:261;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;57386:13:::1;::::0;-1:-1:-1;;;;;57378:21:0;;::::1;57386:13:::0;::::1;57378:21;;57370:108;;;;-1:-1:-1::0;;;57370:108:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57491:41;57520:4;57526:5;57491:28;:41::i;51735:40::-:0;;;;:::o;52186:::-;;;;:::o;59107:108::-;59180:15;;:27;;;-1:-1:-1;;;59180:27:0;;;;59153:7;;-1:-1:-1;;;;;59180:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;16288:269;16381:4;16398:129;16407:12;:10;:12::i;:::-;16421:7;16430:96;16469:15;16430:96;;;;;;;;;;;;;;;;;:11;:25;16442:12;:10;:12::i;:::-;-1:-1:-1;;;;;16430:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16430:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;59505:147::-;59598:15;;:47;;;-1:-1:-1;;;59598:47:0;;-1:-1:-1;;;;;59598:47:0;;;;;;;;;59574:7;;59598:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;56943:118;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;57026:18:::1;:27:::0;;-1:-1:-1;;;;;;57026:27:0::1;-1:-1:-1::0;;;;;57026:27:0;;;::::1;::::0;;;::::1;::::0;;56943:118::o;13616:175::-;13702:4;13719:42;13729:12;:10;:12::i;:::-;13743:9;13754:6;13719:9;:42::i;61222:136::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;61300:17:::1;::::0;::::1;;61299:18;61291:27;;;::::0;::::1;;61329:11;:21:::0;;-1:-1:-1;;61329:21:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;61222:136::o;51803:77::-;;;-1:-1:-1;;;;;51803:77:0;;:::o;59923:318::-;60019:7;60041:6;60062;60083:7;60105;60127;60149;60171;60198:15;;;;;;;;;-1:-1:-1;;;;;60198:15:0;-1:-1:-1;;;;;60198:26:0;;60225:7;60198:35;;;;;;;;;;;;;-1:-1:-1;;;;;60198:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60198:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60198:35:0;;-1:-1:-1;60198:35:0;;-1:-1:-1;60198:35:0;-1:-1:-1;60198:35:0;-1:-1:-1;60198:35:0;-1:-1:-1;60198:35:0;;-1:-1:-1;60198:35:0;-1:-1:-1;59923:318:0;;;;;;;;;:::o;51887:79::-;;;-1:-1:-1;;;;;51887:79:0;;:::o;52536:58::-;;;;;;;;;;;;;;;:::o;51597:28::-;;;;:::o;56312:194::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56407:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;56407:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;56464:34;;;;;;;::::1;::::0;;;;;;;;::::1;56312:194:::0;;:::o;56514:304::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;56631:9:::1;56627:115;56646:19:::0;;::::1;56627:115;;;56722:8;56687:19;:32;56707:8;;56716:1;56707:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;56707:11:0::1;56687:32:::0;;-1:-1:-1;56687:32:0;::::1;::::0;;;;;;-1:-1:-1;56687:32:0;:43;;-1:-1:-1;;56687:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;56667:3:0::1;56627:115;;;;56759:51;56791:8;;56801;56759:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;56759:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;56759:51:0;;-1:-1:-1;;;;;56759:51:0::1;56514:304:::0;;;:::o;50837:78::-;;;-1:-1:-1;;;;;50837:78:0;;:::o;61366:140::-;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;61447:17:::1;::::0;::::1;;61446:18;61438:27;;;::::0;::::1;;61476:9;:22:::0;61366:140::o;52103:38::-;;;;:::o;13854:151::-;-1:-1:-1;;;;;13970:18:0;;;13943:7;13970:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13854:151::o;52037:28::-;;;;:::o;51015:54::-;;;;:::o;60939:126::-;61018:15;;:39;;;-1:-1:-1;;;61018:39:0;;;;60994:7;;-1:-1:-1;;;;;61018:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;58975:124;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;59049:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;59049:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;59049:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;50924:82:::0;;;:::o;60246:325::-;60347:7;60369:6;60390;60411:7;60433;60455;60477;60499;60523:15;;;;;;;;;-1:-1:-1;;;;;60523:15:0;-1:-1:-1;;;;;60523:33:0;;60557:5;60523:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22097:244;21374:12;:10;:12::i;:::-;21364:6;;-1:-1:-1;;;;;21364:6:0;;;:22;;;21356:67;;;;;-1:-1:-1;;;21356:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21356:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22186:22:0;::::1;22178:73;;;;-1:-1:-1::0;;;22178:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22288:6;::::0;22267:38:::1;::::0;-1:-1:-1;;;;;22267:38:0;;::::1;::::0;22288:6:::1;::::0;22267:38:::1;::::0;22288:6:::1;::::0;22267:38:::1;22316:6;:17:::0;;-1:-1:-1;;;;;;22316:17:0::1;-1:-1:-1::0;;;;;22316:17:0;;;::::1;::::0;;;::::1;::::0;;22097:244::o;5456:181::-;5514:7;5546:5;;;5570:6;;;;5562:46;;;;;-1:-1:-1;;;5562:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5628:1;5456:181;-1:-1:-1;;;5456:181:0:o;4095:98::-;4175:10;4095:98;:::o;19474:380::-;-1:-1:-1;;;;;19610:19:0;;19602:68;;;;-1:-1:-1;;;19602:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19689:21:0;;19681:68;;;;-1:-1:-1;;;19681:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19814:32;;;;;;;;;;;;;;;;;19474:380;;;:::o;61516:4230::-;-1:-1:-1;;;;;61650:18:0;;61642:68;;;;-1:-1:-1;;;61642:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61729:16:0;;61721:64;;;;-1:-1:-1;;;61721:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61805:20:0;;;;;;:14;:20;;;;;;;;61804:21;61796:53;;;;;-1:-1:-1;;;61796:53:0;;;;;;;;;;;;-1:-1:-1;;;61796:53:0;;;;;;;;;;;;;;;61865:11;61862:92;;61893:28;61909:4;61915:2;61919:1;61893:15;:28::i;:::-;61936:7;;61862:92;61986:17;;-1:-1:-1;;;;;61970:34:0;;;61986:17;;61970:34;:68;;;;;62027:11;;62008:15;:30;;61970:68;61966:107;;;62055:7;;61966:107;62105:19;;-1:-1:-1;;;;;62089:36:0;;;62105:19;;62089:36;:72;;;;;62148:13;;62129:15;:32;;62089:72;62085:111;;;62178:7;;62085:111;62261:17;;;;62256:435;;62305:13;;-1:-1:-1;;;;;62299:19:0;;;62305:13;;62299:19;62295:385;;;62339:17;:24;;62359:4;-1:-1:-1;;62339:24:0;;;;;;62463:11;;62339:24;62463:11;62448:12;:26;62428:17;:46;62527:9;;62509:15;:27;;;62493:13;:43;62587:11;;62569:29;;62555:11;:43;62651:13;;62633:31;62617:13;:47;62295:385;62731:17;;;;:54;;;;;62768:17;;62752:12;:33;;62731:54;:72;;;;-1:-1:-1;62790:13:0;;;;;;;62789:14;62731:72;62728:356;;;62819:12;62834:34;62864:3;62834:25;62845:13;;62834:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;62819:49;-1:-1:-1;62892:16:0;:6;62819:49;62892:10;:16::i;:::-;62883:25;;62923:42;62939:4;62953;62960;62923:15;:42::i;:::-;62980:33;62996:4;63002:2;63006:6;62980:15;:33::i;:::-;-1:-1:-1;;;;;;63028:18:0;;;;;;:14;:18;;;;;:23;;-1:-1:-1;;63028:23:0;63047:4;63028:23;;;63066:7;;62728:356;63123:17;;;;:53;;;;;63163:13;;63144:15;:32;;63123:53;:71;;;;-1:-1:-1;63181:13:0;;;;;;;63180:14;63123:71;63120:355;;;63210:12;63225:34;63255:3;63225:25;63236:13;;63225:6;:10;;:25;;;;:::i;63120:355::-;63491:17;;;;:34;;;;-1:-1:-1;63512:13:0;;;;;;;63491:34;63487:87;;;63541:13;:21;;-1:-1:-1;;63541:21:0;;;63487:87;63586:28;63617:24;63635:4;63617:9;:24::i;:::-;63693:18;;63586:55;;-1:-1:-1;63669:42:0;;;;;;;63728:33;;-1:-1:-1;63753:8:0;;-1:-1:-1;;;63753:8:0;;;;63752:9;63728:33;:82;;;;-1:-1:-1;;;;;;63779:31:0;;;;;;:25;:31;;;;;;;;63778:32;63728:82;:114;;;;;63835:7;:5;:7::i;:::-;-1:-1:-1;;;;;63827:15:0;:4;-1:-1:-1;;;;;63827:15:0;;;63728:114;:144;;;;;63865:7;:5;:7::i;:::-;-1:-1:-1;;;;;63859:13:0;:2;-1:-1:-1;;;;;63859:13:0;;;63728:144;63724:1042;;;63899:8;:15;;-1:-1:-1;;;;63899:15:0;-1:-1:-1;;;63899:15:0;;;;63953:24;63971:4;63953:9;:24::i;:::-;63931:46;;63994:29;64011:11;63994:16;:29::i;:::-;64041:17;64061:21;64041:41;;64099:26;64128:49;64163:13;;64128:30;64142:15;;64128:9;:13;;:30;;;;:::i;:49::-;64099:78;-1:-1:-1;64192:26:0;64221:33;:9;64099:78;64221:13;:33::i;:::-;64192:62;-1:-1:-1;64271:23:0;64297:25;64192:62;64320:1;64297:22;:25::i;:::-;64271:51;-1:-1:-1;64337:24:0;64364:39;:18;64271:51;64364:22;:39::i;:::-;64428:17;;64420:52;;64337:66;;-1:-1:-1;;;;;;64428:17:0;;64420:52;;;;;64456:15;;64428:17;64420:52;64428:17;64420:52;64456:15;64428:17;64420:52;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64495:18:0;;64487:54;;-1:-1:-1;;;;;64495:18:0;;;;64487:54;;;;;64524:16;;64495:18;64487:54;64495:18;64487:54;64524:16;64495:18;64487:54;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64558:18:0;64579:33;:9;64593:18;64579:13;:33::i;:::-;64558:54;-1:-1:-1;64630:12:0;;64627:83;;64662:32;64683:10;64662:20;:32::i;:::-;-1:-1:-1;;64738:8:0;:16;;-1:-1:-1;;;;64738:16:0;;;-1:-1:-1;;;;;63724:1042:0;64794:8;;-1:-1:-1;;;;;64903:25:0;;64778:12;64903:25;;;:19;:25;;;;;;64794:8;-1:-1:-1;;;64794:8:0;;;;;64793:9;;64903:25;;:52;;-1:-1:-1;;;;;;64932:23:0;;;;;;:19;:23;;;;;;;;64903:52;64900:99;;;-1:-1:-1;64982:5:0;64900:99;65015:7;65011:186;;;65039:12;65054:34;65084:3;65054:25;65065:13;;65054:6;:10;;:25;;;;:::i;:34::-;65039:49;-1:-1:-1;65112:16:0;:6;65039:49;65112:10;:16::i;:::-;65103:25;;65143:42;65159:4;65173;65180;65143:15;:42::i;:::-;65011:186;;65209:33;65225:4;65231:2;65235:6;65209:15;:33::i;:::-;65259:15;;-1:-1:-1;;;;;65259:15:0;:26;65294:4;65301:15;65294:4;65301:9;:15::i;:::-;65259:58;;;;;;;;;;;;;-1:-1:-1;;;;;65259:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65255:74;65343:15;;-1:-1:-1;;;;;65343:15:0;:26;65378:2;65383:13;65378:2;65383:9;:13::i;:::-;65343:54;;;;;;;;;;;;;-1:-1:-1;;;;;65343:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65339:70;65425:8;;-1:-1:-1;;;65425:8:0;;;;65421:318;;65458:16;;65489:15;;:28;;;-1:-1:-1;;;;;;65489:28:0;;;;;;;;;;-1:-1:-1;;;;;65489:15:0;;;;:23;;:28;;;;;;;;;;;;;;;65444:11;65489:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65489:28:0;;;;;;;;;;;;;;;;65485:243;;;;;65606:86;;;;;;;;;;;;;;;;;;;;;;;;;;65682:9;;65671:4;;65606:86;;;;;;;;;65518:184;;;65485:243;65421:318;;61516:4230;;;;;;;:::o;6359:192::-;6445:7;6481:12;6473:6;;;;6465:29;;;;-1:-1:-1;;;6465:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6517:5:0;;;6359:192::o;58151:404::-;-1:-1:-1;;;;;58242:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;58234:114;;;;-1:-1:-1;;;58234:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58359:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;58359:39:0;;;;;;;;;;;;58411:79;;58436:15;;:42;;;-1:-1:-1;;;58436:42:0;;-1:-1:-1;;;;;58436:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58411:79;58507:40;;;;;;-1:-1:-1;;;;;58507:40:0;;;;;;;;58151:404;;:::o;17047:573::-;-1:-1:-1;;;;;17187:20:0;;17179:70;;;;-1:-1:-1;;;17179:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17268:23:0;;17260:71;;;;-1:-1:-1;;;17260:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17344:47;17365:6;17373:9;17384:6;17344:20;:47::i;:::-;17424:71;17446:6;17424:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17424:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;17404:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17529:20;;;;;;;:32;;17554:6;17529:24;:32::i;:::-;-1:-1:-1;;;;;17506:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17577:35;;;;;;;17506:20;;17577:35;;;;;;;;;;;;;17047:573;;;:::o;6810:471::-;6868:7;7113:6;7109:47;;-1:-1:-1;7143:1:0;7136:8;;7109:47;7180:5;;;7184:1;7180;:5;:1;7204:5;;;;;:10;7196:56;;;;-1:-1:-1;;;7196:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7757:132;7815:7;7842:39;7846:1;7849;7842:39;;;;;;;;;;;;;;;;;:3;:39::i;5920:136::-;5978:7;6005:43;6009:1;6012;6005:43;;;;;;;;;;;;;;;;;:3;:43::i;65754:595::-;65908:16;;;65922:1;65908:16;;;65884:21;65908:16;;;;;65884:21;65908:16;;;;;;;;;;-1:-1:-1;65908:16:0;65884:40;;65953:4;65935;65940:1;65935:7;;;;;;;;-1:-1:-1;;;;;65935:23:0;;;:7;;;;;;;;;;:23;;;;65979:15;;:22;;;-1:-1:-1;;;65979:22:0;;;;:15;;;;;:20;;:22;;;;;65935:7;;65979:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65979:22:0;65969:7;;:4;;65974:1;;65969:7;;;;;;-1:-1:-1;;;;;65969:32:0;;;:7;;;;;;;;;:32;66046:15;;66014:62;;66031:4;;66046:15;66064:11;66014:8;:62::i;:::-;66115:15;;:224;;-1:-1:-1;;;66115:224:0;;;;;;;;:15;:224;;;;;;66293:4;66115:224;;;;;;66313:15;66115:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66115:15:0;;;;:66;;66196:11;;66266:4;;66293;66313:15;66115:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66848:397;66912:21;66926:6;66912:13;:21::i;:::-;66944:17;66971:3;-1:-1:-1;;;;;66964:21:0;;66994:4;66964:36;;;;;;;;;;;;;-1:-1:-1;;;;;66964:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66964:36:0;67055:15;;67026:57;;;-1:-1:-1;;;67026:57:0;;-1:-1:-1;;;;;67055:15:0;;;67026:57;;;;;;;;;;;;66964:36;;-1:-1:-1;;;67033:3:0;67026:20;;;;;;:57;;;;;66964:36;;67026:57;;;;;;;;-1:-1:-1;67026:20:0;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67026:57:0;;-1:-1:-1;67096:142:0;;;;67124:15;;:50;;;-1:-1:-1;;;67124:50:0;;;;;;;;;;-1:-1:-1;;;;;67124:15:0;;;;:39;;:50;;;;;:15;;:50;;;;;;;;:15;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67194:32:0;;;;;;;;;;;;;;;;-1:-1:-1;67194:32:0;;;;;;;;-1:-1:-1;67194:32:0;66848:397;;;:::o;8385:278::-;8471:7;8506:12;8499:5;8491:28;;;;-1:-1:-1;;;8491:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8530:9;8546:1;8542;:5;;;;;;;8385:278;-1:-1:-1;;;;;8385:278:0:o;66357:483::-;66446:16;;;66460:1;66446:16;;;66422:21;66446:16;;;;;66422:21;66446:16;;;;;;;;-1:-1:-1;;66483:15:0;;:22;;;-1:-1:-1;;;66483:22:0;;;;66422:40;;-1:-1:-1;;;;;;66483:15:0;;;;:20;;-1:-1:-1;66483:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66483:22:0;66473:7;;:4;;66478:1;;66473:7;;;;;;;;;:32;-1:-1:-1;;;;;66473:32:0;;;-1:-1:-1;;;;;66473:32:0;;;;;66526:3;66516:4;66521:1;66516:7;;;;;;;;-1:-1:-1;;;;;66516:13:0;;;:7;;;;;;;;;:13;66574:15;;66542:62;;66559:4;;66574:15;66592:11;66542:8;:62::i;:::-;66643:15;;:189;;-1:-1:-1;;;66643:189:0;;:15;:189;;;;;;66786:4;66643:189;;;;;;66806:15;66643:189;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66643:15:0;;;;:66;;66716:11;;66643:15;66759:4;;66786;66806:15;66643:189;;;;;;;;;;;;;;;;:15;:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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