ETH Price: $2,439.33 (+1.43%)

Token

Vortex Official (VRTX)
 

Overview

Max Total Supply

1,000,000,000 VRTX

Holders

86

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VortexOfficial

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 _mint(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 {}
}

// 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 generally not needed starting with Solidity 0.8, since 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;
        }
    }
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public  buyTotalFees;
    uint256 public  buyBurnFee = 0;
    uint256 public  buyLiquidityFee = 2;
    uint256 public  buyDevFee = 2;

    uint256 public  sellTotalFees;
    uint256 public  sellBurnFee = 0;
    uint256 public  sellLiquidityFee = 2;
    uint256 public  sellDevFee = 2;

    uint256 public tokensForBurn;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("Vortex Official", "VRTX") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply
        maxWallet = 10_000_000 * 1e18; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet

        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;

        devWallet = address(0x0117240677dC00c38Ac3bF133B9bae49Dbd6d156); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyBurnFee = _burnFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }

    function updateSellFees(
        uint256 _burnFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellBurnFee = _burnFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at  5% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    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 (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens).sub(tokensForBurn);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;
        if (tokensForBurn > 0) {
        super._transfer(address(this), address(0xdead), tokensForBurn); 
        }

        tokensForLiquidity = 0;
        tokensForBurn = 0;
        tokensForDev = 0;


        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","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":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526014600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff02191690831515021790555060006015556002601655600260175560006019556002601a556002601b55348015620000c757600080fd5b506040518060400160405280600f81526020017f566f72746578204f6666696369616c00000000000000000000000000000000008152506040518060400160405280600481526020017f565254580000000000000000000000000000000000000000000000000000000081525081600390805190602001906200014c92919062000ae1565b5080600490805190602001906200016592919062000ae1565b505050620001886200017c620005a160201b60201c565b620005a960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001b48160016200066f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a919062000bfb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000bfb565b6040518363ffffffff1660e01b81526004016200030792919062000c3e565b6020604051808303816000875af115801562000327573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034d919062000bfb565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c2600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200066f60201b60201c565b620003f7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b60006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a084595161401484a000000600a819055506127106003826200043e919062000ca4565b6200044a919062000d34565b60098190555060175460165460155462000465919062000d6c565b62000471919062000d6c565b601481905550601b54601a546019546200048c919062000d6c565b62000498919062000d6c565b601881905550730117240677dc00c38ac3bf133b9bae49dbd6d156600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051562000507620007fa60201b60201c565b60016200082460201b60201c565b620005283060016200082460201b60201c565b6200053d61dead60016200082460201b60201c565b6200055f62000551620007fa60201b60201c565b60016200066f60201b60201c565b620005723060016200066f60201b60201c565b6200058761dead60016200066f60201b60201c565b6200059933826200095e60201b60201c565b505062000f8b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200067f620005a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006a5620007fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f59062000e2a565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000834620005a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200085a620007fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008aa9062000e2a565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000952919062000e69565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c89062000ed6565b60405180910390fd5b620009e56000838362000ad760201b60201c565b8060026000828254620009f9919062000d6c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a50919062000d6c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab7919062000f09565b60405180910390a362000ad36000838362000adc60201b60201c565b5050565b505050565b505050565b82805462000aef9062000f55565b90600052602060002090601f01602090048101928262000b13576000855562000b5f565b82601f1062000b2e57805160ff191683800117855562000b5f565b8280016001018555821562000b5f579182015b8281111562000b5e57825182559160200191906001019062000b41565b5b50905062000b6e919062000b72565b5090565b5b8082111562000b8d57600081600090555060010162000b73565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bc38262000b96565b9050919050565b62000bd58162000bb6565b811462000be157600080fd5b50565b60008151905062000bf58162000bca565b92915050565b60006020828403121562000c145762000c1362000b91565b5b600062000c248482850162000be4565b91505092915050565b62000c388162000bb6565b82525050565b600060408201905062000c55600083018562000c2d565b62000c64602083018462000c2d565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cb18262000c6b565b915062000cbe8362000c6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cfa5762000cf962000c75565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d418262000c6b565b915062000d4e8362000c6b565b92508262000d615762000d6062000d05565b5b828204905092915050565b600062000d798262000c6b565b915062000d868362000c6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dbe5762000dbd62000c75565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e1260208362000dc9565b915062000e1f8262000dda565b602082019050919050565b6000602082019050818103600083015262000e458162000e03565b9050919050565b60008115159050919050565b62000e638162000e4c565b82525050565b600060208201905062000e80600083018462000e58565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ebe601f8362000dc9565b915062000ecb8262000e86565b602082019050919050565b6000602082019050818103600083015262000ef18162000eaf565b9050919050565b62000f038162000c6b565b82525050565b600060208201905062000f20600083018462000ef8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6e57607f821691505b6020821081141562000f855762000f8462000f26565b5b50919050565b6080516159db62000fd160003960008181610f2601528181612c5501528181613f72015281816140530152818161407a01528181614116015261413d01526159db6000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610d99578063f637434214610dc2578063f8b45b0514610ded578063fe72b27a14610e18576103a2565b8063e2f4560514610ced578063e71dc3f514610d18578063e884f26014610d43578063f11a24d314610d6e576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c1d578063d257b34f14610c48578063d85ba06314610c85578063dd62ed3e14610cb0576103a2565b8063c17b5b8c14610ba0578063c18bc19514610bc9578063c876d0b914610bf2576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610ae4578063b62496f514610b0f578063bbc0c74214610b4c578063c024666814610b77576103a2565b8063a0d82dc514610a14578063a457c2d714610a3f578063a4c82a0014610a7c578063a9059cbb14610aa7576103a2565b80639a7a23d6116101b65780639a7a23d61461096a5780639c3b4fdc146109935780639ec22c0e146109be5780639fccce32146109e9576103a2565b80638ea5220f146108eb578063924de9b71461091657806395d89b411461093f576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e5780638095d564146108975780638da5cb5b146108c0576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e55565b6040516103c99190614285565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614340565b610ee7565b604051610406919061439b565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906143b6565b610f05565b604051610443919061439b565b60405180910390f35b34801561045857600080fd5b50610461610f24565b60405161046e9190614442565b60405180910390f35b34801561048357600080fd5b5061048c610f48565b604051610499919061446c565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906143b6565b610f52565b005b3480156104d757600080fd5b506104e061108e565b6040516104ed919061446c565b60405180910390f35b34801561050257600080fd5b5061050b611094565b604051610518919061446c565b60405180910390f35b34801561052d57600080fd5b5061053661109a565b604051610543919061446c565b60405180910390f35b34801561055857600080fd5b506105616110a0565b60405161056e919061446c565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614487565b6110a6565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144b4565b6111b5565b6040516105d4919061439b565b60405180910390f35b3480156105e957600080fd5b506105f26112ad565b6040516105ff9190614516565b60405180910390f35b34801561061457600080fd5b5061061d6112b3565b005b34801561062b57600080fd5b5061063461136e565b604051610641919061446c565b60405180910390f35b34801561065657600080fd5b5061065f611374565b60405161066c919061439b565b60405180910390f35b34801561068157600080fd5b5061068a611387565b604051610697919061454d565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190614340565b611390565b6040516106d4919061439b565b60405180910390f35b3480156106e957600080fd5b506106f261143c565b6040516106ff9190614516565b60405180910390f35b34801561071457600080fd5b5061071d611462565b60405161072a919061439b565b60405180910390f35b34801561073f57600080fd5b5061075a600480360381019061075591906143b6565b611475565b604051610767919061439b565b60405180910390f35b34801561077c57600080fd5b506107856114cb565b604051610792919061446c565b60405180910390f35b3480156107a757600080fd5b506107b06114d1565b6040516107bd919061439b565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906143b6565b6114e4565b6040516107fa919061446c565b60405180910390f35b34801561080f57600080fd5b5061081861152c565b005b34801561082657600080fd5b50610841600480360381019061083c9190614594565b6115b4565b005b34801561084f57600080fd5b506108586116f4565b604051610865919061439b565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906145e7565b611794565b005b3480156108a357600080fd5b506108be60048036038101906108b99190614627565b61186b565b005b3480156108cc57600080fd5b506108d561196a565b6040516108e29190614516565b60405180910390f35b3480156108f757600080fd5b50610900611994565b60405161090d9190614516565b60405180910390f35b34801561092257600080fd5b5061093d6004803603810190610938919061467a565b6119ba565b005b34801561094b57600080fd5b50610954611a53565b6040516109619190614285565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906145e7565b611ae5565b005b34801561099f57600080fd5b506109a8611c00565b6040516109b5919061446c565b60405180910390f35b3480156109ca57600080fd5b506109d3611c06565b6040516109e0919061446c565b60405180910390f35b3480156109f557600080fd5b506109fe611c0c565b604051610a0b919061446c565b60405180910390f35b348015610a2057600080fd5b50610a29611c12565b604051610a36919061446c565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614340565b611c18565b604051610a73919061439b565b60405180910390f35b348015610a8857600080fd5b50610a91611d03565b604051610a9e919061446c565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190614340565b611d09565b604051610adb919061439b565b60405180910390f35b348015610af057600080fd5b50610af9611d27565b604051610b06919061446c565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906143b6565b611d2d565b604051610b43919061439b565b60405180910390f35b348015610b5857600080fd5b50610b61611d4d565b604051610b6e919061439b565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b9991906145e7565b611d60565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190614627565b611e85565b005b348015610bd557600080fd5b50610bf06004803603810190610beb9190614487565b611f84565b005b348015610bfe57600080fd5b50610c07612093565b604051610c14919061439b565b60405180910390f35b348015610c2957600080fd5b50610c326120a6565b604051610c3f919061446c565b60405180910390f35b348015610c5457600080fd5b50610c6f6004803603810190610c6a9190614487565b6120ac565b604051610c7c919061439b565b60405180910390f35b348015610c9157600080fd5b50610c9a612201565b604051610ca7919061446c565b60405180910390f35b348015610cbc57600080fd5b50610cd76004803603810190610cd291906146a7565b612207565b604051610ce4919061446c565b60405180910390f35b348015610cf957600080fd5b50610d0261228e565b604051610d0f919061446c565b60405180910390f35b348015610d2457600080fd5b50610d2d612294565b604051610d3a919061446c565b60405180910390f35b348015610d4f57600080fd5b50610d5861229a565b604051610d65919061439b565b60405180910390f35b348015610d7a57600080fd5b50610d8361233a565b604051610d90919061446c565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb91906143b6565b612340565b005b348015610dce57600080fd5b50610dd7612438565b604051610de4919061446c565b60405180910390f35b348015610df957600080fd5b50610e0261243e565b604051610e0f919061446c565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a9190614487565b612444565b604051610e4c919061439b565b60405180910390f35b606060038054610e6490614716565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090614716565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b6000610efb610ef4612722565b848461272a565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5a612722565b73ffffffffffffffffffffffffffffffffffffffff16610f7861196a565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614794565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110ae612722565b73ffffffffffffffffffffffffffffffffffffffff166110cc61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990614794565b60405180910390fd5b670de0b6b3a76400006103e86001611138610f48565b61114291906147e3565b61114c919061486c565b611156919061486c565b811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061490f565b60405180910390fd5b670de0b6b3a7640000816111ac91906147e3565b60088190555050565b60006111c28484846128f5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120d612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906149a1565b60405180910390fd5b6112a185611299612722565b85840361272a565b60019150509392505050565b61dead81565b6112bb612722565b73ffffffffffffffffffffffffffffffffffffffff166112d961196a565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614794565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061143261139d612722565b8484600160006113ab612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142d91906149c1565b61272a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611534612722565b73ffffffffffffffffffffffffffffffffffffffff1661155261196a565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614794565b60405180910390fd5b6115b2600061368f565b565b6115bc612722565b73ffffffffffffffffffffffffffffffffffffffff166115da61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614794565b60405180910390fd5b610258831015611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614a89565b60405180910390fd5b6103e88211158015611688575060008210155b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614b1b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116fe612722565b73ffffffffffffffffffffffffffffffffffffffff1661171c61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614794565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61179c612722565b73ffffffffffffffffffffffffffffffffffffffff166117ba61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614794565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611873612722565b73ffffffffffffffffffffffffffffffffffffffff1661189161196a565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614794565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461190f91906149c1565b61191991906149c1565b60148190555060056014541115611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614b87565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119c2612722565b73ffffffffffffffffffffffffffffffffffffffff166119e061196a565b73ffffffffffffffffffffffffffffffffffffffff1614611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614794565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a6290614716565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8e90614716565b8015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b611aed612722565b73ffffffffffffffffffffffffffffffffffffffff16611b0b61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614794565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614c19565b60405180910390fd5b611bfc8282613755565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c27612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90614cab565b60405180910390fd5b611cf8611cef612722565b8585840361272a565b600191505092915050565b600e5481565b6000611d1d611d16612722565b84846128f5565b6001905092915050565b60195481565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d68612722565b73ffffffffffffffffffffffffffffffffffffffff16611d8661196a565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390614794565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e79919061439b565b60405180910390a25050565b611e8d612722565b73ffffffffffffffffffffffffffffffffffffffff16611eab61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614794565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f2991906149c1565b611f3391906149c1565b60188190555060056018541115611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614d17565b60405180910390fd5b505050565b611f8c612722565b73ffffffffffffffffffffffffffffffffffffffff16611faa61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614794565b60405180910390fd5b670de0b6b3a76400006103e86005612016610f48565b61202091906147e3565b61202a919061486c565b612034919061486c565b811015612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614da9565b60405180910390fd5b670de0b6b3a76400008161208a91906147e3565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120b6612722565b73ffffffffffffffffffffffffffffffffffffffff166120d461196a565b73ffffffffffffffffffffffffffffffffffffffff161461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614794565b60405180910390fd5b620186a06001612138610f48565b61214291906147e3565b61214c919061486c565b82101561218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614e3b565b60405180910390fd5b6103e8600561219b610f48565b6121a591906147e3565b6121af919061486c565b8211156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614ecd565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60155481565b60006122a4612722565b73ffffffffffffffffffffffffffffffffffffffff166122c261196a565b73ffffffffffffffffffffffffffffffffffffffff1614612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614794565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612348612722565b73ffffffffffffffffffffffffffffffffffffffff1661236661196a565b73ffffffffffffffffffffffffffffffffffffffff16146123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614f5f565b60405180910390fd5b6124358161368f565b50565b601a5481565b600a5481565b600061244e612722565b73ffffffffffffffffffffffffffffffffffffffff1661246c61196a565b73ffffffffffffffffffffffffffffffffffffffff16146124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614794565b60405180910390fd5b600f546010546124d291906149c1565b4211612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614fcb565b60405180910390fd5b6103e8821115612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f9061505d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016125bc9190614516565b602060405180830381865afa1580156125d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125fd9190615092565b9050600061262861271061261a86856137f690919063ffffffff16565b61380c90919063ffffffff16565b9050600081111561266357612662600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613822565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126d257600080fd5b505af11580156126e6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190615131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612801906151c3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128e8919061446c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90615255565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc906152e7565b60405180910390fd5b60008114156129ef576129ea83836000613822565b61368a565b601160009054906101000a900460ff16156130b457612a0c61196a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a7a5750612a4a61196a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aed575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b065750600660149054906101000a900460ff16155b156130b357601160019054906101000a900460ff16612c0057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc05750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690615353565b60405180910390fd5b5b601360009054906101000a900460ff1615612dca57612c1d61196a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ca457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cfe5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dc95743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b9061540b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1457600854811115612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae9061549d565b60405180910390fd5b600a54612ec3836114e4565b82612ece91906149c1565b1115612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690615509565b60405180910390fd5b6130b2565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300657600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff89061559b565b60405180910390fd5b6130b1565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b057600a54613063836114e4565b8261306e91906149c1565b11156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690615509565b60405180910390fd5b5b5b5b5b5b60006130bf306114e4565b9050600060095482101590508080156130e45750601160029054906101000a900460ff165b80156130fd5750600660149054906101000a900460ff16155b80156131535750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131ff5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613243576001600660146101000a81548160ff021916908315150217905550613227613aa3565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132a95750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c15750600c60009054906101000a900460ff165b80156132dc5750600d54600e546132d891906149c1565b4210155b80156133325750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133415761333f613ce7565b505b6000600660149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133f75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340157600090505b6000811561367a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346457506000601854115b15613531576134916064613483601854886137f690919063ffffffff16565b61380c90919063ffffffff16565b9050601854601a54826134a491906147e3565b6134ae919061486c565b601d60008282546134bf91906149c1565b92505081905550601854601b54826134d791906147e3565b6134e1919061486c565b601e60008282546134f291906149c1565b925050819055506018546019548261350a91906147e3565b613514919061486c565b601c600082825461352591906149c1565b92505081905550613656565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561358c57506000601454115b15613655576135b960646135ab601454886137f690919063ffffffff16565b61380c90919063ffffffff16565b9050601454601654826135cc91906147e3565b6135d6919061486c565b601d60008282546135e791906149c1565b92505081905550601454601754826135ff91906147e3565b613609919061486c565b601e600082825461361a91906149c1565b925050819055506014546015548261363291906147e3565b61363c919061486c565b601c600082825461364d91906149c1565b925050819055505b5b600081111561366b5761366a873083613822565b5b808561367791906155bb565b94505b613685878787613822565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380491906147e3565b905092915050565b6000818361381a919061486c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990615255565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f9906152e7565b60405180910390fd5b61390d838383613eb3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398a90615661565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2691906149c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a8a919061446c565b60405180910390a3613a9d848484613eb8565b50505050565b6000613aae306114e4565b90506000601e54601d54613ac291906149c1565b9050600080831480613ad45750600082145b15613ae157505050613ce5565b6014600954613af091906147e3565b831115613b09576014600954613b0691906147e3565b92505b6000600283601d5486613b1c91906147e3565b613b26919061486c565b613b30919061486c565b90506000613b5b601c54613b4d8488613ebd90919063ffffffff16565b613ebd90919063ffffffff16565b90506000479050613b6b82613ed3565b6000613b808247613ebd90919063ffffffff16565b90506000613bab87613b9d601e54856137f690919063ffffffff16565b61380c90919063ffffffff16565b905060008183613bbb91906155bb565b90506000601c541115613bd857613bd73061dead601c54613822565b5b6000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c36906156b2565b60006040518083038185875af1925050503d8060008114613c73576040519150601f19603f3d011682016040523d82523d6000602084013e613c78565b606091505b505080975050600086118015613c8e5750600081115b15613cdb57613c9d8682614110565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d54604051613cd2939291906156c7565b60405180910390a15b5050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d4d9190614516565b602060405180830381865afa158015613d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8e9190615092565b90506000613dbb612710613dad600b54856137f690919063ffffffff16565b61380c90919063ffffffff16565b90506000811115613df657613df5600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613822565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e6557600080fd5b505af1158015613e79573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ecb91906155bb565b905092915050565b6000600267ffffffffffffffff811115613ef057613eef6156fe565b5b604051908082528060200260200182016040528015613f1e5781602001602082028036833780820191505090505b5090503081600081518110613f3657613f3561572d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fff9190615771565b816001815181106140135761401261572d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614078307f00000000000000000000000000000000000000000000000000000000000000008461272a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140da959493929190615897565b600060405180830381600087803b1580156140f457600080fd5b505af1158015614108573d6000803e3d6000fd5b505050505050565b61413b307f00000000000000000000000000000000000000000000000000000000000000008461272a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016141a2969594939291906158f1565b60606040518083038185885af11580156141c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141e59190615952565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561422657808201518184015260208101905061420b565b83811115614235576000848401525b50505050565b6000601f19601f8301169050919050565b6000614257826141ec565b61426181856141f7565b9350614271818560208601614208565b61427a8161423b565b840191505092915050565b6000602082019050818103600083015261429f818461424c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142d7826142ac565b9050919050565b6142e7816142cc565b81146142f257600080fd5b50565b600081359050614304816142de565b92915050565b6000819050919050565b61431d8161430a565b811461432857600080fd5b50565b60008135905061433a81614314565b92915050565b60008060408385031215614357576143566142a7565b5b6000614365858286016142f5565b92505060206143768582860161432b565b9150509250929050565b60008115159050919050565b61439581614380565b82525050565b60006020820190506143b0600083018461438c565b92915050565b6000602082840312156143cc576143cb6142a7565b5b60006143da848285016142f5565b91505092915050565b6000819050919050565b60006144086144036143fe846142ac565b6143e3565b6142ac565b9050919050565b600061441a826143ed565b9050919050565b600061442c8261440f565b9050919050565b61443c81614421565b82525050565b60006020820190506144576000830184614433565b92915050565b6144668161430a565b82525050565b6000602082019050614481600083018461445d565b92915050565b60006020828403121561449d5761449c6142a7565b5b60006144ab8482850161432b565b91505092915050565b6000806000606084860312156144cd576144cc6142a7565b5b60006144db868287016142f5565b93505060206144ec868287016142f5565b92505060406144fd8682870161432b565b9150509250925092565b614510816142cc565b82525050565b600060208201905061452b6000830184614507565b92915050565b600060ff82169050919050565b61454781614531565b82525050565b6000602082019050614562600083018461453e565b92915050565b61457181614380565b811461457c57600080fd5b50565b60008135905061458e81614568565b92915050565b6000806000606084860312156145ad576145ac6142a7565b5b60006145bb8682870161432b565b93505060206145cc8682870161432b565b92505060406145dd8682870161457f565b9150509250925092565b600080604083850312156145fe576145fd6142a7565b5b600061460c858286016142f5565b925050602061461d8582860161457f565b9150509250929050565b6000806000606084860312156146405761463f6142a7565b5b600061464e8682870161432b565b935050602061465f8682870161432b565b92505060406146708682870161432b565b9150509250925092565b6000602082840312156146905761468f6142a7565b5b600061469e8482850161457f565b91505092915050565b600080604083850312156146be576146bd6142a7565b5b60006146cc858286016142f5565b92505060206146dd858286016142f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061472e57607f821691505b60208210811415614742576147416146e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061477e6020836141f7565b915061478982614748565b602082019050919050565b600060208201905081810360008301526147ad81614771565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ee8261430a565b91506147f98361430a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614832576148316147b4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148778261430a565b91506148828361430a565b9250826148925761489161483d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148f9602f836141f7565b91506149048261489d565b604082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061498b6028836141f7565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b60006149cc8261430a565b91506149d78361430a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0c57614a0b6147b4565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a736033836141f7565b9150614a7e82614a17565b604082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b056030836141f7565b9150614b1082614aa9565b604082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614b71601c836141f7565b9150614b7c82614b3b565b602082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c036039836141f7565b9150614c0e82614ba7565b604082019050919050565b60006020820190508181036000830152614c3281614bf6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c956025836141f7565b9150614ca082614c39565b604082019050919050565b60006020820190508181036000830152614cc481614c88565b9050919050565b7f4d757374206b656570206665657320617420203525206f72206c657373000000600082015250565b6000614d01601d836141f7565b9150614d0c82614ccb565b602082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d936024836141f7565b9150614d9e82614d37565b604082019050919050565b60006020820190508181036000830152614dc281614d86565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e256035836141f7565b9150614e3082614dc9565b604082019050919050565b60006020820190508181036000830152614e5481614e18565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eb76034836141f7565b9150614ec282614e5b565b604082019050919050565b60006020820190508181036000830152614ee681614eaa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f496026836141f7565b9150614f5482614eed565b604082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fb56020836141f7565b9150614fc082614f7f565b602082019050919050565b60006020820190508181036000830152614fe481614fa8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615047602a836141f7565b915061505282614feb565b604082019050919050565b600060208201905081810360008301526150768161503a565b9050919050565b60008151905061508c81614314565b92915050565b6000602082840312156150a8576150a76142a7565b5b60006150b68482850161507d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061511b6024836141f7565b9150615126826150bf565b604082019050919050565b6000602082019050818103600083015261514a8161510e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151ad6022836141f7565b91506151b882615151565b604082019050919050565b600060208201905081810360008301526151dc816151a0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061523f6025836141f7565b915061524a826151e3565b604082019050919050565b6000602082019050818103600083015261526e81615232565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152d16023836141f7565b91506152dc82615275565b604082019050919050565b60006020820190508181036000830152615300816152c4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061533d6016836141f7565b915061534882615307565b602082019050919050565b6000602082019050818103600083015261536c81615330565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153f56049836141f7565b915061540082615373565b606082019050919050565b60006020820190508181036000830152615424816153e8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154876035836141f7565b91506154928261542b565b604082019050919050565b600060208201905081810360008301526154b68161547a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154f36013836141f7565b91506154fe826154bd565b602082019050919050565b60006020820190508181036000830152615522816154e6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155856036836141f7565b915061559082615529565b604082019050919050565b600060208201905081810360008301526155b481615578565b9050919050565b60006155c68261430a565b91506155d18361430a565b9250828210156155e4576155e36147b4565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061564b6026836141f7565b9150615656826155ef565b604082019050919050565b6000602082019050818103600083015261567a8161563e565b9050919050565b600081905092915050565b50565b600061569c600083615681565b91506156a78261568c565b600082019050919050565b60006156bd8261568f565b9150819050919050565b60006060820190506156dc600083018661445d565b6156e9602083018561445d565b6156f6604083018461445d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061576b816142de565b92915050565b600060208284031215615787576157866142a7565b5b60006157958482850161575c565b91505092915050565b6000819050919050565b60006157c36157be6157b98461579e565b6143e3565b61430a565b9050919050565b6157d3816157a8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61580e816142cc565b82525050565b60006158208383615805565b60208301905092915050565b6000602082019050919050565b6000615844826157d9565b61584e81856157e4565b9350615859836157f5565b8060005b8381101561588a5781516158718882615814565b975061587c8361582c565b92505060018101905061585d565b5085935050505092915050565b600060a0820190506158ac600083018861445d565b6158b960208301876157ca565b81810360408301526158cb8186615839565b90506158da6060830185614507565b6158e7608083018461445d565b9695505050505050565b600060c0820190506159066000830189614507565b615913602083018861445d565b61592060408301876157ca565b61592d60608301866157ca565b61593a6080830185614507565b61594760a083018461445d565b979650505050505050565b60008060006060848603121561596b5761596a6142a7565b5b60006159798682870161507d565b935050602061598a8682870161507d565b925050604061599b8682870161507d565b915050925092509256fea26469706673582212205f246e5ca56a9c7b1ee0845eccb78c0b223e4bd36b1a82c1e5f413751320393464736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610d99578063f637434214610dc2578063f8b45b0514610ded578063fe72b27a14610e18576103a2565b8063e2f4560514610ced578063e71dc3f514610d18578063e884f26014610d43578063f11a24d314610d6e576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c1d578063d257b34f14610c48578063d85ba06314610c85578063dd62ed3e14610cb0576103a2565b8063c17b5b8c14610ba0578063c18bc19514610bc9578063c876d0b914610bf2576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610ae4578063b62496f514610b0f578063bbc0c74214610b4c578063c024666814610b77576103a2565b8063a0d82dc514610a14578063a457c2d714610a3f578063a4c82a0014610a7c578063a9059cbb14610aa7576103a2565b80639a7a23d6116101b65780639a7a23d61461096a5780639c3b4fdc146109935780639ec22c0e146109be5780639fccce32146109e9576103a2565b80638ea5220f146108eb578063924de9b71461091657806395d89b411461093f576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146108435780637571336a1461086e5780638095d564146108975780638da5cb5b146108c0576103a2565b80636ddd17131461079b57806370a08231146107c6578063715018a614610803578063730c18881461081a576103a2565b806349bd5a5e1161029b57806349bd5a5e146106dd5780634a62bb65146107085780634fbee193146107335780636a486a8e14610770576103a2565b80632e82f1a01461064a578063313ce5671461067557806339509351146106a0576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd578063293230b8146106085780632c3e486c1461061f576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e55565b6040516103c99190614285565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614340565b610ee7565b604051610406919061439b565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906143b6565b610f05565b604051610443919061439b565b60405180910390f35b34801561045857600080fd5b50610461610f24565b60405161046e9190614442565b60405180910390f35b34801561048357600080fd5b5061048c610f48565b604051610499919061446c565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906143b6565b610f52565b005b3480156104d757600080fd5b506104e061108e565b6040516104ed919061446c565b60405180910390f35b34801561050257600080fd5b5061050b611094565b604051610518919061446c565b60405180910390f35b34801561052d57600080fd5b5061053661109a565b604051610543919061446c565b60405180910390f35b34801561055857600080fd5b506105616110a0565b60405161056e919061446c565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614487565b6110a6565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906144b4565b6111b5565b6040516105d4919061439b565b60405180910390f35b3480156105e957600080fd5b506105f26112ad565b6040516105ff9190614516565b60405180910390f35b34801561061457600080fd5b5061061d6112b3565b005b34801561062b57600080fd5b5061063461136e565b604051610641919061446c565b60405180910390f35b34801561065657600080fd5b5061065f611374565b60405161066c919061439b565b60405180910390f35b34801561068157600080fd5b5061068a611387565b604051610697919061454d565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190614340565b611390565b6040516106d4919061439b565b60405180910390f35b3480156106e957600080fd5b506106f261143c565b6040516106ff9190614516565b60405180910390f35b34801561071457600080fd5b5061071d611462565b60405161072a919061439b565b60405180910390f35b34801561073f57600080fd5b5061075a600480360381019061075591906143b6565b611475565b604051610767919061439b565b60405180910390f35b34801561077c57600080fd5b506107856114cb565b604051610792919061446c565b60405180910390f35b3480156107a757600080fd5b506107b06114d1565b6040516107bd919061439b565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e891906143b6565b6114e4565b6040516107fa919061446c565b60405180910390f35b34801561080f57600080fd5b5061081861152c565b005b34801561082657600080fd5b50610841600480360381019061083c9190614594565b6115b4565b005b34801561084f57600080fd5b506108586116f4565b604051610865919061439b565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906145e7565b611794565b005b3480156108a357600080fd5b506108be60048036038101906108b99190614627565b61186b565b005b3480156108cc57600080fd5b506108d561196a565b6040516108e29190614516565b60405180910390f35b3480156108f757600080fd5b50610900611994565b60405161090d9190614516565b60405180910390f35b34801561092257600080fd5b5061093d6004803603810190610938919061467a565b6119ba565b005b34801561094b57600080fd5b50610954611a53565b6040516109619190614285565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c91906145e7565b611ae5565b005b34801561099f57600080fd5b506109a8611c00565b6040516109b5919061446c565b60405180910390f35b3480156109ca57600080fd5b506109d3611c06565b6040516109e0919061446c565b60405180910390f35b3480156109f557600080fd5b506109fe611c0c565b604051610a0b919061446c565b60405180910390f35b348015610a2057600080fd5b50610a29611c12565b604051610a36919061446c565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614340565b611c18565b604051610a73919061439b565b60405180910390f35b348015610a8857600080fd5b50610a91611d03565b604051610a9e919061446c565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac99190614340565b611d09565b604051610adb919061439b565b60405180910390f35b348015610af057600080fd5b50610af9611d27565b604051610b06919061446c565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b3191906143b6565b611d2d565b604051610b43919061439b565b60405180910390f35b348015610b5857600080fd5b50610b61611d4d565b604051610b6e919061439b565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b9991906145e7565b611d60565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190614627565b611e85565b005b348015610bd557600080fd5b50610bf06004803603810190610beb9190614487565b611f84565b005b348015610bfe57600080fd5b50610c07612093565b604051610c14919061439b565b60405180910390f35b348015610c2957600080fd5b50610c326120a6565b604051610c3f919061446c565b60405180910390f35b348015610c5457600080fd5b50610c6f6004803603810190610c6a9190614487565b6120ac565b604051610c7c919061439b565b60405180910390f35b348015610c9157600080fd5b50610c9a612201565b604051610ca7919061446c565b60405180910390f35b348015610cbc57600080fd5b50610cd76004803603810190610cd291906146a7565b612207565b604051610ce4919061446c565b60405180910390f35b348015610cf957600080fd5b50610d0261228e565b604051610d0f919061446c565b60405180910390f35b348015610d2457600080fd5b50610d2d612294565b604051610d3a919061446c565b60405180910390f35b348015610d4f57600080fd5b50610d5861229a565b604051610d65919061439b565b60405180910390f35b348015610d7a57600080fd5b50610d8361233a565b604051610d90919061446c565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb91906143b6565b612340565b005b348015610dce57600080fd5b50610dd7612438565b604051610de4919061446c565b60405180910390f35b348015610df957600080fd5b50610e0261243e565b604051610e0f919061446c565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a9190614487565b612444565b604051610e4c919061439b565b60405180910390f35b606060038054610e6490614716565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090614716565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b6000610efb610ef4612722565b848461272a565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5a612722565b73ffffffffffffffffffffffffffffffffffffffff16610f7861196a565b73ffffffffffffffffffffffffffffffffffffffff1614610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590614794565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110ae612722565b73ffffffffffffffffffffffffffffffffffffffff166110cc61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990614794565b60405180910390fd5b670de0b6b3a76400006103e86001611138610f48565b61114291906147e3565b61114c919061486c565b611156919061486c565b811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061490f565b60405180910390fd5b670de0b6b3a7640000816111ac91906147e3565b60088190555050565b60006111c28484846128f5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120d612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906149a1565b60405180910390fd5b6112a185611299612722565b85840361272a565b60019150509392505050565b61dead81565b6112bb612722565b73ffffffffffffffffffffffffffffffffffffffff166112d961196a565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614794565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061143261139d612722565b8484600160006113ab612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142d91906149c1565b61272a565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611534612722565b73ffffffffffffffffffffffffffffffffffffffff1661155261196a565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614794565b60405180910390fd5b6115b2600061368f565b565b6115bc612722565b73ffffffffffffffffffffffffffffffffffffffff166115da61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614794565b60405180910390fd5b610258831015611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614a89565b60405180910390fd5b6103e88211158015611688575060008210155b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90614b1b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116fe612722565b73ffffffffffffffffffffffffffffffffffffffff1661171c61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614794565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61179c612722565b73ffffffffffffffffffffffffffffffffffffffff166117ba61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614794565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611873612722565b73ffffffffffffffffffffffffffffffffffffffff1661189161196a565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614794565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461190f91906149c1565b61191991906149c1565b60148190555060056014541115611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614b87565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119c2612722565b73ffffffffffffffffffffffffffffffffffffffff166119e061196a565b73ffffffffffffffffffffffffffffffffffffffff1614611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90614794565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a6290614716565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8e90614716565b8015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b611aed612722565b73ffffffffffffffffffffffffffffffffffffffff16611b0b61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614794565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614c19565b60405180910390fd5b611bfc8282613755565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c27612722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90614cab565b60405180910390fd5b611cf8611cef612722565b8585840361272a565b600191505092915050565b600e5481565b6000611d1d611d16612722565b84846128f5565b6001905092915050565b60195481565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d68612722565b73ffffffffffffffffffffffffffffffffffffffff16611d8661196a565b73ffffffffffffffffffffffffffffffffffffffff1614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390614794565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e79919061439b565b60405180910390a25050565b611e8d612722565b73ffffffffffffffffffffffffffffffffffffffff16611eab61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614794565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f2991906149c1565b611f3391906149c1565b60188190555060056018541115611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690614d17565b60405180910390fd5b505050565b611f8c612722565b73ffffffffffffffffffffffffffffffffffffffff16611faa61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614794565b60405180910390fd5b670de0b6b3a76400006103e86005612016610f48565b61202091906147e3565b61202a919061486c565b612034919061486c565b811015612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614da9565b60405180910390fd5b670de0b6b3a76400008161208a91906147e3565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120b6612722565b73ffffffffffffffffffffffffffffffffffffffff166120d461196a565b73ffffffffffffffffffffffffffffffffffffffff161461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614794565b60405180910390fd5b620186a06001612138610f48565b61214291906147e3565b61214c919061486c565b82101561218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614e3b565b60405180910390fd5b6103e8600561219b610f48565b6121a591906147e3565b6121af919061486c565b8211156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890614ecd565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60155481565b60006122a4612722565b73ffffffffffffffffffffffffffffffffffffffff166122c261196a565b73ffffffffffffffffffffffffffffffffffffffff1614612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614794565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612348612722565b73ffffffffffffffffffffffffffffffffffffffff1661236661196a565b73ffffffffffffffffffffffffffffffffffffffff16146123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614794565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242390614f5f565b60405180910390fd5b6124358161368f565b50565b601a5481565b600a5481565b600061244e612722565b73ffffffffffffffffffffffffffffffffffffffff1661246c61196a565b73ffffffffffffffffffffffffffffffffffffffff16146124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614794565b60405180910390fd5b600f546010546124d291906149c1565b4211612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614fcb565b60405180910390fd5b6103e8821115612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f9061505d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016125bc9190614516565b602060405180830381865afa1580156125d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125fd9190615092565b9050600061262861271061261a86856137f690919063ffffffff16565b61380c90919063ffffffff16565b9050600081111561266357612662600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613822565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126d257600080fd5b505af11580156126e6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190615131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612801906151c3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128e8919061446c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295c90615255565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cc906152e7565b60405180910390fd5b60008114156129ef576129ea83836000613822565b61368a565b601160009054906101000a900460ff16156130b457612a0c61196a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a7a5750612a4a61196a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aed575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b065750600660149054906101000a900460ff16155b156130b357601160019054906101000a900460ff16612c0057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc05750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf690615353565b60405180910390fd5b5b601360009054906101000a900460ff1615612dca57612c1d61196a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ca457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cfe5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dc95743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7b9061540b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e6d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1457600854811115612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae9061549d565b60405180910390fd5b600a54612ec3836114e4565b82612ece91906149c1565b1115612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690615509565b60405180910390fd5b6130b2565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300657600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff89061559b565b60405180910390fd5b6130b1565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b057600a54613063836114e4565b8261306e91906149c1565b11156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a690615509565b60405180910390fd5b5b5b5b5b5b60006130bf306114e4565b9050600060095482101590508080156130e45750601160029054906101000a900460ff165b80156130fd5750600660149054906101000a900460ff16155b80156131535750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131ff5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613243576001600660146101000a81548160ff021916908315150217905550613227613aa3565b6000600660146101000a81548160ff0219169083151502179055505b600660149054906101000a900460ff161580156132a95750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c15750600c60009054906101000a900460ff165b80156132dc5750600d54600e546132d891906149c1565b4210155b80156133325750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133415761333f613ce7565b505b6000600660149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133f75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340157600090505b6000811561367a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346457506000601854115b15613531576134916064613483601854886137f690919063ffffffff16565b61380c90919063ffffffff16565b9050601854601a54826134a491906147e3565b6134ae919061486c565b601d60008282546134bf91906149c1565b92505081905550601854601b54826134d791906147e3565b6134e1919061486c565b601e60008282546134f291906149c1565b925050819055506018546019548261350a91906147e3565b613514919061486c565b601c600082825461352591906149c1565b92505081905550613656565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561358c57506000601454115b15613655576135b960646135ab601454886137f690919063ffffffff16565b61380c90919063ffffffff16565b9050601454601654826135cc91906147e3565b6135d6919061486c565b601d60008282546135e791906149c1565b92505081905550601454601754826135ff91906147e3565b613609919061486c565b601e600082825461361a91906149c1565b925050819055506014546015548261363291906147e3565b61363c919061486c565b601c600082825461364d91906149c1565b925050819055505b5b600081111561366b5761366a873083613822565b5b808561367791906155bb565b94505b613685878787613822565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380491906147e3565b905092915050565b6000818361381a919061486c565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388990615255565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138f9906152e7565b60405180910390fd5b61390d838383613eb3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398a90615661565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2691906149c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a8a919061446c565b60405180910390a3613a9d848484613eb8565b50505050565b6000613aae306114e4565b90506000601e54601d54613ac291906149c1565b9050600080831480613ad45750600082145b15613ae157505050613ce5565b6014600954613af091906147e3565b831115613b09576014600954613b0691906147e3565b92505b6000600283601d5486613b1c91906147e3565b613b26919061486c565b613b30919061486c565b90506000613b5b601c54613b4d8488613ebd90919063ffffffff16565b613ebd90919063ffffffff16565b90506000479050613b6b82613ed3565b6000613b808247613ebd90919063ffffffff16565b90506000613bab87613b9d601e54856137f690919063ffffffff16565b61380c90919063ffffffff16565b905060008183613bbb91906155bb565b90506000601c541115613bd857613bd73061dead601c54613822565b5b6000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c36906156b2565b60006040518083038185875af1925050503d8060008114613c73576040519150601f19603f3d011682016040523d82523d6000602084013e613c78565b606091505b505080975050600086118015613c8e5750600081115b15613cdb57613c9d8682614110565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d54604051613cd2939291906156c7565b60405180910390a15b5050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401613d4d9190614516565b602060405180830381865afa158015613d6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8e9190615092565b90506000613dbb612710613dad600b54856137f690919063ffffffff16565b61380c90919063ffffffff16565b90506000811115613df657613df5600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83613822565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e6557600080fd5b505af1158015613e79573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613ecb91906155bb565b905092915050565b6000600267ffffffffffffffff811115613ef057613eef6156fe565b5b604051908082528060200260200182016040528015613f1e5781602001602082028036833780820191505090505b5090503081600081518110613f3657613f3561572d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fff9190615771565b816001815181106140135761401261572d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614078307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461272a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140da959493929190615897565b600060405180830381600087803b1580156140f457600080fd5b505af1158015614108573d6000803e3d6000fd5b505050505050565b61413b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461272a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016141a2969594939291906158f1565b60606040518083038185885af11580156141c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141e59190615952565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561422657808201518184015260208101905061420b565b83811115614235576000848401525b50505050565b6000601f19601f8301169050919050565b6000614257826141ec565b61426181856141f7565b9350614271818560208601614208565b61427a8161423b565b840191505092915050565b6000602082019050818103600083015261429f818461424c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142d7826142ac565b9050919050565b6142e7816142cc565b81146142f257600080fd5b50565b600081359050614304816142de565b92915050565b6000819050919050565b61431d8161430a565b811461432857600080fd5b50565b60008135905061433a81614314565b92915050565b60008060408385031215614357576143566142a7565b5b6000614365858286016142f5565b92505060206143768582860161432b565b9150509250929050565b60008115159050919050565b61439581614380565b82525050565b60006020820190506143b0600083018461438c565b92915050565b6000602082840312156143cc576143cb6142a7565b5b60006143da848285016142f5565b91505092915050565b6000819050919050565b60006144086144036143fe846142ac565b6143e3565b6142ac565b9050919050565b600061441a826143ed565b9050919050565b600061442c8261440f565b9050919050565b61443c81614421565b82525050565b60006020820190506144576000830184614433565b92915050565b6144668161430a565b82525050565b6000602082019050614481600083018461445d565b92915050565b60006020828403121561449d5761449c6142a7565b5b60006144ab8482850161432b565b91505092915050565b6000806000606084860312156144cd576144cc6142a7565b5b60006144db868287016142f5565b93505060206144ec868287016142f5565b92505060406144fd8682870161432b565b9150509250925092565b614510816142cc565b82525050565b600060208201905061452b6000830184614507565b92915050565b600060ff82169050919050565b61454781614531565b82525050565b6000602082019050614562600083018461453e565b92915050565b61457181614380565b811461457c57600080fd5b50565b60008135905061458e81614568565b92915050565b6000806000606084860312156145ad576145ac6142a7565b5b60006145bb8682870161432b565b93505060206145cc8682870161432b565b92505060406145dd8682870161457f565b9150509250925092565b600080604083850312156145fe576145fd6142a7565b5b600061460c858286016142f5565b925050602061461d8582860161457f565b9150509250929050565b6000806000606084860312156146405761463f6142a7565b5b600061464e8682870161432b565b935050602061465f8682870161432b565b92505060406146708682870161432b565b9150509250925092565b6000602082840312156146905761468f6142a7565b5b600061469e8482850161457f565b91505092915050565b600080604083850312156146be576146bd6142a7565b5b60006146cc858286016142f5565b92505060206146dd858286016142f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061472e57607f821691505b60208210811415614742576147416146e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061477e6020836141f7565b915061478982614748565b602082019050919050565b600060208201905081810360008301526147ad81614771565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147ee8261430a565b91506147f98361430a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614832576148316147b4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148778261430a565b91506148828361430a565b9250826148925761489161483d565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148f9602f836141f7565b91506149048261489d565b604082019050919050565b60006020820190508181036000830152614928816148ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061498b6028836141f7565b91506149968261492f565b604082019050919050565b600060208201905081810360008301526149ba8161497e565b9050919050565b60006149cc8261430a565b91506149d78361430a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a0c57614a0b6147b4565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a736033836141f7565b9150614a7e82614a17565b604082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b056030836141f7565b9150614b1082614aa9565b604082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614b71601c836141f7565b9150614b7c82614b3b565b602082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c036039836141f7565b9150614c0e82614ba7565b604082019050919050565b60006020820190508181036000830152614c3281614bf6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c956025836141f7565b9150614ca082614c39565b604082019050919050565b60006020820190508181036000830152614cc481614c88565b9050919050565b7f4d757374206b656570206665657320617420203525206f72206c657373000000600082015250565b6000614d01601d836141f7565b9150614d0c82614ccb565b602082019050919050565b60006020820190508181036000830152614d3081614cf4565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d936024836141f7565b9150614d9e82614d37565b604082019050919050565b60006020820190508181036000830152614dc281614d86565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e256035836141f7565b9150614e3082614dc9565b604082019050919050565b60006020820190508181036000830152614e5481614e18565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eb76034836141f7565b9150614ec282614e5b565b604082019050919050565b60006020820190508181036000830152614ee681614eaa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f496026836141f7565b9150614f5482614eed565b604082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fb56020836141f7565b9150614fc082614f7f565b602082019050919050565b60006020820190508181036000830152614fe481614fa8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615047602a836141f7565b915061505282614feb565b604082019050919050565b600060208201905081810360008301526150768161503a565b9050919050565b60008151905061508c81614314565b92915050565b6000602082840312156150a8576150a76142a7565b5b60006150b68482850161507d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061511b6024836141f7565b9150615126826150bf565b604082019050919050565b6000602082019050818103600083015261514a8161510e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151ad6022836141f7565b91506151b882615151565b604082019050919050565b600060208201905081810360008301526151dc816151a0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061523f6025836141f7565b915061524a826151e3565b604082019050919050565b6000602082019050818103600083015261526e81615232565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152d16023836141f7565b91506152dc82615275565b604082019050919050565b60006020820190508181036000830152615300816152c4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061533d6016836141f7565b915061534882615307565b602082019050919050565b6000602082019050818103600083015261536c81615330565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153f56049836141f7565b915061540082615373565b606082019050919050565b60006020820190508181036000830152615424816153e8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154876035836141f7565b91506154928261542b565b604082019050919050565b600060208201905081810360008301526154b68161547a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154f36013836141f7565b91506154fe826154bd565b602082019050919050565b60006020820190508181036000830152615522816154e6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155856036836141f7565b915061559082615529565b604082019050919050565b600060208201905081810360008301526155b481615578565b9050919050565b60006155c68261430a565b91506155d18361430a565b9250828210156155e4576155e36147b4565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061564b6026836141f7565b9150615656826155ef565b604082019050919050565b6000602082019050818103600083015261567a8161563e565b9050919050565b600081905092915050565b50565b600061569c600083615681565b91506156a78261568c565b600082019050919050565b60006156bd8261568f565b9150819050919050565b60006060820190506156dc600083018661445d565b6156e9602083018561445d565b6156f6604083018461445d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061576b816142de565b92915050565b600060208284031215615787576157866142a7565b5b60006157958482850161575c565b91505092915050565b6000819050919050565b60006157c36157be6157b98461579e565b6143e3565b61430a565b9050919050565b6157d3816157a8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61580e816142cc565b82525050565b60006158208383615805565b60208301905092915050565b6000602082019050919050565b6000615844826157d9565b61584e81856157e4565b9350615859836157f5565b8060005b8381101561588a5781516158718882615814565b975061587c8361582c565b92505060018101905061585d565b5085935050505092915050565b600060a0820190506158ac600083018861445d565b6158b960208301876157ca565b81810360408301526158cb8186615839565b90506158da6060830185614507565b6158e7608083018461445d565b9695505050505050565b600060c0820190506159066000830189614507565b615913602083018861445d565b61592060408301876157ca565b61592d60608301866157ca565b61593a6080830185614507565b61594760a083018461445d565b979650505050505050565b60008060006060848603121561596b5761596a6142a7565b5b60006159798682870161507d565b935050602061598a8682870161507d565b925050604061599b8682870161507d565b915050925092509256fea26469706673582212205f246e5ca56a9c7b1ee0845eccb78c0b223e4bd36b1a82c1e5f413751320393464736f6c634300080a0033

Deployed Bytecode Sourcemap

27033:18260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11937:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28638:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27117:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10749:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34840:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27635:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27450:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28422:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28387:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32436:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12629:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27210:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31338:154;;;;;;;;;;;;;:::i;:::-;;27545:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27506:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10591:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13567:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27175:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27733:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35005:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28231:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27813:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10920:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3425:103;;;;;;;;;;;;;:::i;:::-;;42875:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31544:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32983:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33354:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2774:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27302:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33246:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9848:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34332:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28193:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27689:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28462:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28348:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14367:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27597:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11310:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28267:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28859:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27773:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34142:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33743:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32719:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28031:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27335:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31931:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28079:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27377:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28114:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31726:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28151:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3683:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28305:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27417:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44234:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9629:100;9683:13;9716:5;9709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9629:100;:::o;11937:210::-;12056:4;12078:39;12087:12;:10;:12::i;:::-;12101:7;12110:6;12078:8;:39::i;:::-;12135:4;12128:11;;11937:210;;;;:::o;28638:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27117:51::-;;;:::o;10749:108::-;10810:7;10837:12;;10830:19;;10749:108;:::o;34840:157::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34947:9:::1;;;;;;;;;;;34919:38;;34936:9;34919:38;;;;;;;;;;;;34980:9;34968;;:21;;;;;;;;;;;;;;;;;;34840:157:::0;:::o;27635:47::-;;;;:::o;27450:36::-;;;;:::o;28422:33::-;;;;:::o;28387:28::-;;;;:::o;32436:275::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32573:4:::1;32565;32560:1;32544:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32543:26;;;;:::i;:::-;32542:35;;;;:::i;:::-;32532:6;:45;;32510:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;32696:6;32686;:17;;;;:::i;:::-;32663:20;:40;;;;32436:275:::0;:::o;12629:529::-;12769:4;12786:36;12796:6;12804:9;12815:6;12786:9;:36::i;:::-;12835:24;12862:11;:19;12874:6;12862:19;;;;;;;;;;;;;;;:33;12882:12;:10;:12::i;:::-;12862:33;;;;;;;;;;;;;;;;12835:60;;12948:6;12928:16;:26;;12906:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13058:57;13067:6;13075:12;:10;:12::i;:::-;13108:6;13089:16;:25;13058:8;:57::i;:::-;13146:4;13139:11;;;12629:529;;;;;:::o;27210:53::-;27256:6;27210:53;:::o;31338:154::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31408:4:::1;31392:13;;:20;;;;;;;;;;;;;;;;;;31437:4;31423:11;;:18;;;;;;;;;;;;;;;;;;31469:15;31452:14;:32;;;;31338:154::o:0;27545:45::-;;;;:::o;27506:32::-;;;;;;;;;;;;;:::o;10591:93::-;10649:5;10674:2;10667:9;;10591:93;:::o;13567:297::-;13682:4;13704:130;13727:12;:10;:12::i;:::-;13754:7;13813:10;13776:11;:25;13788:12;:10;:12::i;:::-;13776:25;;;;;;;;;;;;;;;:34;13802:7;13776:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13704:8;:130::i;:::-;13852:4;13845:11;;13567:297;;;;:::o;27175:28::-;;;;;;;;;;;;;:::o;27733:33::-;;;;;;;;;;;;;:::o;35005:126::-;35071:4;35095:19;:28;35115:7;35095:28;;;;;;;;;;;;;;;;;;;;;;;;;35088:35;;35005:126;;;:::o;28231:29::-;;;;:::o;27813:31::-;;;;;;;;;;;;;:::o;10920:177::-;11039:7;11071:9;:18;11081:7;11071:18;;;;;;;;;;;;;;;;11064:25;;10920:177;;;:::o;3425:103::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3490:30:::1;3517:1;3490:18;:30::i;:::-;3425:103::o:0;42875:555::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43077:3:::1;43054:19;:26;;43032:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;43204:4;43192:8;:16;;:33;;;;;43224:1;43212:8;:13;;43192:33;43170:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;43330:19;43312:15;:37;;;;43379:8;43360:16;:27;;;;43414:8;43398:13;;:24;;;;;;;;;;;;;;;;;;42875:555:::0;;;:::o;31544:121::-;31596:4;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31630:5:::1;31613:14;;:22;;;;;;;;;;;;;;;;;;31653:4;31646:11;;31544:121:::0;:::o;32983:167::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33138:4:::1;33096:31;:39;33128:6;33096:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32983:167:::0;;:::o;33354:381::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33512:8:::1;33499:10;:21;;;;33549:13;33531:15;:31;;;;33585:7;33573:9;:19;;;;33649:9;;33631:15;;33618:10;;:28;;;;:::i;:::-;:40;;;;:::i;:::-;33603:12;:55;;;;33693:1;33677:12;;:17;;33669:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33354:381:::0;;;:::o;2774:87::-;2820:7;2847:6;;;;;;;;;;;2840:13;;2774:87;:::o;27302:24::-;;;;;;;;;;;;;:::o;33246:100::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33331:7:::1;33317:11;;:21;;;;;;;;;;;;;;;;;;33246:100:::0;:::o;9848:104::-;9904:13;9937:7;9930:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9848:104;:::o;34332:304::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34476:13:::1;;;;;;;;;;;34468:21;;:4;:21;;;;34446:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;34587:41;34616:4;34622:5;34587:28;:41::i;:::-;34332:304:::0;;:::o;28193:29::-;;;;:::o;27689:35::-;;;;:::o;28462:27::-;;;;:::o;28348:30::-;;;;:::o;14367:482::-;14487:4;14509:24;14536:11;:25;14548:12;:10;:12::i;:::-;14536:25;;;;;;;;;;;;;;;:34;14562:7;14536:34;;;;;;;;;;;;;;;;14509:61;;14623:15;14603:16;:35;;14581:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14739:67;14748:12;:10;:12::i;:::-;14762:7;14790:15;14771:16;:34;14739:8;:67::i;:::-;14837:4;14830:11;;;14367:482;;;;:::o;27597:29::-;;;;:::o;11310:216::-;11432:4;11454:42;11464:12;:10;:12::i;:::-;11478:9;11489:6;11454:9;:42::i;:::-;11514:4;11507:11;;11310:216;;;;:::o;28267:31::-;;;;:::o;28859:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;27773:33::-;;;;;;;;;;;;;:::o;34142:182::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34258:8:::1;34227:19;:28;34247:7;34227:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34298:7;34282:34;;;34307:8;34282:34;;;;;;:::i;:::-;;;;;;;;34142:182:::0;;:::o;33743:391::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33903:8:::1;33889:11;:22;;;;33941:13;33922:16;:32;;;;33978:7;33965:10;:20;;;;34045:10;;34026:16;;34012:11;;:30;;;;:::i;:::-;:43;;;;:::i;:::-;33996:13;:59;;;;34091:1;34074:13;;:18;;34066:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33743:391:::0;;;:::o;32719:256::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32859:4:::1;32851;32846:1;32830:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32829:26;;;;:::i;:::-;32828:35;;;;:::i;:::-;32818:6;:45;;32796:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;32960:6;32950;:17;;;;:::i;:::-;32938:9;:29;;;;32719:256:::0;:::o;28031:39::-;;;;;;;;;;;;;:::o;27335:35::-;;;;:::o;31931:497::-;32039:4;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32118:6:::1;32113:1;32097:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32096:28;;;;:::i;:::-;32083:9;:41;;32061:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;32273:4;32268:1;32252:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32251:26;;;;:::i;:::-;32238:9;:39;;32216:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;32389:9;32368:18;:30;;;;32416:4;32409:11;;31931:497:::0;;;:::o;28079:28::-;;;;:::o;11589:201::-;11723:7;11755:11;:18;11767:5;11755:18;;;;;;;;;;;;;;;:27;11774:7;11755:27;;;;;;;;;;;;;;;;11748:34;;11589:201;;;;:::o;27377:33::-;;;;:::o;28114:30::-;;;;:::o;31726:135::-;31786:4;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31826:5:::1;31803:20;;:28;;;;;;;;;;;;;;;;;;31849:4;31842:11;;31726:135:::0;:::o;28151:35::-;;;;:::o;3683:238::-;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3806:1:::1;3786:22;;:8;:22;;;;3764:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3885:28;3904:8;3885:18;:28::i;:::-;3683:238:::0;:::o;28305:36::-;;;;:::o;27417:24::-;;;;:::o;44234:1056::-;44345:4;3005:12;:10;:12::i;:::-;2994:23;;:7;:5;:7::i;:::-;:23;;;2986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44430:19:::1;;44407:20;;:42;;;;:::i;:::-;44389:15;:60;44367:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;44539:4;44528:7;:15;;44520:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44624:15;44601:20;:38;;;;44694:28;44725:4;:14;;;44740:13;;;;;;;;;;;44725:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44694:60;;44804:20;44827:44;44865:5;44827:33;44852:7;44827:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;44804:67;;44991:1;44976:12;:16;44972:110;;;45009:61;45025:13;;;;;;;;;;;45048:6;45057:12;45009:15;:61::i;:::-;44972:110;45157:19;45194:13;;;;;;;;;;;45157:51;;45219:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45246:14;;;;;;;;;;45278:4;45271:11;;;;;44234:1056:::0;;;:::o;1616:98::-;1669:7;1696:10;1689:17;;1616:98;:::o;18157:380::-;18310:1;18293:19;;:5;:19;;;;18285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18391:1;18372:21;;:7;:21;;;;18364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18475:6;18445:11;:18;18457:5;18445:18;;;;;;;;;;;;;;;:27;18464:7;18445:27;;;;;;;;;;;;;;;:36;;;;18513:7;18497:32;;18506:5;18497:32;;;18522:6;18497:32;;;;;;:::i;:::-;;;;;;;;18157:380;;;:::o;35139:4991::-;35287:1;35271:18;;:4;:18;;;;35263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35364:1;35350:16;;:2;:16;;;;35342:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35433:1;35423:6;:11;35419:93;;;35451:28;35467:4;35473:2;35477:1;35451:15;:28::i;:::-;35494:7;;35419:93;35528:14;;;;;;;;;;;35524:2487;;;35589:7;:5;:7::i;:::-;35581:15;;:4;:15;;;;:49;;;;;35623:7;:5;:7::i;:::-;35617:13;;:2;:13;;;;35581:49;:86;;;;;35665:1;35651:16;;:2;:16;;;;35581:86;:128;;;;;35702:6;35688:21;;:2;:21;;;;35581:128;:158;;;;;35731:8;;;;;;;;;;;35730:9;35581:158;35559:2441;;;35779:13;;;;;;;;;;;35774:223;;35851:19;:25;35871:4;35851:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35880:19;:23;35900:2;35880:23;;;;;;;;;;;;;;;;;;;;;;;;;35851:52;35817:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35774:223;36153:20;;;;;;;;;;;36149:641;;;36234:7;:5;:7::i;:::-;36228:13;;:2;:13;;;;:72;;;;;36284:15;36270:30;;:2;:30;;;;36228:72;:129;;;;;36343:13;;;;;;;;;;;36329:28;;:2;:28;;;;36228:129;36198:573;;;36521:12;36446:28;:39;36475:9;36446:39;;;;;;;;;;;;;;;;:87;36408:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;36735:12;36693:28;:39;36722:9;36693:39;;;;;;;;;;;;;;;:54;;;;36198:573;36149:641;36864:25;:31;36890:4;36864:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36921:31;:35;36953:2;36921:35;;;;;;;;;;;;;;;;;;;;;;;;;36920:36;36864:92;36838:1147;;;37043:20;;37033:6;:30;;36999:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37251:9;;37234:13;37244:2;37234:9;:13::i;:::-;37225:6;:22;;;;:::i;:::-;:35;;37191:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36838:1147;;;37429:25;:29;37455:2;37429:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;37484:31;:37;37516:4;37484:37;;;;;;;;;;;;;;;;;;;;;;;;;37483:38;37429:92;37403:582;;;37608:20;;37598:6;:30;;37564:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;37403:582;;;37765:31;:35;37797:2;37765:35;;;;;;;;;;;;;;;;;;;;;;;;;37760:225;;37885:9;;37868:13;37878:2;37868:9;:13::i;:::-;37859:6;:22;;;;:::i;:::-;:35;;37825:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37760:225;37403:582;36838:1147;35559:2441;35524:2487;38023:28;38054:24;38072:4;38054:9;:24::i;:::-;38023:55;;38091:12;38130:18;;38106:20;:42;;38091:57;;38179:7;:35;;;;;38203:11;;;;;;;;;;;38179:35;:61;;;;;38232:8;;;;;;;;;;;38231:9;38179:61;:110;;;;;38258:25;:31;38284:4;38258:31;;;;;;;;;;;;;;;;;;;;;;;;;38257:32;38179:110;:153;;;;;38307:19;:25;38327:4;38307:25;;;;;;;;;;;;;;;;;;;;;;;;;38306:26;38179:153;:194;;;;;38350:19;:23;38370:2;38350:23;;;;;;;;;;;;;;;;;;;;;;;;;38349:24;38179:194;38161:326;;;38411:4;38400:8;;:15;;;;;;;;;;;;;;;;;;38432:10;:8;:10::i;:::-;38470:5;38459:8;;:16;;;;;;;;;;;;;;;;;;38161:326;38518:8;;;;;;;;;;;38517:9;:55;;;;;38543:25;:29;38569:2;38543:29;;;;;;;;;;;;;;;;;;;;;;;;;38517:55;:85;;;;;38589:13;;;;;;;;;;;38517:85;:153;;;;;38655:15;;38638:14;;:32;;;;:::i;:::-;38619:15;:51;;38517:153;:196;;;;;38688:19;:25;38708:4;38688:25;;;;;;;;;;;;;;;;;;;;;;;;;38687:26;38517:196;38499:282;;;38740:29;:27;:29::i;:::-;;38499:282;38793:12;38809:8;;;;;;;;;;;38808:9;38793:24;;38919:19;:25;38939:4;38919:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38948:19;:23;38968:2;38948:23;;;;;;;;;;;;;;;;;;;;;;;;;38919:52;38915:100;;;38998:5;38988:15;;38915:100;39027:12;39132:7;39128:949;;;39184:25;:29;39210:2;39184:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;39233:1;39217:13;;:17;39184:50;39180:748;;;39262:34;39292:3;39262:25;39273:13;;39262:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39255:41;;39365:13;;39345:16;;39338:4;:23;;;;:::i;:::-;39337:41;;;;:::i;:::-;39315:18;;:63;;;;;;;:::i;:::-;;;;;;;;39435:13;;39421:10;;39414:4;:17;;;;:::i;:::-;39413:35;;;;:::i;:::-;39397:12;;:51;;;;;;;:::i;:::-;;;;;;;;39507:13;;39492:11;;39485:4;:18;;;;:::i;:::-;39484:36;;;;:::i;:::-;39467:13;;:53;;;;;;;:::i;:::-;;;;;;;;39180:748;;;39582:25;:31;39608:4;39582:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39632:1;39617:12;;:16;39582:51;39578:350;;;39661:33;39690:3;39661:24;39672:12;;39661:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39654:40;;39762:12;;39743:15;;39736:4;:22;;;;:::i;:::-;39735:39;;;;:::i;:::-;39713:18;;:61;;;;;;;:::i;:::-;;;;;;;;39830:12;;39817:9;;39810:4;:16;;;;:::i;:::-;39809:33;;;;:::i;:::-;39793:12;;:49;;;;;;;:::i;:::-;;;;;;;;39900:12;;39886:10;;39879:4;:17;;;;:::i;:::-;39878:34;;;;:::i;:::-;39861:13;;:51;;;;;;;:::i;:::-;;;;;;;;39578:350;39180:748;39955:1;39948:4;:8;39944:91;;;39977:42;39993:4;40007;40014;39977:15;:42::i;:::-;39944:91;40061:4;40051:14;;;;;:::i;:::-;;;39128:949;40089:33;40105:4;40111:2;40115:6;40089:15;:33::i;:::-;35252:4878;;;;35139:4991;;;;:::o;4081:191::-;4155:16;4174:6;;;;;;;;;;;4155:25;;4200:8;4191:6;;:17;;;;;;;;;;;;;;;;;;4255:8;4224:40;;4245:8;4224:40;;;;;;;;;;;;4144:128;4081:191;:::o;34644:188::-;34761:5;34727:25;:31;34753:4;34727:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34818:5;34784:40;;34812:4;34784:40;;;;;;;;;;;;34644:188;;:::o;23606:98::-;23664:7;23695:1;23691;:5;;;;:::i;:::-;23684:12;;23606:98;;;;:::o;24005:::-;24063:7;24094:1;24090;:5;;;;:::i;:::-;24083:12;;24005:98;;;;:::o;15339:770::-;15497:1;15479:20;;:6;:20;;;;15471:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15581:1;15560:23;;:9;:23;;;;15552:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15636:47;15657:6;15665:9;15676:6;15636:20;:47::i;:::-;15696:21;15720:9;:17;15730:6;15720:17;;;;;;;;;;;;;;;;15696:41;;15787:6;15770:13;:23;;15748:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15931:6;15915:13;:22;15895:9;:17;15905:6;15895:17;;;;;;;;;;;;;;;:42;;;;15983:6;15959:9;:20;15969:9;15959:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16024:9;16007:35;;16016:6;16007:35;;;16035:6;16007:35;;;;;;:::i;:::-;;;;;;;;16055:46;16075:6;16083:9;16094:6;16055:19;:46::i;:::-;15460:649;15339:770;;;:::o;41260:1607::-;41299:23;41325:24;41343:4;41325:9;:24::i;:::-;41299:50;;41360:25;41422:12;;41388:18;;:46;;;;:::i;:::-;41360:74;;41445:12;41493:1;41474:15;:20;:46;;;;41519:1;41498:17;:22;41474:46;41470:85;;;41537:7;;;;;41470:85;41610:2;41589:18;;:23;;;;:::i;:::-;41571:15;:41;41567:115;;;41668:2;41647:18;;:23;;;;:::i;:::-;41629:41;;41567:115;41743:23;41856:1;41823:17;41788:18;;41770:15;:36;;;;:::i;:::-;41769:71;;;;:::i;:::-;:88;;;;:::i;:::-;41743:114;;41868:26;41897:55;41938:13;;41897:36;41917:15;41897;:19;;:36;;;;:::i;:::-;:40;;:55;;;;:::i;:::-;41868:84;;41965:25;41993:21;41965:49;;42027:36;42044:18;42027:16;:36::i;:::-;42076:18;42097:44;42123:17;42097:21;:25;;:44;;;;:::i;:::-;42076:65;;42154:17;42174:51;42207:17;42174:28;42189:12;;42174:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;42154:71;;42238:23;42277:9;42264:10;:22;;;;:::i;:::-;42238:48;;42317:1;42301:13;;:17;42297:109;;;42331:62;42355:4;42370:6;42379:13;;42331:15;:62::i;:::-;42297:109;42439:1;42418:18;:22;;;;42467:1;42451:13;:17;;;;42494:1;42479:12;:16;;;;42532:9;;;;;;;;;;;42524:23;;42555:9;42524:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42510:59;;;;;42604:1;42586:15;:19;:42;;;;;42627:1;42609:15;:19;42586:42;42582:278;;;42645:46;42658:15;42675;42645:12;:46::i;:::-;42711:137;42744:18;42781:15;42815:18;;42711:137;;;;;;;;:::i;:::-;;;;;;;;42582:278;41288:1579;;;;;;;;;41260:1607;:::o;43438:788::-;43495:4;43529:15;43512:14;:32;;;;43599:28;43630:4;:14;;;43645:13;;;;;;;;;;;43630:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43599:60;;43709:20;43732:77;43793:5;43732:42;43757:16;;43732:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;43709:100;;43929:1;43914:12;:16;43910:110;;;43947:61;43963:13;;;;;;;;;;;43986:6;43995:12;43947:15;:61::i;:::-;43910:110;44095:19;44132:13;;;;;;;;;;;44095:51;;44157:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44184:12;;;;;;;;;;44214:4;44207:11;;;;;43438:788;:::o;19137:125::-;;;;:::o;19866:124::-;;;;:::o;23249:98::-;23307:7;23338:1;23334;:5;;;;:::i;:::-;23327:12;;23249:98;;;;:::o;40138:589::-;40264:21;40302:1;40288:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40264:40;;40333:4;40315;40320:1;40315:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40359:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40349:4;40354:1;40349:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40394:62;40411:4;40426:15;40444:11;40394:8;:62::i;:::-;40495:15;:66;;;40576:11;40602:1;40646:4;40673;40693:15;40495:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40193:534;40138:589;:::o;40735:517::-;40883:62;40900:4;40915:15;40933:11;40883:8;:62::i;:::-;40988:15;:31;;;41027:9;41060:4;41080:11;41106:1;41149;27256:6;41218:15;40988:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40735:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:151::-;4250:9;4283:37;4314:5;4283:37;:::i;:::-;4270:50;;4175:151;;;:::o;4332:181::-;4444:62;4500:5;4444:62;:::i;:::-;4439:3;4432:75;4332:181;;:::o;4519:272::-;4637:4;4675:2;4664:9;4660:18;4652:26;;4688:96;4781:1;4770:9;4766:17;4757:6;4688:96;:::i;:::-;4519:272;;;;:::o;4797:118::-;4884:24;4902:5;4884:24;:::i;:::-;4879:3;4872:37;4797:118;;:::o;4921:222::-;5014:4;5052:2;5041:9;5037:18;5029:26;;5065:71;5133:1;5122:9;5118:17;5109:6;5065:71;:::i;:::-;4921:222;;;;:::o;5149:329::-;5208:6;5257:2;5245:9;5236:7;5232:23;5228:32;5225:119;;;5263:79;;:::i;:::-;5225:119;5383:1;5408:53;5453:7;5444:6;5433:9;5429:22;5408:53;:::i;:::-;5398:63;;5354:117;5149:329;;;;:::o;5484:619::-;5561:6;5569;5577;5626:2;5614:9;5605:7;5601:23;5597:32;5594:119;;;5632:79;;:::i;:::-;5594:119;5752:1;5777:53;5822:7;5813:6;5802:9;5798:22;5777:53;:::i;:::-;5767:63;;5723:117;5879:2;5905:53;5950:7;5941:6;5930:9;5926:22;5905:53;:::i;:::-;5895:63;;5850:118;6007:2;6033:53;6078:7;6069:6;6058:9;6054:22;6033:53;:::i;:::-;6023:63;;5978:118;5484:619;;;;;:::o;6109:118::-;6196:24;6214:5;6196:24;:::i;:::-;6191:3;6184:37;6109:118;;:::o;6233:222::-;6326:4;6364:2;6353:9;6349:18;6341:26;;6377:71;6445:1;6434:9;6430:17;6421:6;6377:71;:::i;:::-;6233:222;;;;:::o;6461:86::-;6496:7;6536:4;6529:5;6525:16;6514:27;;6461:86;;;:::o;6553:112::-;6636:22;6652:5;6636:22;:::i;:::-;6631:3;6624:35;6553:112;;:::o;6671:214::-;6760:4;6798:2;6787:9;6783:18;6775:26;;6811:67;6875:1;6864:9;6860:17;6851:6;6811:67;:::i;:::-;6671:214;;;;:::o;6891:116::-;6961:21;6976:5;6961:21;:::i;:::-;6954:5;6951:32;6941:60;;6997:1;6994;6987:12;6941:60;6891:116;:::o;7013:133::-;7056:5;7094:6;7081:20;7072:29;;7110:30;7134:5;7110:30;:::i;:::-;7013:133;;;;:::o;7152:613::-;7226:6;7234;7242;7291:2;7279:9;7270:7;7266:23;7262:32;7259:119;;;7297:79;;:::i;:::-;7259:119;7417:1;7442:53;7487:7;7478:6;7467:9;7463:22;7442:53;:::i;:::-;7432:63;;7388:117;7544:2;7570:53;7615:7;7606:6;7595:9;7591:22;7570:53;:::i;:::-;7560:63;;7515:118;7672:2;7698:50;7740:7;7731:6;7720:9;7716:22;7698:50;:::i;:::-;7688:60;;7643:115;7152:613;;;;;:::o;7771:468::-;7836:6;7844;7893:2;7881:9;7872:7;7868:23;7864:32;7861:119;;;7899:79;;:::i;:::-;7861:119;8019:1;8044:53;8089:7;8080:6;8069:9;8065:22;8044:53;:::i;:::-;8034:63;;7990:117;8146:2;8172:50;8214:7;8205:6;8194:9;8190:22;8172:50;:::i;:::-;8162:60;;8117:115;7771:468;;;;;:::o;8245:619::-;8322:6;8330;8338;8387:2;8375:9;8366:7;8362:23;8358:32;8355:119;;;8393:79;;:::i;:::-;8355:119;8513:1;8538:53;8583:7;8574:6;8563:9;8559:22;8538:53;:::i;:::-;8528:63;;8484:117;8640:2;8666:53;8711:7;8702:6;8691:9;8687:22;8666:53;:::i;:::-;8656:63;;8611:118;8768:2;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8739:118;8245:619;;;;;:::o;8870:323::-;8926:6;8975:2;8963:9;8954:7;8950:23;8946:32;8943:119;;;8981:79;;:::i;:::-;8943:119;9101:1;9126:50;9168:7;9159:6;9148:9;9144:22;9126:50;:::i;:::-;9116:60;;9072:114;8870:323;;;;:::o;9199:474::-;9267:6;9275;9324:2;9312:9;9303:7;9299:23;9295:32;9292:119;;;9330:79;;:::i;:::-;9292:119;9450:1;9475:53;9520:7;9511:6;9500:9;9496:22;9475:53;:::i;:::-;9465:63;;9421:117;9577:2;9603:53;9648:7;9639:6;9628:9;9624:22;9603:53;:::i;:::-;9593:63;;9548:118;9199:474;;;;;:::o;9679:180::-;9727:77;9724:1;9717:88;9824:4;9821:1;9814:15;9848:4;9845:1;9838:15;9865:320;9909:6;9946:1;9940:4;9936:12;9926:22;;9993:1;9987:4;9983:12;10014:18;10004:81;;10070:4;10062:6;10058:17;10048:27;;10004:81;10132:2;10124:6;10121:14;10101:18;10098:38;10095:84;;;10151:18;;:::i;:::-;10095:84;9916:269;9865:320;;;:::o;10191:182::-;10331:34;10327:1;10319:6;10315:14;10308:58;10191:182;:::o;10379:366::-;10521:3;10542:67;10606:2;10601:3;10542:67;:::i;:::-;10535:74;;10618:93;10707:3;10618:93;:::i;:::-;10736:2;10731:3;10727:12;10720:19;;10379:366;;;:::o;10751:419::-;10917:4;10955:2;10944:9;10940:18;10932:26;;11004:9;10998:4;10994:20;10990:1;10979:9;10975:17;10968:47;11032:131;11158:4;11032:131;:::i;:::-;11024:139;;10751:419;;;:::o;11176:180::-;11224:77;11221:1;11214:88;11321:4;11318:1;11311:15;11345:4;11342:1;11335:15;11362:348;11402:7;11425:20;11443:1;11425:20;:::i;:::-;11420:25;;11459:20;11477:1;11459:20;:::i;:::-;11454:25;;11647:1;11579:66;11575:74;11572:1;11569:81;11564:1;11557:9;11550:17;11546:105;11543:131;;;11654:18;;:::i;:::-;11543:131;11702:1;11699;11695:9;11684:20;;11362:348;;;;:::o;11716:180::-;11764:77;11761:1;11754:88;11861:4;11858:1;11851:15;11885:4;11882:1;11875:15;11902:185;11942:1;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12032:1;12022:35;;12037:18;;:::i;:::-;12022:35;12079:1;12076;12072:9;12067:14;;11902:185;;;;:::o;12093:234::-;12233:34;12229:1;12221:6;12217:14;12210:58;12302:17;12297:2;12289:6;12285:15;12278:42;12093:234;:::o;12333:366::-;12475:3;12496:67;12560:2;12555:3;12496:67;:::i;:::-;12489:74;;12572:93;12661:3;12572:93;:::i;:::-;12690:2;12685:3;12681:12;12674:19;;12333:366;;;:::o;12705:419::-;12871:4;12909:2;12898:9;12894:18;12886:26;;12958:9;12952:4;12948:20;12944:1;12933:9;12929:17;12922:47;12986:131;13112:4;12986:131;:::i;:::-;12978:139;;12705:419;;;:::o;13130:227::-;13270:34;13266:1;13258:6;13254:14;13247:58;13339:10;13334:2;13326:6;13322:15;13315:35;13130:227;:::o;13363:366::-;13505:3;13526:67;13590:2;13585:3;13526:67;:::i;:::-;13519:74;;13602:93;13691:3;13602:93;:::i;:::-;13720:2;13715:3;13711:12;13704:19;;13363:366;;;:::o;13735:419::-;13901:4;13939:2;13928:9;13924:18;13916:26;;13988:9;13982:4;13978:20;13974:1;13963:9;13959:17;13952:47;14016:131;14142:4;14016:131;:::i;:::-;14008:139;;13735:419;;;:::o;14160:305::-;14200:3;14219:20;14237:1;14219:20;:::i;:::-;14214:25;;14253:20;14271:1;14253:20;:::i;:::-;14248:25;;14407:1;14339:66;14335:74;14332:1;14329:81;14326:107;;;14413:18;;:::i;:::-;14326:107;14457:1;14454;14450:9;14443:16;;14160:305;;;;:::o;14471:238::-;14611:34;14607:1;14599:6;14595:14;14588:58;14680:21;14675:2;14667:6;14663:15;14656:46;14471:238;:::o;14715:366::-;14857:3;14878:67;14942:2;14937:3;14878:67;:::i;:::-;14871:74;;14954:93;15043:3;14954:93;:::i;:::-;15072:2;15067:3;15063:12;15056:19;;14715:366;;;:::o;15087:419::-;15253:4;15291:2;15280:9;15276:18;15268:26;;15340:9;15334:4;15330:20;15326:1;15315:9;15311:17;15304:47;15368:131;15494:4;15368:131;:::i;:::-;15360:139;;15087:419;;;:::o;15512:235::-;15652:34;15648:1;15640:6;15636:14;15629:58;15721:18;15716:2;15708:6;15704:15;15697:43;15512:235;:::o;15753:366::-;15895:3;15916:67;15980:2;15975:3;15916:67;:::i;:::-;15909:74;;15992:93;16081:3;15992:93;:::i;:::-;16110:2;16105:3;16101:12;16094:19;;15753:366;;;:::o;16125:419::-;16291:4;16329:2;16318:9;16314:18;16306:26;;16378:9;16372:4;16368:20;16364:1;16353:9;16349:17;16342:47;16406:131;16532:4;16406:131;:::i;:::-;16398:139;;16125:419;;;:::o;16550:178::-;16690:30;16686:1;16678:6;16674:14;16667:54;16550:178;:::o;16734:366::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:419::-;17272:4;17310:2;17299:9;17295:18;17287:26;;17359:9;17353:4;17349:20;17345:1;17334:9;17330:17;17323:47;17387:131;17513:4;17387:131;:::i;:::-;17379:139;;17106:419;;;:::o;17531:244::-;17671:34;17667:1;17659:6;17655:14;17648:58;17740:27;17735:2;17727:6;17723:15;17716:52;17531:244;:::o;17781:366::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:419::-;18319:4;18357:2;18346:9;18342:18;18334:26;;18406:9;18400:4;18396:20;18392:1;18381:9;18377:17;18370:47;18434:131;18560:4;18434:131;:::i;:::-;18426:139;;18153:419;;;:::o;18578:224::-;18718:34;18714:1;18706:6;18702:14;18695:58;18787:7;18782:2;18774:6;18770:15;18763:32;18578:224;:::o;18808:366::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:419::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:131;19587:4;19461:131;:::i;:::-;19453:139;;19180:419;;;:::o;19605:179::-;19745:31;19741:1;19733:6;19729:14;19722:55;19605:179;:::o;19790:366::-;19932:3;19953:67;20017:2;20012:3;19953:67;:::i;:::-;19946:74;;20029:93;20118:3;20029:93;:::i;:::-;20147:2;20142:3;20138:12;20131:19;;19790:366;;;:::o;20162:419::-;20328:4;20366:2;20355:9;20351:18;20343:26;;20415:9;20409:4;20405:20;20401:1;20390:9;20386:17;20379:47;20443:131;20569:4;20443:131;:::i;:::-;20435:139;;20162:419;;;:::o;20587:223::-;20727:34;20723:1;20715:6;20711:14;20704:58;20796:6;20791:2;20783:6;20779:15;20772:31;20587:223;:::o;20816:366::-;20958:3;20979:67;21043:2;21038:3;20979:67;:::i;:::-;20972:74;;21055:93;21144:3;21055:93;:::i;:::-;21173:2;21168:3;21164:12;21157:19;;20816:366;;;:::o;21188:419::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21441:9;21435:4;21431:20;21427:1;21416:9;21412:17;21405:47;21469:131;21595:4;21469:131;:::i;:::-;21461:139;;21188:419;;;:::o;21613:240::-;21753:34;21749:1;21741:6;21737:14;21730:58;21822:23;21817:2;21809:6;21805:15;21798:48;21613:240;:::o;21859:366::-;22001:3;22022:67;22086:2;22081:3;22022:67;:::i;:::-;22015:74;;22098:93;22187:3;22098:93;:::i;:::-;22216:2;22211:3;22207:12;22200:19;;21859:366;;;:::o;22231:419::-;22397:4;22435:2;22424:9;22420:18;22412:26;;22484:9;22478:4;22474:20;22470:1;22459:9;22455:17;22448:47;22512:131;22638:4;22512:131;:::i;:::-;22504:139;;22231:419;;;:::o;22656:239::-;22796:34;22792:1;22784:6;22780:14;22773:58;22865:22;22860:2;22852:6;22848:15;22841:47;22656:239;:::o;22901:366::-;23043:3;23064:67;23128:2;23123:3;23064:67;:::i;:::-;23057:74;;23140:93;23229:3;23140:93;:::i;:::-;23258:2;23253:3;23249:12;23242:19;;22901:366;;;:::o;23273:419::-;23439:4;23477:2;23466:9;23462:18;23454:26;;23526:9;23520:4;23516:20;23512:1;23501:9;23497:17;23490:47;23554:131;23680:4;23554:131;:::i;:::-;23546:139;;23273:419;;;:::o;23698:225::-;23838:34;23834:1;23826:6;23822:14;23815:58;23907:8;23902:2;23894:6;23890:15;23883:33;23698:225;:::o;23929:366::-;24071:3;24092:67;24156:2;24151:3;24092:67;:::i;:::-;24085:74;;24168:93;24257:3;24168:93;:::i;:::-;24286:2;24281:3;24277:12;24270:19;;23929:366;;;:::o;24301:419::-;24467:4;24505:2;24494:9;24490:18;24482:26;;24554:9;24548:4;24544:20;24540:1;24529:9;24525:17;24518:47;24582:131;24708:4;24582:131;:::i;:::-;24574:139;;24301:419;;;:::o;24726:182::-;24866:34;24862:1;24854:6;24850:14;24843:58;24726:182;:::o;24914:366::-;25056:3;25077:67;25141:2;25136:3;25077:67;:::i;:::-;25070:74;;25153:93;25242:3;25153:93;:::i;:::-;25271:2;25266:3;25262:12;25255:19;;24914:366;;;:::o;25286:419::-;25452:4;25490:2;25479:9;25475:18;25467:26;;25539:9;25533:4;25529:20;25525:1;25514:9;25510:17;25503:47;25567:131;25693:4;25567:131;:::i;:::-;25559:139;;25286:419;;;:::o;25711:229::-;25851:34;25847:1;25839:6;25835:14;25828:58;25920:12;25915:2;25907:6;25903:15;25896:37;25711:229;:::o;25946:366::-;26088:3;26109:67;26173:2;26168:3;26109:67;:::i;:::-;26102:74;;26185:93;26274:3;26185:93;:::i;:::-;26303:2;26298:3;26294:12;26287:19;;25946:366;;;:::o;26318:419::-;26484:4;26522:2;26511:9;26507:18;26499:26;;26571:9;26565:4;26561:20;26557:1;26546:9;26542:17;26535:47;26599:131;26725:4;26599:131;:::i;:::-;26591:139;;26318:419;;;:::o;26743:143::-;26800:5;26831:6;26825:13;26816:22;;26847:33;26874:5;26847:33;:::i;:::-;26743:143;;;;:::o;26892:351::-;26962:6;27011:2;26999:9;26990:7;26986:23;26982:32;26979:119;;;27017:79;;:::i;:::-;26979:119;27137:1;27162:64;27218:7;27209:6;27198:9;27194:22;27162:64;:::i;:::-;27152:74;;27108:128;26892:351;;;;:::o;27249:223::-;27389:34;27385:1;27377:6;27373:14;27366:58;27458:6;27453:2;27445:6;27441:15;27434:31;27249:223;:::o;27478:366::-;27620:3;27641:67;27705:2;27700:3;27641:67;:::i;:::-;27634:74;;27717:93;27806:3;27717:93;:::i;:::-;27835:2;27830:3;27826:12;27819:19;;27478:366;;;:::o;27850:419::-;28016:4;28054:2;28043:9;28039:18;28031:26;;28103:9;28097:4;28093:20;28089:1;28078:9;28074:17;28067:47;28131:131;28257:4;28131:131;:::i;:::-;28123:139;;27850:419;;;:::o;28275:221::-;28415:34;28411:1;28403:6;28399:14;28392:58;28484:4;28479:2;28471:6;28467:15;28460:29;28275:221;:::o;28502:366::-;28644:3;28665:67;28729:2;28724:3;28665:67;:::i;:::-;28658:74;;28741:93;28830:3;28741:93;:::i;:::-;28859:2;28854:3;28850:12;28843:19;;28502:366;;;:::o;28874:419::-;29040:4;29078:2;29067:9;29063:18;29055:26;;29127:9;29121:4;29117:20;29113:1;29102:9;29098:17;29091:47;29155:131;29281:4;29155:131;:::i;:::-;29147:139;;28874:419;;;:::o;29299:224::-;29439:34;29435:1;29427:6;29423:14;29416:58;29508:7;29503:2;29495:6;29491:15;29484:32;29299:224;:::o;29529:366::-;29671:3;29692:67;29756:2;29751:3;29692:67;:::i;:::-;29685:74;;29768:93;29857:3;29768:93;:::i;:::-;29886:2;29881:3;29877:12;29870:19;;29529:366;;;:::o;29901:419::-;30067:4;30105:2;30094:9;30090:18;30082:26;;30154:9;30148:4;30144:20;30140:1;30129:9;30125:17;30118:47;30182:131;30308:4;30182:131;:::i;:::-;30174:139;;29901:419;;;:::o;30326:222::-;30466:34;30462:1;30454:6;30450:14;30443:58;30535:5;30530:2;30522:6;30518:15;30511:30;30326:222;:::o;30554:366::-;30696:3;30717:67;30781:2;30776:3;30717:67;:::i;:::-;30710:74;;30793:93;30882:3;30793:93;:::i;:::-;30911:2;30906:3;30902:12;30895:19;;30554:366;;;:::o;30926:419::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;30926:419;;;:::o;31351:172::-;31491:24;31487:1;31479:6;31475:14;31468:48;31351:172;:::o;31529:366::-;31671:3;31692:67;31756:2;31751:3;31692:67;:::i;:::-;31685:74;;31768:93;31857:3;31768:93;:::i;:::-;31886:2;31881:3;31877:12;31870:19;;31529:366;;;:::o;31901:419::-;32067:4;32105:2;32094:9;32090:18;32082:26;;32154:9;32148:4;32144:20;32140:1;32129:9;32125:17;32118:47;32182:131;32308:4;32182:131;:::i;:::-;32174:139;;31901:419;;;:::o;32326:297::-;32466:34;32462:1;32454:6;32450:14;32443:58;32535:34;32530:2;32522:6;32518:15;32511:59;32604:11;32599:2;32591:6;32587:15;32580:36;32326:297;:::o;32629:366::-;32771:3;32792:67;32856:2;32851:3;32792:67;:::i;:::-;32785:74;;32868:93;32957:3;32868:93;:::i;:::-;32986:2;32981:3;32977:12;32970:19;;32629:366;;;:::o;33001:419::-;33167:4;33205:2;33194:9;33190:18;33182:26;;33254:9;33248:4;33244:20;33240:1;33229:9;33225:17;33218:47;33282:131;33408:4;33282:131;:::i;:::-;33274:139;;33001:419;;;:::o;33426:240::-;33566:34;33562:1;33554:6;33550:14;33543:58;33635:23;33630:2;33622:6;33618:15;33611:48;33426:240;:::o;33672:366::-;33814:3;33835:67;33899:2;33894:3;33835:67;:::i;:::-;33828:74;;33911:93;34000:3;33911:93;:::i;:::-;34029:2;34024:3;34020:12;34013:19;;33672:366;;;:::o;34044:419::-;34210:4;34248:2;34237:9;34233:18;34225:26;;34297:9;34291:4;34287:20;34283:1;34272:9;34268:17;34261:47;34325:131;34451:4;34325:131;:::i;:::-;34317:139;;34044:419;;;:::o;34469:169::-;34609:21;34605:1;34597:6;34593:14;34586:45;34469:169;:::o;34644:366::-;34786:3;34807:67;34871:2;34866:3;34807:67;:::i;:::-;34800:74;;34883:93;34972:3;34883:93;:::i;:::-;35001:2;34996:3;34992:12;34985:19;;34644:366;;;:::o;35016:419::-;35182:4;35220:2;35209:9;35205:18;35197:26;;35269:9;35263:4;35259:20;35255:1;35244:9;35240:17;35233:47;35297:131;35423:4;35297:131;:::i;:::-;35289:139;;35016:419;;;:::o;35441:241::-;35581:34;35577:1;35569:6;35565:14;35558:58;35650:24;35645:2;35637:6;35633:15;35626:49;35441:241;:::o;35688:366::-;35830:3;35851:67;35915:2;35910:3;35851:67;:::i;:::-;35844:74;;35927:93;36016:3;35927:93;:::i;:::-;36045:2;36040:3;36036:12;36029:19;;35688:366;;;:::o;36060:419::-;36226:4;36264:2;36253:9;36249:18;36241:26;;36313:9;36307:4;36303:20;36299:1;36288:9;36284:17;36277:47;36341:131;36467:4;36341:131;:::i;:::-;36333:139;;36060:419;;;:::o;36485:191::-;36525:4;36545:20;36563:1;36545:20;:::i;:::-;36540:25;;36579:20;36597:1;36579:20;:::i;:::-;36574:25;;36618:1;36615;36612:8;36609:34;;;36623:18;;:::i;:::-;36609:34;36668:1;36665;36661:9;36653:17;;36485:191;;;;:::o;36682:225::-;36822:34;36818:1;36810:6;36806:14;36799:58;36891:8;36886:2;36878:6;36874:15;36867:33;36682:225;:::o;36913:366::-;37055:3;37076:67;37140:2;37135:3;37076:67;:::i;:::-;37069:74;;37152:93;37241:3;37152:93;:::i;:::-;37270:2;37265:3;37261:12;37254:19;;36913:366;;;:::o;37285:419::-;37451:4;37489:2;37478:9;37474:18;37466:26;;37538:9;37532:4;37528:20;37524:1;37513:9;37509:17;37502:47;37566:131;37692:4;37566:131;:::i;:::-;37558:139;;37285:419;;;:::o;37710:147::-;37811:11;37848:3;37833:18;;37710:147;;;;:::o;37863:114::-;;:::o;37983:398::-;38142:3;38163:83;38244:1;38239:3;38163:83;:::i;:::-;38156:90;;38255:93;38344:3;38255:93;:::i;:::-;38373:1;38368:3;38364:11;38357:18;;37983:398;;;:::o;38387:379::-;38571:3;38593:147;38736:3;38593:147;:::i;:::-;38586:154;;38757:3;38750:10;;38387:379;;;:::o;38772:442::-;38921:4;38959:2;38948:9;38944:18;38936:26;;38972:71;39040:1;39029:9;39025:17;39016:6;38972:71;:::i;:::-;39053:72;39121:2;39110:9;39106:18;39097:6;39053:72;:::i;:::-;39135;39203:2;39192:9;39188:18;39179:6;39135:72;:::i;:::-;38772:442;;;;;;:::o;39220:180::-;39268:77;39265:1;39258:88;39365:4;39362:1;39355:15;39389:4;39386:1;39379:15;39406:180;39454:77;39451:1;39444:88;39551:4;39548:1;39541:15;39575:4;39572:1;39565:15;39592:143;39649:5;39680:6;39674:13;39665:22;;39696:33;39723:5;39696:33;:::i;:::-;39592:143;;;;:::o;39741:351::-;39811:6;39860:2;39848:9;39839:7;39835:23;39831:32;39828:119;;;39866:79;;:::i;:::-;39828:119;39986:1;40011:64;40067:7;40058:6;40047:9;40043:22;40011:64;:::i;:::-;40001:74;;39957:128;39741:351;;;;:::o;40098:85::-;40143:7;40172:5;40161:16;;40098:85;;;:::o;40189:158::-;40247:9;40280:61;40298:42;40307:32;40333:5;40307:32;:::i;:::-;40298:42;:::i;:::-;40280:61;:::i;:::-;40267:74;;40189:158;;;:::o;40353:147::-;40448:45;40487:5;40448:45;:::i;:::-;40443:3;40436:58;40353:147;;:::o;40506:114::-;40573:6;40607:5;40601:12;40591:22;;40506:114;;;:::o;40626:184::-;40725:11;40759:6;40754:3;40747:19;40799:4;40794:3;40790:14;40775:29;;40626:184;;;;:::o;40816:132::-;40883:4;40906:3;40898:11;;40936:4;40931:3;40927:14;40919:22;;40816:132;;;:::o;40954:108::-;41031:24;41049:5;41031:24;:::i;:::-;41026:3;41019:37;40954:108;;:::o;41068:179::-;41137:10;41158:46;41200:3;41192:6;41158:46;:::i;:::-;41236:4;41231:3;41227:14;41213:28;;41068:179;;;;:::o;41253:113::-;41323:4;41355;41350:3;41346:14;41338:22;;41253:113;;;:::o;41402:732::-;41521:3;41550:54;41598:5;41550:54;:::i;:::-;41620:86;41699:6;41694:3;41620:86;:::i;:::-;41613:93;;41730:56;41780:5;41730:56;:::i;:::-;41809:7;41840:1;41825:284;41850:6;41847:1;41844:13;41825:284;;;41926:6;41920:13;41953:63;42012:3;41997:13;41953:63;:::i;:::-;41946:70;;42039:60;42092:6;42039:60;:::i;:::-;42029:70;;41885:224;41872:1;41869;41865:9;41860:14;;41825:284;;;41829:14;42125:3;42118:10;;41526:608;;;41402:732;;;;:::o;42140:831::-;42403:4;42441:3;42430:9;42426:19;42418:27;;42455:71;42523:1;42512:9;42508:17;42499:6;42455:71;:::i;:::-;42536:80;42612:2;42601:9;42597:18;42588:6;42536:80;:::i;:::-;42663:9;42657:4;42653:20;42648:2;42637:9;42633:18;42626:48;42691:108;42794:4;42785:6;42691:108;:::i;:::-;42683:116;;42809:72;42877:2;42866:9;42862:18;42853:6;42809:72;:::i;:::-;42891:73;42959:3;42948:9;42944:19;42935:6;42891:73;:::i;:::-;42140:831;;;;;;;;:::o;42977:807::-;43226:4;43264:3;43253:9;43249:19;43241:27;;43278:71;43346:1;43335:9;43331:17;43322:6;43278:71;:::i;:::-;43359:72;43427:2;43416:9;43412:18;43403:6;43359:72;:::i;:::-;43441:80;43517:2;43506:9;43502:18;43493:6;43441:80;:::i;:::-;43531;43607:2;43596:9;43592:18;43583:6;43531:80;:::i;:::-;43621:73;43689:3;43678:9;43674:19;43665:6;43621:73;:::i;:::-;43704;43772:3;43761:9;43757:19;43748:6;43704:73;:::i;:::-;42977:807;;;;;;;;;:::o;43790:663::-;43878:6;43886;43894;43943:2;43931:9;43922:7;43918:23;43914:32;43911:119;;;43949:79;;:::i;:::-;43911:119;44069:1;44094:64;44150:7;44141:6;44130:9;44126:22;44094:64;:::i;:::-;44084:74;;44040:128;44207:2;44233:64;44289:7;44280:6;44269:9;44265:22;44233:64;:::i;:::-;44223:74;;44178:129;44346:2;44372:64;44428:7;44419:6;44408:9;44404:22;44372:64;:::i;:::-;44362:74;;44317:129;43790:663;;;;;:::o

Swarm Source

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