ETH Price: $3,802.12 (+0.70%)
Gas: 5 Gwei

Token

Elon Inu (ELON INU)
 

Overview

Max Total Supply

1,000,000 ELON INU

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,750.050000000000001538 ELON INU

Value
$0.00
0x5472715041a27cd267880a7f77312539873df2de
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:
ELONINU

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-04-28
*/

// Twitter : https://twitter.com/ElonInuERC
// Website : ElonInuERC.com
// Telegram : https://t.me/ElonInuEntry

// SPDX-License-Identifier: Unlicensed

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;

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        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 ELONINU 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 = 20000 * (10**18);
    uint256 public swapTokensAtAmount = 1000 * (10**18);
    uint256 public maxWalletToken = 20000 * (10**18);

    uint256 private buyTotalFees = 5;
    uint256 public sellTotalFees = 8;
    uint256 public earlySellTotalFee = 20;

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

    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 10; // 10% of total collected tax
    uint256 public marketingPercent = 50; // 50% of total collected tax for buybacks/burns/marketing
    uint256 public devPercent = 40; // 40% of total collected tax for dAPP, metaverse land and events, and more


    address payable public marketingWallet = payable(0x4960a1A88cCC7Fde712A07fa7289c64056BbbACE);
    address payable public devWallet = payable(0xbAB090cca2a13CdE31a7c4c3C54A16f30Cb163f2);
    
    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => 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() ERC20("Elon Inu", "ELON INU") {

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // pancakeswap v2 router address
         // 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(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), 1000000 * (10**18));
    }

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "KCoin: 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, "KCoin: 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, "KCoin: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "KCoin: 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 <= 8 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 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 <= 21, "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":[],"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":"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"}]

