ETH Price: $3,301.21 (-3.24%)
Gas: 19 Gwei

Token

Tongyi Qianwen (QIANWEN)
 

Overview

Max Total Supply

1,000,000,000 QIANWEN

Holders

217

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,177,468.096378434656633966 QIANWEN

Value
$0.00
0xf3b914471b4a6965829a192b503917473f0e047b
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:
TongyiQianwen

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-11
*/

/*


https://t.me/TongyiQianwenPortal

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

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract TongyiQianwen 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 marketingWallet;
    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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Tongyi Qianwen", "QIANWEN") {
        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 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 70;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x869063Ce45431aE66a85eD282B3E11c25636d9EC); // set as marketing wallet
        devWallet = address(0x869063Ce45431aE66a85eD282B3E11c25636d9EC); // 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(bool enabled) external onlyOwner {

        if(enabled){
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;

        }
        
    }

    // remove limits after token is stable
    function vanishLimits() 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 adjustSwapTokensAtAmount(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 adjustLimits(uint256 newNumTx, uint256 newNumWallet) external onlyOwner {
        require(
            newNumTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNumTx * (10**18);

        require(
            newNumWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNumWallet * (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 adjustFees(uint256 _buyMarketingFee,  uint256 _buyLiquidityFee, uint256 _buyDevFee,  uint256 _sellMarketingFee, uint256 _sellLiquidityFee, uint256 _sellDevFee) external onlyOwner{
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 75, "Must keep fees at 75% or less");

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 75, "Must keep fees at 75% 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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    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;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

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

    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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"adjustFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumTx","type":"uint256"},{"internalType":"uint256","name":"newNumWallet","type":"uint256"}],"name":"adjustLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"adjustSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sellMarketingFee","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":"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":"tokensForMarketing","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":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vanishLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600e81526020017f546f6e677969205169616e77656e0000000000000000000000000000000000008152506040518060400160405280600781526020017f5149414e57454e0000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b0d565b5080600490805190602001906200014792919062000b0d565b5050506200016a6200015e620005cd60201b60201c565b620005d560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c27565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c27565b6040518363ffffffff1660e01b8152600401620002e992919062000c6a565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c27565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069b60201b60201c565b6200038c60a05160016200078560201b60201c565b60008060006014905060008060006046905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003e5919062000cd0565b620003f1919062000d60565b60098190555086601581905550856016819055508460178190555060175460165460155462000421919062000d98565b6200042d919062000d98565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045d919062000d98565b62000469919062000d98565b60188190555073869063ce45431ae66a85ed282b3e11c25636d9ec600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073869063ce45431ae66a85ed282b3e11c25636d9ec600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053b6200052d6200082660201b60201c565b60016200085060201b60201c565b6200054e3060016200085060201b60201c565b6200056361dead60016200085060201b60201c565b62000585620005776200082660201b60201c565b60016200069b60201b60201c565b620005983060016200069b60201b60201c565b620005ad61dead60016200069b60201b60201c565b620005bf33826200098a60201b60201c565b505050505050505062000fb7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ab620005cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d16200082660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007219062000e56565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000860620005cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008866200082660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d69062000e56565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097e919062000e95565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f49062000f02565b60405180910390fd5b62000a116000838362000b0360201b60201c565b806002600082825462000a25919062000d98565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7c919062000d98565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae3919062000f35565b60405180910390a362000aff6000838362000b0860201b60201c565b5050565b505050565b505050565b82805462000b1b9062000f81565b90600052602060002090601f01602090048101928262000b3f576000855562000b8b565b82601f1062000b5a57805160ff191683800117855562000b8b565b8280016001018555821562000b8b579182015b8281111562000b8a57825182559160200191906001019062000b6d565b5b50905062000b9a919062000b9e565b5090565b5b8082111562000bb957600081600090555060010162000b9f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bef8262000bc2565b9050919050565b62000c018162000be2565b811462000c0d57600080fd5b50565b60008151905062000c218162000bf6565b92915050565b60006020828403121562000c405762000c3f62000bbd565b5b600062000c508482850162000c10565b91505092915050565b62000c648162000be2565b82525050565b600060408201905062000c81600083018562000c59565b62000c90602083018462000c59565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cdd8262000c97565b915062000cea8362000c97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d265762000d2562000ca1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6d8262000c97565b915062000d7a8362000c97565b92508262000d8d5762000d8c62000d31565b5b828204905092915050565b600062000da58262000c97565b915062000db28362000c97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dea5762000de962000ca1565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3e60208362000df5565b915062000e4b8262000e06565b602082019050919050565b6000602082019050818103600083015262000e718162000e2f565b9050919050565b60008115159050919050565b62000e8f8162000e78565b82525050565b600060208201905062000eac600083018462000e84565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eea601f8362000df5565b915062000ef78262000eb2565b602082019050919050565b6000602082019050818103600083015262000f1d8162000edb565b9050919050565b62000f2f8162000c97565b82525050565b600060208201905062000f4c600083018462000f24565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9a57607f821691505b6020821081141562000fb15762000fb062000f52565b5b50919050565b60805160a051615afc6200103f6000396000818161128801528181611b13015281816125fd015281816126b4015281816126e101528181612d2501528181613e2901528181613ee20152613f0f015260008181610f3a01528181612ccd01528181614085015281816141660152818161418d0152818161422901526142500152615afc6000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063bf3c2f2a11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dad578063f637434214610dd6578063f8b45b0514610e01578063fe72b27a14610e2c576103a2565b8063e2f4560514610d03578063e884f26014610d2e578063f11a24d314610d59578063f275f64b14610d84576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c45578063d85ba06314610c70578063dd62ed3e14610c9b578063e11d22cf14610cd8576103a2565b8063bf3c2f2a14610bc8578063c024666814610bf1578063c876d0b914610c1a576103a2565b80639fccce321161017a578063a9059cbb11610149578063a9059cbb14610afa578063aacebbe314610b37578063b62496f514610b60578063bbc0c74214610b9d576103a2565b80639fccce3214610a3c578063a0d82dc514610a67578063a457c2d714610a92578063a4c82a0014610acf576103a2565b806395d89b41116101b657806395d89b41146109925780639a7a23d6146109bd5780639c3b4fdc146109e65780639ec22c0e14610a11576103a2565b80638ea5220f14610913578063921369131461093e578063924de9b714610969576103a2565b806339509351116102c1578063715018a61161025f57806378bd4e5d1161022e57806378bd4e5d146108575780637bce5a041461089457806384b0aa66146108bf5780638da5cb5b146108e8576103a2565b8063715018a6146107c3578063730c1888146107da5780637571336a1461080357806375f0a8741461082c576103a2565b80634fbee1931161029b5780634fbee193146106f35780636a486a8e146107305780636ddd17131461075b57806370a0823114610786576103a2565b8063395093511461066057806349bd5a5e1461069d5780634a62bb65146106c8576103a2565b8063199ffc721161033957806327c8f8351161030857806327c8f835146105b45780632c3e486c146105df5780632e82f1a01461060a578063313ce56714610635576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c57806323b872dd14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e69565b6040516103c99190614398565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614453565b610efb565b60405161040691906144ae565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144c9565b610f19565b60405161044391906144ae565b60405180910390f35b34801561045857600080fd5b50610461610f38565b60405161046e9190614555565b60405180910390f35b34801561048357600080fd5b5061048c610f5c565b604051610499919061457f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144c9565b610f66565b005b3480156104d757600080fd5b506104e06110a2565b6040516104ed919061457f565b60405180910390f35b34801561050257600080fd5b5061050b6110a8565b604051610518919061457f565b60405180910390f35b34801561052d57600080fd5b506105366110ae565b604051610543919061457f565b60405180910390f35b34801561055857600080fd5b506105616110b4565b60405161056e919061457f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061459a565b6110ba565b6040516105ab91906144ae565b60405180910390f35b3480156105c057600080fd5b506105c96111b2565b6040516105d691906145fc565b60405180910390f35b3480156105eb57600080fd5b506105f46111b8565b604051610601919061457f565b60405180910390f35b34801561061657600080fd5b5061061f6111be565b60405161062c91906144ae565b60405180910390f35b34801561064157600080fd5b5061064a6111d1565b6040516106579190614633565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190614453565b6111da565b60405161069491906144ae565b60405180910390f35b3480156106a957600080fd5b506106b2611286565b6040516106bf91906145fc565b60405180910390f35b3480156106d457600080fd5b506106dd6112aa565b6040516106ea91906144ae565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906144c9565b6112bd565b60405161072791906144ae565b60405180910390f35b34801561073c57600080fd5b50610745611313565b604051610752919061457f565b60405180910390f35b34801561076757600080fd5b50610770611319565b60405161077d91906144ae565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906144c9565b61132c565b6040516107ba919061457f565b60405180910390f35b3480156107cf57600080fd5b506107d8611374565b005b3480156107e657600080fd5b5061080160048036038101906107fc919061467a565b6113fc565b005b34801561080f57600080fd5b5061082a600480360381019061082591906146cd565b61153c565b005b34801561083857600080fd5b50610841611613565b60405161084e91906145fc565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061470d565b611639565b60405161088b91906144ae565b60405180910390f35b3480156108a057600080fd5b506108a961178e565b6040516108b6919061457f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e1919061473a565b611794565b005b3480156108f457600080fd5b506108fd611914565b60405161090a91906145fc565b60405180910390f35b34801561091f57600080fd5b5061092861193e565b60405161093591906145fc565b60405180910390f35b34801561094a57600080fd5b50610953611964565b604051610960919061457f565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b91906147c7565b61196a565b005b34801561099e57600080fd5b506109a7611a03565b6040516109b49190614398565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df91906146cd565b611a95565b005b3480156109f257600080fd5b506109fb611bae565b604051610a08919061457f565b60405180910390f35b348015610a1d57600080fd5b50610a26611bb4565b604051610a33919061457f565b60405180910390f35b348015610a4857600080fd5b50610a51611bba565b604051610a5e919061457f565b60405180910390f35b348015610a7357600080fd5b50610a7c611bc0565b604051610a89919061457f565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190614453565b611bc6565b604051610ac691906144ae565b60405180910390f35b348015610adb57600080fd5b50610ae4611cb1565b604051610af1919061457f565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190614453565b611cb7565b604051610b2e91906144ae565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b5991906144c9565b611cd5565b005b348015610b6c57600080fd5b50610b876004803603810190610b8291906144c9565b611e11565b604051610b9491906144ae565b60405180910390f35b348015610ba957600080fd5b50610bb2611e31565b604051610bbf91906144ae565b60405180910390f35b348015610bd457600080fd5b50610bef6004803603810190610bea91906147f4565b611e44565b005b348015610bfd57600080fd5b50610c186004803603810190610c1391906146cd565b611fe4565b005b348015610c2657600080fd5b50610c2f612109565b604051610c3c91906144ae565b60405180910390f35b348015610c5157600080fd5b50610c5a61211c565b604051610c67919061457f565b60405180910390f35b348015610c7c57600080fd5b50610c85612122565b604051610c92919061457f565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190614834565b612128565b604051610ccf919061457f565b60405180910390f35b348015610ce457600080fd5b50610ced6121af565b604051610cfa91906144ae565b60405180910390f35b348015610d0f57600080fd5b50610d1861224f565b604051610d25919061457f565b60405180910390f35b348015610d3a57600080fd5b50610d43612255565b604051610d5091906144ae565b60405180910390f35b348015610d6557600080fd5b50610d6e6122f5565b604051610d7b919061457f565b60405180910390f35b348015610d9057600080fd5b50610dab6004803603810190610da691906147c7565b6122fb565b005b348015610db957600080fd5b50610dd46004803603810190610dcf91906144c9565b6123be565b005b348015610de257600080fd5b50610deb6124b6565b604051610df8919061457f565b60405180910390f35b348015610e0d57600080fd5b50610e166124bc565b604051610e23919061457f565b60405180910390f35b348015610e3857600080fd5b50610e536004803603810190610e4e919061470d565b6124c2565b604051610e6091906144ae565b60405180910390f35b606060038054610e78906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea4906148a3565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b6000610f0f610f0861279a565b84846127a2565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f6e61279a565b73ffffffffffffffffffffffffffffffffffffffff16610f8c611914565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614921565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b60006110c784848461296d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111261279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906149b3565b60405180910390fd5b6111a68561119e61279a565b8584036127a2565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061127c6111e761279a565b8484600160006111f561279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112779190614a02565b6127a2565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137c61279a565b73ffffffffffffffffffffffffffffffffffffffff1661139a611914565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614921565b60405180910390fd5b6113fa6000613705565b565b61140461279a565b73ffffffffffffffffffffffffffffffffffffffff16611422611914565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614921565b60405180910390fd5b6102588310156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490614aca565b60405180910390fd5b6103e882111580156114d0575060008210155b61150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614b5c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61154461279a565b73ffffffffffffffffffffffffffffffffffffffff16611562611914565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614921565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061164361279a565b73ffffffffffffffffffffffffffffffffffffffff16611661611914565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614921565b60405180910390fd5b620186a060016116c5610f5c565b6116cf9190614b7c565b6116d99190614c05565b82101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614ca8565b60405180910390fd5b6103e86005611728610f5c565b6117329190614b7c565b61173c9190614c05565b82111561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614d3a565b60405180910390fd5b8160098190555060019050919050565b60155481565b61179c61279a565b73ffffffffffffffffffffffffffffffffffffffff166117ba611914565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614921565b60405180910390fd5b8560158190555084601681905550836017819055506017546016546015546118389190614a02565b6118429190614a02565b601481905550604b601454111561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590614da6565b60405180910390fd5b8260198190555081601a8190555080601b819055506017546016546015546118b69190614a02565b6118c09190614a02565b601881905550604b601454111561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614da6565b60405180910390fd5b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61197261279a565b73ffffffffffffffffffffffffffffffffffffffff16611990611914565b73ffffffffffffffffffffffffffffffffffffffff16146119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd90614921565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a12906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e906148a3565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b611a9d61279a565b73ffffffffffffffffffffffffffffffffffffffff16611abb611914565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614921565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614e38565b60405180910390fd5b611baa82826137cb565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611bd561279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8990614eca565b60405180910390fd5b611ca6611c9d61279a565b858584036127a2565b600191505092915050565b600e5481565b6000611ccb611cc461279a565b848461296d565b6001905092915050565b611cdd61279a565b73ffffffffffffffffffffffffffffffffffffffff16611cfb611914565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890614921565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e4c61279a565b73ffffffffffffffffffffffffffffffffffffffff16611e6a611914565b73ffffffffffffffffffffffffffffffffffffffff1614611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790614921565b60405180910390fd5b670de0b6b3a76400006103e86001611ed6610f5c565b611ee09190614b7c565b611eea9190614c05565b611ef49190614c05565b821015611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90614f5c565b60405180910390fd5b670de0b6b3a764000082611f4a9190614b7c565b600881905550670de0b6b3a76400006103e86005611f66610f5c565b611f709190614b7c565b611f7a9190614c05565b611f849190614c05565b811015611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614fee565b60405180910390fd5b670de0b6b3a764000081611fda9190614b7c565b600a819055505050565b611fec61279a565b73ffffffffffffffffffffffffffffffffffffffff1661200a611914565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790614921565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120fd91906144ae565b60405180910390a25050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006121b961279a565b73ffffffffffffffffffffffffffffffffffffffff166121d7611914565b73ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222490614921565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b60095481565b600061225f61279a565b73ffffffffffffffffffffffffffffffffffffffff1661227d611914565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614921565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61230361279a565b73ffffffffffffffffffffffffffffffffffffffff16612321611914565b73ffffffffffffffffffffffffffffffffffffffff1614612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614921565b60405180910390fd5b80156123bb576001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e819055505b50565b6123c661279a565b73ffffffffffffffffffffffffffffffffffffffff166123e4611914565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614921565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190615080565b60405180910390fd5b6124b381613705565b50565b601a5481565b600a5481565b60006124cc61279a565b73ffffffffffffffffffffffffffffffffffffffff166124ea611914565b73ffffffffffffffffffffffffffffffffffffffff1614612540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790614921565b60405180910390fd5b600f546010546125509190614a02565b4211612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906150ec565b60405180910390fd5b6103e88211156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161263891906145fc565b602060405180830381865afa158015612655573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267991906151b3565b905060006126a4612710612696868561386c90919063ffffffff16565b61388290919063ffffffff16565b905060008111156126dd576126dc7f000000000000000000000000000000000000000000000000000000000000000061dead83613898565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274a57600080fd5b505af115801561275e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612960919061457f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490615408565b60405180910390fd5b6000811415612a6757612a6283836000613898565b613700565b601160009054906101000a900460ff161561312a57612a84611914565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612af25750612ac2611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7e5750600560149054906101000a900460ff16155b1561312957601160019054906101000a900460ff16612c7857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c385750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e90615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4057612c95611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df19061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee35750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8a57600854811115612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906155be565b60405180910390fd5b600a54612f398361132c565b82612f449190614a02565b1115612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061562a565b60405180910390fd5b613128565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307c57600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156bc565b60405180910390fd5b613127565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312657600a546130d98361132c565b826130e49190614a02565b1115613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c9061562a565b60405180910390fd5b5b5b5b5b5b60006131353061132c565b90506000600954821015905080801561315a5750601160029054906101000a900460ff165b80156131735750600560149054906101000a900460ff16155b80156131c95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132755750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b9576001600560146101000a81548160ff02191690831515021790555061329d613b19565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561331f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133375750600c60009054906101000a900460ff165b80156133525750600d54600e5461334e9190614a02565b4210155b80156133a85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133b7576133b5613e00565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347757600090505b600081156136f057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134da57506000601854115b156135a75761350760646134f96018548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601854601a548261351a9190614b7c565b6135249190614c05565b601d60008282546135359190614a02565b92505081905550601854601b548261354d9190614b7c565b6135579190614c05565b601e60008282546135689190614a02565b92505081905550601854601954826135809190614b7c565b61358a9190614c05565b601c600082825461359b9190614a02565b925050819055506136cc565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360257506000601454115b156136cb5761362f60646136216014548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601454601654826136429190614b7c565b61364c9190614c05565b601d600082825461365d9190614a02565b92505081905550601454601754826136759190614b7c565b61367f9190614c05565b601e60008282546136909190614a02565b92505081905550601454601554826136a89190614b7c565b6136b29190614c05565b601c60008282546136c39190614a02565b925050819055505b5b60008111156136e1576136e0873083613898565b5b80856136ed91906156dc565b94505b6136fb878787613898565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361387a9190614b7c565b905092915050565b600081836138909190614c05565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90615408565b60405180910390fd5b613983838383613fc6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0090615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a9c9190614a02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b00919061457f565b60405180910390a3613b13848484613fcb565b50505050565b6000613b243061132c565b90506000601e54601c54601d54613b3b9190614a02565b613b459190614a02565b9050600080831480613b575750600082145b15613b6457505050613dfe565b6014600954613b739190614b7c565b831115613b8c576014600954613b899190614b7c565b92505b6000600283601d5486613b9f9190614b7c565b613ba99190614c05565b613bb39190614c05565b90506000613bca8286613fd090919063ffffffff16565b90506000479050613bda82613fe6565b6000613bef8247613fd090919063ffffffff16565b90506000613c1a87613c0c601c548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000613c4588613c37601e548661386c90919063ffffffff16565b61388290919063ffffffff16565b90506000818385613c5691906156dc565b613c6091906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cc0906157d3565b60006040518083038185875af1925050503d8060008114613cfd576040519150601f19603f3d011682016040523d82523d6000602084013e613d02565b606091505b505080985050600087118015613d185750600081115b15613d6557613d278782614223565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d5c939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dab906157d3565b60006040518083038185875af1925050503d8060008114613de8576040519150601f19603f3d011682016040523d82523d6000602084013e613ded565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e6491906145fc565b602060405180830381865afa158015613e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea591906151b3565b90506000613ed2612710613ec4600b548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000811115613f0b57613f0a7f000000000000000000000000000000000000000000000000000000000000000061dead83613898565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f7857600080fd5b505af1158015613f8c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fde91906156dc565b905092915050565b6000600267ffffffffffffffff8111156140035761400261581f565b5b6040519080825280602002602001820160405280156140315781602001602082028036833780820191505090505b50905030816000815181106140495761404861584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141129190615892565b816001815181106141265761412561584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061418b307f0000000000000000000000000000000000000000000000000000000000000000846127a2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ed9594939291906159b8565b600060405180830381600087803b15801561420757600080fd5b505af115801561421b573d6000803e3d6000fd5b505050505050565b61424e307f0000000000000000000000000000000000000000000000000000000000000000846127a2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142b596959493929190615a12565b60606040518083038185885af11580156142d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142f89190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561433957808201518184015260208101905061431e565b83811115614348576000848401525b50505050565b6000601f19601f8301169050919050565b600061436a826142ff565b614374818561430a565b935061438481856020860161431b565b61438d8161434e565b840191505092915050565b600060208201905081810360008301526143b2818461435f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ea826143bf565b9050919050565b6143fa816143df565b811461440557600080fd5b50565b600081359050614417816143f1565b92915050565b6000819050919050565b6144308161441d565b811461443b57600080fd5b50565b60008135905061444d81614427565b92915050565b6000806040838503121561446a576144696143ba565b5b600061447885828601614408565b92505060206144898582860161443e565b9150509250929050565b60008115159050919050565b6144a881614493565b82525050565b60006020820190506144c3600083018461449f565b92915050565b6000602082840312156144df576144de6143ba565b5b60006144ed84828501614408565b91505092915050565b6000819050919050565b600061451b614516614511846143bf565b6144f6565b6143bf565b9050919050565b600061452d82614500565b9050919050565b600061453f82614522565b9050919050565b61454f81614534565b82525050565b600060208201905061456a6000830184614546565b92915050565b6145798161441d565b82525050565b60006020820190506145946000830184614570565b92915050565b6000806000606084860312156145b3576145b26143ba565b5b60006145c186828701614408565b93505060206145d286828701614408565b92505060406145e38682870161443e565b9150509250925092565b6145f6816143df565b82525050565b600060208201905061461160008301846145ed565b92915050565b600060ff82169050919050565b61462d81614617565b82525050565b60006020820190506146486000830184614624565b92915050565b61465781614493565b811461466257600080fd5b50565b6000813590506146748161464e565b92915050565b600080600060608486031215614693576146926143ba565b5b60006146a18682870161443e565b93505060206146b28682870161443e565b92505060406146c386828701614665565b9150509250925092565b600080604083850312156146e4576146e36143ba565b5b60006146f285828601614408565b925050602061470385828601614665565b9150509250929050565b600060208284031215614723576147226143ba565b5b60006147318482850161443e565b91505092915050565b60008060008060008060c08789031215614757576147566143ba565b5b600061476589828a0161443e565b965050602061477689828a0161443e565b955050604061478789828a0161443e565b945050606061479889828a0161443e565b93505060806147a989828a0161443e565b92505060a06147ba89828a0161443e565b9150509295509295509295565b6000602082840312156147dd576147dc6143ba565b5b60006147eb84828501614665565b91505092915050565b6000806040838503121561480b5761480a6143ba565b5b60006148198582860161443e565b925050602061482a8582860161443e565b9150509250929050565b6000806040838503121561484b5761484a6143ba565b5b600061485985828601614408565b925050602061486a85828601614408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bb57607f821691505b602082108114156148cf576148ce614874565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061490b60208361430a565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499d60288361430a565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a0d8261441d565b9150614a188361441d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4d57614a4c6149d3565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ab460338361430a565b9150614abf82614a58565b604082019050919050565b60006020820190508181036000830152614ae381614aa7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b4660308361430a565b9150614b5182614aea565b604082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b6000614b878261441d565b9150614b928361441d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bcb57614bca6149d3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c108261441d565b9150614c1b8361441d565b925082614c2b57614c2a614bd6565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c9260358361430a565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614d2460348361430a565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f4d757374206b656570206665657320617420373525206f72206c657373000000600082015250565b6000614d90601d8361430a565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e2260398361430a565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614eb460258361430a565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f46602f8361430a565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fd860248361430a565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a60268361430a565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d660208361430a565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a8361430a565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad81614427565b92915050565b6000602082840312156151c9576151c86143ba565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c60248361430a565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce60228361430a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061536060258361430a565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f260238361430a565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e60168361430a565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061551660498361430a565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a860358361430a565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061561460138361430a565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a660368361430a565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e78261441d565b91506156f28361441d565b925082821015615705576157046149d3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c60268361430a565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614570565b61580a6020830185614570565b6158176040830184614570565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816143f1565b92915050565b6000602082840312156158a8576158a76143ba565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6144f6565b61441d565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816143df565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614570565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb60608301856145ed565b615a086080830184614570565b9695505050505050565b600060c082019050615a2760008301896145ed565b615a346020830188614570565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b60808301856145ed565b615a6860a0830184614570565b979650505050505050565b600080600060608486031215615a8c57615a8b6143ba565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220e36e855547958e86b00f331f5ae608a36a11d5b20a62264171da8df9cdd7a48064736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063bf3c2f2a11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610dad578063f637434214610dd6578063f8b45b0514610e01578063fe72b27a14610e2c576103a2565b8063e2f4560514610d03578063e884f26014610d2e578063f11a24d314610d59578063f275f64b14610d84576103a2565b8063c8c8ebe4116100dc578063c8c8ebe414610c45578063d85ba06314610c70578063dd62ed3e14610c9b578063e11d22cf14610cd8576103a2565b8063bf3c2f2a14610bc8578063c024666814610bf1578063c876d0b914610c1a576103a2565b80639fccce321161017a578063a9059cbb11610149578063a9059cbb14610afa578063aacebbe314610b37578063b62496f514610b60578063bbc0c74214610b9d576103a2565b80639fccce3214610a3c578063a0d82dc514610a67578063a457c2d714610a92578063a4c82a0014610acf576103a2565b806395d89b41116101b657806395d89b41146109925780639a7a23d6146109bd5780639c3b4fdc146109e65780639ec22c0e14610a11576103a2565b80638ea5220f14610913578063921369131461093e578063924de9b714610969576103a2565b806339509351116102c1578063715018a61161025f57806378bd4e5d1161022e57806378bd4e5d146108575780637bce5a041461089457806384b0aa66146108bf5780638da5cb5b146108e8576103a2565b8063715018a6146107c3578063730c1888146107da5780637571336a1461080357806375f0a8741461082c576103a2565b80634fbee1931161029b5780634fbee193146106f35780636a486a8e146107305780636ddd17131461075b57806370a0823114610786576103a2565b8063395093511461066057806349bd5a5e1461069d5780634a62bb65146106c8576103a2565b8063199ffc721161033957806327c8f8351161030857806327c8f835146105b45780632c3e486c146105df5780632e82f1a01461060a578063313ce56714610635576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c57806323b872dd14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e69565b6040516103c99190614398565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614453565b610efb565b60405161040691906144ae565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144c9565b610f19565b60405161044391906144ae565b60405180910390f35b34801561045857600080fd5b50610461610f38565b60405161046e9190614555565b60405180910390f35b34801561048357600080fd5b5061048c610f5c565b604051610499919061457f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144c9565b610f66565b005b3480156104d757600080fd5b506104e06110a2565b6040516104ed919061457f565b60405180910390f35b34801561050257600080fd5b5061050b6110a8565b604051610518919061457f565b60405180910390f35b34801561052d57600080fd5b506105366110ae565b604051610543919061457f565b60405180910390f35b34801561055857600080fd5b506105616110b4565b60405161056e919061457f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061459a565b6110ba565b6040516105ab91906144ae565b60405180910390f35b3480156105c057600080fd5b506105c96111b2565b6040516105d691906145fc565b60405180910390f35b3480156105eb57600080fd5b506105f46111b8565b604051610601919061457f565b60405180910390f35b34801561061657600080fd5b5061061f6111be565b60405161062c91906144ae565b60405180910390f35b34801561064157600080fd5b5061064a6111d1565b6040516106579190614633565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190614453565b6111da565b60405161069491906144ae565b60405180910390f35b3480156106a957600080fd5b506106b2611286565b6040516106bf91906145fc565b60405180910390f35b3480156106d457600080fd5b506106dd6112aa565b6040516106ea91906144ae565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906144c9565b6112bd565b60405161072791906144ae565b60405180910390f35b34801561073c57600080fd5b50610745611313565b604051610752919061457f565b60405180910390f35b34801561076757600080fd5b50610770611319565b60405161077d91906144ae565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906144c9565b61132c565b6040516107ba919061457f565b60405180910390f35b3480156107cf57600080fd5b506107d8611374565b005b3480156107e657600080fd5b5061080160048036038101906107fc919061467a565b6113fc565b005b34801561080f57600080fd5b5061082a600480360381019061082591906146cd565b61153c565b005b34801561083857600080fd5b50610841611613565b60405161084e91906145fc565b60405180910390f35b34801561086357600080fd5b5061087e6004803603810190610879919061470d565b611639565b60405161088b91906144ae565b60405180910390f35b3480156108a057600080fd5b506108a961178e565b6040516108b6919061457f565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e1919061473a565b611794565b005b3480156108f457600080fd5b506108fd611914565b60405161090a91906145fc565b60405180910390f35b34801561091f57600080fd5b5061092861193e565b60405161093591906145fc565b60405180910390f35b34801561094a57600080fd5b50610953611964565b604051610960919061457f565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b91906147c7565b61196a565b005b34801561099e57600080fd5b506109a7611a03565b6040516109b49190614398565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df91906146cd565b611a95565b005b3480156109f257600080fd5b506109fb611bae565b604051610a08919061457f565b60405180910390f35b348015610a1d57600080fd5b50610a26611bb4565b604051610a33919061457f565b60405180910390f35b348015610a4857600080fd5b50610a51611bba565b604051610a5e919061457f565b60405180910390f35b348015610a7357600080fd5b50610a7c611bc0565b604051610a89919061457f565b60405180910390f35b348015610a9e57600080fd5b50610ab96004803603810190610ab49190614453565b611bc6565b604051610ac691906144ae565b60405180910390f35b348015610adb57600080fd5b50610ae4611cb1565b604051610af1919061457f565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190614453565b611cb7565b604051610b2e91906144ae565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b5991906144c9565b611cd5565b005b348015610b6c57600080fd5b50610b876004803603810190610b8291906144c9565b611e11565b604051610b9491906144ae565b60405180910390f35b348015610ba957600080fd5b50610bb2611e31565b604051610bbf91906144ae565b60405180910390f35b348015610bd457600080fd5b50610bef6004803603810190610bea91906147f4565b611e44565b005b348015610bfd57600080fd5b50610c186004803603810190610c1391906146cd565b611fe4565b005b348015610c2657600080fd5b50610c2f612109565b604051610c3c91906144ae565b60405180910390f35b348015610c5157600080fd5b50610c5a61211c565b604051610c67919061457f565b60405180910390f35b348015610c7c57600080fd5b50610c85612122565b604051610c92919061457f565b60405180910390f35b348015610ca757600080fd5b50610cc26004803603810190610cbd9190614834565b612128565b604051610ccf919061457f565b60405180910390f35b348015610ce457600080fd5b50610ced6121af565b604051610cfa91906144ae565b60405180910390f35b348015610d0f57600080fd5b50610d1861224f565b604051610d25919061457f565b60405180910390f35b348015610d3a57600080fd5b50610d43612255565b604051610d5091906144ae565b60405180910390f35b348015610d6557600080fd5b50610d6e6122f5565b604051610d7b919061457f565b60405180910390f35b348015610d9057600080fd5b50610dab6004803603810190610da691906147c7565b6122fb565b005b348015610db957600080fd5b50610dd46004803603810190610dcf91906144c9565b6123be565b005b348015610de257600080fd5b50610deb6124b6565b604051610df8919061457f565b60405180910390f35b348015610e0d57600080fd5b50610e166124bc565b604051610e23919061457f565b60405180910390f35b348015610e3857600080fd5b50610e536004803603810190610e4e919061470d565b6124c2565b604051610e6091906144ae565b60405180910390f35b606060038054610e78906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea4906148a3565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b6000610f0f610f0861279a565b84846127a2565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f6e61279a565b73ffffffffffffffffffffffffffffffffffffffff16610f8c611914565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614921565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b60006110c784848461296d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111261279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906149b3565b60405180910390fd5b6111a68561119e61279a565b8584036127a2565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061127c6111e761279a565b8484600160006111f561279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112779190614a02565b6127a2565b6001905092915050565b7f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1581565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137c61279a565b73ffffffffffffffffffffffffffffffffffffffff1661139a611914565b73ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790614921565b60405180910390fd5b6113fa6000613705565b565b61140461279a565b73ffffffffffffffffffffffffffffffffffffffff16611422611914565b73ffffffffffffffffffffffffffffffffffffffff1614611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614921565b60405180910390fd5b6102588310156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490614aca565b60405180910390fd5b6103e882111580156114d0575060008210155b61150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614b5c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61154461279a565b73ffffffffffffffffffffffffffffffffffffffff16611562611914565b73ffffffffffffffffffffffffffffffffffffffff16146115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614921565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061164361279a565b73ffffffffffffffffffffffffffffffffffffffff16611661611914565b73ffffffffffffffffffffffffffffffffffffffff16146116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90614921565b60405180910390fd5b620186a060016116c5610f5c565b6116cf9190614b7c565b6116d99190614c05565b82101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614ca8565b60405180910390fd5b6103e86005611728610f5c565b6117329190614b7c565b61173c9190614c05565b82111561177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590614d3a565b60405180910390fd5b8160098190555060019050919050565b60155481565b61179c61279a565b73ffffffffffffffffffffffffffffffffffffffff166117ba611914565b73ffffffffffffffffffffffffffffffffffffffff1614611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614921565b60405180910390fd5b8560158190555084601681905550836017819055506017546016546015546118389190614a02565b6118429190614a02565b601481905550604b601454111561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590614da6565b60405180910390fd5b8260198190555081601a8190555080601b819055506017546016546015546118b69190614a02565b6118c09190614a02565b601881905550604b601454111561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614da6565b60405180910390fd5b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61197261279a565b73ffffffffffffffffffffffffffffffffffffffff16611990611914565b73ffffffffffffffffffffffffffffffffffffffff16146119e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dd90614921565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a12906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e906148a3565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b611a9d61279a565b73ffffffffffffffffffffffffffffffffffffffff16611abb611914565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614921565b60405180910390fd5b7f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614e38565b60405180910390fd5b611baa82826137cb565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611bd561279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8990614eca565b60405180910390fd5b611ca6611c9d61279a565b858584036127a2565b600191505092915050565b600e5481565b6000611ccb611cc461279a565b848461296d565b6001905092915050565b611cdd61279a565b73ffffffffffffffffffffffffffffffffffffffff16611cfb611914565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890614921565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e4c61279a565b73ffffffffffffffffffffffffffffffffffffffff16611e6a611914565b73ffffffffffffffffffffffffffffffffffffffff1614611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790614921565b60405180910390fd5b670de0b6b3a76400006103e86001611ed6610f5c565b611ee09190614b7c565b611eea9190614c05565b611ef49190614c05565b821015611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90614f5c565b60405180910390fd5b670de0b6b3a764000082611f4a9190614b7c565b600881905550670de0b6b3a76400006103e86005611f66610f5c565b611f709190614b7c565b611f7a9190614c05565b611f849190614c05565b811015611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614fee565b60405180910390fd5b670de0b6b3a764000081611fda9190614b7c565b600a819055505050565b611fec61279a565b73ffffffffffffffffffffffffffffffffffffffff1661200a611914565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790614921565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120fd91906144ae565b60405180910390a25050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006121b961279a565b73ffffffffffffffffffffffffffffffffffffffff166121d7611914565b73ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222490614921565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b60095481565b600061225f61279a565b73ffffffffffffffffffffffffffffffffffffffff1661227d611914565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614921565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61230361279a565b73ffffffffffffffffffffffffffffffffffffffff16612321611914565b73ffffffffffffffffffffffffffffffffffffffff1614612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614921565b60405180910390fd5b80156123bb576001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e819055505b50565b6123c661279a565b73ffffffffffffffffffffffffffffffffffffffff166123e4611914565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614921565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190615080565b60405180910390fd5b6124b381613705565b50565b601a5481565b600a5481565b60006124cc61279a565b73ffffffffffffffffffffffffffffffffffffffff166124ea611914565b73ffffffffffffffffffffffffffffffffffffffff1614612540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790614921565b60405180910390fd5b600f546010546125509190614a02565b4211612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906150ec565b60405180910390fd5b6103e88211156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f156040518263ffffffff1660e01b815260040161263891906145fc565b602060405180830381865afa158015612655573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267991906151b3565b905060006126a4612710612696868561386c90919063ffffffff16565b61388290919063ffffffff16565b905060008111156126dd576126dc7f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1561dead83613898565b5b60007f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274a57600080fd5b505af115801561275e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612960919061457f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490615408565b60405180910390fd5b6000811415612a6757612a6283836000613898565b613700565b601160009054906101000a900460ff161561312a57612a84611914565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612af25750612ac2611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7e5750600560149054906101000a900460ff16155b1561312957601160019054906101000a900460ff16612c7857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c385750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e90615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4057612c95611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7457507f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df19061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee35750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8a57600854811115612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906155be565b60405180910390fd5b600a54612f398361132c565b82612f449190614a02565b1115612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061562a565b60405180910390fd5b613128565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307c57600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156bc565b60405180910390fd5b613127565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312657600a546130d98361132c565b826130e49190614a02565b1115613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c9061562a565b60405180910390fd5b5b5b5b5b5b60006131353061132c565b90506000600954821015905080801561315a5750601160029054906101000a900460ff165b80156131735750600560149054906101000a900460ff16155b80156131c95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132755750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b9576001600560146101000a81548160ff02191690831515021790555061329d613b19565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561331f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133375750600c60009054906101000a900460ff165b80156133525750600d54600e5461334e9190614a02565b4210155b80156133a85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133b7576133b5613e00565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347757600090505b600081156136f057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134da57506000601854115b156135a75761350760646134f96018548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601854601a548261351a9190614b7c565b6135249190614c05565b601d60008282546135359190614a02565b92505081905550601854601b548261354d9190614b7c565b6135579190614c05565b601e60008282546135689190614a02565b92505081905550601854601954826135809190614b7c565b61358a9190614c05565b601c600082825461359b9190614a02565b925050819055506136cc565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360257506000601454115b156136cb5761362f60646136216014548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601454601654826136429190614b7c565b61364c9190614c05565b601d600082825461365d9190614a02565b92505081905550601454601754826136759190614b7c565b61367f9190614c05565b601e60008282546136909190614a02565b92505081905550601454601554826136a89190614b7c565b6136b29190614c05565b601c60008282546136c39190614a02565b925050819055505b5b60008111156136e1576136e0873083613898565b5b80856136ed91906156dc565b94505b6136fb878787613898565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361387a9190614b7c565b905092915050565b600081836138909190614c05565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90615408565b60405180910390fd5b613983838383613fc6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0090615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a9c9190614a02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b00919061457f565b60405180910390a3613b13848484613fcb565b50505050565b6000613b243061132c565b90506000601e54601c54601d54613b3b9190614a02565b613b459190614a02565b9050600080831480613b575750600082145b15613b6457505050613dfe565b6014600954613b739190614b7c565b831115613b8c576014600954613b899190614b7c565b92505b6000600283601d5486613b9f9190614b7c565b613ba99190614c05565b613bb39190614c05565b90506000613bca8286613fd090919063ffffffff16565b90506000479050613bda82613fe6565b6000613bef8247613fd090919063ffffffff16565b90506000613c1a87613c0c601c548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000613c4588613c37601e548661386c90919063ffffffff16565b61388290919063ffffffff16565b90506000818385613c5691906156dc565b613c6091906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cc0906157d3565b60006040518083038185875af1925050503d8060008114613cfd576040519150601f19603f3d011682016040523d82523d6000602084013e613d02565b606091505b505080985050600087118015613d185750600081115b15613d6557613d278782614223565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d5c939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dab906157d3565b60006040518083038185875af1925050503d8060008114613de8576040519150601f19603f3d011682016040523d82523d6000602084013e613ded565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f156040518263ffffffff1660e01b8152600401613e6491906145fc565b602060405180830381865afa158015613e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea591906151b3565b90506000613ed2612710613ec4600b548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000811115613f0b57613f0a7f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1561dead83613898565b5b60007f000000000000000000000000638cf0ef31574908b55ce549ea2e1df15d410f1590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f7857600080fd5b505af1158015613f8c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fde91906156dc565b905092915050565b6000600267ffffffffffffffff8111156140035761400261581f565b5b6040519080825280602002602001820160405280156140315781602001602082028036833780820191505090505b50905030816000815181106140495761404861584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141129190615892565b816001815181106141265761412561584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061418b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127a2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ed9594939291906159b8565b600060405180830381600087803b15801561420757600080fd5b505af115801561421b573d6000803e3d6000fd5b505050505050565b61424e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127a2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142b596959493929190615a12565b60606040518083038185885af11580156142d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142f89190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561433957808201518184015260208101905061431e565b83811115614348576000848401525b50505050565b6000601f19601f8301169050919050565b600061436a826142ff565b614374818561430a565b935061438481856020860161431b565b61438d8161434e565b840191505092915050565b600060208201905081810360008301526143b2818461435f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ea826143bf565b9050919050565b6143fa816143df565b811461440557600080fd5b50565b600081359050614417816143f1565b92915050565b6000819050919050565b6144308161441d565b811461443b57600080fd5b50565b60008135905061444d81614427565b92915050565b6000806040838503121561446a576144696143ba565b5b600061447885828601614408565b92505060206144898582860161443e565b9150509250929050565b60008115159050919050565b6144a881614493565b82525050565b60006020820190506144c3600083018461449f565b92915050565b6000602082840312156144df576144de6143ba565b5b60006144ed84828501614408565b91505092915050565b6000819050919050565b600061451b614516614511846143bf565b6144f6565b6143bf565b9050919050565b600061452d82614500565b9050919050565b600061453f82614522565b9050919050565b61454f81614534565b82525050565b600060208201905061456a6000830184614546565b92915050565b6145798161441d565b82525050565b60006020820190506145946000830184614570565b92915050565b6000806000606084860312156145b3576145b26143ba565b5b60006145c186828701614408565b93505060206145d286828701614408565b92505060406145e38682870161443e565b9150509250925092565b6145f6816143df565b82525050565b600060208201905061461160008301846145ed565b92915050565b600060ff82169050919050565b61462d81614617565b82525050565b60006020820190506146486000830184614624565b92915050565b61465781614493565b811461466257600080fd5b50565b6000813590506146748161464e565b92915050565b600080600060608486031215614693576146926143ba565b5b60006146a18682870161443e565b93505060206146b28682870161443e565b92505060406146c386828701614665565b9150509250925092565b600080604083850312156146e4576146e36143ba565b5b60006146f285828601614408565b925050602061470385828601614665565b9150509250929050565b600060208284031215614723576147226143ba565b5b60006147318482850161443e565b91505092915050565b60008060008060008060c08789031215614757576147566143ba565b5b600061476589828a0161443e565b965050602061477689828a0161443e565b955050604061478789828a0161443e565b945050606061479889828a0161443e565b93505060806147a989828a0161443e565b92505060a06147ba89828a0161443e565b9150509295509295509295565b6000602082840312156147dd576147dc6143ba565b5b60006147eb84828501614665565b91505092915050565b6000806040838503121561480b5761480a6143ba565b5b60006148198582860161443e565b925050602061482a8582860161443e565b9150509250929050565b6000806040838503121561484b5761484a6143ba565b5b600061485985828601614408565b925050602061486a85828601614408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bb57607f821691505b602082108114156148cf576148ce614874565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061490b60208361430a565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499d60288361430a565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a0d8261441d565b9150614a188361441d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4d57614a4c6149d3565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ab460338361430a565b9150614abf82614a58565b604082019050919050565b60006020820190508181036000830152614ae381614aa7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b4660308361430a565b9150614b5182614aea565b604082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b6000614b878261441d565b9150614b928361441d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bcb57614bca6149d3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c108261441d565b9150614c1b8361441d565b925082614c2b57614c2a614bd6565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c9260358361430a565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614d2460348361430a565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f4d757374206b656570206665657320617420373525206f72206c657373000000600082015250565b6000614d90601d8361430a565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e2260398361430a565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614eb460258361430a565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f46602f8361430a565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fd860248361430a565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a60268361430a565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d660208361430a565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a8361430a565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad81614427565b92915050565b6000602082840312156151c9576151c86143ba565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c60248361430a565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce60228361430a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061536060258361430a565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f260238361430a565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e60168361430a565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061551660498361430a565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a860358361430a565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061561460138361430a565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a660368361430a565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e78261441d565b91506156f28361441d565b925082821015615705576157046149d3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c60268361430a565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614570565b61580a6020830185614570565b6158176040830184614570565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816143f1565b92915050565b6000602082840312156158a8576158a76143ba565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6144f6565b61441d565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816143df565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614570565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb60608301856145ed565b615a086080830184614570565b9695505050505050565b600060c082019050615a2760008301896145ed565b615a346020830188614570565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b60808301856145ed565b615a6860a0830184614570565b979650505050505050565b600080600060608486031215615a8c57615a8b6143ba565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220e36e855547958e86b00f331f5ae608a36a11d5b20a62264171da8df9cdd7a48064736f6c634300080a0033

Deployed Bytecode Sourcemap

32775:19416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11770:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34409:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32858:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10723:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41519:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33423:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33238:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34193:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34153;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12421:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32961:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33333:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10565:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13322:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32916:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33521:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41684:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34008:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33601:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10894:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2838:103;;;;;;;;;;;;;:::i;:::-;;49773:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39442:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33053:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38430:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33901:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39813:734;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2187:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33090:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34043:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39705:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9822:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40772:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33975:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33477:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34233:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34119:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14040:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33385:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11234:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41280:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34630:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33561:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38935:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40582:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33819:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33123:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33867:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11472:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38043:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33165:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38225:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33938:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37777:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3096:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34081:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33205:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51132:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9603:100;9657:13;9690:5;9683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603:100;:::o;11770:169::-;11853:4;11870:39;11879:12;:10;:12::i;:::-;11893:7;11902:6;11870:8;:39::i;:::-;11927:4;11920:11;;11770:169;;;;:::o;34409:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32858:51::-;;;:::o;10723:108::-;10784:7;10811:12;;10804:19;;10723:108;:::o;41519:157::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41626:9:::1;;;;;;;;;;;41598:38;;41615:9;41598:38;;;;;;;;;;;;41659:9;41647;;:21;;;;;;;;;;;;;;;;;;41519:157:::0;:::o;33423:47::-;;;;:::o;33238:36::-;;;;:::o;34193:33::-;;;;:::o;34153:::-;;;;:::o;12421:492::-;12561:4;12578:36;12588:6;12596:9;12607:6;12578:9;:36::i;:::-;12627:24;12654:11;:19;12666:6;12654:19;;;;;;;;;;;;;;;:33;12674:12;:10;:12::i;:::-;12654:33;;;;;;;;;;;;;;;;12627:60;;12726:6;12706:16;:26;;12698:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12813:57;12822:6;12830:12;:10;:12::i;:::-;12863:6;12844:16;:25;12813:8;:57::i;:::-;12901:4;12894:11;;;12421:492;;;;;:::o;32961:53::-;33007:6;32961:53;:::o;33333:45::-;;;;:::o;33294:32::-;;;;;;;;;;;;;:::o;10565:93::-;10623:5;10648:2;10641:9;;10565:93;:::o;13322:215::-;13410:4;13427:80;13436:12;:10;:12::i;:::-;13450:7;13496:10;13459:11;:25;13471:12;:10;:12::i;:::-;13459:25;;;;;;;;;;;;;;;:34;13485:7;13459:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13427:8;:80::i;:::-;13525:4;13518:11;;13322:215;;;;:::o;32916:38::-;;;:::o;33521:33::-;;;;;;;;;;;;;:::o;41684:126::-;41750:4;41774:19;:28;41794:7;41774:28;;;;;;;;;;;;;;;;;;;;;;;;;41767:35;;41684:126;;;:::o;34008:28::-;;;;:::o;33601:31::-;;;;;;;;;;;;;:::o;10894:127::-;10968:7;10995:9;:18;11005:7;10995:18;;;;;;;;;;;;;;;;10988:25;;10894:127;;;:::o;2838:103::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2903:30:::1;2930:1;2903:18;:30::i;:::-;2838:103::o:0;49773:555::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49975:3:::1;49952:19;:26;;49930:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50102:4;50090:8;:16;;:33;;;;;50122:1;50110:8;:13;;50090:33;50068:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50228:19;50210:15;:37;;;;50277:8;50258:16;:27;;;;50312:8;50296:13;;:24;;;;;;;;;;;;;;;;;;49773:555:::0;;;:::o;39442:167::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39597:4:::1;39555:31;:39;39587:6;39555:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39442:167:::0;;:::o;33053:30::-;;;;;;;;;;;;;:::o;38430:497::-;38538:4;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38617:6:::1;38612:1;38596:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38595:28;;;;:::i;:::-;38582:9;:41;;38560:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38772:4;38767:1;38751:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38750:26;;;;:::i;:::-;38737:9;:39;;38715:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38888:9;38867:18;:30;;;;38915:4;38908:11;;38430:497:::0;;;:::o;33901:30::-;;;;:::o;39813:734::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40029:16:::1;40011:15;:34;;;;40074:16;40056:15;:34;;;;40113:10;40101:9;:22;;;;40185:9;;40167:15;;40149;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40134:12;:60;;;;40229:2;40213:12;;:18;;40205:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40297:17;40278:16;:36;;;;40344:17;40325:16;:36;;;;40385:11;40372:10;:24;;;;40459:9;;40441:15;;40423;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40407:13;:61;;;;40503:2;40487:12;;:18;;40479:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39813:734:::0;;;;;;:::o;2187:87::-;2233:7;2260:6;;;;;;;;;;;2253:13;;2187:87;:::o;33090:24::-;;;;;;;;;;;;;:::o;34043:31::-;;;;:::o;39705:100::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39790:7:::1;39776:11;;:21;;;;;;;;;;;;;;;;;;39705:100:::0;:::o;9822:104::-;9878:13;9911:7;9904:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9822:104;:::o;40772:304::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40916:13:::1;40908:21;;:4;:21;;;;40886:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41027:41;41056:4;41062:5;41027:28;:41::i;:::-;40772:304:::0;;:::o;33975:24::-;;;;:::o;33477:35::-;;;;:::o;34233:27::-;;;;:::o;34119:25::-;;;;:::o;14040:413::-;14133:4;14150:24;14177:11;:25;14189:12;:10;:12::i;:::-;14177:25;;;;;;;;;;;;;;;:34;14203:7;14177:34;;;;;;;;;;;;;;;;14150:61;;14250:15;14230:16;:35;;14222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14343:67;14352:12;:10;:12::i;:::-;14366:7;14394:15;14375:16;:34;14343:8;:67::i;:::-;14441:4;14434:11;;;14040:413;;;;:::o;33385:29::-;;;;:::o;11234:175::-;11320:4;11337:42;11347:12;:10;:12::i;:::-;11361:9;11372:6;11337:9;:42::i;:::-;11397:4;11390:11;;11234:175;;;;:::o;41280:231::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41440:15:::1;;;;;;;;;;;41397:59;;41420:18;41397:59;;;;;;;;;;;;41485:18;41467:15;;:36;;;;;;;;;;;;;;;;;;41280:231:::0;:::o;34630:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33561:33::-;;;;;;;;;;;;;:::o;38935:493::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39092:4:::1;39084;39079:1;39063:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39062:26;;;;:::i;:::-;39061:35;;;;:::i;:::-;39049:8;:47;;39027:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39217:6;39205:8;:19;;;;:::i;:::-;39182:20;:42;;;;39306:4;39298;39293:1;39277:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39276:26;;;;:::i;:::-;39275:35;;;;:::i;:::-;39259:12;:51;;39237:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;39413:6;39397:12;:23;;;;:::i;:::-;39385:9;:35;;;;38935:493:::0;;:::o;40582:182::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40698:8:::1;40667:19;:28;40687:7;40667:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40738:7;40722:34;;;40747:8;40722:34;;;;;;:::i;:::-;;;;;;;;40582:182:::0;;:::o;33819:39::-;;;;;;;;;;;;;:::o;33123:35::-;;;;:::o;33867:27::-;;;;:::o;11472:151::-;11561:7;11588:11;:18;11600:5;11588:18;;;;;;;;;;;;;;;:27;11607:7;11588:27;;;;;;;;;;;;;;;;11581:34;;11472:151;;;;:::o;38043:121::-;38095:4;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38129:5:::1;38112:14;;:22;;;;;;;;;;;;;;;;;;38152:4;38145:11;;38043:121:::0;:::o;33165:33::-;;;;:::o;38225:135::-;38285:4;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38325:5:::1;38302:20;;:28;;;;;;;;;;;;;;;;;;38348:4;38341:11;;38225:135:::0;:::o;33938:30::-;;;;:::o;37777:214::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37849:7:::1;37846:128;;;37884:4;37868:13;;:20;;;;;;;;;;;;;;;;;;37913:4;37899:11;;:18;;;;;;;;;;;;;;;;;;37945:15;37928:14;:32;;;;37846:128;37777:214:::0;:::o;3096:201::-;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3205:1:::1;3185:22;;:8;:22;;;;3177:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3261:28;3280:8;3261:18;:28::i;:::-;3096:201:::0;:::o;34081:31::-;;;;:::o;33205:24::-;;;;:::o;51132:1056::-;51243:4;2418:12;:10;:12::i;:::-;2407:23;;:7;:5;:7::i;:::-;:23;;;2399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51328:19:::1;;51305:20;;:42;;;;:::i;:::-;51287:15;:60;51265:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51437:4;51426:7;:15;;51418:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51522:15;51499:20;:38;;;;51592:28;51623:4;:14;;;51638:13;51623:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51592:60;;51702:20;51725:44;51763:5;51725:33;51750:7;51725:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51702:67;;51889:1;51874:12;:16;51870:110;;;51907:61;51923:13;51946:6;51955:12;51907:15;:61::i;:::-;51870:110;52055:19;52092:13;52055:51;;52117:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52144:14;;;;;;;;;;52176:4;52169:11;;;;;51132:1056:::0;;;:::o;860:98::-;913:7;940:10;933:17;;860:98;:::o;17724:380::-;17877:1;17860:19;;:5;:19;;;;17852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17958:1;17939:21;;:7;:21;;;;17931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18042:6;18012:11;:18;18024:5;18012:18;;;;;;;;;;;;;;;:27;18031:7;18012:27;;;;;;;;;;;;;;;:36;;;;18080:7;18064:32;;18073:5;18064:32;;;18089:6;18064:32;;;;;;:::i;:::-;;;;;;;;17724:380;;;:::o;41868:5011::-;42016:1;42000:18;;:4;:18;;;;41992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42093:1;42079:16;;:2;:16;;;;42071:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42162:1;42152:6;:11;42148:93;;;42180:28;42196:4;42202:2;42206:1;42180:15;:28::i;:::-;42223:7;;42148:93;42257:14;;;;;;;;;;;42253:2487;;;42318:7;:5;:7::i;:::-;42310:15;;:4;:15;;;;:49;;;;;42352:7;:5;:7::i;:::-;42346:13;;:2;:13;;;;42310:49;:86;;;;;42394:1;42380:16;;:2;:16;;;;42310:86;:128;;;;;42431:6;42417:21;;:2;:21;;;;42310:128;:158;;;;;42460:8;;;;;;;;;;;42459:9;42310:158;42288:2441;;;42508:13;;;;;;;;;;;42503:223;;42580:19;:25;42600:4;42580:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42609:19;:23;42629:2;42609:23;;;;;;;;;;;;;;;;;;;;;;;;;42580:52;42546:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42503:223;42882:20;;;;;;;;;;;42878:641;;;42963:7;:5;:7::i;:::-;42957:13;;:2;:13;;;;:72;;;;;43013:15;42999:30;;:2;:30;;;;42957:72;:129;;;;;43072:13;43058:28;;:2;:28;;;;42957:129;42927:573;;;43250:12;43175:28;:39;43204:9;43175:39;;;;;;;;;;;;;;;;:87;43137:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43464:12;43422:28;:39;43451:9;43422:39;;;;;;;;;;;;;;;:54;;;;42927:573;42878:641;43593:25;:31;43619:4;43593:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43650:31;:35;43682:2;43650:35;;;;;;;;;;;;;;;;;;;;;;;;;43649:36;43593:92;43567:1147;;;43772:20;;43762:6;:30;;43728:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43980:9;;43963:13;43973:2;43963:9;:13::i;:::-;43954:6;:22;;;;:::i;:::-;:35;;43920:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43567:1147;;;44158:25;:29;44184:2;44158:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44213:31;:37;44245:4;44213:37;;;;;;;;;;;;;;;;;;;;;;;;;44212:38;44158:92;44132:582;;;44337:20;;44327:6;:30;;44293:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44132:582;;;44494:31;:35;44526:2;44494:35;;;;;;;;;;;;;;;;;;;;;;;;;44489:225;;44614:9;;44597:13;44607:2;44597:9;:13::i;:::-;44588:6;:22;;;;:::i;:::-;:35;;44554:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44489:225;44132:582;43567:1147;42288:2441;42253:2487;44752:28;44783:24;44801:4;44783:9;:24::i;:::-;44752:55;;44820:12;44859:18;;44835:20;:42;;44820:57;;44908:7;:35;;;;;44932:11;;;;;;;;;;;44908:35;:61;;;;;44961:8;;;;;;;;;;;44960:9;44908:61;:110;;;;;44987:25;:31;45013:4;44987:31;;;;;;;;;;;;;;;;;;;;;;;;;44986:32;44908:110;:153;;;;;45036:19;:25;45056:4;45036:25;;;;;;;;;;;;;;;;;;;;;;;;;45035:26;44908:153;:194;;;;;45079:19;:23;45099:2;45079:23;;;;;;;;;;;;;;;;;;;;;;;;;45078:24;44908:194;44890:326;;;45140:4;45129:8;;:15;;;;;;;;;;;;;;;;;;45161:10;:8;:10::i;:::-;45199:5;45188:8;;:16;;;;;;;;;;;;;;;;;;44890:326;45247:8;;;;;;;;;;;45246:9;:55;;;;;45272:25;:29;45298:2;45272:29;;;;;;;;;;;;;;;;;;;;;;;;;45246:55;:85;;;;;45318:13;;;;;;;;;;;45246:85;:153;;;;;45384:15;;45367:14;;:32;;;;:::i;:::-;45348:15;:51;;45246:153;:196;;;;;45417:19;:25;45437:4;45417:25;;;;;;;;;;;;;;;;;;;;;;;;;45416:26;45246:196;45228:282;;;45469:29;:27;:29::i;:::-;;45228:282;45522:12;45538:8;;;;;;;;;;;45537:9;45522:24;;45648:19;:25;45668:4;45648:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45677:19;:23;45697:2;45677:23;;;;;;;;;;;;;;;;;;;;;;;;;45648:52;45644:100;;;45727:5;45717:15;;45644:100;45756:12;45861:7;45857:969;;;45913:25;:29;45939:2;45913:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45962:1;45946:13;;:17;45913:50;45909:768;;;45991:34;46021:3;45991:25;46002:13;;45991:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45984:41;;46094:13;;46074:16;;46067:4;:23;;;;:::i;:::-;46066:41;;;;:::i;:::-;46044:18;;:63;;;;;;;:::i;:::-;;;;;;;;46164:13;;46150:10;;46143:4;:17;;;;:::i;:::-;46142:35;;;;:::i;:::-;46126:12;;:51;;;;;;;:::i;:::-;;;;;;;;46246:13;;46226:16;;46219:4;:23;;;;:::i;:::-;46218:41;;;;:::i;:::-;46196:18;;:63;;;;;;;:::i;:::-;;;;;;;;45909:768;;;46321:25;:31;46347:4;46321:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46371:1;46356:12;;:16;46321:51;46317:360;;;46400:33;46429:3;46400:24;46411:12;;46400:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46393:40;;46501:12;;46482:15;;46475:4;:22;;;;:::i;:::-;46474:39;;;;:::i;:::-;46452:18;;:61;;;;;;;:::i;:::-;;;;;;;;46569:12;;46556:9;;46549:4;:16;;;;:::i;:::-;46548:33;;;;:::i;:::-;46532:12;;:49;;;;;;;:::i;:::-;;;;;;;;46649:12;;46630:15;;46623:4;:22;;;;:::i;:::-;46622:39;;;;:::i;:::-;46600:18;;:61;;;;;;;:::i;:::-;;;;;;;;46317:360;45909:768;46704:1;46697:4;:8;46693:91;;;46726:42;46742:4;46756;46763;46726:15;:42::i;:::-;46693:91;46810:4;46800:14;;;;;:::i;:::-;;;45857:969;46838:33;46854:4;46860:2;46864:6;46838:15;:33::i;:::-;41981:4898;;;;41868:5011;;;;:::o;3457:191::-;3531:16;3550:6;;;;;;;;;;;3531:25;;3576:8;3567:6;;:17;;;;;;;;;;;;;;;;;;3631:8;3600:40;;3621:8;3600:40;;;;;;;;;;;;3520:128;3457:191;:::o;41084:188::-;41201:5;41167:25;:31;41193:4;41167:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41258:5;41224:40;;41252:4;41224:40;;;;;;;;;;;;41084:188;;:::o;23177:98::-;23235:7;23266:1;23262;:5;;;;:::i;:::-;23255:12;;23177:98;;;;:::o;23576:::-;23634:7;23665:1;23661;:5;;;;:::i;:::-;23654:12;;23576:98;;;;:::o;14943:733::-;15101:1;15083:20;;:6;:20;;;;15075:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15185:1;15164:23;;:9;:23;;;;15156:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15240:47;15261:6;15269:9;15280:6;15240:20;:47::i;:::-;15300:21;15324:9;:17;15334:6;15324:17;;;;;;;;;;;;;;;;15300:41;;15377:6;15360:13;:23;;15352:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15498:6;15482:13;:22;15462:9;:17;15472:6;15462:17;;;;;;;;;;;;;;;:42;;;;15550:6;15526:9;:20;15536:9;15526:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15591:9;15574:35;;15583:6;15574:35;;;15602:6;15574:35;;;;;;:::i;:::-;;;;;;;;15622:46;15642:6;15650:9;15661:6;15622:19;:46::i;:::-;15064:612;14943:733;;;:::o;48009:1756::-;48048:23;48074:24;48092:4;48074:9;:24::i;:::-;48048:50;;48109:25;48205:12;;48171:18;;48137;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48109:108;;48228:12;48276:1;48257:15;:20;:46;;;;48302:1;48281:17;:22;48257:46;48253:85;;;48320:7;;;;;48253:85;48393:2;48372:18;;:23;;;;:::i;:::-;48354:15;:41;48350:115;;;48451:2;48430:18;;:23;;;;:::i;:::-;48412:41;;48350:115;48526:23;48639:1;48606:17;48571:18;;48553:15;:36;;;;:::i;:::-;48552:71;;;;:::i;:::-;:88;;;;:::i;:::-;48526:114;;48651:26;48680:36;48700:15;48680;:19;;:36;;;;:::i;:::-;48651:65;;48729:25;48757:21;48729:49;;48791:36;48808:18;48791:16;:36::i;:::-;48840:18;48861:44;48887:17;48861:21;:25;;:44;;;;:::i;:::-;48840:65;;48918:23;48944:81;48997:17;48944:34;48959:18;;48944:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48918:107;;49036:17;49056:51;49089:17;49056:28;49071:12;;49056:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49036:71;;49120:23;49177:9;49159:15;49146:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49120:66;;49220:1;49199:18;:22;;;;49253:1;49232:18;:22;;;;49280:1;49265:12;:16;;;;49316:9;;;;;;;;;;;49308:23;;49339:9;49308:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49294:59;;;;;49388:1;49370:15;:19;:42;;;;;49411:1;49393:15;:19;49370:42;49366:278;;;49429:46;49442:15;49459;49429:12;:46::i;:::-;49495:137;49528:18;49565:15;49599:18;;49495:137;;;;;;;;:::i;:::-;;;;;;;;49366:278;49678:15;;;;;;;;;;;49670:29;;49721:21;49670:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49656:101;;;;;48037:1728;;;;;;;;;;48009:1756;:::o;50336:788::-;50393:4;50427:15;50410:14;:32;;;;50497:28;50528:4;:14;;;50543:13;50528:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50497:60;;50607:20;50630:77;50691:5;50630:42;50655:16;;50630:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50607:100;;50827:1;50812:12;:16;50808:110;;;50845:61;50861:13;50884:6;50893:12;50845:15;:61::i;:::-;50808:110;50993:19;51030:13;50993:51;;51055:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51082:12;;;;;;;;;;51112:4;51105:11;;;;;50336:788;:::o;18704:125::-;;;;:::o;19433:124::-;;;;:::o;22820:98::-;22878:7;22909:1;22905;:5;;;;:::i;:::-;22898:12;;22820:98;;;;:::o;46887:589::-;47013:21;47051:1;47037:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47013:40;;47082:4;47064;47069:1;47064:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47108:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47098:4;47103:1;47098:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47143:62;47160:4;47175:15;47193:11;47143:8;:62::i;:::-;47244:15;:66;;;47325:11;47351:1;47395:4;47422;47442:15;47244:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46942:534;46887:589;:::o;47484:517::-;47632:62;47649:4;47664:15;47682:11;47632:8;:62::i;:::-;47737:15;:31;;;47776:9;47809:4;47829:11;47855:1;47898;33007:6;47967:15;47737:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47484: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:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:613::-;6901:6;6909;6917;6966:2;6954:9;6945:7;6941:23;6937:32;6934:119;;;6972:79;;:::i;:::-;6934:119;7092:1;7117:53;7162:7;7153:6;7142:9;7138:22;7117:53;:::i;:::-;7107:63;;7063:117;7219:2;7245:53;7290:7;7281:6;7270:9;7266:22;7245:53;:::i;:::-;7235:63;;7190:118;7347:2;7373:50;7415:7;7406:6;7395:9;7391:22;7373:50;:::i;:::-;7363:60;;7318:115;6827:613;;;;;:::o;7446:468::-;7511:6;7519;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:53;7764:7;7755:6;7744:9;7740:22;7719:53;:::i;:::-;7709:63;;7665:117;7821:2;7847:50;7889:7;7880:6;7869:9;7865:22;7847:50;:::i;:::-;7837:60;;7792:115;7446:468;;;;;:::o;7920:329::-;7979:6;8028:2;8016:9;8007:7;8003:23;7999:32;7996:119;;;8034:79;;:::i;:::-;7996:119;8154:1;8179:53;8224:7;8215:6;8204:9;8200:22;8179:53;:::i;:::-;8169:63;;8125:117;7920:329;;;;:::o;8255:1057::-;8359:6;8367;8375;8383;8391;8399;8448:3;8436:9;8427:7;8423:23;8419:33;8416:120;;;8455:79;;:::i;:::-;8416:120;8575:1;8600:53;8645:7;8636:6;8625:9;8621:22;8600:53;:::i;:::-;8590:63;;8546:117;8702:2;8728:53;8773:7;8764:6;8753:9;8749:22;8728:53;:::i;:::-;8718:63;;8673:118;8830:2;8856:53;8901:7;8892:6;8881:9;8877:22;8856:53;:::i;:::-;8846:63;;8801:118;8958:2;8984:53;9029:7;9020:6;9009:9;9005:22;8984:53;:::i;:::-;8974:63;;8929:118;9086:3;9113:53;9158:7;9149:6;9138:9;9134:22;9113:53;:::i;:::-;9103:63;;9057:119;9215:3;9242:53;9287:7;9278:6;9267:9;9263:22;9242:53;:::i;:::-;9232:63;;9186:119;8255:1057;;;;;;;;:::o;9318:323::-;9374:6;9423:2;9411:9;9402:7;9398:23;9394:32;9391:119;;;9429:79;;:::i;:::-;9391:119;9549:1;9574:50;9616:7;9607:6;9596:9;9592:22;9574:50;:::i;:::-;9564:60;;9520:114;9318:323;;;;:::o;9647:474::-;9715:6;9723;9772:2;9760:9;9751:7;9747:23;9743:32;9740:119;;;9778:79;;:::i;:::-;9740:119;9898:1;9923:53;9968:7;9959:6;9948:9;9944:22;9923:53;:::i;:::-;9913:63;;9869:117;10025:2;10051:53;10096:7;10087:6;10076:9;10072:22;10051:53;:::i;:::-;10041:63;;9996:118;9647:474;;;;;:::o;10127:::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:53;10576:7;10567:6;10556:9;10552:22;10531:53;:::i;:::-;10521:63;;10476:118;10127:474;;;;;:::o;10607:180::-;10655:77;10652:1;10645:88;10752:4;10749:1;10742:15;10776:4;10773:1;10766:15;10793:320;10837:6;10874:1;10868:4;10864:12;10854:22;;10921:1;10915:4;10911:12;10942:18;10932:81;;10998:4;10990:6;10986:17;10976:27;;10932:81;11060:2;11052:6;11049:14;11029:18;11026:38;11023:84;;;11079:18;;:::i;:::-;11023:84;10844:269;10793:320;;;:::o;11119:182::-;11259:34;11255:1;11247:6;11243:14;11236:58;11119:182;:::o;11307:366::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:419::-;11845:4;11883:2;11872:9;11868:18;11860:26;;11932:9;11926:4;11922:20;11918:1;11907:9;11903:17;11896:47;11960:131;12086:4;11960:131;:::i;:::-;11952:139;;11679:419;;;:::o;12104:227::-;12244:34;12240:1;12232:6;12228:14;12221:58;12313:10;12308:2;12300:6;12296:15;12289:35;12104:227;:::o;12337:366::-;12479:3;12500:67;12564:2;12559:3;12500:67;:::i;:::-;12493:74;;12576:93;12665:3;12576:93;:::i;:::-;12694:2;12689:3;12685:12;12678:19;;12337:366;;;:::o;12709:419::-;12875:4;12913:2;12902:9;12898:18;12890:26;;12962:9;12956:4;12952:20;12948:1;12937:9;12933:17;12926:47;12990:131;13116:4;12990:131;:::i;:::-;12982:139;;12709:419;;;:::o;13134:180::-;13182:77;13179:1;13172:88;13279:4;13276:1;13269:15;13303:4;13300:1;13293:15;13320:305;13360:3;13379:20;13397:1;13379:20;:::i;:::-;13374:25;;13413:20;13431:1;13413:20;:::i;:::-;13408:25;;13567:1;13499:66;13495:74;13492:1;13489:81;13486:107;;;13573:18;;:::i;:::-;13486:107;13617:1;13614;13610:9;13603:16;;13320:305;;;;:::o;13631:238::-;13771:34;13767:1;13759:6;13755:14;13748:58;13840:21;13835:2;13827:6;13823:15;13816:46;13631:238;:::o;13875:366::-;14017:3;14038:67;14102:2;14097:3;14038:67;:::i;:::-;14031:74;;14114:93;14203:3;14114:93;:::i;:::-;14232:2;14227:3;14223:12;14216:19;;13875:366;;;:::o;14247:419::-;14413:4;14451:2;14440:9;14436:18;14428:26;;14500:9;14494:4;14490:20;14486:1;14475:9;14471:17;14464:47;14528:131;14654:4;14528:131;:::i;:::-;14520:139;;14247:419;;;:::o;14672:235::-;14812:34;14808:1;14800:6;14796:14;14789:58;14881:18;14876:2;14868:6;14864:15;14857:43;14672:235;:::o;14913:366::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:419::-;15451:4;15489:2;15478:9;15474:18;15466:26;;15538:9;15532:4;15528:20;15524:1;15513:9;15509:17;15502:47;15566:131;15692:4;15566:131;:::i;:::-;15558:139;;15285:419;;;:::o;15710:348::-;15750:7;15773:20;15791:1;15773:20;:::i;:::-;15768:25;;15807:20;15825:1;15807:20;:::i;:::-;15802:25;;15995:1;15927:66;15923:74;15920:1;15917:81;15912:1;15905:9;15898:17;15894:105;15891:131;;;16002:18;;:::i;:::-;15891:131;16050:1;16047;16043:9;16032:20;;15710:348;;;;:::o;16064:180::-;16112:77;16109:1;16102:88;16209:4;16206:1;16199:15;16233:4;16230:1;16223:15;16250:185;16290:1;16307:20;16325:1;16307:20;:::i;:::-;16302:25;;16341:20;16359:1;16341:20;:::i;:::-;16336:25;;16380:1;16370:35;;16385:18;;:::i;:::-;16370:35;16427:1;16424;16420:9;16415:14;;16250:185;;;;:::o;16441:240::-;16581:34;16577:1;16569:6;16565:14;16558:58;16650:23;16645:2;16637:6;16633:15;16626:48;16441:240;:::o;16687:366::-;16829:3;16850:67;16914:2;16909:3;16850:67;:::i;:::-;16843:74;;16926:93;17015:3;16926:93;:::i;:::-;17044:2;17039:3;17035:12;17028:19;;16687:366;;;:::o;17059:419::-;17225:4;17263:2;17252:9;17248:18;17240:26;;17312:9;17306:4;17302:20;17298:1;17287:9;17283:17;17276:47;17340:131;17466:4;17340:131;:::i;:::-;17332:139;;17059:419;;;:::o;17484:239::-;17624:34;17620:1;17612:6;17608:14;17601:58;17693:22;17688:2;17680:6;17676:15;17669:47;17484:239;:::o;17729:366::-;17871:3;17892:67;17956:2;17951:3;17892:67;:::i;:::-;17885:74;;17968:93;18057:3;17968:93;:::i;:::-;18086:2;18081:3;18077:12;18070:19;;17729:366;;;:::o;18101:419::-;18267:4;18305:2;18294:9;18290:18;18282:26;;18354:9;18348:4;18344:20;18340:1;18329:9;18325:17;18318:47;18382:131;18508:4;18382:131;:::i;:::-;18374:139;;18101:419;;;:::o;18526:179::-;18666:31;18662:1;18654:6;18650:14;18643:55;18526:179;:::o;18711:366::-;18853:3;18874:67;18938:2;18933:3;18874:67;:::i;:::-;18867:74;;18950:93;19039:3;18950:93;:::i;:::-;19068:2;19063:3;19059:12;19052:19;;18711:366;;;:::o;19083:419::-;19249:4;19287:2;19276:9;19272:18;19264:26;;19336:9;19330:4;19326:20;19322:1;19311:9;19307:17;19300:47;19364:131;19490:4;19364:131;:::i;:::-;19356:139;;19083:419;;;:::o;19508:244::-;19648:34;19644:1;19636:6;19632:14;19625:58;19717:27;19712:2;19704:6;19700:15;19693:52;19508:244;:::o;19758:366::-;19900:3;19921:67;19985:2;19980:3;19921:67;:::i;:::-;19914:74;;19997:93;20086:3;19997:93;:::i;:::-;20115:2;20110:3;20106:12;20099:19;;19758:366;;;:::o;20130:419::-;20296:4;20334:2;20323:9;20319:18;20311:26;;20383:9;20377:4;20373:20;20369:1;20358:9;20354:17;20347:47;20411:131;20537:4;20411:131;:::i;:::-;20403:139;;20130:419;;;:::o;20555:224::-;20695:34;20691:1;20683:6;20679:14;20672:58;20764:7;20759:2;20751:6;20747:15;20740:32;20555:224;:::o;20785:366::-;20927:3;20948:67;21012:2;21007:3;20948:67;:::i;:::-;20941:74;;21024:93;21113:3;21024:93;:::i;:::-;21142:2;21137:3;21133:12;21126:19;;20785:366;;;:::o;21157:419::-;21323:4;21361:2;21350:9;21346:18;21338:26;;21410:9;21404:4;21400:20;21396:1;21385:9;21381:17;21374:47;21438:131;21564:4;21438:131;:::i;:::-;21430:139;;21157:419;;;:::o;21582:234::-;21722:34;21718:1;21710:6;21706:14;21699:58;21791:17;21786:2;21778:6;21774:15;21767:42;21582:234;:::o;21822:366::-;21964:3;21985:67;22049:2;22044:3;21985:67;:::i;:::-;21978:74;;22061:93;22150:3;22061:93;:::i;:::-;22179:2;22174:3;22170:12;22163:19;;21822:366;;;:::o;22194:419::-;22360:4;22398:2;22387:9;22383:18;22375:26;;22447:9;22441:4;22437:20;22433:1;22422:9;22418:17;22411:47;22475:131;22601:4;22475:131;:::i;:::-;22467:139;;22194:419;;;:::o;22619:223::-;22759:34;22755:1;22747:6;22743:14;22736:58;22828:6;22823:2;22815:6;22811:15;22804:31;22619:223;:::o;22848:366::-;22990:3;23011:67;23075:2;23070:3;23011:67;:::i;:::-;23004:74;;23087:93;23176:3;23087:93;:::i;:::-;23205:2;23200:3;23196:12;23189:19;;22848:366;;;:::o;23220:419::-;23386:4;23424:2;23413:9;23409:18;23401:26;;23473:9;23467:4;23463:20;23459:1;23448:9;23444:17;23437:47;23501:131;23627:4;23501:131;:::i;:::-;23493:139;;23220:419;;;:::o;23645:225::-;23785:34;23781:1;23773:6;23769:14;23762:58;23854:8;23849:2;23841:6;23837:15;23830:33;23645:225;:::o;23876:366::-;24018:3;24039:67;24103:2;24098:3;24039:67;:::i;:::-;24032:74;;24115:93;24204:3;24115:93;:::i;:::-;24233:2;24228:3;24224:12;24217:19;;23876:366;;;:::o;24248:419::-;24414:4;24452:2;24441:9;24437:18;24429:26;;24501:9;24495:4;24491:20;24487:1;24476:9;24472:17;24465:47;24529:131;24655:4;24529:131;:::i;:::-;24521:139;;24248:419;;;:::o;24673:182::-;24813:34;24809:1;24801:6;24797:14;24790:58;24673:182;:::o;24861:366::-;25003:3;25024:67;25088:2;25083:3;25024:67;:::i;:::-;25017:74;;25100:93;25189:3;25100:93;:::i;:::-;25218:2;25213:3;25209:12;25202:19;;24861:366;;;:::o;25233:419::-;25399:4;25437:2;25426:9;25422:18;25414:26;;25486:9;25480:4;25476:20;25472:1;25461:9;25457:17;25450:47;25514:131;25640:4;25514:131;:::i;:::-;25506:139;;25233:419;;;:::o;25658:229::-;25798:34;25794:1;25786:6;25782:14;25775:58;25867:12;25862:2;25854:6;25850:15;25843:37;25658:229;:::o;25893:366::-;26035:3;26056:67;26120:2;26115:3;26056:67;:::i;:::-;26049:74;;26132:93;26221:3;26132:93;:::i;:::-;26250:2;26245:3;26241:12;26234:19;;25893:366;;;:::o;26265:419::-;26431:4;26469:2;26458:9;26454:18;26446:26;;26518:9;26512:4;26508:20;26504:1;26493:9;26489:17;26482:47;26546:131;26672:4;26546:131;:::i;:::-;26538:139;;26265:419;;;:::o;26690:143::-;26747:5;26778:6;26772:13;26763:22;;26794:33;26821:5;26794:33;:::i;:::-;26690:143;;;;:::o;26839:351::-;26909:6;26958:2;26946:9;26937:7;26933:23;26929:32;26926:119;;;26964:79;;:::i;:::-;26926:119;27084:1;27109:64;27165:7;27156:6;27145:9;27141:22;27109:64;:::i;:::-;27099:74;;27055:128;26839:351;;;;:::o;27196:223::-;27336:34;27332:1;27324:6;27320:14;27313:58;27405:6;27400:2;27392:6;27388:15;27381:31;27196:223;:::o;27425:366::-;27567:3;27588:67;27652:2;27647:3;27588:67;:::i;:::-;27581:74;;27664:93;27753:3;27664:93;:::i;:::-;27782:2;27777:3;27773:12;27766:19;;27425:366;;;:::o;27797:419::-;27963:4;28001:2;27990:9;27986:18;27978:26;;28050:9;28044:4;28040:20;28036:1;28025:9;28021:17;28014:47;28078:131;28204:4;28078:131;:::i;:::-;28070:139;;27797:419;;;:::o;28222:221::-;28362:34;28358:1;28350:6;28346:14;28339:58;28431:4;28426:2;28418:6;28414:15;28407:29;28222:221;:::o;28449:366::-;28591:3;28612:67;28676:2;28671:3;28612:67;:::i;:::-;28605:74;;28688:93;28777:3;28688:93;:::i;:::-;28806:2;28801:3;28797:12;28790:19;;28449:366;;;:::o;28821:419::-;28987:4;29025:2;29014:9;29010:18;29002:26;;29074:9;29068:4;29064:20;29060:1;29049:9;29045:17;29038:47;29102:131;29228:4;29102:131;:::i;:::-;29094:139;;28821:419;;;:::o;29246:224::-;29386:34;29382:1;29374:6;29370:14;29363:58;29455:7;29450:2;29442:6;29438:15;29431:32;29246:224;:::o;29476:366::-;29618:3;29639:67;29703:2;29698:3;29639:67;:::i;:::-;29632:74;;29715:93;29804:3;29715:93;:::i;:::-;29833:2;29828:3;29824:12;29817:19;;29476:366;;;:::o;29848:419::-;30014:4;30052:2;30041:9;30037:18;30029:26;;30101:9;30095:4;30091:20;30087:1;30076:9;30072:17;30065:47;30129:131;30255:4;30129:131;:::i;:::-;30121:139;;29848:419;;;:::o;30273:222::-;30413:34;30409:1;30401:6;30397:14;30390:58;30482:5;30477:2;30469:6;30465:15;30458:30;30273:222;:::o;30501:366::-;30643:3;30664:67;30728:2;30723:3;30664:67;:::i;:::-;30657:74;;30740:93;30829:3;30740:93;:::i;:::-;30858:2;30853:3;30849:12;30842:19;;30501:366;;;:::o;30873:419::-;31039:4;31077:2;31066:9;31062:18;31054:26;;31126:9;31120:4;31116:20;31112:1;31101:9;31097:17;31090:47;31154:131;31280:4;31154:131;:::i;:::-;31146:139;;30873:419;;;:::o;31298:172::-;31438:24;31434:1;31426:6;31422:14;31415:48;31298:172;:::o;31476:366::-;31618:3;31639:67;31703:2;31698:3;31639:67;:::i;:::-;31632:74;;31715:93;31804:3;31715:93;:::i;:::-;31833:2;31828:3;31824:12;31817:19;;31476:366;;;:::o;31848:419::-;32014:4;32052:2;32041:9;32037:18;32029:26;;32101:9;32095:4;32091:20;32087:1;32076:9;32072:17;32065:47;32129:131;32255:4;32129:131;:::i;:::-;32121:139;;31848:419;;;:::o;32273:297::-;32413:34;32409:1;32401:6;32397:14;32390:58;32482:34;32477:2;32469:6;32465:15;32458:59;32551:11;32546:2;32538:6;32534:15;32527:36;32273:297;:::o;32576:366::-;32718:3;32739:67;32803:2;32798:3;32739:67;:::i;:::-;32732:74;;32815:93;32904:3;32815:93;:::i;:::-;32933:2;32928:3;32924:12;32917:19;;32576:366;;;:::o;32948:419::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:240::-;33513:34;33509:1;33501:6;33497:14;33490:58;33582:23;33577:2;33569:6;33565:15;33558:48;33373:240;:::o;33619:366::-;33761:3;33782:67;33846:2;33841:3;33782:67;:::i;:::-;33775:74;;33858:93;33947:3;33858:93;:::i;:::-;33976:2;33971:3;33967:12;33960:19;;33619:366;;;:::o;33991:419::-;34157:4;34195:2;34184:9;34180:18;34172:26;;34244:9;34238:4;34234:20;34230:1;34219:9;34215:17;34208:47;34272:131;34398:4;34272:131;:::i;:::-;34264:139;;33991:419;;;:::o;34416:169::-;34556:21;34552:1;34544:6;34540:14;34533:45;34416:169;:::o;34591:366::-;34733:3;34754:67;34818:2;34813:3;34754:67;:::i;:::-;34747:74;;34830:93;34919:3;34830:93;:::i;:::-;34948:2;34943:3;34939:12;34932:19;;34591:366;;;:::o;34963:419::-;35129:4;35167:2;35156:9;35152:18;35144:26;;35216:9;35210:4;35206:20;35202:1;35191:9;35187:17;35180:47;35244:131;35370:4;35244:131;:::i;:::-;35236:139;;34963:419;;;:::o;35388:241::-;35528:34;35524:1;35516:6;35512:14;35505:58;35597:24;35592:2;35584:6;35580:15;35573:49;35388:241;:::o;35635:366::-;35777:3;35798:67;35862:2;35857:3;35798:67;:::i;:::-;35791:74;;35874:93;35963:3;35874:93;:::i;:::-;35992:2;35987:3;35983:12;35976:19;;35635:366;;;:::o;36007:419::-;36173:4;36211:2;36200:9;36196:18;36188:26;;36260:9;36254:4;36250:20;36246:1;36235:9;36231:17;36224:47;36288:131;36414:4;36288:131;:::i;:::-;36280:139;;36007:419;;;:::o;36432:191::-;36472:4;36492:20;36510:1;36492:20;:::i;:::-;36487:25;;36526:20;36544:1;36526:20;:::i;:::-;36521:25;;36565:1;36562;36559:8;36556:34;;;36570:18;;:::i;:::-;36556:34;36615:1;36612;36608:9;36600:17;;36432:191;;;;:::o;36629:225::-;36769:34;36765:1;36757:6;36753:14;36746:58;36838:8;36833:2;36825:6;36821:15;36814:33;36629:225;:::o;36860:366::-;37002:3;37023:67;37087:2;37082:3;37023:67;:::i;:::-;37016:74;;37099:93;37188:3;37099:93;:::i;:::-;37217:2;37212:3;37208:12;37201:19;;36860:366;;;:::o;37232:419::-;37398:4;37436:2;37425:9;37421:18;37413:26;;37485:9;37479:4;37475:20;37471:1;37460:9;37456:17;37449:47;37513:131;37639:4;37513:131;:::i;:::-;37505:139;;37232:419;;;:::o;37657:147::-;37758:11;37795:3;37780:18;;37657:147;;;;:::o;37810:114::-;;:::o;37930:398::-;38089:3;38110:83;38191:1;38186:3;38110:83;:::i;:::-;38103:90;;38202:93;38291:3;38202:93;:::i;:::-;38320:1;38315:3;38311:11;38304:18;;37930:398;;;:::o;38334:379::-;38518:3;38540:147;38683:3;38540:147;:::i;:::-;38533:154;;38704:3;38697:10;;38334:379;;;:::o;38719:442::-;38868:4;38906:2;38895:9;38891:18;38883:26;;38919:71;38987:1;38976:9;38972:17;38963:6;38919:71;:::i;:::-;39000:72;39068:2;39057:9;39053:18;39044:6;39000:72;:::i;:::-;39082;39150:2;39139:9;39135:18;39126:6;39082:72;:::i;:::-;38719:442;;;;;;:::o;39167:180::-;39215:77;39212:1;39205:88;39312:4;39309:1;39302:15;39336:4;39333:1;39326:15;39353:180;39401:77;39398:1;39391:88;39498:4;39495:1;39488:15;39522:4;39519:1;39512:15;39539:143;39596:5;39627:6;39621:13;39612:22;;39643:33;39670:5;39643:33;:::i;:::-;39539:143;;;;:::o;39688:351::-;39758:6;39807:2;39795:9;39786:7;39782:23;39778:32;39775:119;;;39813:79;;:::i;:::-;39775:119;39933:1;39958:64;40014:7;40005:6;39994:9;39990:22;39958:64;:::i;:::-;39948:74;;39904:128;39688:351;;;;:::o;40045:85::-;40090:7;40119:5;40108:16;;40045:85;;;:::o;40136:158::-;40194:9;40227:61;40245:42;40254:32;40280:5;40254:32;:::i;:::-;40245:42;:::i;:::-;40227:61;:::i;:::-;40214:74;;40136:158;;;:::o;40300:147::-;40395:45;40434:5;40395:45;:::i;:::-;40390:3;40383:58;40300:147;;:::o;40453:114::-;40520:6;40554:5;40548:12;40538:22;;40453:114;;;:::o;40573:184::-;40672:11;40706:6;40701:3;40694:19;40746:4;40741:3;40737:14;40722:29;;40573:184;;;;:::o;40763:132::-;40830:4;40853:3;40845:11;;40883:4;40878:3;40874:14;40866:22;;40763:132;;;:::o;40901:108::-;40978:24;40996:5;40978:24;:::i;:::-;40973:3;40966:37;40901:108;;:::o;41015:179::-;41084:10;41105:46;41147:3;41139:6;41105:46;:::i;:::-;41183:4;41178:3;41174:14;41160:28;;41015:179;;;;:::o;41200:113::-;41270:4;41302;41297:3;41293:14;41285:22;;41200:113;;;:::o;41349:732::-;41468:3;41497:54;41545:5;41497:54;:::i;:::-;41567:86;41646:6;41641:3;41567:86;:::i;:::-;41560:93;;41677:56;41727:5;41677:56;:::i;:::-;41756:7;41787:1;41772:284;41797:6;41794:1;41791:13;41772:284;;;41873:6;41867:13;41900:63;41959:3;41944:13;41900:63;:::i;:::-;41893:70;;41986:60;42039:6;41986:60;:::i;:::-;41976:70;;41832:224;41819:1;41816;41812:9;41807:14;;41772:284;;;41776:14;42072:3;42065:10;;41473:608;;;41349:732;;;;:::o;42087:831::-;42350:4;42388:3;42377:9;42373:19;42365:27;;42402:71;42470:1;42459:9;42455:17;42446:6;42402:71;:::i;:::-;42483:80;42559:2;42548:9;42544:18;42535:6;42483:80;:::i;:::-;42610:9;42604:4;42600:20;42595:2;42584:9;42580:18;42573:48;42638:108;42741:4;42732:6;42638:108;:::i;:::-;42630:116;;42756:72;42824:2;42813:9;42809:18;42800:6;42756:72;:::i;:::-;42838:73;42906:3;42895:9;42891:19;42882:6;42838:73;:::i;:::-;42087:831;;;;;;;;:::o;42924:807::-;43173:4;43211:3;43200:9;43196:19;43188:27;;43225:71;43293:1;43282:9;43278:17;43269:6;43225:71;:::i;:::-;43306:72;43374:2;43363:9;43359:18;43350:6;43306:72;:::i;:::-;43388:80;43464:2;43453:9;43449:18;43440:6;43388:80;:::i;:::-;43478;43554:2;43543:9;43539:18;43530:6;43478:80;:::i;:::-;43568:73;43636:3;43625:9;43621:19;43612:6;43568:73;:::i;:::-;43651;43719:3;43708:9;43704:19;43695:6;43651:73;:::i;:::-;42924:807;;;;;;;;;:::o;43737:663::-;43825:6;43833;43841;43890:2;43878:9;43869:7;43865:23;43861:32;43858:119;;;43896:79;;:::i;:::-;43858:119;44016:1;44041:64;44097:7;44088:6;44077:9;44073:22;44041:64;:::i;:::-;44031:74;;43987:128;44154:2;44180:64;44236:7;44227:6;44216:9;44212:22;44180:64;:::i;:::-;44170:74;;44125:129;44293:2;44319:64;44375:7;44366:6;44355:9;44351:22;44319:64;:::i;:::-;44309:74;;44264:129;43737:663;;;;;:::o

Swarm Source

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