ETH Price: $3,175.08 (-7.94%)
Gas: 3 Gwei

Token

Vortex (VRTX)
 

Overview

Max Total Supply

1,000,000,000 VRTX

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,055,516.092700620281422415 VRTX

Value
$0.00
0x7cd1220dfc2b311784823482660a28d506f59d87
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:
Vortex

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-19
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable 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 = 25; // 25 = .25%
    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;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellBurnFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

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

    constructor() ERC20("Vortex", "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 _buyBurnFee = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellBurnFee = 1;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buyBurnFee = _buyBurnFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;

        sellBurnFee = _sellBurnFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;

        devWallet = address(0x2531664F873A74bC13190F47E521eAAcc8Fe5708); // 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 enableTrading() 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];
    }

    event BoughtEarly(address indexed sniper);

    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 - tokensForBurn);
                super._transfer(from, address(0xdead), tokensForBurn);
            }

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

        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;

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

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

        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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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"}]

60c06040526019600a556001600b60006101000a81548160ff021916908315150217905550610e10600c55610708600e556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600681526020017f566f7274657800000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f565254580000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000aca565b5080600490805190602001906200014792919062000aca565b5050506200016a6200015e6200058a60201b60201c565b6200059260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200065860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000be4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000be4565b6040518363ffffffff1660e01b8152600401620002e992919062000c27565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000be4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200065860201b60201c565b6200038c60a05160016200074260201b60201c565b60006001905060006001905060006002905060006001905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006007819055506a084595161401484a000000600981905550612710600582620003f7919062000c8d565b62000403919062000d1d565b60088190555086601481905550856015819055508460168190555060165460155460145462000433919062000d55565b6200043f919062000d55565b601381905550836018819055508260198190555081601a81905550601a546019546018546200046f919062000d55565b6200047b919062000d55565b601781905550732531664f873a74bc13190f47e521eaacc8fe5708600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f8620004ea620007e360201b60201c565b60016200080d60201b60201c565b6200050b3060016200080d60201b60201c565b6200052061dead60016200080d60201b60201c565b6200054262000534620007e360201b60201c565b60016200065860201b60201c565b620005553060016200065860201b60201c565b6200056a61dead60016200065860201b60201c565b6200057c33826200094760201b60201c565b505050505050505062000f74565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006686200058a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200068e620007e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006de9062000e13565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081d6200058a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000843620007e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200089c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008939062000e13565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200093b919062000e52565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b19062000ebf565b60405180910390fd5b620009ce6000838362000ac060201b60201c565b8060026000828254620009e2919062000d55565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a39919062000d55565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aa0919062000ef2565b60405180910390a362000abc6000838362000ac560201b60201c565b5050565b505050565b505050565b82805462000ad89062000f3e565b90600052602060002090601f01602090048101928262000afc576000855562000b48565b82601f1062000b1757805160ff191683800117855562000b48565b8280016001018555821562000b48579182015b8281111562000b4757825182559160200191906001019062000b2a565b5b50905062000b57919062000b5b565b5090565b5b8082111562000b7657600081600090555060010162000b5c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bac8262000b7f565b9050919050565b62000bbe8162000b9f565b811462000bca57600080fd5b50565b60008151905062000bde8162000bb3565b92915050565b60006020828403121562000bfd5762000bfc62000b7a565b5b600062000c0d8482850162000bcd565b91505092915050565b62000c218162000b9f565b82525050565b600060408201905062000c3e600083018562000c16565b62000c4d602083018462000c16565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c9a8262000c54565b915062000ca78362000c54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ce35762000ce262000c5e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d2a8262000c54565b915062000d378362000c54565b92508262000d4a5762000d4962000cee565b5b828204905092915050565b600062000d628262000c54565b915062000d6f8362000c54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000da75762000da662000c5e565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dfb60208362000db2565b915062000e088262000dc3565b602082019050919050565b6000602082019050818103600083015262000e2e8162000dec565b9050919050565b60008115159050919050565b62000e4c8162000e35565b82525050565b600060208201905062000e69600083018462000e41565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ea7601f8362000db2565b915062000eb48262000e6f565b602082019050919050565b6000602082019050818103600083015262000eda8162000e98565b9050919050565b62000eec8162000c54565b82525050565b600060208201905062000f09600083018462000ee1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f5757607f821691505b6020821081141562000f6e5762000f6d62000f0f565b5b50919050565b60805160a05161599262000ffc6000396000818161138401528181611b620152818161257b015281816126320152818161265f01528181612ca301528181613ccd01528181613d860152613db3015260008181610f2701528181612c4b01528181613f290152818161400a01528181614031015281816140cd01526140f401526159926000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610d99578063f637434214610dc2578063f8b45b0514610ded578063fe72b27a14610e18576103a2565b8063e2f4560514610ced578063e71dc3f514610d18578063e884f26014610d43578063f11a24d314610d6e576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c1d578063d257b34f14610c48578063d85ba06314610c85578063dd62ed3e14610cb0576103a2565b8063c17b5b8c14610ba0578063c18bc19514610bc9578063c876d0b914610bf2576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610ae4578063b62496f514610b0f578063bbc0c74214610b4c578063c024666814610b77576103a2565b8063a0d82dc514610a14578063a457c2d714610a3f578063a4c82a0014610a7c578063a9059cbb14610aa7576103a2565b80639a7a23d6116101b65780639a7a23d61461096a5780639c3b4fdc146109935780639ec22c0e146109be5780639fccce32146109e9576103a2565b80638ea5220f146108eb578063924de9b71461091657806395d89b411461093f576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a146108575780638095d564146108805780638a8c523c146108a95780638da5cb5b146108c0576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e55565b6040516103c9919061423c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906142f7565b610ee7565b6040516104069190614352565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061436d565b610f05565b6040516104439190614352565b60405180910390f35b34801561045857600080fd5b50610461610f25565b60405161046e91906143f9565b60405180910390f35b34801561048357600080fd5b5061048c610f49565b6040516104999190614423565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061436d565b610f53565b005b3480156104d757600080fd5b506104e061108f565b6040516104ed9190614423565b60405180910390f35b34801561050257600080fd5b5061050b611095565b6040516105189190614423565b60405180910390f35b34801561052d57600080fd5b5061053661109b565b6040516105439190614423565b60405180910390f35b34801561055857600080fd5b506105616110a1565b60405161056e9190614423565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061443e565b6110a7565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061446b565b6111b6565b6040516105d49190614352565b60405180910390f35b3480156105e957600080fd5b506105f26112ae565b6040516105ff91906144cd565b60405180910390f35b34801561061457600080fd5b5061061d6112b4565b60405161062a9190614423565b60405180910390f35b34801561063f57600080fd5b506106486112ba565b6040516106559190614352565b60405180910390f35b34801561066a57600080fd5b506106736112cd565b6040516106809190614504565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906142f7565b6112d6565b6040516106bd9190614352565b60405180910390f35b3480156106d257600080fd5b506106db611382565b6040516106e891906144cd565b60405180910390f35b3480156106fd57600080fd5b506107066113a6565b6040516107139190614352565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061436d565b6113b9565b6040516107509190614352565b60405180910390f35b34801561076557600080fd5b5061076e61140f565b60405161077b9190614423565b60405180910390f35b34801561079057600080fd5b50610799611415565b6040516107a69190614352565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061436d565b611428565b6040516107e39190614423565b60405180910390f35b3480156107f857600080fd5b50610801611470565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061454b565b6114f8565b005b34801561083857600080fd5b50610841611638565b60405161084e9190614352565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061459e565b6116d8565b005b34801561088c57600080fd5b506108a760048036038101906108a291906145de565b6117af565b005b3480156108b557600080fd5b506108be6118ae565b005b3480156108cc57600080fd5b506108d5611969565b6040516108e291906144cd565b60405180910390f35b3480156108f757600080fd5b50610900611993565b60405161090d91906144cd565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190614631565b6119b9565b005b34801561094b57600080fd5b50610954611a52565b604051610961919061423c565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c919061459e565b611ae4565b005b34801561099f57600080fd5b506109a8611bfd565b6040516109b59190614423565b60405180910390f35b3480156109ca57600080fd5b506109d3611c03565b6040516109e09190614423565b60405180910390f35b3480156109f557600080fd5b506109fe611c09565b604051610a0b9190614423565b60405180910390f35b348015610a2057600080fd5b50610a29611c0f565b604051610a369190614423565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a6191906142f7565b611c15565b604051610a739190614352565b60405180910390f35b348015610a8857600080fd5b50610a91611d00565b604051610a9e9190614423565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906142f7565b611d06565b604051610adb9190614352565b60405180910390f35b348015610af057600080fd5b50610af9611d24565b604051610b069190614423565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b31919061436d565b611d2a565b604051610b439190614352565b60405180910390f35b348015610b5857600080fd5b50610b61611d49565b604051610b6e9190614352565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b99919061459e565b611d5c565b005b348015610bac57600080fd5b50610bc76004803603810190610bc291906145de565b611e81565b005b348015610bd557600080fd5b50610bf06004803603810190610beb919061443e565b611f80565b005b348015610bfe57600080fd5b50610c0761208f565b604051610c149190614352565b60405180910390f35b348015610c2957600080fd5b50610c326120a2565b604051610c3f9190614423565b60405180910390f35b348015610c5457600080fd5b50610c6f6004803603810190610c6a919061443e565b6120a8565b604051610c7c9190614352565b60405180910390f35b348015610c9157600080fd5b50610c9a6121fd565b604051610ca79190614423565b60405180910390f35b348015610cbc57600080fd5b50610cd76004803603810190610cd2919061465e565b612203565b604051610ce49190614423565b60405180910390f35b348015610cf957600080fd5b50610d0261228a565b604051610d0f9190614423565b60405180910390f35b348015610d2457600080fd5b50610d2d612290565b604051610d3a9190614423565b60405180910390f35b348015610d4f57600080fd5b50610d58612296565b604051610d659190614352565b60405180910390f35b348015610d7a57600080fd5b50610d83612336565b604051610d909190614423565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb919061436d565b61233c565b005b348015610dce57600080fd5b50610dd7612434565b604051610de49190614423565b60405180910390f35b348015610df957600080fd5b50610e0261243a565b604051610e0f9190614423565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a919061443e565b612440565b604051610e4c9190614352565b60405180910390f35b606060038054610e64906146cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e90906146cd565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b6000610efb610ef4612718565b8484612720565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5b612718565b73ffffffffffffffffffffffffffffffffffffffff16610f79611969565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061474b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b600a5481565b601c5481565b601b5481565b6110af612718565b73ffffffffffffffffffffffffffffffffffffffff166110cd611969565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a9061474b565b60405180910390fd5b670de0b6b3a76400006103e86001611139610f49565b611143919061479a565b61114d9190614823565b6111579190614823565b811015611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906148c6565b60405180910390fd5b670de0b6b3a7640000816111ad919061479a565b60078190555050565b60006111c38484846128eb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120e612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614958565b60405180910390fd5b6112a28561129a612718565b858403612720565b60019150509392505050565b61dead81565b600c5481565b600b60009054906101000a900460ff1681565b60006012905090565b60006113786112e3612718565b8484600160006112f1612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113739190614978565b612720565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601060009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611478612718565b73ffffffffffffffffffffffffffffffffffffffff16611496611969565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e39061474b565b60405180910390fd5b6114f6600061367b565b565b611500612718565b73ffffffffffffffffffffffffffffffffffffffff1661151e611969565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061474b565b60405180910390fd5b6102588310156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614a40565b60405180910390fd5b6103e882111580156115cc575060008210155b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614ad2565b60405180910390fd5b82600c8190555081600a8190555080600b60006101000a81548160ff021916908315150217905550505050565b6000611642612718565b73ffffffffffffffffffffffffffffffffffffffff16611660611969565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061474b565b60405180910390fd5b6000601060006101000a81548160ff0219169083151502179055506001905090565b6116e0612718565b73ffffffffffffffffffffffffffffffffffffffff166116fe611969565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b9061474b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117b7612718565b73ffffffffffffffffffffffffffffffffffffffff166117d5611969565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118229061474b565b60405180910390fd5b8260148190555081601581905550806016819055506016546015546014546118539190614978565b61185d9190614978565b601381905550600560135411156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614b3e565b60405180910390fd5b505050565b6118b6612718565b73ffffffffffffffffffffffffffffffffffffffff166118d4611969565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119219061474b565b60405180910390fd5b6001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555042600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119c1612718565b73ffffffffffffffffffffffffffffffffffffffff166119df611969565b73ffffffffffffffffffffffffffffffffffffffff1614611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061474b565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b606060048054611a61906146cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8d906146cd565b8015611ada5780601f10611aaf57610100808354040283529160200191611ada565b820191906000526020600020905b815481529060010190602001808311611abd57829003601f168201915b5050505050905090565b611aec612718565b73ffffffffffffffffffffffffffffffffffffffff16611b0a611969565b73ffffffffffffffffffffffffffffffffffffffff1614611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b579061474b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690614bd0565b60405180910390fd5b611bf98282613741565b5050565b60165481565b600f5481565b601d5481565b601a5481565b60008060016000611c24612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614c62565b60405180910390fd5b611cf5611cec612718565b85858403612720565b600191505092915050565b600d5481565b6000611d1a611d13612718565b84846128eb565b6001905092915050565b60185481565b602080528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611d64612718565b73ffffffffffffffffffffffffffffffffffffffff16611d82611969565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9061474b565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e759190614352565b60405180910390a25050565b611e89612718565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611969565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef49061474b565b60405180910390fd5b826018819055508160198190555080601a81905550601a54601954601854611f259190614978565b611f2f9190614978565b60178190555060056017541115611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614cce565b60405180910390fd5b505050565b611f88612718565b73ffffffffffffffffffffffffffffffffffffffff16611fa6611969565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061474b565b60405180910390fd5b670de0b6b3a76400006103e86005612012610f49565b61201c919061479a565b6120269190614823565b6120309190614823565b811015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614d60565b60405180910390fd5b670de0b6b3a764000081612086919061479a565b60098190555050565b601260009054906101000a900460ff1681565b60075481565b60006120b2612718565b73ffffffffffffffffffffffffffffffffffffffff166120d0611969565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d9061474b565b60405180910390fd5b620186a06001612134610f49565b61213e919061479a565b6121489190614823565b82101561218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614df2565b60405180910390fd5b6103e86005612197610f49565b6121a1919061479a565b6121ab9190614823565b8211156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490614e84565b60405180910390fd5b8160088190555060019050919050565b60135481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60145481565b60006122a0612718565b73ffffffffffffffffffffffffffffffffffffffff166122be611969565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b9061474b565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b60155481565b612344612718565b73ffffffffffffffffffffffffffffffffffffffff16612362611969565b73ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af9061474b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614f16565b60405180910390fd5b6124318161367b565b50565b60195481565b60095481565b600061244a612718565b73ffffffffffffffffffffffffffffffffffffffff16612468611969565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b59061474b565b60405180910390fd5b600e54600f546124ce9190614978565b421161250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690614f82565b60405180910390fd5b6103e8821115612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90615014565b60405180910390fd5b42600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125b691906144cd565b602060405180830381865afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f79190615049565b9050600061262261271061261486856137e290919063ffffffff16565b6137f890919063ffffffff16565b9050600081111561265b5761265a7f000000000000000000000000000000000000000000000000000000000000000061dead8361380e565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126c857600080fd5b505af11580156126dc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612787906150e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f79061517a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128de9190614423565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129529061520c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061529e565b60405180910390fd5b60008114156129e5576129e08383600061380e565b613676565b601060009054906101000a900460ff16156130a857612a02611969565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a705750612a40611969565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aa95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ae3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afc5750600560149054906101000a900460ff16155b156130a757601060019054906101000a900460ff16612bf657601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bb65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec9061530a565b60405180910390fd5b5b601260009054906101000a900460ff1615612dbe57612c13611969565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c9a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cf257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dbd5743601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906153c2565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e615750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f0857600754811115612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea290615454565b60405180910390fd5b600954612eb783611428565b82612ec29190614978565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906154c0565b60405180910390fd5b6130a6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fab5750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ffa57600754811115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90615552565b60405180910390fd5b6130a5565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130a45760095461305783611428565b826130629190614978565b11156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a906154c0565b60405180910390fd5b5b5b5b5b5b60006130b330611428565b9050600060085482101590508080156130d85750601060029054906101000a900460ff165b80156130f15750600560149054906101000a900460ff16155b80156131475750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561319d5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f35750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613237576001600560146101000a81548160ff02191690831515021790555061321b613a8f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561329d5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132b55750600b60009054906101000a900460ff165b80156132d05750600c54600d546132cc9190614978565b4210155b80156133265750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333557613333613ca4565b505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133eb5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133f557600090505b6000811561366657602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345857506000601754115b15613513576134856064613477601754886137e290919063ffffffff16565b6137f890919063ffffffff16565b905060175460195482613498919061479a565b6134a29190614823565b601c60008282546134b39190614978565b92505081905550601754601a54826134cb919061479a565b6134d59190614823565b601d60008282546134e69190614978565b92505081905550601754601854826134fe919061479a565b6135089190614823565b601b81905550613626565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356e57506000601354115b156136255761359b606461358d601354886137e290919063ffffffff16565b6137f890919063ffffffff16565b9050601354601554826135ae919061479a565b6135b89190614823565b601c60008282546135c99190614978565b92505081905550601354601654826135e1919061479a565b6135eb9190614823565b601d60008282546135fc9190614978565b9250508190555060135460145482613614919061479a565b61361e9190614823565b601b819055505b5b6000811115613657576136478730601b54846136429190615572565b61380e565b6136568761dead601b5461380e565b5b80856136639190615572565b94505b61367187878761380e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836137f0919061479a565b905092915050565b600081836138069190614823565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561387e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138759061520c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e59061529e565b60405180910390fd5b6138f9838383613e6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561397f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397690615618565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a129190614978565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a769190614423565b60405180910390a3613a89848484613e6f565b50505050565b6000613a9a30611428565b90506000601d54601c54613aae9190614978565b9050600080831480613ac05750600082145b15613acd57505050613ca2565b6014600854613adc919061479a565b831115613af5576014600854613af2919061479a565b92505b6000600283601c5486613b08919061479a565b613b129190614823565b613b1c9190614823565b90506000613b338286613e7490919063ffffffff16565b90506000479050613b4382613e8a565b6000613b588247613e7490919063ffffffff16565b90506000613b8387613b75601d54856137e290919063ffffffff16565b6137f890919063ffffffff16565b905060008183613b939190615572565b90506000601c819055506000601d819055506000601b81905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613bf390615669565b60006040518083038185875af1925050503d8060008114613c30576040519150601f19603f3d011682016040523d82523d6000602084013e613c35565b606091505b505080975050600086118015613c4b5750600081115b15613c9857613c5a86826140c7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601c54604051613c8f9392919061567e565b60405180910390a15b5050505050505050505b565b600042600d8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613d0891906144cd565b602060405180830381865afa158015613d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d499190615049565b90506000613d76612710613d68600a54856137e290919063ffffffff16565b6137f890919063ffffffff16565b90506000811115613daf57613dae7f000000000000000000000000000000000000000000000000000000000000000061dead8361380e565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e1c57600080fd5b505af1158015613e30573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613e829190615572565b905092915050565b6000600267ffffffffffffffff811115613ea757613ea66156b5565b5b604051908082528060200260200182016040528015613ed55781602001602082028036833780820191505090505b5090503081600081518110613eed57613eec6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fb69190615728565b81600181518110613fca57613fc96156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061402f307f000000000000000000000000000000000000000000000000000000000000000084612720565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161409195949392919061584e565b600060405180830381600087803b1580156140ab57600080fd5b505af11580156140bf573d6000803e3d6000fd5b505050505050565b6140f2307f000000000000000000000000000000000000000000000000000000000000000084612720565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614159969594939291906158a8565b60606040518083038185885af1158015614177573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061419c9190615909565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141dd5780820151818401526020810190506141c2565b838111156141ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061420e826141a3565b61421881856141ae565b93506142288185602086016141bf565b614231816141f2565b840191505092915050565b600060208201905081810360008301526142568184614203565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061428e82614263565b9050919050565b61429e81614283565b81146142a957600080fd5b50565b6000813590506142bb81614295565b92915050565b6000819050919050565b6142d4816142c1565b81146142df57600080fd5b50565b6000813590506142f1816142cb565b92915050565b6000806040838503121561430e5761430d61425e565b5b600061431c858286016142ac565b925050602061432d858286016142e2565b9150509250929050565b60008115159050919050565b61434c81614337565b82525050565b60006020820190506143676000830184614343565b92915050565b6000602082840312156143835761438261425e565b5b6000614391848285016142ac565b91505092915050565b6000819050919050565b60006143bf6143ba6143b584614263565b61439a565b614263565b9050919050565b60006143d1826143a4565b9050919050565b60006143e3826143c6565b9050919050565b6143f3816143d8565b82525050565b600060208201905061440e60008301846143ea565b92915050565b61441d816142c1565b82525050565b60006020820190506144386000830184614414565b92915050565b6000602082840312156144545761445361425e565b5b6000614462848285016142e2565b91505092915050565b6000806000606084860312156144845761448361425e565b5b6000614492868287016142ac565b93505060206144a3868287016142ac565b92505060406144b4868287016142e2565b9150509250925092565b6144c781614283565b82525050565b60006020820190506144e260008301846144be565b92915050565b600060ff82169050919050565b6144fe816144e8565b82525050565b600060208201905061451960008301846144f5565b92915050565b61452881614337565b811461453357600080fd5b50565b6000813590506145458161451f565b92915050565b6000806000606084860312156145645761456361425e565b5b6000614572868287016142e2565b9350506020614583868287016142e2565b925050604061459486828701614536565b9150509250925092565b600080604083850312156145b5576145b461425e565b5b60006145c3858286016142ac565b92505060206145d485828601614536565b9150509250929050565b6000806000606084860312156145f7576145f661425e565b5b6000614605868287016142e2565b9350506020614616868287016142e2565b9250506040614627868287016142e2565b9150509250925092565b6000602082840312156146475761464661425e565b5b600061465584828501614536565b91505092915050565b600080604083850312156146755761467461425e565b5b6000614683858286016142ac565b9250506020614694858286016142ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146e557607f821691505b602082108114156146f9576146f861469e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147356020836141ae565b9150614740826146ff565b602082019050919050565b6000602082019050818103600083015261476481614728565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a5826142c1565b91506147b0836142c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147e9576147e861476b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061482e826142c1565b9150614839836142c1565b925082614849576148486147f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148b0602f836141ae565b91506148bb82614854565b604082019050919050565b600060208201905081810360008301526148df816148a3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006149426028836141ae565b915061494d826148e6565b604082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b6000614983826142c1565b915061498e836142c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149c3576149c261476b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a2a6033836141ae565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614abc6030836141ae565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614b28601c836141ae565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614bba6039836141ae565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c6025836141ae565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f4d757374206b656570206665657320617420203525206f72206c657373000000600082015250565b6000614cb8601d836141ae565b9150614cc382614c82565b602082019050919050565b60006020820190508181036000830152614ce781614cab565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d4a6024836141ae565b9150614d5582614cee565b604082019050919050565b60006020820190508181036000830152614d7981614d3d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ddc6035836141ae565b9150614de782614d80565b604082019050919050565b60006020820190508181036000830152614e0b81614dcf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e6e6034836141ae565b9150614e7982614e12565b604082019050919050565b60006020820190508181036000830152614e9d81614e61565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f006026836141ae565b9150614f0b82614ea4565b604082019050919050565b60006020820190508181036000830152614f2f81614ef3565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f6c6020836141ae565b9150614f7782614f36565b602082019050919050565b60006020820190508181036000830152614f9b81614f5f565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614ffe602a836141ae565b915061500982614fa2565b604082019050919050565b6000602082019050818103600083015261502d81614ff1565b9050919050565b600081519050615043816142cb565b92915050565b60006020828403121561505f5761505e61425e565b5b600061506d84828501615034565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150d26024836141ae565b91506150dd82615076565b604082019050919050565b60006020820190508181036000830152615101816150c5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151646022836141ae565b915061516f82615108565b604082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151f66025836141ae565b91506152018261519a565b604082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152886023836141ae565b91506152938261522c565b604082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152f46016836141ae565b91506152ff826152be565b602082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153ac6049836141ae565b91506153b78261532a565b606082019050919050565b600060208201905081810360008301526153db8161539f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061543e6035836141ae565b9150615449826153e2565b604082019050919050565b6000602082019050818103600083015261546d81615431565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154aa6013836141ae565b91506154b582615474565b602082019050919050565b600060208201905081810360008301526154d98161549d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061553c6036836141ae565b9150615547826154e0565b604082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b600061557d826142c1565b9150615588836142c1565b92508282101561559b5761559a61476b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156026026836141ae565b915061560d826155a6565b604082019050919050565b60006020820190508181036000830152615631816155f5565b9050919050565b600081905092915050565b50565b6000615653600083615638565b915061565e82615643565b600082019050919050565b600061567482615646565b9150819050919050565b60006060820190506156936000830186614414565b6156a06020830185614414565b6156ad6040830184614414565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061572281614295565b92915050565b60006020828403121561573e5761573d61425e565b5b600061574c84828501615713565b91505092915050565b6000819050919050565b600061577a61577561577084615755565b61439a565b6142c1565b9050919050565b61578a8161575f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157c581614283565b82525050565b60006157d783836157bc565b60208301905092915050565b6000602082019050919050565b60006157fb82615790565b615805818561579b565b9350615810836157ac565b8060005b8381101561584157815161582888826157cb565b9750615833836157e3565b925050600181019050615814565b5085935050505092915050565b600060a0820190506158636000830188614414565b6158706020830187615781565b818103604083015261588281866157f0565b905061589160608301856144be565b61589e6080830184614414565b9695505050505050565b600060c0820190506158bd60008301896144be565b6158ca6020830188614414565b6158d76040830187615781565b6158e46060830186615781565b6158f160808301856144be565b6158fe60a0830184614414565b979650505050505050565b6000806000606084860312156159225761592161425e565b5b600061593086828701615034565b935050602061594186828701615034565b925050604061595286828701615034565b915050925092509256fea2646970667358221220c16c88f7c260addcd3188814255d08bcb4da95f6818603d55454a15918a4a51564736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610d99578063f637434214610dc2578063f8b45b0514610ded578063fe72b27a14610e18576103a2565b8063e2f4560514610ced578063e71dc3f514610d18578063e884f26014610d43578063f11a24d314610d6e576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c1d578063d257b34f14610c48578063d85ba06314610c85578063dd62ed3e14610cb0576103a2565b8063c17b5b8c14610ba0578063c18bc19514610bc9578063c876d0b914610bf2576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd14610ae4578063b62496f514610b0f578063bbc0c74214610b4c578063c024666814610b77576103a2565b8063a0d82dc514610a14578063a457c2d714610a3f578063a4c82a0014610a7c578063a9059cbb14610aa7576103a2565b80639a7a23d6116101b65780639a7a23d61461096a5780639c3b4fdc146109935780639ec22c0e146109be5780639fccce32146109e9576103a2565b80638ea5220f146108eb578063924de9b71461091657806395d89b411461093f576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a146108575780638095d564146108805780638a8c523c146108a95780638da5cb5b146108c0576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631d7778561461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e55565b6040516103c9919061423c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906142f7565b610ee7565b6040516104069190614352565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061436d565b610f05565b6040516104439190614352565b60405180910390f35b34801561045857600080fd5b50610461610f25565b60405161046e91906143f9565b60405180910390f35b34801561048357600080fd5b5061048c610f49565b6040516104999190614423565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061436d565b610f53565b005b3480156104d757600080fd5b506104e061108f565b6040516104ed9190614423565b60405180910390f35b34801561050257600080fd5b5061050b611095565b6040516105189190614423565b60405180910390f35b34801561052d57600080fd5b5061053661109b565b6040516105439190614423565b60405180910390f35b34801561055857600080fd5b506105616110a1565b60405161056e9190614423565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061443e565b6110a7565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061446b565b6111b6565b6040516105d49190614352565b60405180910390f35b3480156105e957600080fd5b506105f26112ae565b6040516105ff91906144cd565b60405180910390f35b34801561061457600080fd5b5061061d6112b4565b60405161062a9190614423565b60405180910390f35b34801561063f57600080fd5b506106486112ba565b6040516106559190614352565b60405180910390f35b34801561066a57600080fd5b506106736112cd565b6040516106809190614504565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906142f7565b6112d6565b6040516106bd9190614352565b60405180910390f35b3480156106d257600080fd5b506106db611382565b6040516106e891906144cd565b60405180910390f35b3480156106fd57600080fd5b506107066113a6565b6040516107139190614352565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061436d565b6113b9565b6040516107509190614352565b60405180910390f35b34801561076557600080fd5b5061076e61140f565b60405161077b9190614423565b60405180910390f35b34801561079057600080fd5b50610799611415565b6040516107a69190614352565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061436d565b611428565b6040516107e39190614423565b60405180910390f35b3480156107f857600080fd5b50610801611470565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061454b565b6114f8565b005b34801561083857600080fd5b50610841611638565b60405161084e9190614352565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061459e565b6116d8565b005b34801561088c57600080fd5b506108a760048036038101906108a291906145de565b6117af565b005b3480156108b557600080fd5b506108be6118ae565b005b3480156108cc57600080fd5b506108d5611969565b6040516108e291906144cd565b60405180910390f35b3480156108f757600080fd5b50610900611993565b60405161090d91906144cd565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190614631565b6119b9565b005b34801561094b57600080fd5b50610954611a52565b604051610961919061423c565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c919061459e565b611ae4565b005b34801561099f57600080fd5b506109a8611bfd565b6040516109b59190614423565b60405180910390f35b3480156109ca57600080fd5b506109d3611c03565b6040516109e09190614423565b60405180910390f35b3480156109f557600080fd5b506109fe611c09565b604051610a0b9190614423565b60405180910390f35b348015610a2057600080fd5b50610a29611c0f565b604051610a369190614423565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a6191906142f7565b611c15565b604051610a739190614352565b60405180910390f35b348015610a8857600080fd5b50610a91611d00565b604051610a9e9190614423565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906142f7565b611d06565b604051610adb9190614352565b60405180910390f35b348015610af057600080fd5b50610af9611d24565b604051610b069190614423565b60405180910390f35b348015610b1b57600080fd5b50610b366004803603810190610b31919061436d565b611d2a565b604051610b439190614352565b60405180910390f35b348015610b5857600080fd5b50610b61611d49565b604051610b6e9190614352565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b99919061459e565b611d5c565b005b348015610bac57600080fd5b50610bc76004803603810190610bc291906145de565b611e81565b005b348015610bd557600080fd5b50610bf06004803603810190610beb919061443e565b611f80565b005b348015610bfe57600080fd5b50610c0761208f565b604051610c149190614352565b60405180910390f35b348015610c2957600080fd5b50610c326120a2565b604051610c3f9190614423565b60405180910390f35b348015610c5457600080fd5b50610c6f6004803603810190610c6a919061443e565b6120a8565b604051610c7c9190614352565b60405180910390f35b348015610c9157600080fd5b50610c9a6121fd565b604051610ca79190614423565b60405180910390f35b348015610cbc57600080fd5b50610cd76004803603810190610cd2919061465e565b612203565b604051610ce49190614423565b60405180910390f35b348015610cf957600080fd5b50610d0261228a565b604051610d0f9190614423565b60405180910390f35b348015610d2457600080fd5b50610d2d612290565b604051610d3a9190614423565b60405180910390f35b348015610d4f57600080fd5b50610d58612296565b604051610d659190614352565b60405180910390f35b348015610d7a57600080fd5b50610d83612336565b604051610d909190614423565b60405180910390f35b348015610da557600080fd5b50610dc06004803603810190610dbb919061436d565b61233c565b005b348015610dce57600080fd5b50610dd7612434565b604051610de49190614423565b60405180910390f35b348015610df957600080fd5b50610e0261243a565b604051610e0f9190614423565b60405180910390f35b348015610e2457600080fd5b50610e3f6004803603810190610e3a919061443e565b612440565b604051610e4c9190614352565b60405180910390f35b606060038054610e64906146cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e90906146cd565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b5050505050905090565b6000610efb610ef4612718565b8484612720565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f5b612718565b73ffffffffffffffffffffffffffffffffffffffff16610f79611969565b73ffffffffffffffffffffffffffffffffffffffff1614610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061474b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b600a5481565b601c5481565b601b5481565b6110af612718565b73ffffffffffffffffffffffffffffffffffffffff166110cd611969565b73ffffffffffffffffffffffffffffffffffffffff1614611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a9061474b565b60405180910390fd5b670de0b6b3a76400006103e86001611139610f49565b611143919061479a565b61114d9190614823565b6111579190614823565b811015611199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611190906148c6565b60405180910390fd5b670de0b6b3a7640000816111ad919061479a565b60078190555050565b60006111c38484846128eb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120e612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614958565b60405180910390fd5b6112a28561129a612718565b858403612720565b60019150509392505050565b61dead81565b600c5481565b600b60009054906101000a900460ff1681565b60006012905090565b60006113786112e3612718565b8484600160006112f1612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113739190614978565b612720565b6001905092915050565b7f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0181565b601060009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611478612718565b73ffffffffffffffffffffffffffffffffffffffff16611496611969565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e39061474b565b60405180910390fd5b6114f6600061367b565b565b611500612718565b73ffffffffffffffffffffffffffffffffffffffff1661151e611969565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b9061474b565b60405180910390fd5b6102588310156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614a40565b60405180910390fd5b6103e882111580156115cc575060008210155b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614ad2565b60405180910390fd5b82600c8190555081600a8190555080600b60006101000a81548160ff021916908315150217905550505050565b6000611642612718565b73ffffffffffffffffffffffffffffffffffffffff16611660611969565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061474b565b60405180910390fd5b6000601060006101000a81548160ff0219169083151502179055506001905090565b6116e0612718565b73ffffffffffffffffffffffffffffffffffffffff166116fe611969565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b9061474b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117b7612718565b73ffffffffffffffffffffffffffffffffffffffff166117d5611969565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118229061474b565b60405180910390fd5b8260148190555081601581905550806016819055506016546015546014546118539190614978565b61185d9190614978565b601381905550600560135411156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614b3e565b60405180910390fd5b505050565b6118b6612718565b73ffffffffffffffffffffffffffffffffffffffff166118d4611969565b73ffffffffffffffffffffffffffffffffffffffff161461192a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119219061474b565b60405180910390fd5b6001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555042600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119c1612718565b73ffffffffffffffffffffffffffffffffffffffff166119df611969565b73ffffffffffffffffffffffffffffffffffffffff1614611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c9061474b565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b606060048054611a61906146cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8d906146cd565b8015611ada5780601f10611aaf57610100808354040283529160200191611ada565b820191906000526020600020905b815481529060010190602001808311611abd57829003601f168201915b5050505050905090565b611aec612718565b73ffffffffffffffffffffffffffffffffffffffff16611b0a611969565b73ffffffffffffffffffffffffffffffffffffffff1614611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b579061474b565b60405180910390fd5b7f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690614bd0565b60405180910390fd5b611bf98282613741565b5050565b60165481565b600f5481565b601d5481565b601a5481565b60008060016000611c24612718565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890614c62565b60405180910390fd5b611cf5611cec612718565b85858403612720565b600191505092915050565b600d5481565b6000611d1a611d13612718565b84846128eb565b6001905092915050565b60185481565b602080528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611d64612718565b73ffffffffffffffffffffffffffffffffffffffff16611d82611969565b73ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9061474b565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e759190614352565b60405180910390a25050565b611e89612718565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611969565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef49061474b565b60405180910390fd5b826018819055508160198190555080601a81905550601a54601954601854611f259190614978565b611f2f9190614978565b60178190555060056017541115611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614cce565b60405180910390fd5b505050565b611f88612718565b73ffffffffffffffffffffffffffffffffffffffff16611fa6611969565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061474b565b60405180910390fd5b670de0b6b3a76400006103e86005612012610f49565b61201c919061479a565b6120269190614823565b6120309190614823565b811015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614d60565b60405180910390fd5b670de0b6b3a764000081612086919061479a565b60098190555050565b601260009054906101000a900460ff1681565b60075481565b60006120b2612718565b73ffffffffffffffffffffffffffffffffffffffff166120d0611969565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d9061474b565b60405180910390fd5b620186a06001612134610f49565b61213e919061479a565b6121489190614823565b82101561218a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218190614df2565b60405180910390fd5b6103e86005612197610f49565b6121a1919061479a565b6121ab9190614823565b8211156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490614e84565b60405180910390fd5b8160088190555060019050919050565b60135481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60145481565b60006122a0612718565b73ffffffffffffffffffffffffffffffffffffffff166122be611969565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b9061474b565b60405180910390fd5b6000601260006101000a81548160ff0219169083151502179055506001905090565b60155481565b612344612718565b73ffffffffffffffffffffffffffffffffffffffff16612362611969565b73ffffffffffffffffffffffffffffffffffffffff16146123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af9061474b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614f16565b60405180910390fd5b6124318161367b565b50565b60195481565b60095481565b600061244a612718565b73ffffffffffffffffffffffffffffffffffffffff16612468611969565b73ffffffffffffffffffffffffffffffffffffffff16146124be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b59061474b565b60405180910390fd5b600e54600f546124ce9190614978565b421161250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690614f82565b60405180910390fd5b6103e8821115612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90615014565b60405180910390fd5b42600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e016040518263ffffffff1660e01b81526004016125b691906144cd565b602060405180830381865afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f79190615049565b9050600061262261271061261486856137e290919063ffffffff16565b6137f890919063ffffffff16565b9050600081111561265b5761265a7f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0161dead8361380e565b5b60007f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126c857600080fd5b505af11580156126dc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612790576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612787906150e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f79061517a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128de9190614423565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129529061520c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061529e565b60405180910390fd5b60008114156129e5576129e08383600061380e565b613676565b601060009054906101000a900460ff16156130a857612a02611969565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a705750612a40611969565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aa95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ae3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afc5750600560149054906101000a900460ff16155b156130a757601060019054906101000a900460ff16612bf657601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bb65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bec9061530a565b60405180910390fd5b5b601260009054906101000a900460ff1615612dbe57612c13611969565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c9a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cf257507f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dbd5743601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906153c2565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e615750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f0857600754811115612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea290615454565b60405180910390fd5b600954612eb783611428565b82612ec29190614978565b1115612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906154c0565b60405180910390fd5b6130a6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fab5750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ffa57600754811115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90615552565b60405180910390fd5b6130a5565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130a45760095461305783611428565b826130629190614978565b11156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a906154c0565b60405180910390fd5b5b5b5b5b5b60006130b330611428565b9050600060085482101590508080156130d85750601060029054906101000a900460ff165b80156130f15750600560149054906101000a900460ff16155b80156131475750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561319d5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f35750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613237576001600560146101000a81548160ff02191690831515021790555061321b613a8f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561329d5750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132b55750600b60009054906101000a900460ff165b80156132d05750600c54600d546132cc9190614978565b4210155b80156133265750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561333557613333613ca4565b505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133eb5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133f557600090505b6000811561366657602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561345857506000601754115b15613513576134856064613477601754886137e290919063ffffffff16565b6137f890919063ffffffff16565b905060175460195482613498919061479a565b6134a29190614823565b601c60008282546134b39190614978565b92505081905550601754601a54826134cb919061479a565b6134d59190614823565b601d60008282546134e69190614978565b92505081905550601754601854826134fe919061479a565b6135089190614823565b601b81905550613626565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356e57506000601354115b156136255761359b606461358d601354886137e290919063ffffffff16565b6137f890919063ffffffff16565b9050601354601554826135ae919061479a565b6135b89190614823565b601c60008282546135c99190614978565b92505081905550601354601654826135e1919061479a565b6135eb9190614823565b601d60008282546135fc9190614978565b9250508190555060135460145482613614919061479a565b61361e9190614823565b601b819055505b5b6000811115613657576136478730601b54846136429190615572565b61380e565b6136568761dead601b5461380e565b5b80856136639190615572565b94505b61367187878761380e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836137f0919061479a565b905092915050565b600081836138069190614823565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561387e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138759061520c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138e59061529e565b60405180910390fd5b6138f9838383613e6a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561397f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397690615618565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a129190614978565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a769190614423565b60405180910390a3613a89848484613e6f565b50505050565b6000613a9a30611428565b90506000601d54601c54613aae9190614978565b9050600080831480613ac05750600082145b15613acd57505050613ca2565b6014600854613adc919061479a565b831115613af5576014600854613af2919061479a565b92505b6000600283601c5486613b08919061479a565b613b129190614823565b613b1c9190614823565b90506000613b338286613e7490919063ffffffff16565b90506000479050613b4382613e8a565b6000613b588247613e7490919063ffffffff16565b90506000613b8387613b75601d54856137e290919063ffffffff16565b6137f890919063ffffffff16565b905060008183613b939190615572565b90506000601c819055506000601d819055506000601b81905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613bf390615669565b60006040518083038185875af1925050503d8060008114613c30576040519150601f19603f3d011682016040523d82523d6000602084013e613c35565b606091505b505080975050600086118015613c4b5750600081115b15613c9857613c5a86826140c7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601c54604051613c8f9392919061567e565b60405180910390a15b5050505050505050505b565b600042600d8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e016040518263ffffffff1660e01b8152600401613d0891906144cd565b602060405180830381865afa158015613d25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d499190615049565b90506000613d76612710613d68600a54856137e290919063ffffffff16565b6137f890919063ffffffff16565b90506000811115613daf57613dae7f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0161dead8361380e565b5b60007f000000000000000000000000c8b6b540ee28cae99bf4ca1b90f3c2ea19f90e0190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613e1c57600080fd5b505af1158015613e30573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613e829190615572565b905092915050565b6000600267ffffffffffffffff811115613ea757613ea66156b5565b5b604051908082528060200260200182016040528015613ed55781602001602082028036833780820191505090505b5090503081600081518110613eed57613eec6156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fb69190615728565b81600181518110613fca57613fc96156e4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061402f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612720565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161409195949392919061584e565b600060405180830381600087803b1580156140ab57600080fd5b505af11580156140bf573d6000803e3d6000fd5b505050505050565b6140f2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612720565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614159969594939291906158a8565b60606040518083038185885af1158015614177573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061419c9190615909565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141dd5780820151818401526020810190506141c2565b838111156141ec576000848401525b50505050565b6000601f19601f8301169050919050565b600061420e826141a3565b61421881856141ae565b93506142288185602086016141bf565b614231816141f2565b840191505092915050565b600060208201905081810360008301526142568184614203565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061428e82614263565b9050919050565b61429e81614283565b81146142a957600080fd5b50565b6000813590506142bb81614295565b92915050565b6000819050919050565b6142d4816142c1565b81146142df57600080fd5b50565b6000813590506142f1816142cb565b92915050565b6000806040838503121561430e5761430d61425e565b5b600061431c858286016142ac565b925050602061432d858286016142e2565b9150509250929050565b60008115159050919050565b61434c81614337565b82525050565b60006020820190506143676000830184614343565b92915050565b6000602082840312156143835761438261425e565b5b6000614391848285016142ac565b91505092915050565b6000819050919050565b60006143bf6143ba6143b584614263565b61439a565b614263565b9050919050565b60006143d1826143a4565b9050919050565b60006143e3826143c6565b9050919050565b6143f3816143d8565b82525050565b600060208201905061440e60008301846143ea565b92915050565b61441d816142c1565b82525050565b60006020820190506144386000830184614414565b92915050565b6000602082840312156144545761445361425e565b5b6000614462848285016142e2565b91505092915050565b6000806000606084860312156144845761448361425e565b5b6000614492868287016142ac565b93505060206144a3868287016142ac565b92505060406144b4868287016142e2565b9150509250925092565b6144c781614283565b82525050565b60006020820190506144e260008301846144be565b92915050565b600060ff82169050919050565b6144fe816144e8565b82525050565b600060208201905061451960008301846144f5565b92915050565b61452881614337565b811461453357600080fd5b50565b6000813590506145458161451f565b92915050565b6000806000606084860312156145645761456361425e565b5b6000614572868287016142e2565b9350506020614583868287016142e2565b925050604061459486828701614536565b9150509250925092565b600080604083850312156145b5576145b461425e565b5b60006145c3858286016142ac565b92505060206145d485828601614536565b9150509250929050565b6000806000606084860312156145f7576145f661425e565b5b6000614605868287016142e2565b9350506020614616868287016142e2565b9250506040614627868287016142e2565b9150509250925092565b6000602082840312156146475761464661425e565b5b600061465584828501614536565b91505092915050565b600080604083850312156146755761467461425e565b5b6000614683858286016142ac565b9250506020614694858286016142ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146e557607f821691505b602082108114156146f9576146f861469e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147356020836141ae565b9150614740826146ff565b602082019050919050565b6000602082019050818103600083015261476481614728565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a5826142c1565b91506147b0836142c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147e9576147e861476b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061482e826142c1565b9150614839836142c1565b925082614849576148486147f4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148b0602f836141ae565b91506148bb82614854565b604082019050919050565b600060208201905081810360008301526148df816148a3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006149426028836141ae565b915061494d826148e6565b604082019050919050565b6000602082019050818103600083015261497181614935565b9050919050565b6000614983826142c1565b915061498e836142c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149c3576149c261476b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a2a6033836141ae565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614abc6030836141ae565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f4d757374206b6565702066656573206174203525206f72206c65737300000000600082015250565b6000614b28601c836141ae565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614bba6039836141ae565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c4c6025836141ae565b9150614c5782614bf0565b604082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f4d757374206b656570206665657320617420203525206f72206c657373000000600082015250565b6000614cb8601d836141ae565b9150614cc382614c82565b602082019050919050565b60006020820190508181036000830152614ce781614cab565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d4a6024836141ae565b9150614d5582614cee565b604082019050919050565b60006020820190508181036000830152614d7981614d3d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614ddc6035836141ae565b9150614de782614d80565b604082019050919050565b60006020820190508181036000830152614e0b81614dcf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e6e6034836141ae565b9150614e7982614e12565b604082019050919050565b60006020820190508181036000830152614e9d81614e61565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f006026836141ae565b9150614f0b82614ea4565b604082019050919050565b60006020820190508181036000830152614f2f81614ef3565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f6c6020836141ae565b9150614f7782614f36565b602082019050919050565b60006020820190508181036000830152614f9b81614f5f565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614ffe602a836141ae565b915061500982614fa2565b604082019050919050565b6000602082019050818103600083015261502d81614ff1565b9050919050565b600081519050615043816142cb565b92915050565b60006020828403121561505f5761505e61425e565b5b600061506d84828501615034565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150d26024836141ae565b91506150dd82615076565b604082019050919050565b60006020820190508181036000830152615101816150c5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151646022836141ae565b915061516f82615108565b604082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151f66025836141ae565b91506152018261519a565b604082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152886023836141ae565b91506152938261522c565b604082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152f46016836141ae565b91506152ff826152be565b602082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153ac6049836141ae565b91506153b78261532a565b606082019050919050565b600060208201905081810360008301526153db8161539f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061543e6035836141ae565b9150615449826153e2565b604082019050919050565b6000602082019050818103600083015261546d81615431565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154aa6013836141ae565b91506154b582615474565b602082019050919050565b600060208201905081810360008301526154d98161549d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061553c6036836141ae565b9150615547826154e0565b604082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b600061557d826142c1565b9150615588836142c1565b92508282101561559b5761559a61476b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006156026026836141ae565b915061560d826155a6565b604082019050919050565b60006020820190508181036000830152615631816155f5565b9050919050565b600081905092915050565b50565b6000615653600083615638565b915061565e82615643565b600082019050919050565b600061567482615646565b9150819050919050565b60006060820190506156936000830186614414565b6156a06020830185614414565b6156ad6040830184614414565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061572281614295565b92915050565b60006020828403121561573e5761573d61425e565b5b600061574c84828501615713565b91505092915050565b6000819050919050565b600061577a61577561577084615755565b61439a565b6142c1565b9050919050565b61578a8161575f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157c581614283565b82525050565b60006157d783836157bc565b60208301905092915050565b6000602082019050919050565b60006157fb82615790565b615805818561579b565b9350615810836157ac565b8060005b8381101561584157815161582888826157cb565b9750615833836157e3565b925050600181019050615814565b5085935050505092915050565b600060a0820190506158636000830188614414565b6158706020830187615781565b818103604083015261588281866157f0565b905061589160608301856144be565b61589e6080830184614414565b9695505050505050565b600060c0820190506158bd60008301896144be565b6158ca6020830188614414565b6158d76040830187615781565b6158e46060830186615781565b6158f160808301856144be565b6158fe60a0830184614414565b979650505050505050565b6000806000606084860312156159225761592161425e565b5b600061593086828701615034565b935050602061594186828701615034565b925050604061595286828701615034565b915050925092509256fea2646970667358221220c16c88f7c260addcd3188814255d08bcb4da95f6818603d55454a15918a4a51564736f6c634300080a0033