60a06040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060075569043c33c1937564800000600855683635c9adc5dea0000060095569043c33c1937564800000600a556005600b556008600c556014600d556000600e5561dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60105560326011556028601255734960a1a88ccc7fde712a07fa7289c64056bbbace601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bab090cca2a13cde31a7c4c3c54a16f30cb163f2601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200018e57600080fd5b506040518060400160405280600881526020017f456c6f6e20496e750000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f454c4f4e20494e5500000000000000000000000000000000000000000000000081525081600390805190602001906200021392919062000aaa565b5080600490805190602001906200022c92919062000aaa565b5050506200024f620002436200052b60201b60201c565b6200053360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dc919062000bc4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000bc4565b6040518363ffffffff1660e01b81526004016200038992919062000c07565b6020604051808303816000875af1158015620003a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cf919062000bc4565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000459816001620005f960201b60201c565b6200047b6200046d6200072f60201b60201c565b60016200075960201b60201c565b620004b0601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004e5601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004f83060016200075960201b60201c565b620005236200050c6200072f60201b60201c565b69d3c21bcecceda10000006200092860201b60201c565b505062000fbb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000cbb565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007696200052b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078f6200072f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007df9062000d2d565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200087d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008749062000dc5565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200091c919062000e04565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009919062000e71565b60405180910390fd5b620009ae6000838362000aa060201b60201c565b8060026000828254620009c2919062000ecc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a19919062000ecc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a80919062000f3a565b60405180910390a362000a9c6000838362000aa560201b60201c565b5050565b505050565b505050565b82805462000ab89062000f86565b90600052602060002090601f01602090048101928262000adc576000855562000b28565b82601f1062000af757805160ff191683800117855562000b28565b8280016001018555821562000b28579182015b8281111562000b2757825182559160200191906001019062000b0a565b5b50905062000b37919062000b3b565b5090565b5b8082111562000b5657600081600090555060010162000b3c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b8c8262000b5f565b9050919050565b62000b9e8162000b7f565b811462000baa57600080fd5b50565b60008151905062000bbe8162000b93565b92915050565b60006020828403121562000bdd5762000bdc62000b5a565b5b600062000bed8482850162000bad565b91505092915050565b62000c018162000b7f565b82525050565b600060408201905062000c1e600083018562000bf6565b62000c2d602083018462000bf6565b9392505050565b600082825260208201905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000ca3603f8362000c34565b915062000cb08262000c45565b604082019050919050565b6000602082019050818103600083015262000cd68162000c94565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d1560208362000c34565b915062000d228262000cdd565b602082019050919050565b6000602082019050818103600083015262000d488162000d06565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000dad60318362000c34565b915062000dba8262000d4f565b604082019050919050565b6000602082019050818103600083015262000de08162000d9e565b9050919050565b60008115159050919050565b62000dfe8162000de7565b82525050565b600060208201905062000e1b600083018462000df3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e59601f8362000c34565b915062000e668262000e21565b602082019050919050565b6000602082019050818103600083015262000e8c8162000e4a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ed98262000e93565b915062000ee68362000e93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f1e5762000f1d62000e9d565b5b828201905092915050565b62000f348162000e93565b82525050565b600060208201905062000f51600083018462000f29565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9f57607f821691505b60208210810362000fb55762000fb462000f57565b5b50919050565b608051614b3b62000fde6000396000818161102d01526119b40152614b3b6000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613633565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e7565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613798565b610c55565b60405161036391906137f3565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380e565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c0565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613633565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613633565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613919565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613946565b610e66565b60405161047391906137f3565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b5565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613798565b610f67565b6040516104db91906137f3565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d0565b611013565b6040516105189190613633565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0c565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f3565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d0565b611062565b6040516105ab91906137f3565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a27565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613633565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a27565b61118a565b005b34801561063d57600080fd5b5061065860048036038101906106539190613919565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a27565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d0565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613633565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d0565b6115cd565b60405161070b9190613633565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a27565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a63565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0c565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0c565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a63565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a27565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e7565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aaa565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aea565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613798565b611ae7565b6040516108da91906137f3565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f3565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613798565b611be5565b60405161094291906137f3565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613633565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a27565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a27565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d0565b611dba565b6040516109fc91906137f3565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aaa565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aea565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613633565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b17565b612067565b604051610ab69190613633565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613633565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a27565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613633565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d0565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613633565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613633565b60405180910390f35b60075481565b606060038054610bd290613b86565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b86565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c03565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c95565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c03565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d27565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d76565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c03565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e18565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c03565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfb90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e84565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c03565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c03565b60405180910390fd5b80600d819055506015600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e18565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c03565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f16565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c03565b60405180910390fd5b61169b6000612c11565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c03565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c03565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfb90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e84565b60405180910390fd5b50565b6060600480546118b390613b86565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b86565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c03565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fce565b60405180910390fd5b611a4a8282612cd7565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c03565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614060565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c03565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e18565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c03565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfb90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e84565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c03565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f2565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f3565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c03565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f3565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c03565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415e565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f0565b60405180910390fd5b6122b881612c11565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614282565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614314565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613633565b60405180910390a3505050565b600081836124a69190613d76565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614438565b60405180910390fd5b600081036125a5576125a083836000612e0a565b612bf6565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144ca565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d76565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455c565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ee565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b1561298157600954915061298082613089565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be6576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b1f576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460e565b9050600660169054906101000a900460ff168015612af357506170808111155b15612b0257600d549150612b1d565b600660169054906101000a900460ff16612b1c57600c5491505b5b505b612b456064612b3783896132b390919063ffffffff16565b612bfb90919063ffffffff16565b9250612b6f6064612b61600e54896132b390919063ffffffff16565b612bfb90919063ffffffff16565b91506000831115612b8657612b85883085612e0a565b5b6000821115612bbd57612bbc88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0a565b5b612be2612bd3838561249890919063ffffffff16565b876132c990919063ffffffff16565b9550505b612bf1878787612e0a565b505050505b505050565b60008183612c099190614671565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6090614714565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e70906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90614438565b60405180910390fd5b612ef38383836132df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f70906147a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300c9190613d76565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130709190613633565b60405180910390a36130838484846132e4565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130ce60646130c0601054856132b390919063ffffffff16565b612bfb90919063ffffffff16565b905060006130e6600283612bfb90919063ffffffff16565b905060006130fd82846132c990919063ffffffff16565b9050600047905061310d836132e9565b600061312282476132c990919063ffffffff16565b905061312e8382613562565b61314961314486886132c990919063ffffffff16565b6132e9565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c261319f60125460115461249890919063ffffffff16565b6131b4601154476132b390919063ffffffff16565b612bfb90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ed573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613256573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132889291906147c6565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c191906147ef565b905092915050565b600081836132d7919061460e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561330657613305614849565b5b6040519080825280602002602001820160405280156133345781602001602082028036833780820191505090505b509050308160008151811061334c5761334b614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341791906148bc565b8160018151811061342b5761342a614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c8576134c730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352c9594939291906149e2565b600060405180830381600087803b15801561354657600080fd5b505af115801561355a573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135ae61176f565b426040518863ffffffff1660e01b81526004016135d096959493929190614a3c565b60606040518083038185885af11580156135ee573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136139190614ab2565b5050505050565b6000819050919050565b61362d8161361a565b82525050565b60006020820190506136486000830184613624565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368857808201518184015260208101905061366d565b83811115613697576000848401525b50505050565b6000601f19601f8301169050919050565b60006136b98261364e565b6136c38185613659565b93506136d381856020860161366a565b6136dc8161369d565b840191505092915050565b6000602082019050818103600083015261370181846136ae565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137398261370e565b9050919050565b6137498161372e565b811461375457600080fd5b50565b60008135905061376681613740565b92915050565b6137758161361a565b811461378057600080fd5b50565b6000813590506137928161376c565b92915050565b600080604083850312156137af576137ae613709565b5b60006137bd85828601613757565b92505060206137ce85828601613783565b9150509250929050565b60008115159050919050565b6137ed816137d8565b82525050565b600060208201905061380860008301846137e4565b92915050565b60008060006060848603121561382757613826613709565b5b600061383586828701613783565b935050602061384686828701613783565b925050604061385786828701613783565b9150509250925092565b6000819050919050565b600061388661388161387c8461370e565b613861565b61370e565b9050919050565b60006138988261386b565b9050919050565b60006138aa8261388d565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b60006138e68261370e565b9050919050565b6138f6816138db565b811461390157600080fd5b50565b600081359050613913816138ed565b92915050565b60006020828403121561392f5761392e613709565b5b600061393d84828501613904565b91505092915050565b60008060006060848603121561395f5761395e613709565b5b600061396d86828701613757565b935050602061397e86828701613757565b925050604061398f86828701613783565b9150509250925092565b600060ff82169050919050565b6139af81613999565b82525050565b60006020820190506139ca60008301846139a6565b92915050565b6000602082840312156139e6576139e5613709565b5b60006139f484828501613757565b91505092915050565b613a068161372e565b82525050565b6000602082019050613a2160008301846139fd565b92915050565b600060208284031215613a3d57613a3c613709565b5b6000613a4b84828501613783565b91505092915050565b613a5d816138db565b82525050565b6000602082019050613a786000830184613a54565b92915050565b613a87816137d8565b8114613a9257600080fd5b50565b600081359050613aa481613a7e565b92915050565b60008060408385031215613ac157613ac0613709565b5b6000613acf85828601613757565b9250506020613ae085828601613a95565b9150509250929050565b600060208284031215613b0057613aff613709565b5b6000613b0e84828501613a95565b91505092915050565b60008060408385031215613b2e57613b2d613709565b5b6000613b3c85828601613757565b9250506020613b4d85828601613757565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9e57607f821691505b602082108103613bb157613bb0613b57565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bed602083613659565b9150613bf882613bb7565b602082019050919050565b60006020820190508181036000830152613c1c81613be0565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c7f602583613659565b9150613c8a82613c23565b604082019050919050565b60006020820190508181036000830152613cae81613c72565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d11602883613659565b9150613d1c82613cb5565b604082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d818261361a565b9150613d8c8361361a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc157613dc0613d47565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e02600c83613659565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6e601083613659565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f00602a83613659565b9150613f0b82613ea4565b604082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb8604c83613659565b9150613fc382613f36565b606082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404a602583613659565b915061405582613fee565b604082019050919050565b600060208201905081810360008301526140798161403d565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dc603183613659565b91506140e782614080565b604082019050919050565b6000602082019050818103600083015261410b816140cf565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614148600e83613659565b915061415382614112565b602082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141da602683613659565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426c602483613659565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142fe602283613659565b9150614309826142a2565b604082019050919050565b6000602082019050818103600083015261432d816142f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614390602583613659565b915061439b82614334565b604082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614422602383613659565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b4602b83613659565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613659565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d8602c83613659565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b60006146198261361a565b91506146248361361a565b92508282101561463757614636613d47565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467c8261361a565b91506146878361361a565b92508261469757614696614642565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146fe603f83613659565b9150614709826146a2565b604082019050919050565b6000602082019050818103600083015261472d816146f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614790602683613659565b915061479b82614734565b604082019050919050565b600060208201905081810360008301526147bf81614783565b9050919050565b60006040820190506147db6000830185613624565b6147e86020830184613624565b9392505050565b60006147fa8261361a565b91506148058361361a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483e5761483d613d47565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b681613740565b92915050565b6000602082840312156148d2576148d1613709565b5b60006148e0848285016148a7565b91505092915050565b6000819050919050565b600061490e614909614904846148e9565b613861565b61361a565b9050919050565b61491e816148f3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149598161372e565b82525050565b600061496b8383614950565b60208301905092915050565b6000602082019050919050565b600061498f82614924565b614999818561492f565b93506149a483614940565b8060005b838110156149d55781516149bc888261495f565b97506149c783614977565b9250506001810190506149a8565b5085935050505092915050565b600060a0820190506149f76000830188613624565b614a046020830187614915565b8181036040830152614a168186614984565b9050614a2560608301856139fd565b614a326080830184613624565b9695505050505050565b600060c082019050614a5160008301896139fd565b614a5e6020830188613624565b614a6b6040830187614915565b614a786060830186614915565b614a8560808301856139fd565b614a9260a0830184613624565b979650505050505050565b600081519050614aac8161376c565b92915050565b600080600060608486031215614acb57614aca613709565b5b6000614ad986828701614a9d565b9350506020614aea86828701614a9d565b9250506040614afb86828701614a9d565b915050925092509256fea264697066735822122084c3f6d146a3d693404a1b31eaec95b76c3419628628333afba6a5336ecc6f6d64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613633565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e7565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613798565b610c55565b60405161036391906137f3565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380e565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c0565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613633565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613633565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613919565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613946565b610e66565b60405161047391906137f3565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b5565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613798565b610f67565b6040516104db91906137f3565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d0565b611013565b6040516105189190613633565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0c565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f3565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d0565b611062565b6040516105ab91906137f3565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a27565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613633565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a27565b61118a565b005b34801561063d57600080fd5b5061065860048036038101906106539190613919565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a27565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d0565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613633565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d0565b6115cd565b60405161070b9190613633565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a27565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a63565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0c565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0c565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a63565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a27565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e7565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aaa565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aea565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613798565b611ae7565b6040516108da91906137f3565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f3565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613798565b611be5565b60405161094291906137f3565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613633565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a27565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a27565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d0565b611dba565b6040516109fc91906137f3565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aaa565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aea565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613633565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b17565b612067565b604051610ab69190613633565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613633565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a27565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613633565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d0565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613633565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613633565b60405180910390f35b60075481565b606060038054610bd290613b86565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b86565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c03565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c95565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c03565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d27565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d76565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f0000000000000000000000007e49ba8c7522f0c4b66b1dcc4ced14f8829dcac681565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c03565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e18565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c03565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfb90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e84565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c03565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c03565b60405180910390fd5b80600d819055506015600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e18565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c03565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f16565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c03565b60405180910390fd5b61169b6000612c11565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c03565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c03565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfb90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e84565b60405180910390fd5b50565b6060600480546118b390613b86565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b86565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c03565b60405180910390fd5b7f0000000000000000000000007e49ba8c7522f0c4b66b1dcc4ced14f8829dcac673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fce565b60405180910390fd5b611a4a8282612cd7565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c03565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614060565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c03565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e18565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c03565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfb90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e84565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c03565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f2565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f3565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c03565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f3565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c03565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415e565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f0565b60405180910390fd5b6122b881612c11565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614282565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614314565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613633565b60405180910390a3505050565b600081836124a69190613d76565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614438565b60405180910390fd5b600081036125a5576125a083836000612e0a565b612bf6565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144ca565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d76565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455c565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ee565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b1561298157600954915061298082613089565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be6576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b1f576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460e565b9050600660169054906101000a900460ff168015612af357506170808111155b15612b0257600d549150612b1d565b600660169054906101000a900460ff16612b1c57600c5491505b5b505b612b456064612b3783896132b390919063ffffffff16565b612bfb90919063ffffffff16565b9250612b6f6064612b61600e54896132b390919063ffffffff16565b612bfb90919063ffffffff16565b91506000831115612b8657612b85883085612e0a565b5b6000821115612bbd57612bbc88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0a565b5b612be2612bd3838561249890919063ffffffff16565b876132c990919063ffffffff16565b9550505b612bf1878787612e0a565b505050505b505050565b60008183612c099190614671565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6090614714565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e70906143a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90614438565b60405180910390fd5b612ef38383836132df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f70906147a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300c9190613d76565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130709190613633565b60405180910390a36130838484846132e4565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130ce60646130c0601054856132b390919063ffffffff16565b612bfb90919063ffffffff16565b905060006130e6600283612bfb90919063ffffffff16565b905060006130fd82846132c990919063ffffffff16565b9050600047905061310d836132e9565b600061312282476132c990919063ffffffff16565b905061312e8382613562565b61314961314486886132c990919063ffffffff16565b6132e9565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c261319f60125460115461249890919063ffffffff16565b6131b4601154476132b390919063ffffffff16565b612bfb90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ed573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613256573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132889291906147c6565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c191906147ef565b905092915050565b600081836132d7919061460e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561330657613305614849565b5b6040519080825280602002602001820160405280156133345781602001602082028036833780820191505090505b509050308160008151811061334c5761334b614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341791906148bc565b8160018151811061342b5761342a614878565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c8576134c730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352c9594939291906149e2565b600060405180830381600087803b15801561354657600080fd5b505af115801561355a573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135ae61176f565b426040518863ffffffff1660e01b81526004016135d096959493929190614a3c565b60606040518083038185885af11580156135ee573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136139190614ab2565b5050505050565b6000819050919050565b61362d8161361a565b82525050565b60006020820190506136486000830184613624565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368857808201518184015260208101905061366d565b83811115613697576000848401525b50505050565b6000601f19601f8301169050919050565b60006136b98261364e565b6136c38185613659565b93506136d381856020860161366a565b6136dc8161369d565b840191505092915050565b6000602082019050818103600083015261370181846136ae565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137398261370e565b9050919050565b6137498161372e565b811461375457600080fd5b50565b60008135905061376681613740565b92915050565b6137758161361a565b811461378057600080fd5b50565b6000813590506137928161376c565b92915050565b600080604083850312156137af576137ae613709565b5b60006137bd85828601613757565b92505060206137ce85828601613783565b9150509250929050565b60008115159050919050565b6137ed816137d8565b82525050565b600060208201905061380860008301846137e4565b92915050565b60008060006060848603121561382757613826613709565b5b600061383586828701613783565b935050602061384686828701613783565b925050604061385786828701613783565b9150509250925092565b6000819050919050565b600061388661388161387c8461370e565b613861565b61370e565b9050919050565b60006138988261386b565b9050919050565b60006138aa8261388d565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b60006138e68261370e565b9050919050565b6138f6816138db565b811461390157600080fd5b50565b600081359050613913816138ed565b92915050565b60006020828403121561392f5761392e613709565b5b600061393d84828501613904565b91505092915050565b60008060006060848603121561395f5761395e613709565b5b600061396d86828701613757565b935050602061397e86828701613757565b925050604061398f86828701613783565b9150509250925092565b600060ff82169050919050565b6139af81613999565b82525050565b60006020820190506139ca60008301846139a6565b92915050565b6000602082840312156139e6576139e5613709565b5b60006139f484828501613757565b91505092915050565b613a068161372e565b82525050565b6000602082019050613a2160008301846139fd565b92915050565b600060208284031215613a3d57613a3c613709565b5b6000613a4b84828501613783565b91505092915050565b613a5d816138db565b82525050565b6000602082019050613a786000830184613a54565b92915050565b613a87816137d8565b8114613a9257600080fd5b50565b600081359050613aa481613a7e565b92915050565b60008060408385031215613ac157613ac0613709565b5b6000613acf85828601613757565b9250506020613ae085828601613a95565b9150509250929050565b600060208284031215613b0057613aff613709565b5b6000613b0e84828501613a95565b91505092915050565b60008060408385031215613b2e57613b2d613709565b5b6000613b3c85828601613757565b9250506020613b4d85828601613757565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9e57607f821691505b602082108103613bb157613bb0613b57565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bed602083613659565b9150613bf882613bb7565b602082019050919050565b60006020820190508181036000830152613c1c81613be0565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c7f602583613659565b9150613c8a82613c23565b604082019050919050565b60006020820190508181036000830152613cae81613c72565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d11602883613659565b9150613d1c82613cb5565b604082019050919050565b60006020820190508181036000830152613d4081613d04565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d818261361a565b9150613d8c8361361a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc157613dc0613d47565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e02600c83613659565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6e601083613659565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f00602a83613659565b9150613f0b82613ea4565b604082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb8604c83613659565b9150613fc382613f36565b606082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404a602583613659565b915061405582613fee565b604082019050919050565b600060208201905081810360008301526140798161403d565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dc603183613659565b91506140e782614080565b604082019050919050565b6000602082019050818103600083015261410b816140cf565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614148600e83613659565b915061415382614112565b602082019050919050565b600060208201905081810360008301526141778161413b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141da602683613659565b91506141e58261417e565b604082019050919050565b60006020820190508181036000830152614209816141cd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426c602483613659565b915061427782614210565b604082019050919050565b6000602082019050818103600083015261429b8161425f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142fe602283613659565b9150614309826142a2565b604082019050919050565b6000602082019050818103600083015261432d816142f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614390602583613659565b915061439b82614334565b604082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614422602383613659565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b4602b83613659565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613659565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d8602c83613659565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b60006146198261361a565b91506146248361361a565b92508282101561463757614636613d47565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467c8261361a565b91506146878361361a565b92508261469757614696614642565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146fe603f83613659565b9150614709826146a2565b604082019050919050565b6000602082019050818103600083015261472d816146f1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614790602683613659565b915061479b82614734565b604082019050919050565b600060208201905081810360008301526147bf81614783565b9050919050565b60006040820190506147db6000830185613624565b6147e86020830184613624565b9392505050565b60006147fa8261361a565b91506148058361361a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483e5761483d613d47565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b681613740565b92915050565b6000602082840312156148d2576148d1613709565b5b60006148e0848285016148a7565b91505092915050565b6000819050919050565b600061490e614909614904846148e9565b613861565b61361a565b9050919050565b61491e816148f3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149598161372e565b82525050565b600061496b8383614950565b60208301905092915050565b6000602082019050919050565b600061498f82614924565b614999818561492f565b93506149a483614940565b8060005b838110156149d55781516149bc888261495f565b97506149c783614977565b9250506001810190506149a8565b5085935050505092915050565b600060a0820190506149f76000830188613624565b614a046020830187614915565b8181036040830152614a168186614984565b9050614a2560608301856139fd565b614a326080830184613624565b9695505050505050565b600060c082019050614a5160008301896139fd565b614a5e6020830188613624565b614a6b6040830187614915565b614a786060830186614915565b614a8560808301856139fd565b614a9260a0830184613624565b979650505050505050565b600081519050614aac8161376c565b92915050565b600080600060608486031215614acb57614aca613709565b5b6000614ad986828701614a9d565b9350506020614aea86828701614a9d565b9250506040614afb86828701614a9d565b915050925092509256fea264697066735822122084c3f6d146a3d693404a1b31eaec95b76c3419628628333afba6a5336ecc6f6d64736f6c634300080d0033

Deployed Bytecode Sourcemap

39856:12285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40161:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5712:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7879:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51279:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39933:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6832:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40485:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50613:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8530:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6674:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9431:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41543:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39981:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40066:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44496:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50721:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40228:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49903:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50493:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51077:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43268:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40446:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7003:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17249:94;;;;;;;;;;;;;:::i;:::-;;50366:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41016:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40586:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16598:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41115:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51949:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5931:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43898:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51684:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10149:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40115:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7343:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40724:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50896:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50139:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41478:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43590:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44632:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40797:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7581:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40292:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51794:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40350:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17498:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40899:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40553:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40161:60;;;;:::o;5712:100::-;5766:13;5799:5;5792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5712:100;:::o;7879:169::-;7962:4;7979:39;7988:12;:10;:12::i;:::-;8002:7;8011:6;7979:8;:39::i;:::-;8036:4;8029:11;;7879:169;;;;:::o;51279:397::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51492:3:::1;51431:57;51476:11;51431:40;51453:17;51431;:21;;:40;;;;:::i;:::-;:44;;:57;;;;:::i;:::-;:64;51423:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51567:17;51548:16;:36;;;;51614:17;51595:16;:36;;;;51655:11;51642:10;:24;;;;51279:397:::0;;;:::o;39933:41::-;;;;;;;;;;;;;:::o;6832:108::-;6893:7;6920:12;;6913:19;;6832:108;:::o;40485:37::-;;;;:::o;50613:100::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50699:6:::1;50687:9;;:18;;;;;;;;;;;;;;;;;;50613:100:::0;:::o;8530:492::-;8670:4;8687:36;8697:6;8705:9;8716:6;8687:9;:36::i;:::-;8736:24;8763:11;:19;8775:6;8763:19;;;;;;;;;;;;;;;:33;8783:12;:10;:12::i;:::-;8763:33;;;;;;;;;;;;;;;;8736:60;;8835:6;8815:16;:26;;8807:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8922:57;8931:6;8939:12;:10;:12::i;:::-;8972:6;8953:16;:25;8922:8;:57::i;:::-;9010:4;9003:11;;;8530:492;;;;;:::o;6674:93::-;6732:5;6757:2;6750:9;;6674:93;:::o;9431:215::-;9519:4;9536:80;9545:12;:10;:12::i;:::-;9559:7;9605:10;9568:11;:25;9580:12;:10;:12::i;:::-;9568:25;;;;;;;;;;;;;;;:34;9594:7;9568:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9536:8;:80::i;:::-;9634:4;9627:11;;9431:215;;;;:::o;41543:51::-;;;;;;;;;;;;;;;;;:::o;39981:38::-;;;:::o;40066:40::-;;;;;;;;;;;;;:::o;44496:125::-;44561:4;44585:19;:28;44605:7;44585:28;;;;;;;;;;;;;;;;;;;;;;;;;44578:35;;44496:125;;;:::o;50721:168::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50814:13:::1;50799:12;:28;;;;50862:2;50846:12;;:18;;50838:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50721:168:::0;:::o;40228:57::-;;;;:::o;49903:224::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50015:16:::1;49988:24;:43;;;;50075:23;50093:4;50075:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50050:24;;:48;50042:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49903:224:::0;:::o;50493:112::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50591:6:::1;50573:15;;:24;;;;;;;;;;;;;;;;;;50493:112:::0;:::o;51077:194::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51186:18:::1;51166:17;:38;;;;51244:2;51223:17;;:23;;51215:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;51077:194:::0;:::o;43268:314::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43377:15:::1;;;;;;;;;;;43355:38;;:10;:38;;::::0;43347:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43498:15;;;;;;;;;;;43456:59;;43478:10;43456:59;;;;;;;;;;;;43563:10;43526:15;;:48;;;;;;;;;;;;;;;;;;43268:314:::0;:::o;40446:32::-;;;;:::o;7003:127::-;7077:7;7104:9;:18;7114:7;7104:18;;;;;;;;;;;;;;;;7097:25;;7003:127;;;:::o;17249:94::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17314:21:::1;17332:1;17314:9;:21::i;:::-;17249:94::o:0;50366:119::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50467:10:::1;50446:18;:31;;;;50366:119:::0;:::o;41016:92::-;;;;;;;;;;;;;:::o;40586:70::-;;;;;;;;;;;;;:::o;16598:87::-;16644:7;16671:6;;;;;;;;;;;16664:13;;16598:87;:::o;41115:86::-;;;;;;;;;;;;;:::o;51949:187::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52042:9:::1;52025:14;:26;;;;52085:23;52103:4;52085:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;52070:14;;:38;52062:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51949:187:::0;:::o;5931:104::-;5987:13;6020:7;6013:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5931:104;:::o;43898:263::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44005:13:::1;43997:21;;:4;:21;;::::0;43989:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44112:41;44141:4;44147:5;44112:28;:41::i;:::-;43898:263:::0;;:::o;51684:102::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51773:5:::1;51752:18;;:26;;;;;;;;;;;;;;;;;;51684:102:::0;:::o;10149:413::-;10242:4;10259:24;10286:11;:25;10298:12;:10;:12::i;:::-;10286:25;;;;;;;;;;;;;;;:34;10312:7;10286:34;;;;;;;;;;;;;;;;10259:61;;10359:15;10339:16;:35;;10331:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10452:67;10461:12;:10;:12::i;:::-;10475:7;10503:15;10484:16;:34;10452:8;:67::i;:::-;10550:4;10543:11;;;10149:413;;;;:::o;40115:37::-;;;;;;;;;;;;;:::o;7343:175::-;7429:4;7446:42;7456:12;:10;:12::i;:::-;7470:9;7481:6;7446:9;:42::i;:::-;7506:4;7499:11;;7343:175;;;;:::o;40724:36::-;;;;:::o;50896:173::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50992:14:::1;50976:13;:30;;;;51042:2;51025:13;;:19;;51017:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50896:173:::0;:::o;50139:219::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50248:15:::1;50222:23;:41;;;;50306:23;50324:4;50306:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50282;;:47;50274:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50139:219:::0;:::o;41478:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;43590:297::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43715:8:::1;43683:40;;:19;:28;43703:7;43683:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;43675:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43819:8;43788:19;:28;43808:7;43788:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43861:7;43845:34;;;43870:8;43845:34;;;;;;:::i;:::-;;;;;;;;43590:297:::0;;:::o;44632:171::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44733:8:::1;44709:21;;:32;;;;;;;;;;;;;;;;;;44757:38;44786:8;44757:38;;;;;;:::i;:::-;;;;;;;;44632:171:::0;:::o;40797:36::-;;;;:::o;7581:151::-;7670:7;7697:11;:18;7709:5;7697:18;;;;;;;;;;;;;;;:27;7716:7;7697:27;;;;;;;;;;;;;;;;7690:34;;7581:151;;;;:::o;40292:51::-;;;;:::o;51794:147::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51884:1:::1;51872:8;:13;;51864:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;51925:8;51915:7;:18;;;;51794:147:::0;:::o;40350:48::-;;;;:::o;17498:192::-;16829:12;:10;:12::i;:::-;16818:23;;:7;:5;:7::i;:::-;:23;;;16810:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17607:1:::1;17587:22;;:8;:22;;::::0;17579:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17663:19;17673:8;17663:9;:19::i;:::-;17498:192:::0;:::o;40899:30::-;;;;:::o;40553:26::-;;;;:::o;221:104::-;274:7;307:10;300:17;;221:104;:::o;13848:380::-;14001:1;13984:19;;:5;:19;;;13976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14082:1;14063:21;;:7;:21;;;14055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14166:6;14136:11;:18;14148:5;14136:18;;;;;;;;;;;;;;;:27;14155:7;14136:27;;;;;;;;;;;;;;;:36;;;;14204:7;14188:32;;14197:5;14188:32;;;14213:6;14188:32;;;;;;:::i;:::-;;;;;;;;13848:380;;;:::o;27752:98::-;27810:7;27841:1;27837;:5;;;;:::i;:::-;27830:12;;27752:98;;;;:::o;44811:2623::-;44931:1;44915:18;;:4;:18;;;44907:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45008:1;44994:16;;:2;:16;;;44986:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45076:1;45066:6;:11;45063:93;;45095:28;45111:4;45117:2;45121:1;45095:15;:28::i;:::-;45138:7;;45063:93;45179:25;:31;45205:4;45179:31;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;45216:19;:25;45236:4;45216:25;;;;;;;;;;;;;;;;;;;;;;;;;45215:26;45179:63;:93;;;;;45248:19;:23;45268:2;45248:23;;;;;;;;;;;;;;;;;;;;;;;;;45247:24;45179:93;45176:457;;;45307:23;;45297:6;:33;;45289:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45393:32;45428:13;45438:2;45428:9;:13::i;:::-;45393:48;;45501:14;;45491:6;45464:24;:33;;;;:::i;:::-;:51;;45456:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45592:15;45570;:19;45586:2;45570:19;;;;;;;;;;;;;;;:37;;;;45274:359;45176:457;45648:25;:29;45674:2;45648:29;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;;45683:19;:25;45703:4;45683:25;;;;;;;;;;;;;;;;;;;;;;;;;45682:26;45648:61;:91;;;;;45715:19;:23;45735:2;45715:23;;;;;;;;;;;;;;;;;;;;;;;;;45714:24;45648:91;45645:214;;;45774:24;;45764:6;:34;;45756:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45645:214;45878:28;45909:24;45927:4;45909:9;:24::i;:::-;45878:55;;45954:24;46005:18;;45981:20;:42;;45954:69;;46060:19;:53;;;;;46097:16;;;;;;;;;;;46096:17;46060:53;:99;;;;;46130:25;:29;46156:2;46130:29;;;;;;;;;;;;;;;;;;;;;;;;;46060:99;:138;;;;;46177:21;;;;;;;;;;;46060:138;46043:286;;;46248:18;;46225:41;;46281:36;46296:20;46281:14;:36::i;:::-;46043:286;46341:12;46368:17;46490:19;:25;46510:4;46490:25;;;;;;;;;;;;;;;;;;;;;;;;;46489:26;:54;;;;;46520:19;:23;46540:2;46520:23;;;;;;;;;;;;;;;;;;;;;;;;;46519:24;46489:54;46486:893;;;46560:18;46581:12;;46560:33;;46614:25;:29;46640:2;46614:29;;;;;;;;;;;;;;;;;;;;;;;;;46610:374;;;46667:12;46698:15;:21;46714:4;46698:21;;;;;;;;;;;;;;;;46682:15;:37;;;;:::i;:::-;46667:52;;46741:18;;;;;;;;;;;:37;;;;;46771:7;46763:4;:15;;46741:37;46738:231;;;46816:17;;46803:30;;46738:231;;;46880:18;;;;;;;;;;;46876:93;;46936:13;;46923:26;;46876:93;46738:231;46645:339;46610:374;47007:31;47034:3;47007:22;47018:10;47007:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;47000:38;;47065:28;47089:3;47065:19;47076:7;;47065:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;47053:40;;47118:1;47111:4;:8;47108:90;;;47140:42;47156:4;47170;47177;47140:15;:42::i;:::-;47108:90;47229:1;47217:9;:13;47214:97;;;47251:44;47267:4;47273:10;;;;;;;;;;;47285:9;47251:15;:44::i;:::-;47214:97;47336:31;47347:19;47356:9;47347:4;:8;;:19;;;;:::i;:::-;47336:6;:10;;:31;;;;:::i;:::-;47327:40;;46545:834;46486:893;47391:33;47407:4;47413:2;47417:6;47391:15;:33::i;:::-;44896:2538;;;;44811:2623;;;;:::o;28889:98::-;28947:7;28978:1;28974;:5;;;;:::i;:::-;28967:12;;28889:98;;;;:::o;17698:173::-;17754:16;17773:6;;;;;;;;;;;17754:25;;17799:8;17790:6;;:17;;;;;;;;;;;;;;;;;;17854:8;17823:40;;17844:8;17823:40;;;;;;;;;;;;17743:128;17698:173;:::o;44169:315::-;44295:5;44260:40;;:25;:31;44286:4;44260:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;44252:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44413:5;44379:25;:31;44405:4;44379:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44470:5;44436:40;;44464:4;44436:40;;;;;;;;;;;;44169:315;;:::o;11052:733::-;11210:1;11192:20;;:6;:20;;;11184:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11294:1;11273:23;;:9;:23;;;11265:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11349:47;11370:6;11378:9;11389:6;11349:20;:47::i;:::-;11409:21;11433:9;:17;11443:6;11433:17;;;;;;;;;;;;;;;;11409:41;;11486:6;11469:13;:23;;11461:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11607:6;11591:13;:22;11571:9;:17;11581:6;11571:17;;;;;;;;;;;;;;;:42;;;;11659:6;11635:9;:20;11645:9;11635:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11700:9;11683:35;;11692:6;11683:35;;;11711:6;11683:35;;;;;;:::i;:::-;;;;;;;;11731:46;11751:6;11759:9;11770:6;11731:19;:46::i;:::-;11173:612;11052:733;;;:::o;47443:1351::-;42152:4;42133:16;;:23;;;;;;;;;;;;;;;;;;47528:26:::1;47557:51;47604:3;47557:42;47582:16;;47557:20;:24;;:42;;;;:::i;:::-;:46;;:51;;;;:::i;:::-;47528:80;;47677:12;47692:25;47715:1;47692:18;:22;;:25;;;;:::i;:::-;47677:40;;47728:17;47748:28;47771:4;47748:18;:22;;:28;;;;:::i;:::-;47728:48;;48052:22;48077:21;48052:46;;48141:22;48158:4;48141:16;:22::i;:::-;48292:18;48313:41;48339:14;48313:21;:25;;:41;;;;:::i;:::-;48292:62;;48402:35;48415:9;48426:10;48402:12;:35::i;:::-;48505:62;48522:44;48547:18;48522:20;:24;;:44;;;;:::i;:::-;48505:16;:62::i;:::-;48578:15;;;;;;;;;;;:24;;:107;48603:81;48651:32;48672:10;;48651:16;;:20;;:32;;;;:::i;:::-;48603:43;48629:16;;48603:21;:25;;:43;;;;:::i;:::-;:47;;:81;;;;:::i;:::-;48578:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48696:9;;;;;;;;;;;:18;;:41;48715:21;48696:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48753:32;48768:4;48774:10;48753:32;;;;;;;:::i;:::-;;;;;;;;47517:1277;;;;;42198:5:::0;42179:16;;:24;;;;;;;;;;;;;;;;;;47443:1351;:::o;28490:98::-;28548:7;28579:1;28575;:5;;;;:::i;:::-;28568:12;;28490:98;;;;:::o;28133:::-;28191:7;28222:1;28218;:5;;;;:::i;:::-;28211:12;;28133:98;;;;:::o;14828:125::-;;;;:::o;15557:124::-;;;;:::o;48802:694::-;48930:21;48968:1;48954:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48930:40;;48999:4;48981;48986:1;48981:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;49025:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49015:4;49020:1;49015:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49116:11;49063:50;49081:4;49096:15;;;;;;;;;;;49063:9;:50::i;:::-;:64;49060:156;;;49142:62;49159:4;49174:15;;;;;;;;;;;49201:1;49192:11;49142:8;:62::i;:::-;49060:156;49254:15;;;;;;;;;;;:66;;;49335:11;49361:1;49405:4;49432;49452:15;49254:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48857:639;48802:694;:::o;49504:391::-;49625:15;;;;;;;;;;;:31;;;49664:9;49697:4;49717:11;49743:1;49786;49829:7;:5;:7::i;:::-;49851:15;49625:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49504:391;;:::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:229::-;16369:34;16365:1;16357:6;16353:14;16346:58;16438:12;16433:2;16425:6;16421:15;16414:37;16229:229;:::o;16464:366::-;16606:3;16627:67;16691:2;16686:3;16627:67;:::i;:::-;16620:74;;16703:93;16792:3;16703:93;:::i;:::-;16821:2;16816:3;16812:12;16805:19;;16464:366;;;:::o;16836:419::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17089:9;17083:4;17079:20;17075:1;17064:9;17060:17;17053:47;17117:131;17243:4;17117:131;:::i;:::-;17109:139;;16836:419;;;:::o;17261:300::-;17401:34;17397:1;17389:6;17385:14;17378:58;17470:34;17465:2;17457:6;17453:15;17446:59;17539:14;17534:2;17526:6;17522:15;17515:39;17261:300;:::o;17567:366::-;17709:3;17730:67;17794:2;17789:3;17730:67;:::i;:::-;17723:74;;17806:93;17895:3;17806:93;:::i;:::-;17924:2;17919:3;17915:12;17908:19;;17567:366;;;:::o;17939:419::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:224::-;18504:34;18500:1;18492:6;18488:14;18481:58;18573:7;18568:2;18560:6;18556:15;18549:32;18364:224;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18594:366;;;:::o;18966:419::-;19132:4;19170:2;19159:9;19155:18;19147:26;;19219:9;19213:4;19209:20;19205:1;19194:9;19190:17;19183:47;19247:131;19373:4;19247:131;:::i;:::-;19239:139;;18966:419;;;:::o;19391:236::-;19531:34;19527:1;19519:6;19515:14;19508:58;19600:19;19595:2;19587:6;19583:15;19576:44;19391:236;:::o;19633:366::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:419::-;20171:4;20209:2;20198:9;20194:18;20186:26;;20258:9;20252:4;20248:20;20244:1;20233:9;20229:17;20222:47;20286:131;20412:4;20286:131;:::i;:::-;20278:139;;20005:419;;;:::o;20430:164::-;20570:16;20566:1;20558:6;20554:14;20547:40;20430:164;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o;21397:225::-;21537:34;21533:1;21525:6;21521:14;21514:58;21606:8;21601:2;21593:6;21589:15;21582:33;21397:225;:::o;21628:366::-;21770:3;21791:67;21855:2;21850:3;21791:67;:::i;:::-;21784:74;;21867:93;21956:3;21867:93;:::i;:::-;21985:2;21980:3;21976:12;21969:19;;21628:366;;;:::o;22000:419::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22253:9;22247:4;22243:20;22239:1;22228:9;22224:17;22217:47;22281:131;22407:4;22281:131;:::i;:::-;22273:139;;22000:419;;;:::o;22425:223::-;22565:34;22561:1;22553:6;22549:14;22542:58;22634:6;22629:2;22621:6;22617:15;22610:31;22425:223;:::o;22654:366::-;22796:3;22817:67;22881:2;22876:3;22817:67;:::i;:::-;22810:74;;22893:93;22982:3;22893:93;:::i;:::-;23011:2;23006:3;23002:12;22995:19;;22654:366;;;:::o;23026:419::-;23192:4;23230:2;23219:9;23215:18;23207:26;;23279:9;23273:4;23269:20;23265:1;23254:9;23250:17;23243:47;23307:131;23433:4;23307:131;:::i;:::-;23299:139;;23026:419;;;:::o;23451:221::-;23591:34;23587:1;23579:6;23575:14;23568:58;23660:4;23655:2;23647:6;23643:15;23636:29;23451:221;:::o;23678:366::-;23820:3;23841:67;23905:2;23900:3;23841:67;:::i;:::-;23834:74;;23917:93;24006:3;23917:93;:::i;:::-;24035:2;24030:3;24026:12;24019:19;;23678:366;;;:::o;24050:419::-;24216:4;24254:2;24243:9;24239:18;24231:26;;24303:9;24297:4;24293:20;24289:1;24278:9;24274:17;24267:47;24331:131;24457:4;24331:131;:::i;:::-;24323:139;;24050:419;;;:::o;24475:224::-;24615:34;24611:1;24603:6;24599:14;24592:58;24684:7;24679:2;24671:6;24667:15;24660:32;24475:224;:::o;24705:366::-;24847:3;24868:67;24932:2;24927:3;24868:67;:::i;:::-;24861:74;;24944:93;25033:3;24944:93;:::i;:::-;25062:2;25057:3;25053:12;25046:19;;24705:366;;;:::o;25077:419::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:222::-;25642:34;25638:1;25630:6;25626:14;25619:58;25711:5;25706:2;25698:6;25694:15;25687:30;25502:222;:::o;25730:366::-;25872:3;25893:67;25957:2;25952:3;25893:67;:::i;:::-;25886:74;;25969:93;26058:3;25969:93;:::i;:::-;26087:2;26082:3;26078:12;26071:19;;25730:366;;;:::o;26102:419::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26102:419;;;:::o;26527:230::-;26667:34;26663:1;26655:6;26651:14;26644:58;26736:13;26731:2;26723:6;26719:15;26712:38;26527:230;:::o;26763:366::-;26905:3;26926:67;26990:2;26985:3;26926:67;:::i;:::-;26919:74;;27002:93;27091:3;27002:93;:::i;:::-;27120:2;27115:3;27111:12;27104:19;;26763:366;;;:::o;27135:419::-;27301:4;27339:2;27328:9;27324:18;27316:26;;27388:9;27382:4;27378:20;27374:1;27363:9;27359:17;27352:47;27416:131;27542:4;27416:131;:::i;:::-;27408:139;;27135:419;;;:::o;27560:223::-;27700:34;27696:1;27688:6;27684:14;27677:58;27769:6;27764:2;27756:6;27752:15;27745:31;27560:223;:::o;27789:366::-;27931:3;27952:67;28016:2;28011:3;27952:67;:::i;:::-;27945:74;;28028:93;28117:3;28028:93;:::i;:::-;28146:2;28141:3;28137:12;28130:19;;27789:366;;;:::o;28161:419::-;28327:4;28365:2;28354:9;28350:18;28342:26;;28414:9;28408:4;28404:20;28400:1;28389:9;28385:17;28378:47;28442:131;28568:4;28442:131;:::i;:::-;28434:139;;28161:419;;;:::o;28586:231::-;28726:34;28722:1;28714:6;28710:14;28703:58;28795:14;28790:2;28782:6;28778:15;28771:39;28586:231;:::o;28823:366::-;28965:3;28986:67;29050:2;29045:3;28986:67;:::i;:::-;28979:74;;29062:93;29151:3;29062:93;:::i;:::-;29180:2;29175:3;29171:12;29164:19;;28823:366;;;:::o;29195:419::-;29361:4;29399:2;29388:9;29384:18;29376:26;;29448:9;29442:4;29438:20;29434:1;29423:9;29419:17;29412:47;29476:131;29602:4;29476:131;:::i;:::-;29468:139;;29195:419;;;:::o;29620:191::-;29660:4;29680:20;29698:1;29680:20;:::i;:::-;29675:25;;29714:20;29732:1;29714:20;:::i;:::-;29709:25;;29753:1;29750;29747:8;29744:34;;;29758:18;;:::i;:::-;29744:34;29803:1;29800;29796:9;29788:17;;29620:191;;;;:::o;29817:180::-;29865:77;29862:1;29855:88;29962:4;29959:1;29952:15;29986:4;29983:1;29976:15;30003:185;30043:1;30060:20;30078:1;30060:20;:::i;:::-;30055:25;;30094:20;30112:1;30094:20;:::i;:::-;30089:25;;30133:1;30123:35;;30138:18;;:::i;:::-;30123:35;30180:1;30177;30173:9;30168:14;;30003:185;;;;:::o;30194:250::-;30334:34;30330:1;30322:6;30318:14;30311:58;30403:33;30398:2;30390:6;30386:15;30379:58;30194:250;:::o;30450:366::-;30592:3;30613:67;30677:2;30672:3;30613:67;:::i;:::-;30606:74;;30689:93;30778:3;30689:93;:::i;:::-;30807:2;30802:3;30798:12;30791:19;;30450:366;;;:::o;30822:419::-;30988:4;31026:2;31015:9;31011:18;31003:26;;31075:9;31069:4;31065:20;31061:1;31050:9;31046:17;31039:47;31103:131;31229:4;31103:131;:::i;:::-;31095:139;;30822:419;;;:::o;31247:225::-;31387:34;31383:1;31375:6;31371:14;31364:58;31456:8;31451:2;31443:6;31439:15;31432:33;31247:225;:::o;31478:366::-;31620:3;31641:67;31705:2;31700:3;31641:67;:::i;:::-;31634:74;;31717:93;31806:3;31717:93;:::i;:::-;31835:2;31830:3;31826:12;31819:19;;31478:366;;;:::o;31850:419::-;32016:4;32054:2;32043:9;32039:18;32031:26;;32103:9;32097:4;32093:20;32089:1;32078:9;32074:17;32067:47;32131:131;32257:4;32131:131;:::i;:::-;32123:139;;31850:419;;;:::o;32275:332::-;32396:4;32434:2;32423:9;32419:18;32411:26;;32447:71;32515:1;32504:9;32500:17;32491:6;32447:71;:::i;:::-;32528:72;32596:2;32585:9;32581:18;32572:6;32528:72;:::i;:::-;32275:332;;;;;:::o;32613:348::-;32653:7;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32898:1;32830:66;32826:74;32823:1;32820:81;32815:1;32808:9;32801:17;32797:105;32794:131;;;32905:18;;:::i;:::-;32794:131;32953:1;32950;32946:9;32935:20;;32613:348;;;;:::o;32967:180::-;33015:77;33012:1;33005:88;33112:4;33109:1;33102:15;33136:4;33133:1;33126:15;33153:180;33201:77;33198:1;33191:88;33298:4;33295:1;33288:15;33322:4;33319:1;33312:15;33339:143;33396:5;33427:6;33421:13;33412:22;;33443:33;33470:5;33443:33;:::i;:::-;33339:143;;;;:::o;33488:351::-;33558:6;33607:2;33595:9;33586:7;33582:23;33578:32;33575:119;;;33613:79;;:::i;:::-;33575:119;33733:1;33758:64;33814:7;33805:6;33794:9;33790:22;33758:64;:::i;:::-;33748:74;;33704:128;33488:351;;;;:::o;33845:85::-;33890:7;33919:5;33908:16;;33845:85;;;:::o;33936:158::-;33994:9;34027:61;34045:42;34054:32;34080:5;34054:32;:::i;:::-;34045:42;:::i;:::-;34027:61;:::i;:::-;34014:74;;33936:158;;;:::o;34100:147::-;34195:45;34234:5;34195:45;:::i;:::-;34190:3;34183:58;34100:147;;:::o;34253:114::-;34320:6;34354:5;34348:12;34338:22;;34253:114;;;:::o;34373:184::-;34472:11;34506:6;34501:3;34494:19;34546:4;34541:3;34537:14;34522:29;;34373:184;;;;:::o;34563:132::-;34630:4;34653:3;34645:11;;34683:4;34678:3;34674:14;34666:22;;34563:132;;;:::o;34701:108::-;34778:24;34796:5;34778:24;:::i;:::-;34773:3;34766:37;34701:108;;:::o;34815:179::-;34884:10;34905:46;34947:3;34939:6;34905:46;:::i;:::-;34983:4;34978:3;34974:14;34960:28;;34815:179;;;;:::o;35000:113::-;35070:4;35102;35097:3;35093:14;35085:22;;35000:113;;;:::o;35149:732::-;35268:3;35297:54;35345:5;35297:54;:::i;:::-;35367:86;35446:6;35441:3;35367:86;:::i;:::-;35360:93;;35477:56;35527:5;35477:56;:::i;:::-;35556:7;35587:1;35572:284;35597:6;35594:1;35591:13;35572:284;;;35673:6;35667:13;35700:63;35759:3;35744:13;35700:63;:::i;:::-;35693:70;;35786:60;35839:6;35786:60;:::i;:::-;35776:70;;35632:224;35619:1;35616;35612:9;35607:14;;35572:284;;;35576:14;35872:3;35865:10;;35273:608;;;35149:732;;;;:::o;35887:831::-;36150:4;36188:3;36177:9;36173:19;36165:27;;36202:71;36270:1;36259:9;36255:17;36246:6;36202:71;:::i;:::-;36283:80;36359:2;36348:9;36344:18;36335:6;36283:80;:::i;:::-;36410:9;36404:4;36400:20;36395:2;36384:9;36380:18;36373:48;36438:108;36541:4;36532:6;36438:108;:::i;:::-;36430:116;;36556:72;36624:2;36613:9;36609:18;36600:6;36556:72;:::i;:::-;36638:73;36706:3;36695:9;36691:19;36682:6;36638:73;:::i;:::-;35887:831;;;;;;;;:::o;36724:807::-;36973:4;37011:3;37000:9;36996:19;36988:27;;37025:71;37093:1;37082:9;37078:17;37069:6;37025:71;:::i;:::-;37106:72;37174:2;37163:9;37159:18;37150:6;37106:72;:::i;:::-;37188:80;37264:2;37253:9;37249:18;37240:6;37188:80;:::i;:::-;37278;37354:2;37343:9;37339:18;37330:6;37278:80;:::i;:::-;37368:73;37436:3;37425:9;37421:19;37412:6;37368:73;:::i;:::-;37451;37519:3;37508:9;37504:19;37495:6;37451:73;:::i;:::-;36724:807;;;;;;;;;:::o;37537:143::-;37594:5;37625:6;37619:13;37610:22;;37641:33;37668:5;37641:33;:::i;:::-;37537:143;;;;:::o;37686:663::-;37774:6;37782;37790;37839:2;37827:9;37818:7;37814:23;37810:32;37807:119;;;37845:79;;:::i;:::-;37807:119;37965:1;37990:64;38046:7;38037:6;38026:9;38022:22;37990:64;:::i;:::-;37980:74;;37936:128;38103:2;38129:64;38185:7;38176:6;38165:9;38161:22;38129:64;:::i;:::-;38119:74;;38074:129;38242:2;38268:64;38324:7;38315:6;38304:9;38300:22;38268:64;:::i;:::-;38258:74;;38213:129;37686:663;;;;;:::o

Swarm Source

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