Deployed Bytecode Sourcemap

32169:18631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33744:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32245:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40340:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32773:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32588:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33528:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33493:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37936:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32348:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32683:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32644:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32303:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32871:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40505:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33353:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32951:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;48382:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37044:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38483:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38854:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36837:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32440:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38746:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39832:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33320:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32827:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33568:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33459:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32735:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33388:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33965:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32911:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39642:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39243:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38219:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33169:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32473:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37431:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33217:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32515:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37226:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33283:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33421:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32555:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49741:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:100;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;33744:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32245:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;40340:157::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40447:9:::1;;;;;;;;;;;40419:38;;40436:9;40419:38;;;;;;;;;;;;40480:9;40468;;:21;;;;;;;;;;;;;;;;;;40340:157:::0;:::o;32773:47::-;;;;:::o;32588:36::-;;;;:::o;33528:33::-;;;;:::o;33493:28::-;;;;:::o;37936:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38073:4:::1;38065;38060:1;38044:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38043:26;;;;:::i;:::-;38042:35;;;;:::i;:::-;38032:6;:45;;38010:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38196:6;38186;:17;;;;:::i;:::-;38163:20;:40;;;;37936:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32348:53::-;32394:6;32348:53;:::o;32683:45::-;;;;:::o;32644:32::-;;;;;;;;;;;;;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;32303:38::-;;;:::o;32871:33::-;;;;;;;;;;;;;:::o;40505:126::-;40571:4;40595:19;:28;40615:7;40595:28;;;;;;;;;;;;;;;;;;;;;;;;;40588:35;;40505:126;;;:::o;33353:28::-;;;;:::o;32951:31::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;48382:555::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48584:3:::1;48561:19;:26;;48539:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;48711:4;48699:8;:16;;:33;;;;;48731:1;48719:8;:13;;48699:33;48677:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;48837:19;48819:15;:37;;;;48886:8;48867:16;:27;;;;48921:8;48905:13;;:24;;;;;;;;;;;;;;;;;;48382:555:::0;;;:::o;37044:121::-;37096:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37130:5:::1;37113:14;;:22;;;;;;;;;;;;;;;;;;37153:4;37146:11;;37044:121:::0;:::o;38483:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38638:4:::1;38596:31;:39;38628:6;38596:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38483:167:::0;;:::o;38854:381::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39012:8:::1;38999:10;:21;;;;39049:13;39031:15;:31;;;;39085:7;39073:9;:19;;;;39149:9;;39131:15;;39118:10;;:28;;;;:::i;:::-;:40;;;;:::i;:::-;39103:12;:55;;;;39193:1;39177:12;;:17;;39169:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38854:381:::0;;;:::o;36837:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36908:4:::1;36892:13;;:20;;;;;;;;;;;;;;;;;;36937:4;36923:11;;:18;;;;;;;;;;;;;;;;;;36969:15;36952:14;:32;;;;36837:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;32440:24::-;;;;;;;;;;;;;:::o;38746:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38831:7:::1;38817:11;;:21;;;;;;;;;;;;;;;;;;38746:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;39832:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:13:::1;39968:21;;:4;:21;;;;39946:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40087:41;40116:4;40122:5;40087:28;:41::i;:::-;39832:304:::0;;:::o;33320:24::-;;;;:::o;32827:35::-;;;;:::o;33568:27::-;;;;:::o;33459:25::-;;;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;32735:29::-;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;33388:26::-;;;;:::o;33965:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32911:33::-;;;;;;;;;;;;;:::o;39642:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39758:8:::1;39727:19;:28;39747:7;39727:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39798:7;39782:34;;;39807:8;39782:34;;;;;;:::i;:::-;;;;;;;;39642:182:::0;;:::o;39243:391::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39403:8:::1;39389:11;:22;;;;39441:13;39422:16;:32;;;;39478:7;39465:10;:20;;;;39545:10;;39526:16;;39512:11;;:30;;;;:::i;:::-;:43;;;;:::i;:::-;39496:13;:59;;;;39591:1;39574:13;;:18;;39566:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39243:391:::0;;;:::o;38219:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38359:4:::1;38351;38346:1;38330:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38329:26;;;;:::i;:::-;38328:35;;;;:::i;:::-;38318:6;:45;;38296:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38460:6;38450;:17;;;;:::i;:::-;38438:9;:29;;;;38219:256:::0;:::o;33169:39::-;;;;;;;;;;;;;:::o;32473:35::-;;;;:::o;37431:497::-;37539:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37618:6:::1;37613:1;37597:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37596:28;;;;:::i;:::-;37583:9;:41;;37561:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37773:4;37768:1;37752:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37751:26;;;;:::i;:::-;37738:9;:39;;37716:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37889:9;37868:18;:30;;;;37916:4;37909:11;;37431:497:::0;;;:::o;33217:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;32515:33::-;;;;:::o;33251:25::-;;;;:::o;37226:135::-;37286:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37326:5:::1;37303:20;;:28;;;;;;;;;;;;;;;;;;37349:4;37342:11;;37226:135:::0;:::o;33283:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;33421:31::-;;;;:::o;32555:24::-;;;;:::o;49741:1056::-;49852:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49937:19:::1;;49914:20;;:42;;;;:::i;:::-;49896:15;:60;49874:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;50046:4;50035:7;:15;;50027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50131:15;50108:20;:38;;;;50201:28;50232:4;:14;;;50247:13;50232:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50201:60;;50311:20;50334:44;50372:5;50334:33;50359:7;50334:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;50311:67;;50498:1;50483:12;:16;50479:110;;;50516:61;50532:13;50555:6;50564:12;50516:15;:61::i;:::-;50479:110;50664:19;50701:13;50664:51;;50726:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50753:14;;;;;;;;;;50785:4;50778:11;;;;;49741:1056:::0;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;40689:5077::-;40837:1;40821:18;;:4;:18;;;;40813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40914:1;40900:16;;:2;:16;;;;40892:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40983:1;40973:6;:11;40969:93;;;41001:28;41017:4;41023:2;41027:1;41001:15;:28::i;:::-;41044:7;;40969:93;41078:14;;;;;;;;;;;41074:2487;;;41139:7;:5;:7::i;:::-;41131:15;;:4;:15;;;;:49;;;;;41173:7;:5;:7::i;:::-;41167:13;;:2;:13;;;;41131:49;:86;;;;;41215:1;41201:16;;:2;:16;;;;41131:86;:128;;;;;41252:6;41238:21;;:2;:21;;;;41131:128;:158;;;;;41281:8;;;;;;;;;;;41280:9;41131:158;41109:2441;;;41329:13;;;;;;;;;;;41324:223;;41401:19;:25;41421:4;41401:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41430:19;:23;41450:2;41430:23;;;;;;;;;;;;;;;;;;;;;;;;;41401:52;41367:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41324:223;41703:20;;;;;;;;;;;41699:641;;;41784:7;:5;:7::i;:::-;41778:13;;:2;:13;;;;:72;;;;;41834:15;41820:30;;:2;:30;;;;41778:72;:129;;;;;41893:13;41879:28;;:2;:28;;;;41778:129;41748:573;;;42071:12;41996:28;:39;42025:9;41996:39;;;;;;;;;;;;;;;;:87;41958:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42285:12;42243:28;:39;42272:9;42243:39;;;;;;;;;;;;;;;:54;;;;41748:573;41699:641;42414:25;:31;42440:4;42414:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42471:31;:35;42503:2;42471:35;;;;;;;;;;;;;;;;;;;;;;;;;42470:36;42414:92;42388:1147;;;42593:20;;42583:6;:30;;42549:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42801:9;;42784:13;42794:2;42784:9;:13::i;:::-;42775:6;:22;;;;:::i;:::-;:35;;42741:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42388:1147;;;42979:25;:29;43005:2;42979:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43034:31;:37;43066:4;43034:37;;;;;;;;;;;;;;;;;;;;;;;;;43033:38;42979:92;42953:582;;;43158:20;;43148:6;:30;;43114:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42953:582;;;43315:31;:35;43347:2;43315:35;;;;;;;;;;;;;;;;;;;;;;;;;43310:225;;43435:9;;43418:13;43428:2;43418:9;:13::i;:::-;43409:6;:22;;;;:::i;:::-;:35;;43375:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43310:225;42953:582;42388:1147;41109:2441;41074:2487;43573:28;43604:24;43622:4;43604:9;:24::i;:::-;43573:55;;43641:12;43680:18;;43656:20;:42;;43641:57;;43729:7;:35;;;;;43753:11;;;;;;;;;;;43729:35;:61;;;;;43782:8;;;;;;;;;;;43781:9;43729:61;:110;;;;;43808:25;:31;43834:4;43808:31;;;;;;;;;;;;;;;;;;;;;;;;;43807:32;43729:110;:153;;;;;43857:19;:25;43877:4;43857:25;;;;;;;;;;;;;;;;;;;;;;;;;43856:26;43729:153;:194;;;;;43900:19;:23;43920:2;43900:23;;;;;;;;;;;;;;;;;;;;;;;;;43899:24;43729:194;43711:326;;;43961:4;43950:8;;:15;;;;;;;;;;;;;;;;;;43982:10;:8;:10::i;:::-;44020:5;44009:8;;:16;;;;;;;;;;;;;;;;;;43711:326;44068:8;;;;;;;;;;;44067:9;:55;;;;;44093:25;:29;44119:2;44093:29;;;;;;;;;;;;;;;;;;;;;;;;;44067:55;:85;;;;;44139:13;;;;;;;;;;;44067:85;:153;;;;;44205:15;;44188:14;;:32;;;;:::i;:::-;44169:15;:51;;44067:153;:196;;;;;44238:19;:25;44258:4;44238:25;;;;;;;;;;;;;;;;;;;;;;;;;44237:26;44067:196;44049:282;;;44290:29;:27;:29::i;:::-;;44049:282;44343:12;44359:8;;;;;;;;;;;44358:9;44343:24;;44469:19;:25;44489:4;44469:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44498:19;:23;44518:2;44498:23;;;;;;;;;;;;;;;;;;;;;;;;;44469:52;44465:100;;;44548:5;44538:15;;44465:100;44577:12;44682:7;44678:1035;;;44734:25;:29;44760:2;44734:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44783:1;44767:13;;:17;44734:50;44730:746;;;44812:34;44842:3;44812:25;44823:13;;44812:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44805:41;;44915:13;;44895:16;;44888:4;:23;;;;:::i;:::-;44887:41;;;;:::i;:::-;44865:18;;:63;;;;;;;:::i;:::-;;;;;;;;44985:13;;44971:10;;44964:4;:17;;;;:::i;:::-;44963:35;;;;:::i;:::-;44947:12;;:51;;;;;;;:::i;:::-;;;;;;;;45056:13;;45041:11;;45034:4;:18;;;;:::i;:::-;45033:36;;;;:::i;:::-;45017:13;:52;;;;44730:746;;;45131:25;:31;45157:4;45131:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45181:1;45166:12;;:16;45131:51;45127:349;;;45210:33;45239:3;45210:24;45221:12;;45210:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45203:40;;45311:12;;45292:15;;45285:4;:22;;;;:::i;:::-;45284:39;;;;:::i;:::-;45262:18;;:61;;;;;;;:::i;:::-;;;;;;;;45379:12;;45366:9;;45359:4;:16;;;;:::i;:::-;45358:33;;;;:::i;:::-;45342:12;;:49;;;;;;;:::i;:::-;;;;;;;;45448:12;;45434:10;;45427:4;:17;;;;:::i;:::-;45426:34;;;;:::i;:::-;45410:13;:50;;;;45127:349;44730:746;45503:1;45496:4;:8;45492:179;;;45525:58;45541:4;45555;45569:13;;45562:4;:20;;;;:::i;:::-;45525:15;:58::i;:::-;45602:53;45618:4;45632:6;45641:13;;45602:15;:53::i;:::-;45492:179;45697:4;45687:14;;;;;:::i;:::-;;;44678:1035;45725:33;45741:4;45747:2;45751:6;45725:15;:33::i;:::-;40802:4964;;;;40689:5077;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;40144:188::-;40261:5;40227:25;:31;40253:4;40227:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40318:5;40284:40;;40312:4;40284:40;;;;;;;;;;;;40144:188;;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;46896:1478::-;46935:23;46961:24;46979:4;46961:9;:24::i;:::-;46935:50;;46996:25;47058:12;;47024:18;;:46;;;;:::i;:::-;46996:74;;47081:12;47129:1;47110:15;:20;:46;;;;47155:1;47134:17;:22;47110:46;47106:85;;;47173:7;;;;;47106:85;47246:2;47225:18;;:23;;;;:::i;:::-;47207:15;:41;47203:115;;;47304:2;47283:18;;:23;;;;:::i;:::-;47265:41;;47203:115;47379:23;47492:1;47459:17;47424:18;;47406:15;:36;;;;:::i;:::-;47405:71;;;;:::i;:::-;:88;;;;:::i;:::-;47379:114;;47504:26;47533:36;47553:15;47533;:19;;:36;;;;:::i;:::-;47504:65;;47582:25;47610:21;47582:49;;47644:36;47661:18;47644:16;:36::i;:::-;47693:18;47714:44;47740:17;47714:21;:25;;:44;;;;:::i;:::-;47693:65;;47771:17;47791:51;47824:17;47791:28;47806:12;;47791:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47771:71;;47855:23;47894:9;47881:10;:22;;;;:::i;:::-;47855:48;;47937:1;47916:18;:22;;;;47964:1;47949:12;:16;;;;47991:1;47976:13;:16;;;;48027:9;;;;;;;;;;;48019:23;;48050:21;48019:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48005:71;;;;;48111:1;48093:15;:19;:42;;;;;48134:1;48116:15;:19;48093:42;48089:278;;;48152:46;48165:15;48182;48152:12;:46::i;:::-;48218:137;48251:18;48288:15;48322:18;;48218:137;;;;;;;;:::i;:::-;;;;;;;;48089:278;46924:1450;;;;;;;;;46896:1478;:::o;48945:788::-;49002:4;49036:15;49019:14;:32;;;;49106:28;49137:4;:14;;;49152:13;49137:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49106:60;;49216:20;49239:77;49300:5;49239:42;49264:16;;49239:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;49216:100;;49436:1;49421:12;:16;49417:110;;;49454:61;49470:13;49493:6;49502:12;49454:15;:61::i;:::-;49417:110;49602:19;49639:13;49602:51;;49664:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49691:12;;;;;;;;;;49721:4;49714:11;;;;;48945:788;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;45774:589::-;45900:21;45938:1;45924:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45900:40;;45969:4;45951;45956:1;45951:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45995:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45985:4;45990:1;45985:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46030:62;46047:4;46062:15;46080:11;46030:8;:62::i;:::-;46131:15;:66;;;46212:11;46238:1;46282:4;46309;46329:15;46131:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45829:534;45774:589;:::o;46371:517::-;46519:62;46536:4;46551:15;46569:11;46519:8;:62::i;:::-;46624:15;:31;;;46663:9;46696:4;46716:11;46742:1;46785;32394:6;46854:15;46624:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46371: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:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:178::-;16700:30;16696:1;16688:6;16684:14;16677:54;16560:178;:::o;16744:366::-;16886:3;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;16983:93;17072:3;16983:93;:::i;:::-;17101:2;17096:3;17092:12;17085:19;;16744:366;;;:::o;17116:419::-;17282:4;17320:2;17309:9;17305:18;17297:26;;17369:9;17363:4;17359:20;17355:1;17344:9;17340:17;17333:47;17397:131;17523:4;17397:131;:::i;:::-;17389:139;;17116:419;;;:::o;17541:244::-;17681:34;17677:1;17669:6;17665:14;17658:58;17750:27;17745:2;17737:6;17733:15;17726:52;17541:244;:::o;17791:366::-;17933:3;17954:67;18018:2;18013:3;17954:67;:::i;:::-;17947:74;;18030:93;18119:3;18030:93;:::i;:::-;18148:2;18143:3;18139:12;18132:19;;17791:366;;;:::o;18163:419::-;18329:4;18367:2;18356:9;18352:18;18344:26;;18416:9;18410:4;18406:20;18402:1;18391:9;18387:17;18380:47;18444:131;18570:4;18444:131;:::i;:::-;18436:139;;18163:419;;;:::o;18588:224::-;18728:34;18724:1;18716:6;18712:14;18705:58;18797:7;18792:2;18784:6;18780:15;18773:32;18588:224;:::o;18818:366::-;18960:3;18981:67;19045:2;19040:3;18981:67;:::i;:::-;18974:74;;19057:93;19146:3;19057:93;:::i;:::-;19175:2;19170:3;19166:12;19159:19;;18818:366;;;:::o;19190:419::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:179::-;19755:31;19751:1;19743:6;19739:14;19732:55;19615:179;:::o;19800:366::-;19942:3;19963:67;20027:2;20022:3;19963:67;:::i;:::-;19956:74;;20039:93;20128:3;20039:93;:::i;:::-;20157:2;20152:3;20148:12;20141:19;;19800:366;;;:::o;20172:419::-;20338:4;20376:2;20365:9;20361:18;20353:26;;20425:9;20419:4;20415:20;20411:1;20400:9;20396:17;20389:47;20453:131;20579:4;20453:131;:::i;:::-;20445:139;;20172:419;;;:::o;20597:223::-;20737:34;20733:1;20725:6;20721:14;20714:58;20806:6;20801:2;20793:6;20789:15;20782:31;20597:223;:::o;20826:366::-;20968:3;20989:67;21053:2;21048:3;20989:67;:::i;:::-;20982:74;;21065:93;21154:3;21065:93;:::i;:::-;21183:2;21178:3;21174:12;21167:19;;20826:366;;;:::o;21198:419::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:240::-;21763:34;21759:1;21751:6;21747:14;21740:58;21832:23;21827:2;21819:6;21815:15;21808:48;21623:240;:::o;21869:366::-;22011:3;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22108:93;22197:3;22108:93;:::i;:::-;22226:2;22221:3;22217:12;22210:19;;21869:366;;;:::o;22241:419::-;22407:4;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22241:419;;;:::o;22666:239::-;22806:34;22802:1;22794:6;22790:14;22783:58;22875:22;22870:2;22862:6;22858:15;22851:47;22666:239;:::o;22911:366::-;23053:3;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23150:93;23239:3;23150:93;:::i;:::-;23268:2;23263:3;23259:12;23252:19;;22911:366;;;:::o;23283:419::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:225::-;23848:34;23844:1;23836:6;23832:14;23825:58;23917:8;23912:2;23904:6;23900:15;23893:33;23708:225;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:182::-;24876:34;24872:1;24864:6;24860:14;24853:58;24736:182;:::o;24924:366::-;25066:3;25087:67;25151:2;25146:3;25087:67;:::i;:::-;25080:74;;25163:93;25252:3;25163:93;:::i;:::-;25281:2;25276:3;25272:12;25265:19;;24924:366;;;:::o;25296:419::-;25462:4;25500:2;25489:9;25485:18;25477:26;;25549:9;25543:4;25539:20;25535:1;25524:9;25520:17;25513:47;25577:131;25703:4;25577:131;:::i;:::-;25569:139;;25296:419;;;:::o;25721:229::-;25861:34;25857:1;25849:6;25845:14;25838:58;25930:12;25925:2;25917:6;25913:15;25906:37;25721:229;:::o;25956:366::-;26098:3;26119:67;26183:2;26178:3;26119:67;:::i;:::-;26112:74;;26195:93;26284:3;26195:93;:::i;:::-;26313:2;26308:3;26304:12;26297:19;;25956:366;;;:::o;26328:419::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26328:419;;;:::o;26753:143::-;26810:5;26841:6;26835:13;26826:22;;26857:33;26884:5;26857:33;:::i;:::-;26753:143;;;;:::o;26902:351::-;26972:6;27021:2;27009:9;27000:7;26996:23;26992:32;26989:119;;;27027:79;;:::i;:::-;26989:119;27147:1;27172:64;27228:7;27219:6;27208:9;27204:22;27172:64;:::i;:::-;27162:74;;27118:128;26902:351;;;;:::o;27259:223::-;27399:34;27395:1;27387:6;27383:14;27376:58;27468:6;27463:2;27455:6;27451:15;27444:31;27259:223;:::o;27488:366::-;27630:3;27651:67;27715:2;27710:3;27651:67;:::i;:::-;27644:74;;27727:93;27816:3;27727:93;:::i;:::-;27845:2;27840:3;27836:12;27829:19;;27488:366;;;:::o;27860:419::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:221::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:4;28489:2;28481:6;28477:15;28470:29;28285:221;:::o;28512:366::-;28654:3;28675:67;28739:2;28734:3;28675:67;:::i;:::-;28668:74;;28751:93;28840:3;28751:93;:::i;:::-;28869:2;28864:3;28860:12;28853:19;;28512:366;;;:::o;28884:419::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:224::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:7;29513:2;29505:6;29501:15;29494:32;29309:224;:::o;29539:366::-;29681:3;29702:67;29766:2;29761:3;29702:67;:::i;:::-;29695:74;;29778:93;29867:3;29778:93;:::i;:::-;29896:2;29891:3;29887:12;29880:19;;29539:366;;;:::o;29911:419::-;30077:4;30115:2;30104:9;30100:18;30092:26;;30164:9;30158:4;30154:20;30150:1;30139:9;30135:17;30128:47;30192:131;30318:4;30192:131;:::i;:::-;30184:139;;29911:419;;;:::o;30336:222::-;30476:34;30472:1;30464:6;30460:14;30453:58;30545:5;30540:2;30532:6;30528:15;30521:30;30336:222;:::o;30564:366::-;30706:3;30727:67;30791:2;30786:3;30727:67;:::i;:::-;30720:74;;30803:93;30892:3;30803:93;:::i;:::-;30921:2;30916:3;30912:12;30905:19;;30564:366;;;:::o;30936:419::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31189:9;31183:4;31179:20;31175:1;31164:9;31160:17;31153:47;31217:131;31343:4;31217:131;:::i;:::-;31209:139;;30936:419;;;:::o;31361:172::-;31501:24;31497:1;31489:6;31485:14;31478:48;31361:172;:::o;31539:366::-;31681:3;31702:67;31766:2;31761:3;31702:67;:::i;:::-;31695:74;;31778:93;31867:3;31778:93;:::i;:::-;31896:2;31891:3;31887:12;31880:19;;31539:366;;;:::o;31911:419::-;32077:4;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;31911:419;;;:::o;32336:297::-;32476:34;32472:1;32464:6;32460:14;32453:58;32545:34;32540:2;32532:6;32528:15;32521:59;32614:11;32609:2;32601:6;32597:15;32590:36;32336:297;:::o;32639:366::-;32781:3;32802:67;32866:2;32861:3;32802:67;:::i;:::-;32795:74;;32878:93;32967:3;32878:93;:::i;:::-;32996:2;32991:3;32987:12;32980:19;;32639:366;;;:::o;33011:419::-;33177:4;33215:2;33204:9;33200:18;33192:26;;33264:9;33258:4;33254:20;33250:1;33239:9;33235:17;33228:47;33292:131;33418:4;33292:131;:::i;:::-;33284:139;;33011:419;;;:::o;33436:240::-;33576:34;33572:1;33564:6;33560:14;33553:58;33645:23;33640:2;33632:6;33628:15;33621:48;33436:240;:::o;33682:366::-;33824:3;33845:67;33909:2;33904:3;33845:67;:::i;:::-;33838:74;;33921:93;34010:3;33921:93;:::i;:::-;34039:2;34034:3;34030:12;34023:19;;33682:366;;;:::o;34054:419::-;34220:4;34258:2;34247:9;34243:18;34235:26;;34307:9;34301:4;34297:20;34293:1;34282:9;34278:17;34271:47;34335:131;34461:4;34335:131;:::i;:::-;34327:139;;34054:419;;;:::o;34479:169::-;34619:21;34615:1;34607:6;34603:14;34596:45;34479:169;:::o;34654:366::-;34796:3;34817:67;34881:2;34876:3;34817:67;:::i;:::-;34810:74;;34893:93;34982:3;34893:93;:::i;:::-;35011:2;35006:3;35002:12;34995:19;;34654:366;;;:::o;35026:419::-;35192:4;35230:2;35219:9;35215:18;35207:26;;35279:9;35273:4;35269:20;35265:1;35254:9;35250:17;35243:47;35307:131;35433:4;35307:131;:::i;:::-;35299:139;;35026:419;;;:::o;35451:241::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:24;35655:2;35647:6;35643:15;35636:49;35451:241;:::o;35698:366::-;35840:3;35861:67;35925:2;35920:3;35861:67;:::i;:::-;35854:74;;35937:93;36026:3;35937:93;:::i;:::-;36055:2;36050:3;36046:12;36039:19;;35698:366;;;:::o;36070:419::-;36236:4;36274:2;36263:9;36259:18;36251:26;;36323:9;36317:4;36313:20;36309:1;36298:9;36294:17;36287:47;36351:131;36477:4;36351:131;:::i;:::-;36343:139;;36070:419;;;:::o;36495:191::-;36535:4;36555:20;36573:1;36555:20;:::i;:::-;36550:25;;36589:20;36607:1;36589:20;:::i;:::-;36584:25;;36628:1;36625;36622:8;36619:34;;;36633:18;;:::i;:::-;36619:34;36678:1;36675;36671:9;36663:17;;36495:191;;;;:::o;36692:225::-;36832:34;36828:1;36820:6;36816:14;36809:58;36901:8;36896:2;36888:6;36884:15;36877:33;36692:225;:::o;36923:366::-;37065:3;37086:67;37150:2;37145:3;37086:67;:::i;:::-;37079:74;;37162:93;37251:3;37162:93;:::i;:::-;37280:2;37275:3;37271:12;37264:19;;36923:366;;;:::o;37295:419::-;37461:4;37499:2;37488:9;37484:18;37476:26;;37548:9;37542:4;37538:20;37534:1;37523:9;37519:17;37512:47;37576:131;37702:4;37576:131;:::i;:::-;37568:139;;37295:419;;;:::o;37720:147::-;37821:11;37858:3;37843:18;;37720:147;;;;:::o;37873:114::-;;:::o;37993:398::-;38152:3;38173:83;38254:1;38249:3;38173:83;:::i;:::-;38166:90;;38265:93;38354:3;38265:93;:::i;:::-;38383:1;38378:3;38374:11;38367:18;;37993:398;;;:::o;38397:379::-;38581:3;38603:147;38746:3;38603:147;:::i;:::-;38596:154;;38767:3;38760:10;;38397:379;;;:::o;38782:442::-;38931:4;38969:2;38958:9;38954:18;38946:26;;38982:71;39050:1;39039:9;39035:17;39026:6;38982:71;:::i;:::-;39063:72;39131:2;39120:9;39116:18;39107:6;39063:72;:::i;:::-;39145;39213:2;39202:9;39198:18;39189:6;39145:72;:::i;:::-;38782:442;;;;;;:::o;39230:180::-;39278:77;39275:1;39268:88;39375:4;39372:1;39365:15;39399:4;39396:1;39389:15;39416:180;39464:77;39461:1;39454:88;39561:4;39558:1;39551:15;39585:4;39582:1;39575:15;39602:143;39659:5;39690:6;39684:13;39675:22;;39706:33;39733:5;39706:33;:::i;:::-;39602:143;;;;:::o;39751:351::-;39821:6;39870:2;39858:9;39849:7;39845:23;39841:32;39838:119;;;39876:79;;:::i;:::-;39838:119;39996:1;40021:64;40077:7;40068:6;40057:9;40053:22;40021:64;:::i;:::-;40011:74;;39967:128;39751:351;;;;:::o;40108:85::-;40153:7;40182:5;40171:16;;40108:85;;;:::o;40199:158::-;40257:9;40290:61;40308:42;40317:32;40343:5;40317:32;:::i;:::-;40308:42;:::i;:::-;40290:61;:::i;:::-;40277:74;;40199:158;;;:::o;40363:147::-;40458:45;40497:5;40458:45;:::i;:::-;40453:3;40446:58;40363:147;;:::o;40516:114::-;40583:6;40617:5;40611:12;40601:22;;40516:114;;;:::o;40636:184::-;40735:11;40769:6;40764:3;40757:19;40809:4;40804:3;40800:14;40785:29;;40636:184;;;;:::o;40826:132::-;40893:4;40916:3;40908:11;;40946:4;40941:3;40937:14;40929:22;;40826:132;;;:::o;40964:108::-;41041:24;41059:5;41041:24;:::i;:::-;41036:3;41029:37;40964:108;;:::o;41078:179::-;41147:10;41168:46;41210:3;41202:6;41168:46;:::i;:::-;41246:4;41241:3;41237:14;41223:28;;41078:179;;;;:::o;41263:113::-;41333:4;41365;41360:3;41356:14;41348:22;;41263:113;;;:::o;41412:732::-;41531:3;41560:54;41608:5;41560:54;:::i;:::-;41630:86;41709:6;41704:3;41630:86;:::i;:::-;41623:93;;41740:56;41790:5;41740:56;:::i;:::-;41819:7;41850:1;41835:284;41860:6;41857:1;41854:13;41835:284;;;41936:6;41930:13;41963:63;42022:3;42007:13;41963:63;:::i;:::-;41956:70;;42049:60;42102:6;42049:60;:::i;:::-;42039:70;;41895:224;41882:1;41879;41875:9;41870:14;;41835:284;;;41839:14;42135:3;42128:10;;41536:608;;;41412:732;;;;:::o;42150:831::-;42413:4;42451:3;42440:9;42436:19;42428:27;;42465:71;42533:1;42522:9;42518:17;42509:6;42465:71;:::i;:::-;42546:80;42622:2;42611:9;42607:18;42598:6;42546:80;:::i;:::-;42673:9;42667:4;42663:20;42658:2;42647:9;42643:18;42636:48;42701:108;42804:4;42795:6;42701:108;:::i;:::-;42693:116;;42819:72;42887:2;42876:9;42872:18;42863:6;42819:72;:::i;:::-;42901:73;42969:3;42958:9;42954:19;42945:6;42901:73;:::i;:::-;42150:831;;;;;;;;:::o;42987:807::-;43236:4;43274:3;43263:9;43259:19;43251:27;;43288:71;43356:1;43345:9;43341:17;43332:6;43288:71;:::i;:::-;43369:72;43437:2;43426:9;43422:18;43413:6;43369:72;:::i;:::-;43451:80;43527:2;43516:9;43512:18;43503:6;43451:80;:::i;:::-;43541;43617:2;43606:9;43602:18;43593:6;43541:80;:::i;:::-;43631:73;43699:3;43688:9;43684:19;43675:6;43631:73;:::i;:::-;43714;43782:3;43771:9;43767:19;43758:6;43714:73;:::i;:::-;42987:807;;;;;;;;;:::o;43800:663::-;43888:6;43896;43904;43953:2;43941:9;43932:7;43928:23;43924:32;43921:119;;;43959:79;;:::i;:::-;43921:119;44079:1;44104:64;44160:7;44151:6;44140:9;44136:22;44104:64;:::i;:::-;44094:74;;44050:128;44217:2;44243:64;44299:7;44290:6;44279:9;44275:22;44243:64;:::i;:::-;44233:74;;44188:129;44356:2;44382:64;44438:7;44429:6;44418:9;44414:22;44382:64;:::i;:::-;44372:74;;44327:129;43800:663;;;;;:::o

Swarm Source

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