mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
2151 lines
402 KiB
Python
Executable file
2151 lines
402 KiB
Python
Executable file
#!/usr/bin/env python
|
||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
# lint: pylint
|
||
# pyright: basic
|
||
"""WebbApp
|
||
|
||
"""
|
||
# pylint: disable=use-dict-literal
|
||
|
||
import hashlib
|
||
import hmac
|
||
import json
|
||
import os
|
||
import sys
|
||
import base64
|
||
import requests
|
||
import markdown
|
||
import re
|
||
import datetime
|
||
from textrank4zh import TextRank4Keyword, TextRank4Sentence
|
||
import pycorrector
|
||
import threading
|
||
|
||
from timeit import default_timer
|
||
from html import escape
|
||
from io import StringIO
|
||
import typing
|
||
from typing import List, Dict, Iterable
|
||
|
||
import urllib
|
||
import urllib.parse
|
||
from urllib.parse import urlencode, unquote
|
||
|
||
import httpx
|
||
|
||
from pygments import highlight
|
||
from pygments.lexers import get_lexer_by_name
|
||
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
|
||
|
||
import flask
|
||
|
||
from flask import (
|
||
Flask,
|
||
render_template,
|
||
url_for,
|
||
make_response,
|
||
redirect,
|
||
send_from_directory,
|
||
)
|
||
from flask.wrappers import Response
|
||
from flask.json import jsonify
|
||
|
||
from flask_babel import (
|
||
Babel,
|
||
gettext,
|
||
format_decimal,
|
||
)
|
||
|
||
from searx import (
|
||
logger,
|
||
get_setting,
|
||
settings,
|
||
searx_debug,
|
||
)
|
||
|
||
from searx import infopage
|
||
from searx.data import ENGINE_DESCRIPTIONS
|
||
from searx.results import Timing, UnresponsiveEngine
|
||
from searx.settings_defaults import OUTPUT_FORMATS
|
||
from searx.settings_loader import get_default_settings_path
|
||
from searx.exceptions import SearxParameterException
|
||
from searx.engines import (
|
||
OTHER_CATEGORY,
|
||
categories,
|
||
engines,
|
||
engine_shortcuts,
|
||
)
|
||
from searx.webutils import (
|
||
UnicodeWriter,
|
||
highlight_content,
|
||
get_static_files,
|
||
get_result_templates,
|
||
get_themes,
|
||
prettify_url,
|
||
new_hmac,
|
||
is_hmac_of,
|
||
is_flask_run_cmdline,
|
||
group_engines_in_tab,
|
||
searxng_l10n_timespan,
|
||
)
|
||
from searx.webadapter import (
|
||
get_search_query_from_webapp,
|
||
get_selected_categories,
|
||
)
|
||
from searx.utils import (
|
||
html_to_text,
|
||
gen_useragent,
|
||
dict_subset,
|
||
match_language,
|
||
)
|
||
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
|
||
from searx.query import RawTextQuery
|
||
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
|
||
from searx.plugins.oa_doi_rewrite import get_doi_resolver
|
||
from searx.preferences import (
|
||
Preferences,
|
||
ValidationException,
|
||
)
|
||
from searx.answerers import (
|
||
answerers,
|
||
ask,
|
||
)
|
||
from searx.metrics import (
|
||
get_engines_stats,
|
||
get_engine_errors,
|
||
get_reliabilities,
|
||
histogram,
|
||
counter,
|
||
)
|
||
from searx.flaskfix import patch_application
|
||
|
||
from searx.locales import (
|
||
LOCALE_NAMES,
|
||
RTL_LOCALES,
|
||
localeselector,
|
||
locales_initialize,
|
||
)
|
||
|
||
# renaming names from searx imports ...
|
||
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
|
||
from searx.languages import language_codes as languages
|
||
from searx.redisdb import initialize as redis_initialize
|
||
from searx.search import SearchWithPlugins, initialize as search_initialize
|
||
from searx.network import stream as http_stream, set_context_network_name
|
||
from searx.search.checker import get_result as checker_get_result
|
||
|
||
logger = logger.getChild('webapp')
|
||
|
||
# check secret_key
|
||
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
|
||
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
|
||
sys.exit(1)
|
||
|
||
# about static
|
||
logger.debug('static directory is %s', settings['ui']['static_path'])
|
||
static_files = get_static_files(settings['ui']['static_path'])
|
||
|
||
# about templates
|
||
logger.debug('templates directory is %s', settings['ui']['templates_path'])
|
||
default_theme = settings['ui']['default_theme']
|
||
templates_path = settings['ui']['templates_path']
|
||
themes = get_themes(templates_path)
|
||
result_templates = get_result_templates(templates_path)
|
||
|
||
STATS_SORT_PARAMETERS = {
|
||
'name': (False, 'name', ''),
|
||
'score': (True, 'score_per_result', 0),
|
||
'result_count': (True, 'result_count', 0),
|
||
'time': (False, 'total', 0),
|
||
'reliability': (False, 'reliability', 100),
|
||
}
|
||
|
||
# Flask app
|
||
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
|
||
|
||
app.jinja_env.trim_blocks = True
|
||
app.jinja_env.lstrip_blocks = True
|
||
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
|
||
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
|
||
app.secret_key = settings['server']['secret_key']
|
||
|
||
timeout_text = gettext('timeout')
|
||
parsing_error_text = gettext('parsing error')
|
||
http_protocol_error_text = gettext('HTTP protocol error')
|
||
network_error_text = gettext('network error')
|
||
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
|
||
exception_classname_to_text = {
|
||
None: gettext('unexpected crash'),
|
||
'timeout': timeout_text,
|
||
'asyncio.TimeoutError': timeout_text,
|
||
'httpx.TimeoutException': timeout_text,
|
||
'httpx.ConnectTimeout': timeout_text,
|
||
'httpx.ReadTimeout': timeout_text,
|
||
'httpx.WriteTimeout': timeout_text,
|
||
'httpx.HTTPStatusError': gettext('HTTP error'),
|
||
'httpx.ConnectError': gettext("HTTP connection error"),
|
||
'httpx.RemoteProtocolError': http_protocol_error_text,
|
||
'httpx.LocalProtocolError': http_protocol_error_text,
|
||
'httpx.ProtocolError': http_protocol_error_text,
|
||
'httpx.ReadError': network_error_text,
|
||
'httpx.WriteError': network_error_text,
|
||
'httpx.ProxyError': gettext("proxy error"),
|
||
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
|
||
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
|
||
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
|
||
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
|
||
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
|
||
'KeyError': parsing_error_text,
|
||
'json.decoder.JSONDecodeError': parsing_error_text,
|
||
'lxml.etree.ParserError': parsing_error_text,
|
||
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
|
||
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
|
||
}
|
||
|
||
|
||
class ExtendedRequest(flask.Request):
|
||
"""This class is never initialized and only used for type checking."""
|
||
|
||
preferences: Preferences
|
||
errors: List[str]
|
||
user_plugins: List[Plugin]
|
||
form: Dict[str, str]
|
||
start_time: float
|
||
render_time: float
|
||
timings: List[Timing]
|
||
|
||
|
||
request = typing.cast(ExtendedRequest, flask.request)
|
||
|
||
|
||
def get_locale():
|
||
locale = localeselector()
|
||
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
|
||
return locale
|
||
|
||
|
||
babel = Babel(app, locale_selector=get_locale)
|
||
|
||
|
||
def _get_browser_language(req, lang_list):
|
||
for lang in req.headers.get("Accept-Language", "en").split(","):
|
||
if ';' in lang:
|
||
lang = lang.split(';')[0]
|
||
if '-' in lang:
|
||
lang_parts = lang.split('-')
|
||
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
|
||
locale = match_language(lang, lang_list, fallback=None)
|
||
if locale is not None:
|
||
return locale
|
||
return 'en'
|
||
|
||
|
||
def _get_locale_rfc5646(locale):
|
||
"""Get locale name for <html lang="...">
|
||
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
|
||
For example "zh-TW" is detected but not "zh-Hant-TW".
|
||
This function returns a locale without the subtag.
|
||
"""
|
||
parts = locale.split('-')
|
||
return parts[0].lower() + '-' + parts[-1].upper()
|
||
|
||
|
||
# code-highlighter
|
||
@app.template_filter('code_highlighter')
|
||
def code_highlighter(codelines, language=None):
|
||
if not language:
|
||
language = 'text'
|
||
|
||
try:
|
||
# find lexer by programming language
|
||
lexer = get_lexer_by_name(language, stripall=True)
|
||
|
||
except Exception as e: # pylint: disable=broad-except
|
||
logger.exception(e, exc_info=True)
|
||
# if lexer is not found, using default one
|
||
lexer = get_lexer_by_name('text', stripall=True)
|
||
|
||
html_code = ''
|
||
tmp_code = ''
|
||
last_line = None
|
||
line_code_start = None
|
||
|
||
# parse lines
|
||
for line, code in codelines:
|
||
if not last_line:
|
||
line_code_start = line
|
||
|
||
# new codeblock is detected
|
||
if last_line is not None and last_line + 1 != line:
|
||
|
||
# highlight last codepart
|
||
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
|
||
html_code = html_code + highlight(tmp_code, lexer, formatter)
|
||
|
||
# reset conditions for next codepart
|
||
tmp_code = ''
|
||
line_code_start = line
|
||
|
||
# add codepart
|
||
tmp_code += code + '\n'
|
||
|
||
# update line
|
||
last_line = line
|
||
|
||
# highlight last codepart
|
||
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
|
||
html_code = html_code + highlight(tmp_code, lexer, formatter)
|
||
|
||
return html_code
|
||
|
||
|
||
def get_result_template(theme_name: str, template_name: str):
|
||
themed_path = theme_name + '/result_templates/' + template_name
|
||
if themed_path in result_templates:
|
||
return themed_path
|
||
return 'result_templates/' + template_name
|
||
|
||
|
||
def custom_url_for(endpoint: str, **values):
|
||
suffix = ""
|
||
if endpoint == 'static' and values.get('filename'):
|
||
file_hash = static_files.get(values['filename'])
|
||
if not file_hash:
|
||
# try file in the current theme
|
||
theme_name = request.preferences.get_value('theme')
|
||
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
|
||
file_hash = static_files.get(filename_with_theme)
|
||
if file_hash:
|
||
values['filename'] = filename_with_theme
|
||
if get_setting('ui.static_use_hash') and file_hash:
|
||
suffix = "?" + file_hash
|
||
if endpoint == 'info' and 'locale' not in values:
|
||
locale = request.preferences.get_value('locale')
|
||
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
|
||
locale = _INFO_PAGES.locale_default
|
||
values['locale'] = locale
|
||
return url_for(endpoint, **values) + suffix
|
||
|
||
|
||
def morty_proxify(url: str):
|
||
if url.startswith('//'):
|
||
url = 'https:' + url
|
||
|
||
if not settings['result_proxy']['url']:
|
||
return url
|
||
|
||
url = url.replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")
|
||
|
||
url_params = dict(mortyurl=url)
|
||
|
||
if settings['result_proxy']['key']:
|
||
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
|
||
|
||
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
|
||
|
||
|
||
def image_proxify(url: str):
|
||
|
||
if url.startswith('//'):
|
||
url = 'https:' + url
|
||
|
||
if not request.preferences.get_value('image_proxy'):
|
||
return url
|
||
|
||
if url.startswith('data:image/'):
|
||
# 50 is an arbitrary number to get only the beginning of the image.
|
||
partial_base64 = url[len('data:image/') : 50].split(';')
|
||
if (
|
||
len(partial_base64) == 2
|
||
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
|
||
and partial_base64[1].startswith('base64,')
|
||
):
|
||
return url
|
||
return None
|
||
|
||
if settings['result_proxy']['url']:
|
||
return morty_proxify(url)
|
||
|
||
h = new_hmac(settings['server']['secret_key'], url.encode())
|
||
|
||
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
|
||
|
||
|
||
def get_translations():
|
||
return {
|
||
# when there is autocompletion
|
||
'no_item_found': gettext('No item found'),
|
||
# /preferences: the source of the engine description (wikipedata, wikidata, website)
|
||
'Source': gettext('Source'),
|
||
# infinite scroll
|
||
'error_loading_next_page': gettext('Error loading the next page'),
|
||
}
|
||
|
||
|
||
def _get_enable_categories(all_categories: Iterable[str]):
|
||
disabled_engines = request.preferences.engines.get_disabled()
|
||
enabled_categories = set(
|
||
# pylint: disable=consider-using-dict-items
|
||
category
|
||
for engine_name in engines
|
||
for category in engines[engine_name].categories
|
||
if (engine_name, category) not in disabled_engines
|
||
)
|
||
return [x for x in all_categories if x in enabled_categories]
|
||
|
||
|
||
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
|
||
path = parsed_url.path
|
||
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
|
||
path = unquote(path.replace("/", " › "))
|
||
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
|
||
|
||
|
||
def get_client_settings():
|
||
req_pref = request.preferences
|
||
return {
|
||
'autocomplete_provider': req_pref.get_value('autocomplete'),
|
||
'autocomplete_min': get_setting('search.autocomplete_min'),
|
||
'http_method': req_pref.get_value('method'),
|
||
'infinite_scroll': req_pref.get_value('infinite_scroll'),
|
||
'translations': get_translations(),
|
||
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
|
||
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
|
||
'theme_static_path': custom_url_for('static', filename='themes/simple'),
|
||
}
|
||
|
||
|
||
def render(template_name: str, **kwargs):
|
||
|
||
kwargs['client_settings'] = str(
|
||
base64.b64encode(
|
||
bytes(
|
||
json.dumps(get_client_settings()),
|
||
encoding='utf-8',
|
||
)
|
||
),
|
||
encoding='utf-8',
|
||
)
|
||
|
||
# values from the HTTP requests
|
||
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
|
||
kwargs['cookies'] = request.cookies
|
||
kwargs['errors'] = request.errors
|
||
|
||
# values from the preferences
|
||
kwargs['preferences'] = request.preferences
|
||
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
|
||
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
|
||
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
|
||
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
|
||
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
|
||
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
|
||
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
|
||
kwargs['theme'] = request.preferences.get_value('theme')
|
||
kwargs['method'] = request.preferences.get_value('method')
|
||
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
|
||
kwargs['categories'] = _get_enable_categories(categories.keys())
|
||
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
|
||
|
||
# i18n
|
||
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
|
||
|
||
locale = request.preferences.get_value('locale')
|
||
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
|
||
|
||
if locale in RTL_LOCALES and 'rtl' not in kwargs:
|
||
kwargs['rtl'] = True
|
||
if 'current_language' not in kwargs:
|
||
kwargs['current_language'] = match_language(
|
||
request.preferences.get_value('language'), settings['search']['languages']
|
||
)
|
||
|
||
# values from settings
|
||
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
|
||
kwargs['instance_name'] = get_setting('general.instance_name')
|
||
kwargs['searx_version'] = VERSION_STRING
|
||
kwargs['searx_git_url'] = GIT_URL
|
||
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
|
||
kwargs['get_setting'] = get_setting
|
||
kwargs['get_pretty_url'] = get_pretty_url
|
||
|
||
# values from settings: donation_url
|
||
donation_url = get_setting('general.donation_url')
|
||
if donation_url is True:
|
||
donation_url = custom_url_for('info', pagename='donate')
|
||
kwargs['donation_url'] = donation_url
|
||
|
||
# helpers to create links to other pages
|
||
kwargs['url_for'] = custom_url_for # override url_for function in templates
|
||
kwargs['image_proxify'] = image_proxify
|
||
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
|
||
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
|
||
kwargs['cache_url'] = settings['ui']['cache_url']
|
||
kwargs['get_result_template'] = get_result_template
|
||
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
|
||
kwargs['opensearch_url'] = (
|
||
url_for('opensearch')
|
||
+ '?'
|
||
+ urlencode(
|
||
{
|
||
'method': request.preferences.get_value('method'),
|
||
'autocomplete': request.preferences.get_value('autocomplete'),
|
||
}
|
||
)
|
||
)
|
||
|
||
# scripts from plugins
|
||
kwargs['scripts'] = set()
|
||
for plugin in request.user_plugins:
|
||
for script in plugin.js_dependencies:
|
||
kwargs['scripts'].add(script)
|
||
|
||
# styles from plugins
|
||
kwargs['styles'] = set()
|
||
for plugin in request.user_plugins:
|
||
for css in plugin.css_dependencies:
|
||
kwargs['styles'].add(css)
|
||
|
||
start_time = default_timer()
|
||
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
|
||
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
|
||
|
||
return result
|
||
|
||
|
||
@app.before_request
|
||
def pre_request():
|
||
request.start_time = default_timer() # pylint: disable=assigning-non-slot
|
||
request.render_time = 0 # pylint: disable=assigning-non-slot
|
||
request.timings = [] # pylint: disable=assigning-non-slot
|
||
request.errors = [] # pylint: disable=assigning-non-slot
|
||
|
||
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
|
||
user_agent = request.headers.get('User-Agent', '').lower()
|
||
if 'webkit' in user_agent and 'android' in user_agent:
|
||
preferences.key_value_settings['method'].value = 'GET'
|
||
request.preferences = preferences # pylint: disable=assigning-non-slot
|
||
|
||
try:
|
||
preferences.parse_dict(request.cookies)
|
||
|
||
except Exception as e: # pylint: disable=broad-except
|
||
logger.exception(e, exc_info=True)
|
||
request.errors.append(gettext('Invalid settings, please edit your preferences'))
|
||
|
||
# merge GET, POST vars
|
||
# request.form
|
||
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
|
||
for k, v in request.args.items():
|
||
if k not in request.form:
|
||
request.form[k] = v
|
||
|
||
if request.form.get('preferences'):
|
||
preferences.parse_encoded_data(request.form['preferences'])
|
||
else:
|
||
try:
|
||
preferences.parse_dict(request.form)
|
||
except Exception as e: # pylint: disable=broad-except
|
||
logger.exception(e, exc_info=True)
|
||
request.errors.append(gettext('Invalid settings'))
|
||
|
||
# language is defined neither in settings nor in preferences
|
||
# use browser headers
|
||
if not preferences.get_value("language"):
|
||
language = _get_browser_language(request, settings['search']['languages'])
|
||
preferences.parse_dict({"language": language})
|
||
logger.debug('set language %s (from browser)', preferences.get_value("language"))
|
||
|
||
# locale is defined neither in settings nor in preferences
|
||
# use browser headers
|
||
if not preferences.get_value("locale"):
|
||
locale = _get_browser_language(request, LOCALE_NAMES.keys())
|
||
preferences.parse_dict({"locale": locale})
|
||
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
|
||
|
||
# request.user_plugins
|
||
request.user_plugins = [] # pylint: disable=assigning-non-slot
|
||
allowed_plugins = preferences.plugins.get_enabled()
|
||
disabled_plugins = preferences.plugins.get_disabled()
|
||
for plugin in plugins:
|
||
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
|
||
request.user_plugins.append(plugin)
|
||
|
||
|
||
@app.after_request
|
||
def add_default_headers(response: flask.Response):
|
||
# set default http headers
|
||
for header, value in settings['server']['default_http_headers'].items():
|
||
if header in response.headers:
|
||
continue
|
||
response.headers[header] = value
|
||
return response
|
||
|
||
|
||
@app.after_request
|
||
def post_request(response: flask.Response):
|
||
total_time = default_timer() - request.start_time
|
||
timings_all = [
|
||
'total;dur=' + str(round(total_time * 1000, 3)),
|
||
'render;dur=' + str(round(request.render_time * 1000, 3)),
|
||
]
|
||
if len(request.timings) > 0:
|
||
timings = sorted(request.timings, key=lambda t: t.total)
|
||
timings_total = [
|
||
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
|
||
]
|
||
timings_load = [
|
||
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
|
||
for i, t in enumerate(timings)
|
||
if t.load
|
||
]
|
||
timings_all = timings_all + timings_total + timings_load
|
||
# response.headers.add('Server-Timing', ', '.join(timings_all))
|
||
return response
|
||
|
||
|
||
def index_error(output_format: str, error_message: str):
|
||
if output_format == 'json':
|
||
return Response(json.dumps({'error': error_message}), mimetype='application/json')
|
||
if output_format == 'csv':
|
||
response = Response('', mimetype='application/csv')
|
||
cont_disp = 'attachment;Filename=searx.csv'
|
||
response.headers.add('Content-Disposition', cont_disp)
|
||
return response
|
||
|
||
if output_format == 'rss':
|
||
response_rss = render(
|
||
'opensearch_response_rss.xml',
|
||
results=[],
|
||
q=request.form['q'] if 'q' in request.form else '',
|
||
number_of_results=0,
|
||
error_message=error_message,
|
||
)
|
||
return Response(response_rss, mimetype='text/xml')
|
||
|
||
# html
|
||
request.errors.append(gettext('search error'))
|
||
return render(
|
||
# fmt: off
|
||
'index.html',
|
||
selected_categories=get_selected_categories(request.preferences, request.form),
|
||
# fmt: on
|
||
)
|
||
|
||
|
||
@app.route('/', methods=['GET', 'POST'])
|
||
def index():
|
||
"""Render index page."""
|
||
|
||
# redirect to search if there's a query in the request
|
||
if request.form.get('q'):
|
||
query = ('?' + request.query_string.decode()) if request.query_string else ''
|
||
return redirect(url_for('search') + query, 308)
|
||
|
||
return render(
|
||
# fmt: off
|
||
'index.html',
|
||
selected_categories=get_selected_categories(request.preferences, request.form),
|
||
current_locale = request.preferences.get_value("locale"),
|
||
# fmt: on
|
||
)
|
||
|
||
|
||
@app.route('/healthz', methods=['GET'])
|
||
def health():
|
||
return Response('OK', mimetype='text/plain')
|
||
|
||
|
||
@app.route('/keytext', methods=['POST'])
|
||
def keytext():
|
||
res = []
|
||
text = request.json['text']
|
||
tr4s = TextRank4Sentence()
|
||
tr4s.analyze(text=text, lower=True, source = 'all_filters')
|
||
for item in tr4s.get_key_sentences(num=15):
|
||
res.append(item.sentence)
|
||
return Response(json.dumps(res), mimetype='application/json')
|
||
|
||
def process_result(result):
|
||
url_pattern = re.compile(r'^(https?://)?([a-z0-9-]+\.)+[a-z0-9-]+\.[a-z]+/?$')
|
||
# 判断URL是否符合要求
|
||
if not url_pattern.match(result['url']):
|
||
return
|
||
# 发起GET请求访问API
|
||
query_url=re.sub(r'https?://', '', result['url'])
|
||
try:
|
||
response = requests.get(f'https://noisy-dust-b504.marduk.workers.dev/siteOwner?url={query_url}', timeout=5)
|
||
except requests.exceptions.Timeout:
|
||
print(f'Request timeout for {result["url"]}')
|
||
return
|
||
except requests.exceptions.RequestException as e:
|
||
print(f'Request error for {result["url"]}: {e}')
|
||
return
|
||
|
||
# 判断返回值是否为'null',如果不是则更新title
|
||
if response.text != 'null':
|
||
result['title'] += ' (该网站属于:' +response.text + ')'
|
||
|
||
@app.route('/search', methods=['GET', 'POST'])
|
||
def search():
|
||
"""Search query in q and return results.
|
||
|
||
Supported outputs: html, json, csv, rss.
|
||
"""
|
||
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
|
||
# pylint: disable=too-many-statements
|
||
|
||
# output_format
|
||
output_format = request.form.get('format', 'html')
|
||
if output_format not in OUTPUT_FORMATS:
|
||
output_format = 'html'
|
||
|
||
if output_format not in settings['search']['formats']:
|
||
flask.abort(403)
|
||
|
||
# check if there is query (not None and not an empty string)
|
||
if not request.form.get('q'):
|
||
if output_format == 'html':
|
||
return render(
|
||
# fmt: off
|
||
'index.html',
|
||
selected_categories=get_selected_categories(request.preferences, request.form),
|
||
# fmt: on
|
||
)
|
||
return index_error(output_format, 'No query'), 400
|
||
|
||
# search
|
||
search_query = None
|
||
raw_text_query = None
|
||
result_container = None
|
||
original_search_query = ""
|
||
search_type = "搜索网页"
|
||
net_search = True
|
||
net_search_str = 'true'
|
||
prompt = ""
|
||
add_system = '[]'
|
||
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
|
||
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
|
||
try:
|
||
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
|
||
# search = Search(search_query) # without plugins
|
||
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
|
||
return render('404.html'), 404
|
||
try:
|
||
original_search_query = search_query.query
|
||
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
|
||
if len(search_query.query)>5 and "谁是" in search_query.query:
|
||
search_query.query = search_query.query.replace("谁是","")
|
||
if len(search_query.query)>5 and "是谁" in search_query.query:
|
||
search_query.query = search_query.query.replace("是谁","")
|
||
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
|
||
prompt = search_query.query + "\n对以上问题生成一个Google搜索词:\n"
|
||
search_type = '任务'
|
||
net_search = False
|
||
net_search_str = 'false'
|
||
elif len(original_search_query)>10:
|
||
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
|
||
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","否","详细关键词"]来表述'
|
||
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
|
||
if "今年" in prompt or "今天" in prompt:
|
||
now = datetime.datetime.now()
|
||
prompt = prompt.replace("今年",now.strftime('%Y年'))
|
||
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d日'))
|
||
gpt = ""
|
||
gpt_url = "https://api.openai.com/v1/chat/completions"
|
||
gpt_headers = {
|
||
"Authorization": "Bearer "+os.environ['GPTKEY'],
|
||
"Content-Type": "application/json",
|
||
}
|
||
gpt_data = {
|
||
"model": "gpt-3.5-turbo",
|
||
"messages": [{"role":"user","content":prompt}],
|
||
"max_tokens": 256,
|
||
"temperature": 0.9,
|
||
"top_p": 1,
|
||
"frequency_penalty": 0,
|
||
"presence_penalty": 0,
|
||
"stream": False
|
||
}
|
||
gpt_json={}
|
||
if prompt and prompt !='' :
|
||
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
|
||
gpt_json = gpt_response.json()
|
||
if 'choices' in gpt_json:
|
||
gpt = gpt_json['choices'][0]['message']['content']
|
||
if search_type == '任务':
|
||
for word in gpt.split('\n'):
|
||
if word != "":
|
||
gpt = word.replace("\"","").replace("\'","").replace("“","").replace("”","").replace("‘","").replace("’","")
|
||
break
|
||
if gpt!="":
|
||
search_query.query = gpt
|
||
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
|
||
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
|
||
else:
|
||
gpt_judge = []
|
||
for tmpj in gpt.split():
|
||
try:
|
||
gpt_judge = json.loads(tmpj)
|
||
except:pass
|
||
|
||
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='是' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
|
||
search_query.query = gpt_judge[2]
|
||
search_type = gpt_judge[0]
|
||
net_search = True
|
||
net_search_str = 'true'
|
||
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='否' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
|
||
search_type = gpt_judge[0]
|
||
net_search = False
|
||
net_search_str = 'false'
|
||
except Exception as ee:
|
||
logger.exception(ee, exc_info=True)
|
||
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
|
||
|
||
result_container = search.search()
|
||
|
||
except SearxParameterException as e:
|
||
logger.exception('search error: SearxParameterException')
|
||
return index_error(output_format, e.message), 400
|
||
except Exception as e: # pylint: disable=broad-except
|
||
logger.exception(e, exc_info=True)
|
||
return index_error(output_format, gettext('No item found')), 500
|
||
|
||
# results
|
||
results = result_container.get_ordered_results()
|
||
number_of_results = result_container.results_number()
|
||
if number_of_results < result_container.results_length():
|
||
number_of_results = 0
|
||
|
||
# OPENAI GPT
|
||
raws = []
|
||
try:
|
||
url_pair = []
|
||
url_proxy = {}
|
||
prompt = ""
|
||
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
|
||
for res in results:
|
||
try:
|
||
if gfw.exists(res['title']):
|
||
results.remove(res)
|
||
# return index_error(output_format, gettext('No item found')), 500
|
||
if gfw.exists(res['content']):
|
||
# return index_error(output_format, gettext('No item found')), 500
|
||
results.remove(res)
|
||
except:pass
|
||
# threads = []
|
||
# for result in results:
|
||
# t = threading.Thread(target=process_result, args=(result,))
|
||
# t.start()
|
||
# threads.append(t)
|
||
|
||
# # 等待所有线程执行完毕
|
||
# for t in threads:
|
||
# t.join()
|
||
for res in results:
|
||
if 'engine' in res and res['engine'] == 'twitter':
|
||
try:
|
||
if gfw.exists(res['title']):
|
||
results.remove(res)
|
||
# return index_error(output_format, gettext('No item found')), 500
|
||
if gfw.exists(res['content']):
|
||
# return index_error(output_format, gettext('No item found')), 500
|
||
results.remove(res)
|
||
continue
|
||
except:pass
|
||
if 'url' not in res: continue
|
||
if 'title' not in res: continue
|
||
|
||
if 'content' not in res: continue
|
||
|
||
|
||
if res['content'] == '': continue
|
||
new_url = 'https://url'+str(len(url_pair))
|
||
url_pair.append(res['url'])
|
||
url_proxy[res['url']] = (morty_proxify(res['url']))
|
||
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
|
||
res['content'] = res['content'].replace(" "," ")
|
||
res['content'] = res['content'].replace("Translate Tweet. ","")
|
||
res['content'] = res['content'].replace("Learn more ","")
|
||
res['content'] = res['content'].replace("Translate Tweet.","")
|
||
res['content'] = res['content'].replace("Retweeted.","Reposted.")
|
||
res['content'] = res['content'].replace("Learn more.","")
|
||
res['content'] = res['content'].replace("Show replies.","")
|
||
res['content'] = res['content'].replace("See new Tweets. ","")
|
||
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
|
||
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
|
||
res['content'] = res['content'].replace("Twitter for Android · ","")
|
||
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
|
||
|
||
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
|
||
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
|
||
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
|
||
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
|
||
raws.insert(0,tmp_prompt)
|
||
else: raws.append(tmp_prompt)
|
||
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
|
||
|
||
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
|
||
prompt = tmp_prompt + prompt + '\n'
|
||
else: prompt += tmp_prompt +'\n'
|
||
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
|
||
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
|
||
prompt = tmp_prompt + prompt + '\n'
|
||
else: prompt += tmp_prompt +'\n'
|
||
if prompt != "":
|
||
gpt = ""
|
||
gpt_url = "https://search.kg/completions"
|
||
gpt_headers = {
|
||
"Content-Type": "application/json",
|
||
}
|
||
if '搜索' not in search_type:
|
||
gpt_data = {
|
||
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
|
||
"max_tokens": 1000,
|
||
"temperature": 0.2,
|
||
"top_p": 1,
|
||
"frequency_penalty": 0,
|
||
"presence_penalty": 0,
|
||
"stream": True
|
||
}
|
||
else:
|
||
gpt_data = {
|
||
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
|
||
"max_tokens": 1000,
|
||
"temperature": 0.2,
|
||
"top_p": 1,
|
||
"frequency_penalty": 0,
|
||
"presence_penalty": 0,
|
||
"stream": True
|
||
}
|
||
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
|
||
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
|
||
<div id="modal" class="modal">
|
||
<div id="modal-title" class="modal-title">网页速览<span>
|
||
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
|
||
</div>
|
||
<div class="modal-input-content" id="modal-input-content">
|
||
|
||
<div id="iframe-wrapper">
|
||
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
|
||
<div id='readability-reader' style='display:none'></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<script>
|
||
// 1. 获取元素
|
||
var modal = document.querySelector('.modal');
|
||
var closeBtn = document.querySelector('#closebtn');
|
||
var title = document.querySelector('#modal-title');
|
||
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
|
||
// 3. 点击 closeBtn 就隐藏 mask 和 modal
|
||
closeBtn.addEventListener('click', function () {
|
||
modal.style.display = 'none';
|
||
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
|
||
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
|
||
document.querySelector("#readability-reader").innerHTML = '';
|
||
try{iframe.removeAttribute('src');}catch(e){}
|
||
|
||
})
|
||
// 4. 开始拖拽
|
||
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
|
||
modal.addEventListener('mousedown', function (e) {
|
||
var x = e.pageX - modal.offsetLeft;
|
||
var y = e.pageY - modal.offsetTop;
|
||
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
|
||
document.addEventListener('mousemove', move)
|
||
|
||
function move(e) {
|
||
modal.style.left = e.pageX - x + 'px';
|
||
modal.style.top = e.pageY - y + 'px';
|
||
}
|
||
// (3) 鼠标弹起,就让鼠标移动事件移除
|
||
document.addEventListener('mouseup', function () {
|
||
document.removeEventListener('mousemove', move);
|
||
})
|
||
})
|
||
modal.addEventListener('touchstart', function (e) {
|
||
var x = e.touches[0].pageX - modal.offsetLeft;
|
||
var y = e.touches[0].pageY - modal.offsetTop;
|
||
document.addEventListener('touchmove', move)
|
||
function move(e) {
|
||
modal.style.left = e.touches[0].pageX - x + 'px';
|
||
modal.style.top = e.touches[0].pageY - y + 'px';
|
||
}
|
||
// (3) 鼠标弹起,就让鼠标移动事件移除
|
||
document.addEventListener('touchend', function () {
|
||
document.removeEventListener('touchmove ', move);
|
||
})
|
||
})
|
||
</script>
|
||
<style>
|
||
.modal-header {
|
||
width: 100%;
|
||
text-align: center;
|
||
height: 30px;
|
||
font-size: 24px;
|
||
line-height: 30px;
|
||
}
|
||
|
||
.modal {
|
||
display: none;
|
||
width: 45%;
|
||
position: fixed;
|
||
left: 32%;
|
||
top: 50%;
|
||
background: var(--color-header-background);
|
||
z-index: 10001;
|
||
transform: translate(-50%, -50%);
|
||
}
|
||
|
||
@media screen and (max-width: 50em) {
|
||
.modal {
|
||
width: 85%;
|
||
left: 50%;
|
||
top: 50%;
|
||
}
|
||
}
|
||
|
||
.modal-title {
|
||
width: 100%;
|
||
margin: 10px 0px 0px 0px;
|
||
text-align: center;
|
||
line-height: 40px;
|
||
height: 40px;
|
||
font-size: 18px;
|
||
position: relative;
|
||
cursor: move;
|
||
}
|
||
|
||
.modal-button {
|
||
width: 50%;
|
||
margin: 30px auto 0px auto;
|
||
line-height: 40px;
|
||
font-size: 14px;
|
||
border: #ebebeb 1px solid;
|
||
text-align: center;
|
||
}
|
||
|
||
.modal-button a {
|
||
display: block;
|
||
}
|
||
|
||
.modal-input input.list-input {
|
||
float: left;
|
||
line-height: 35px;
|
||
height: 35px;
|
||
width: 350px;
|
||
border: #ebebeb 1px solid;
|
||
text-indent: 5px;
|
||
}
|
||
|
||
.modal-input {
|
||
overflow: hidden;
|
||
margin: 0px 0px 20px 0px;
|
||
}
|
||
|
||
.modal-input label {
|
||
float: left;
|
||
width: 90px;
|
||
padding-right: 10px;
|
||
text-align: right;
|
||
line-height: 35px;
|
||
height: 35px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.modal-title span {
|
||
position: absolute;
|
||
right: 0px;
|
||
top: -15px;
|
||
}
|
||
#chat_talk {
|
||
width: 100%;
|
||
max-height: 30vh;
|
||
position: relative;
|
||
overflow: scroll;
|
||
padding-top: 1em;
|
||
}
|
||
#iframe-wrapper {
|
||
width: 100%;
|
||
height: 40vh;
|
||
position: relative;
|
||
overflow: hidden; /* 防止滚动条溢出 */
|
||
}
|
||
#iframe-wrapper iframe {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
border: none; /* 去掉边框 */
|
||
overflow: auto; /* 显示滚动条 */
|
||
}
|
||
#iframe-wrapper div {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
border: none; /* 去掉边框 */
|
||
overflow: auto; /* 显示滚动条 */
|
||
}
|
||
.closebtn{
|
||
width: 25px;
|
||
height: 25px;
|
||
display: inline-block;
|
||
cursor: pointer;
|
||
position: absolute;
|
||
top: 15px;
|
||
right: 15px;
|
||
}
|
||
.closebtn::before, .closebtn::after {
|
||
content: '';
|
||
position: absolute;
|
||
height: 2px;
|
||
width: 20px;
|
||
top: 12px;
|
||
right: 2px;
|
||
background: #999;
|
||
cursor: pointer;
|
||
}
|
||
.closebtn::before {
|
||
-webkit-transform: rotate(45deg);
|
||
-moz-transform: rotate(45deg);
|
||
-ms-transform: rotate(45deg);
|
||
-o-transform: rotate(45deg);
|
||
transform: rotate(45deg);
|
||
}
|
||
.closebtn::after {
|
||
-webkit-transform: rotate(-45deg);
|
||
-moz-transform: rotate(-45deg);
|
||
-ms-transform: rotate(-45deg);
|
||
-o-transform: rotate(-45deg);
|
||
transform: rotate(-45deg);
|
||
}
|
||
</style>
|
||
<div id="chat_talk"></div>
|
||
<div id="chat_continue" style="display:none">
|
||
<div id="chat_more" style="display:none"></div>
|
||
<hr>
|
||
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
|
||
<button id="chat_send" onclick='send_chat()' style="
|
||
width: 75%;
|
||
display: block;
|
||
margin: auto;
|
||
margin-top: .8em;
|
||
border-radius: .8rem;
|
||
height: 2em;
|
||
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
|
||
color: #fff;
|
||
border: none;
|
||
cursor: pointer;
|
||
">发送</button>
|
||
</div>
|
||
</div>
|
||
<style>
|
||
.chat_answer {
|
||
cursor: pointer;
|
||
line-height: 1.5em;
|
||
margin: 0.5em 3em 0.5em 0;
|
||
padding: 8px 12px;
|
||
color: white;
|
||
background: rgba(27,74,239,0.7);
|
||
}
|
||
.chat_question {
|
||
cursor: pointer;
|
||
line-height: 1.5em;
|
||
margin: 0.5em 0 0.5em 3em;
|
||
padding: 8px 12px;
|
||
color: black;
|
||
background: rgba(245, 245, 245, 0.7);
|
||
}
|
||
|
||
button.btn_more {
|
||
min-height: 30px;
|
||
text-align: left;
|
||
background: rgb(209, 219, 250);
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
box-sizing: border-box;
|
||
padding: 0px 12px;
|
||
margin: 1px;
|
||
cursor: pointer;
|
||
font-weight: 500;
|
||
line-height: 28px;
|
||
border: 1px solid rgb(18, 59, 182);
|
||
color: rgb(18, 59, 182);
|
||
}
|
||
|
||
::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
|
||
::-webkit-scrollbar-track {
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
|
||
box-shadow: rgba(0, 0, 0, 0.3);
|
||
border-radius: 10px;
|
||
}
|
||
|
||
::-webkit-scrollbar-thumb {
|
||
border-radius: 10px;
|
||
background: rgba(17, 16, 16, 0.13);
|
||
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
|
||
box-shadow: rgba(0, 0, 0, 0.5);
|
||
}
|
||
::-webkit-scrollbar-thumb:window-inactive {
|
||
background: rgba(211, 173, 209, 0.4);
|
||
}
|
||
</style>
|
||
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
|
||
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
|
||
# gpt_json = gpt_response.json()
|
||
# if 'choices' in gpt_json:
|
||
# gpt = gpt_json['choices'][0]['text']
|
||
# gpt = gpt.replace("简报:","").replace("简报:","")
|
||
# for i in range(len(url_pair)-1,-1,-1):
|
||
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
|
||
# rgpt = gpt
|
||
|
||
if gpt and gpt!="":
|
||
if original_search_query != search_query.query:
|
||
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
|
||
gpt = gpt + r'''<style>
|
||
a.footnote {
|
||
position: relative;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 10px;
|
||
font-weight: 600;
|
||
vertical-align: top;
|
||
top: 0px;
|
||
margin: 1px 1px;
|
||
min-width: 14px;
|
||
height: 14px;
|
||
border-radius: 3px;
|
||
color: rgb(18, 59, 182);
|
||
background: rgb(209, 219, 250);
|
||
outline: transparent solid 1px;
|
||
}
|
||
</style>
|
||
|
||
|
||
|
||
|
||
<script src="/static/themes/magi/Readability-readerable.js"></script>
|
||
<script src="/static/themes/magi/Readability.js"></script>
|
||
<script src="/static/themes/magi/markdown.js"></script>
|
||
<script src="/static/themes/magi/stop_words.js"></script>
|
||
<script>
|
||
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
|
||
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
|
||
const search_type = "''' + search_type + r'''"
|
||
const net_search = ''' + net_search_str + r'''
|
||
const add_system = ''' + add_system +r'''
|
||
</script><script>
|
||
const _0xf9acf4=_0x1a0d,_0x5aec22=_0x1a0d,_0x51c145=_0x1a0d,_0x135ea1=_0x1a0d,_0x42e93c=_0x1a0d;(function(_0xace13e,_0x1307cd){const _0x43e56f=_0x1a0d,_0x549425=_0x1a0d,_0x3d85b5=_0x1a0d,_0x1e0418=_0x1a0d,_0x47532c=_0x1a0d,_0x21547b=_0xace13e();while(!![]){try{const _0x20f68a=parseInt(_0x43e56f(0x6e1))/(0x6d*0x3b+-0x1152*-0x2+0x1de1*-0x2)*(parseInt(_0x43e56f(0x695))/(0x3f*0x81+0x7*-0x391+-0x2*0x363))+-parseInt(_0x43e56f(0x955))/(0x1736+-0x13c0+-0x373)*(-parseInt(_0x549425(0x3c1))/(-0x982*-0x4+-0xed3*-0x1+-0x34d7))+-parseInt(_0x3d85b5(0x525))/(-0x1589+0x2474+-0xee6*0x1)*(parseInt(_0x43e56f(0x8b9))/(-0xf51+-0x19+0x1ee*0x8))+-parseInt(_0x549425(0x823))/(0x2f*-0xaa+0x1*-0x166d+0x35aa)*(parseInt(_0x47532c(0xb0e))/(-0x553*0x5+0xb1*-0xf+0x2506))+parseInt(_0x1e0418(0xa9d))/(-0x1*-0x1d53+0xaa4+-0x1*0x27ee)+parseInt(_0x1e0418(0x763))/(0x2535+-0x4f3+-0x407*0x8)*(-parseInt(_0x3d85b5(0xba9))/(0x938+0x5*-0x4f1+0xf88))+parseInt(_0x549425(0x6ea))/(-0x12ae*-0x2+0x1224*0x1+-0x3774);if(_0x20f68a===_0x1307cd)break;else _0x21547b['push'](_0x21547b['shift']());}catch(_0x49d49f){_0x21547b['push'](_0x21547b['shift']());}}}(_0x572a,0x1a*0x77a+0x2c270+0x1*-0xf695));function proxify(){const _0x1abcd9=_0x1a0d,_0x261a1b=_0x1a0d,_0x5cabb7=_0x1a0d,_0x536b5d=_0x1a0d,_0x53c341=_0x1a0d,_0x19180b={'nvMOZ':function(_0x44bacc,_0x5a9e11){return _0x44bacc+_0x5a9e11;},'eyfCT':_0x1abcd9(0x952)+'es','KYfrE':function(_0x14fd2a,_0xa09249){return _0x14fd2a===_0xa09249;},'yBMzW':_0x261a1b(0x975),'nwzIZ':_0x5cabb7(0xd70),'IYuCe':function(_0x298636,_0x2b4380,_0x318b99){return _0x298636(_0x2b4380,_0x318b99);},'zAKri':function(_0x430d37,_0x48fb1f){return _0x430d37>=_0x48fb1f;},'uoRBH':_0x1abcd9(0x912),'PishR':_0x5cabb7(0x626)+_0x5cabb7(0x57f),'yBvVZ':function(_0x579e5b,_0x55a7c6){return _0x579e5b(_0x55a7c6);},'MYqkK':_0x5cabb7(0x932),'yYwgT':function(_0x5b0d53,_0x32950a){return _0x5b0d53+_0x32950a;},'ixBEZ':function(_0x3ce3b4,_0x5bb9de){return _0x3ce3b4+_0x5bb9de;},'AAVJm':function(_0xa80c91,_0x4a44db){return _0xa80c91(_0x4a44db);},'DVaEz':function(_0x2b63b6,_0x9e2952){return _0x2b63b6(_0x9e2952);},'bCgeU':_0x261a1b(0x2b7),'UiBIY':function(_0x435146,_0xf6d2dc){return _0x435146+_0xf6d2dc;}};for(let _0x20bf98=Object[_0x1abcd9(0xc3a)](prompt[_0x1abcd9(0x7bd)+_0x536b5d(0x42c)])[_0x53c341(0x1d9)+'h'];_0x19180b[_0x261a1b(0xb53)](_0x20bf98,-0x1fea+0xc69+0x1381);--_0x20bf98){if(_0x19180b[_0x53c341(0x582)](_0x19180b[_0x5cabb7(0xd41)],_0x19180b[_0x53c341(0xd41)])){if(document[_0x536b5d(0xac5)+_0x261a1b(0x8b0)+_0x261a1b(0x372)](_0x19180b[_0x261a1b(0x901)](_0x19180b[_0x536b5d(0x879)],_0x19180b[_0x53c341(0x62b)](String,_0x19180b[_0x1abcd9(0x901)](_0x20bf98,-0x2*-0x84b+-0x9*0x3f8+0xd5*0x17))))){if(_0x19180b[_0x5cabb7(0x582)](_0x19180b[_0x53c341(0x9a4)],_0x19180b[_0x5cabb7(0x9a4)])){let _0x18abb2=document[_0x1abcd9(0xac5)+_0x536b5d(0x8b0)+_0x1abcd9(0x372)](_0x19180b[_0x1abcd9(0x901)](_0x19180b[_0x536b5d(0x879)],_0x19180b[_0x53c341(0x62b)](String,_0x19180b[_0x5cabb7(0x31a)](_0x20bf98,-0x1453*-0x1+0xe17*0x2+0x1*-0x3080))))[_0x53c341(0x2b7)];if(!_0x18abb2||!prompt[_0x53c341(0x7bd)+_0x261a1b(0x42c)][_0x18abb2])continue;const _0x20eede=prompt[_0x53c341(0x7bd)+_0x536b5d(0x42c)][_0x18abb2];document[_0x536b5d(0xac5)+_0x5cabb7(0x8b0)+_0x53c341(0x372)](_0x19180b[_0x5cabb7(0x46c)](_0x19180b[_0x261a1b(0x879)],_0x19180b[_0x1abcd9(0xa35)](String,_0x19180b[_0x5cabb7(0x901)](_0x20bf98,-0x229+0x748+-0x51e))))[_0x1abcd9(0xaad)+'ck']=function(){const _0x3f98d1=_0x261a1b,_0x3bba5a=_0x53c341,_0x5c08c1=_0x1abcd9,_0x10c057=_0x53c341,_0x5c61c2=_0x53c341,_0x120347={'OEdZu':function(_0x1611df,_0x533020){const _0x319dc5=_0x1a0d;return _0x19180b[_0x319dc5(0x901)](_0x1611df,_0x533020);},'HBhVP':_0x19180b[_0x3f98d1(0x1b8)]};if(_0x19180b[_0x3bba5a(0x582)](_0x19180b[_0x3f98d1(0x8f3)],_0x19180b[_0x3f98d1(0x48f)]))try{_0x2d1dfd=_0x9c3e13[_0x5c08c1(0x90c)](_0x120347[_0x3f98d1(0x261)](_0x4b172b,_0x1589df))[_0x120347[_0x5c61c2(0x285)]],_0x161179='';}catch(_0x310b1b){_0xd90b5a=_0xfc60cf[_0x10c057(0x90c)](_0x335e33)[_0x120347[_0x5c61c2(0x285)]],_0x110dfd='';}else _0x19180b[_0x10c057(0xa04)](modal_open,_0x20eede,_0x19180b[_0x10c057(0x901)](_0x20bf98,-0x45d*-0x7+-0x26e7*0x1+0x85d));},document[_0x53c341(0xac5)+_0x261a1b(0x8b0)+_0x261a1b(0x372)](_0x19180b[_0x53c341(0x31a)](_0x19180b[_0x5cabb7(0x879)],_0x19180b[_0x261a1b(0x260)](String,_0x19180b[_0x53c341(0x46c)](_0x20bf98,-0x6c4*-0x3+-0x961+0x2*-0x575))))[_0x536b5d(0x4be)+_0x53c341(0xd6b)+_0x5cabb7(0x269)](_0x19180b[_0x261a1b(0x46e)]),document[_0x1abcd9(0xac5)+_0x536b5d(0x8b0)+_0x536b5d(0x372)](_0x19180b[_0x5cabb7(0x66c)](_0x19180b[_0x536b5d(0x879)],_0x19180b[_0x1abcd9(0x62b)](String,_0x19180b[_0x1abcd9(0x31a)](_0x20bf98,-0x493+0x1d7c+0x2*-0xc74))))[_0x53c341(0x4be)+_0x536b5d(0xd6b)+_0x261a1b(0x269)]('id');}else{const _0x489ab0=_0x5be14e[_0x536b5d(0x78d)](_0x58c1ee,arguments);return _0x155045=null,_0x489ab0;}}}else _0x3c519a[_0x536b5d(0x7a7)]();}}const _load_wasm_jieba=async()=>{const _0x131a47=_0x1a0d,_0x424832=_0x1a0d,_0x36e508=_0x1a0d,_0x403d6a=_0x1a0d,_0x1e48ce=_0x1a0d,_0x4e6c6a={'gLDXh':function(_0x12232c,_0x50f756){return _0x12232c!==_0x50f756;},'WxZzh':_0x131a47(0xb9a)+_0x424832(0x653)+_0x36e508(0x2b0)+_0x36e508(0xa18)+_0x403d6a(0x65a)+_0x403d6a(0xccd)+_0x403d6a(0x6f3)+'s','WqQgf':function(_0x4d58ed){return _0x4d58ed();}};if(_0x4e6c6a[_0x424832(0xc2c)](window[_0x36e508(0x93b)],undefined))return;const {default:_0x4762aa,cut:_0x1e4277}=await import(_0x4e6c6a[_0x131a47(0x561)]),_0x517a5d=await _0x4e6c6a[_0x131a47(0xb3b)](_0x4762aa);return window[_0x36e508(0x93b)]=_0x1e4277,_0x517a5d;};_load_wasm_jieba();function cosineSimilarity(_0x59fc36,_0x3e7012){const _0x3be864=_0x1a0d,_0x5d85d8=_0x1a0d,_0x34a3e6=_0x1a0d,_0x32243b=_0x1a0d,_0x1f99fe=_0x1a0d,_0xcd6c59={'mTewC':_0x3be864(0xa11),'JwOdw':function(_0x11741e,_0x226d1c,_0x48aee1){return _0x11741e(_0x226d1c,_0x48aee1);},'XJHSB':function(_0x45d868,_0x1f13d1,_0x206c44){return _0x45d868(_0x1f13d1,_0x206c44);},'RMBrv':function(_0x584a2c,_0xc76f6a){return _0x584a2c===_0xc76f6a;},'FffAg':_0x3be864(0xa79),'DvTEG':_0x3be864(0x3db),'PyteP':function(_0x20c971,_0x1c717f){return _0x20c971===_0x1c717f;},'EdYTn':_0x3be864(0xceb),'PlPqQ':function(_0x62caa1,_0x466f96){return _0x62caa1!==_0x466f96;},'yxsBQ':_0x32243b(0x998),'LsmBz':_0x3be864(0x2ef),'zYZmo':function(_0x539dc2,_0x226272){return _0x539dc2*_0x226272;},'UJGTQ':function(_0x398ae3,_0x3c4b67){return _0x398ae3**_0x3c4b67;},'RGHfO':function(_0x441ed9,_0x2a9e0c){return _0x441ed9/_0x2a9e0c;},'ZExox':function(_0x15c273,_0x2a23e4){return _0x15c273*_0x2a23e4;}};keywordList=_0xcd6c59[_0x3be864(0xa4f)](cut,_0x59fc36[_0x5d85d8(0x31c)+_0x3be864(0x634)+'e'](),!![]),keywordList=keywordList[_0x32243b(0xa03)+'r'](_0x31b18a=>!stop_words[_0x34a3e6(0xb30)+_0x3be864(0x14e)](_0x31b18a)),sentenceList=_0xcd6c59[_0x32243b(0x628)](cut,_0x3e7012[_0x34a3e6(0x31c)+_0x32243b(0x634)+'e'](),!![]),sentenceList=sentenceList[_0x34a3e6(0xa03)+'r'](_0xc74920=>!stop_words[_0x32243b(0xb30)+_0x3be864(0x14e)](_0xc74920));const _0x362dfe=new Set(keywordList[_0x5d85d8(0x26a)+'t'](sentenceList)),_0x22b976={},_0x26d188={};for(const _0x6d4f4c of _0x362dfe){if(_0xcd6c59[_0x3be864(0x76f)](_0xcd6c59[_0x34a3e6(0xc76)],_0xcd6c59[_0x1f99fe(0x7a0)]))return-(0x1273+-0x1423+0x1*0x1b1);else _0x22b976[_0x6d4f4c]=0x1a07+-0x422*0x8+0x709,_0x26d188[_0x6d4f4c]=0x106f+0x13c5*0x1+-0x2434;}for(const _0x3e6ae3 of keywordList){_0xcd6c59[_0x32243b(0x3b8)](_0xcd6c59[_0x32243b(0x6d2)],_0xcd6c59[_0x1f99fe(0x6d2)])?_0x22b976[_0x3e6ae3]++:_0x1a704f=_0xcd6c59[_0x3be864(0x238)];}for(const _0x53d8ad of sentenceList){_0xcd6c59[_0x3be864(0x762)](_0xcd6c59[_0x32243b(0x179)],_0xcd6c59[_0x34a3e6(0x179)])?_0x406d02+='中':_0x26d188[_0x53d8ad]++;}let _0x46e2a3=-0x1769+-0x4*0x8db+-0x3ad5*-0x1,_0x2e52fe=-0xee*-0x11+0x113d+-0x210b,_0x55cb35=-0x9*0x457+0x198+-0x1a1*-0x17;for(const _0x172f73 of _0x362dfe){_0xcd6c59[_0x5d85d8(0x76f)](_0xcd6c59[_0x1f99fe(0x87f)],_0xcd6c59[_0x5d85d8(0x87f)])?(_0x46e2a3+=_0xcd6c59[_0x1f99fe(0x792)](_0x22b976[_0x172f73],_0x26d188[_0x172f73]),_0x2e52fe+=_0xcd6c59[_0x34a3e6(0x627)](_0x22b976[_0x172f73],-0x1*0x2485+0x49+-0x243e*-0x1),_0x55cb35+=_0xcd6c59[_0x1f99fe(0x627)](_0x26d188[_0x172f73],-0xe*-0x283+0x239*0x1+-0x557*0x7)):_0x101c20+='右';}_0x2e52fe=Math[_0x1f99fe(0x8ff)](_0x2e52fe),_0x55cb35=Math[_0x3be864(0x8ff)](_0x55cb35);const _0x28b73b=_0xcd6c59[_0x1f99fe(0x445)](_0x46e2a3,_0xcd6c59[_0x32243b(0x913)](_0x2e52fe,_0x55cb35));return _0x28b73b;}let modalele=[],keytextres=[],fulltext=[],article,sentences=[];function modal_open(_0x3c63e5,_0xf959c0){const _0x33f7d8=_0x1a0d,_0x322752=_0x1a0d,_0x58f408=_0x1a0d,_0x331231=_0x1a0d,_0x3356b0=_0x1a0d,_0x1e73b6={'pelTS':function(_0x4fdd0d,_0x266307){return _0x4fdd0d<_0x266307;},'RUCOl':_0x33f7d8(0x75d)+':','ClCcx':function(_0x1614a9,_0x138b0a){return _0x1614a9===_0x138b0a;},'BXiuJ':_0x33f7d8(0x652),'isMAc':_0x33f7d8(0xa9b),'IWiNv':_0x331231(0x336)+_0x322752(0xd03),'aoRfZ':function(_0x59e526,_0x39494a){return _0x59e526(_0x39494a);},'XSEcR':_0x3356b0(0x20e)+'ss','vtuCe':function(_0x1857c1,_0x107d94){return _0x1857c1!==_0x107d94;},'MbOMv':_0x331231(0x43a),'iTHEJ':_0x33f7d8(0xc5d),'aPQRK':_0x322752(0xc59)+_0x3356b0(0x64d)+_0x58f408(0xa4c),'EKAOr':_0x33f7d8(0x7f2),'wfymJ':_0x33f7d8(0xb0b)+_0x58f408(0x8a6)+'d','uaMuq':function(_0x2309bc,_0x284fbe){return _0x2309bc!==_0x284fbe;},'zUvhp':_0x331231(0x23a),'DMQNw':function(_0x2ff796,_0x30229a){return _0x2ff796(_0x30229a);},'Yzgkj':_0x331231(0x585)+_0x322752(0x33d),'WkQrA':function(_0x5d2aae,_0x2d4b0d){return _0x5d2aae!==_0x2d4b0d;},'ImCal':_0x3356b0(0x593),'XLeiN':_0x322752(0xd0d)+_0x33f7d8(0xd6f)+'+$','uICdD':_0x33f7d8(0x6b8)+'d','gLCnw':function(_0x41921d,_0x4fbe8a){return _0x41921d!==_0x4fbe8a;},'mUMQc':_0x3356b0(0xc2e),'YDHQK':_0x331231(0xd71),'JGtlj':_0x33f7d8(0xd4e)+_0x33f7d8(0x56b)+_0x3356b0(0xd0e)+_0x331231(0x6c6)+_0x322752(0x4fb),'LxUvo':function(_0x51b6f9,_0x4ada64){return _0x51b6f9==_0x4ada64;},'OlzbC':_0x33f7d8(0x638),'hBKaI':_0x3356b0(0x17f),'koQHw':_0x3356b0(0x7c8),'CbhDI':_0x322752(0xa16)+_0x322752(0x506)+_0x58f408(0xd03),'mhjhR':_0x3356b0(0xc4f),'noatK':_0x322752(0xcfc),'Cbjqt':function(_0x333011,_0x5870bb){return _0x333011!==_0x5870bb;},'lFZJs':_0x331231(0xc8d),'ecwbk':_0x33f7d8(0x79e),'oAmaQ':function(_0x299709,_0x19cc8,_0x15e149){return _0x299709(_0x19cc8,_0x15e149);},'rPwSi':_0x3356b0(0x8d7)+_0x3356b0(0x4d8),'wUQOp':_0x331231(0xc67),'kFfnG':_0x322752(0x6f8),'VwYXx':_0x322752(0xc15),'OKrPr':function(_0x18b100,_0x34fd3e){return _0x18b100===_0x34fd3e;},'CHuJF':_0x331231(0x7fa)+_0x58f408(0x43f)+'结束','xhewV':function(_0x5ce7fd,_0x3007a5){return _0x5ce7fd>_0x3007a5;},'xcuzj':function(_0x2bf5cb,_0x3e0885){return _0x2bf5cb+_0x3e0885;},'vqqFO':_0x58f408(0xcc8)+_0x331231(0x3da),'qtTcM':function(_0x4ca9be,_0xbb6070){return _0x4ca9be+_0xbb6070;},'gfKdk':_0x322752(0x36d)+_0x322752(0xb12)+_0x58f408(0x45f)+_0x3356b0(0x2c8)+_0x58f408(0x9a3)+'\x22>','PajQT':_0x33f7d8(0x5eb),'yjQxh':_0x58f408(0x787)+_0x322752(0xcaf)+_0x3356b0(0xa44)+_0x3356b0(0xd36),'WFmLA':_0x3356b0(0x359),'BvrVN':_0x331231(0xb27),'zNnQi':_0x331231(0x694)+'>','dtGmJ':_0x3356b0(0x952)+'es','aZqPM':function(_0x2782a2,_0x11be05){return _0x2782a2(_0x11be05);},'xYCGx':function(_0x3ef4b3,_0x57d890){return _0x3ef4b3+_0x57d890;},'ZIZHk':_0x58f408(0x63e)+_0x3356b0(0xa9e)+_0x3356b0(0xa13)+_0x322752(0x641),'lxhzq':_0x58f408(0xce7)+_0x331231(0x671)+_0x331231(0xb38)+_0x3356b0(0x144)+_0x3356b0(0xa3a)+_0x3356b0(0xa38)+'\x20)','rPJTh':function(_0x155bd9){return _0x155bd9();},'UIDDU':function(_0x46dddf,_0x372a03){return _0x46dddf+_0x372a03;},'UEWuF':_0x322752(0x97f),'bbMuh':function(_0xd84a32,_0x383934){return _0xd84a32<_0x383934;},'LFszy':_0x33f7d8(0x7dd),'VRAcl':_0x58f408(0x6e5),'LsqUt':_0x331231(0x709),'aihER':_0x33f7d8(0x556),'xtlIl':_0x33f7d8(0xbb3),'diFFl':_0x58f408(0xcc6),'knpyD':function(_0x3ec9e7,_0x31b41a){return _0x3ec9e7>_0x31b41a;},'NhdBf':_0x322752(0x94d),'ygwUu':function(_0x5e96d0,_0x3c8fd3){return _0x5e96d0+_0x3c8fd3;},'ZKawN':_0x3356b0(0x5da),'mmDvV':_0x33f7d8(0x420),'MAsnO':function(_0x10ee0a,_0x297de7){return _0x10ee0a<_0x297de7;},'LobrZ':_0x58f408(0x710),'btRCE':function(_0x4ce336,_0x4b3d01){return _0x4ce336===_0x4b3d01;},'WXqHw':_0x58f408(0x492),'CLdhF':_0x331231(0xb7c),'JhzJF':function(_0x381e33,_0x4a6f01){return _0x381e33<_0x4a6f01;},'nKllY':function(_0x3d6574,_0x223abd){return _0x3d6574/_0x223abd;},'krQfU':function(_0x2b9f4d,_0x3b8b39){return _0x2b9f4d-_0x3b8b39;},'mkPVx':function(_0x186ee0,_0x156fa9){return _0x186ee0===_0x156fa9;},'BtYMV':_0x322752(0x2b5),'iMdBz':_0x322752(0x933),'KnUpM':_0x58f408(0x61f),'qJHas':function(_0x31f415,_0x33329b){return _0x31f415!==_0x33329b;},'vkeuo':_0x33f7d8(0x759),'vZQAN':function(_0x25e08c,_0x1345b8){return _0x25e08c<_0x1345b8;},'Elepi':function(_0xe4a784,_0x1445c2){return _0xe4a784!==_0x1445c2;},'cYOrB':_0x33f7d8(0x1c2),'biBfn':_0x322752(0x16b),'IgETl':_0x58f408(0xb42),'Vvuwy':function(_0x114f6d,_0x520424){return _0x114f6d<_0x520424;},'rZlMs':_0x58f408(0x198),'wtXek':function(_0x51d8ff,_0x1814bc){return _0x51d8ff/_0x1814bc;},'fDTfX':function(_0x1a5745,_0x4b5b3f){return _0x1a5745*_0x4b5b3f;},'TKlEG':_0x58f408(0x32d),'aklyx':_0x322752(0x5cb),'TwqDE':_0x33f7d8(0x522),'cNEhY':_0x322752(0x739),'fNobW':_0x3356b0(0x6cb)+_0x331231(0x278),'rVyvJ':_0x331231(0xa28),'AsQhJ':_0x331231(0x911),'HGEVX':_0x3356b0(0x756),'IklNH':function(_0x338e2a,_0x36154a){return _0x338e2a==_0x36154a;},'rJVgq':function(_0x47c660,_0x34413f){return _0x47c660===_0x34413f;},'JeUAR':_0x322752(0x5cc),'jANWv':_0x3356b0(0x690),'hZiep':function(_0x24752b,_0x3ed799){return _0x24752b<=_0x3ed799;},'hQNcj':_0x322752(0x292),'fPglY':_0x322752(0x66d),'mDqIg':function(_0x5b170a,_0x22ce4e){return _0x5b170a!==_0x22ce4e;},'OOiIA':_0x3356b0(0xaf2),'CZhJu':function(_0x1015ec,_0xd76530){return _0x1015ec(_0xd76530);},'ZQGee':function(_0x5e04b3,_0x84a742){return _0x5e04b3+_0x84a742;},'KWUHQ':_0x58f408(0xa70)+_0x58f408(0xbbc)+_0x33f7d8(0x342)+')','dsZNX':_0x33f7d8(0x17b)+_0x322752(0x14c)+_0x3356b0(0xcac)+_0x33f7d8(0x74f)+_0x331231(0xb5e)+_0x3356b0(0x5d5)+_0x331231(0x697),'yzjfL':function(_0x26d257,_0x17c434){return _0x26d257(_0x17c434);},'oZQvS':_0x58f408(0x93e),'CmKNl':function(_0x3aa3cd,_0x296f93){return _0x3aa3cd+_0x296f93;},'yQudf':_0x331231(0xbdf),'JuUiQ':_0x331231(0x5b3),'DpprW':function(_0x1ea16d,_0x209f05){return _0x1ea16d<_0x209f05;},'dKnZA':function(_0x48375d,_0x58ff48){return _0x48375d+_0x58ff48;},'PTzkN':function(_0x5860cb,_0x35e0de){return _0x5860cb===_0x35e0de;},'sOVEL':_0x33f7d8(0xa58),'oXGYz':_0x58f408(0x6f2),'ksGoT':_0x58f408(0x25b),'ffzhW':_0x58f408(0x60f)+_0x33f7d8(0x425),'SqImn':function(_0x598f65,_0x15ee5b){return _0x598f65>_0x15ee5b;},'Fahqu':function(_0x384611,_0x5d2b25){return _0x384611==_0x5d2b25;},'gSHZW':_0x331231(0x8ef)+']','MfyKo':_0x3356b0(0xc6c),'UDjqp':_0x331231(0x711),'JHewe':function(_0x6189fa,_0x3c775d){return _0x6189fa===_0x3c775d;},'chNBk':_0x322752(0x688),'PgtlA':_0x33f7d8(0x351),'DliZd':_0x322752(0x804),'lhXNu':_0x58f408(0x9cc),'ifCRM':_0x322752(0x77a),'iqrXL':_0x322752(0xc6a),'qPeLj':_0x33f7d8(0x4f4),'wtCBh':_0x331231(0x5d7)+'pt','FZpme':_0x3356b0(0x36d)+_0x3356b0(0xb12)+_0x3356b0(0x45f)+_0x3356b0(0x2bc)+_0x322752(0x314),'eEcFm':_0x33f7d8(0x979),'ljAKn':_0x331231(0x81d),'Gtrov':_0x58f408(0x29f)+'n','WkrWK':_0x3356b0(0x842),'xnDgg':_0x322752(0x572),'GSBAh':_0x3356b0(0x7ec),'vxuGx':_0x322752(0xc41),'XSsEq':_0x3356b0(0x72c),'OuxcQ':_0x331231(0xb9c),'aMgcc':_0x33f7d8(0x79c),'AKpRB':_0x58f408(0x1fa),'ZaLUI':function(_0x511ef0,_0x52027a,_0x159fc0,_0x5e8375){return _0x511ef0(_0x52027a,_0x159fc0,_0x5e8375);},'uUeJN':_0x33f7d8(0xb65)+_0x331231(0xa72)+_0x3356b0(0x4fc)+_0x3356b0(0x9e5)+_0x331231(0x9b5),'ODQsd':function(_0x24cf61,_0x3a3255){return _0x24cf61+_0x3a3255;},'VymTh':function(_0x4f9611,_0xdf1031){return _0x4f9611!==_0xdf1031;},'HkObt':_0x3356b0(0xbd9),'MyIGA':function(_0x74814c,_0x34f567){return _0x74814c===_0x34f567;},'GXRqw':function(_0x482113,_0x117f4f){return _0x482113!==_0x117f4f;},'rnfzo':_0x331231(0x821),'pxgtN':_0x331231(0x8be),'cDCFU':function(_0x3a3b5b){return _0x3a3b5b();},'ozByB':_0x3356b0(0x61c),'WRmwE':_0x331231(0x7c7),'UkRgn':_0x3356b0(0xac4),'EmgYV':_0x3356b0(0xd7a),'HHoGT':_0x33f7d8(0x691),'UAiYh':_0x33f7d8(0x373),'boWmd':_0x322752(0x88d),'DLAMi':_0x322752(0x761),'yimap':function(_0x590197,_0x4f20ba){return _0x590197+_0x4f20ba;},'mlvnh':_0x331231(0x733),'dNfPA':_0x3356b0(0x8c5),'UZkHW':function(_0x458c10,_0x14880c){return _0x458c10+_0x14880c;},'RQfSt':_0x58f408(0xb6b),'EgRNC':_0x331231(0x3aa)+'\x0a','Szjff':_0x3356b0(0x63f),'WGWxG':function(_0x4e66f8,_0x366e13){return _0x4e66f8<_0x366e13;},'NehYN':function(_0x356da9,_0x3498d9){return _0x356da9+_0x3498d9;},'fXHrt':function(_0x231558,_0x2d5351){return _0x231558+_0x2d5351;},'JwyQU':_0x322752(0x91c)+'\x0a','KErvO':function(_0x4789f5,_0x11d33e){return _0x4789f5!==_0x11d33e;},'yCwAN':_0x331231(0x153),'ZXRqq':_0x331231(0x1bd),'pyLgz':function(_0x28bba9,_0x18b2d8){return _0x28bba9+_0x18b2d8;},'BRvTC':function(_0x10b38c,_0x22197e){return _0x10b38c+_0x22197e;},'Tajkd':_0x322752(0x99b)+_0x322752(0x75e),'sHeMs':_0x33f7d8(0x33b),'cyHQs':_0x3356b0(0x587)+_0x33f7d8(0x2db)+_0x322752(0x232)+_0x58f408(0x457),'OKQWV':function(_0x1a092a,_0x300885){return _0x1a092a(_0x300885);},'sQhjv':function(_0x1ef0bc,_0x3b1930,_0x387475){return _0x1ef0bc(_0x3b1930,_0x387475);},'JznDu':_0x58f408(0xb65)+_0x58f408(0xa72)+_0x33f7d8(0x4fc)+_0x322752(0x577)+_0x58f408(0x56d)+_0x58f408(0x3fc),'pdCHE':_0x322752(0x19a),'caeHJ':_0x331231(0x646),'cQhGd':function(_0xb6d2c9,_0x5be443){return _0xb6d2c9===_0x5be443;},'wfvse':_0x33f7d8(0xd3e),'ttDFe':_0x322752(0x18a),'ySARh':_0x331231(0xb8e)+_0x322752(0x4df)+_0x33f7d8(0xcd7)+_0x322752(0xae0),'rBVRv':_0x3356b0(0x60f)+_0x331231(0x5b7)+_0x3356b0(0xd4b),'sLtqK':_0x322752(0xa47)+_0x3356b0(0xa31),'IWCpG':_0x322752(0x60f)+_0x331231(0x215)+'t','UWLhP':_0x322752(0xd06),'CDfti':function(_0x54a55a,_0x396538){return _0x54a55a==_0x396538;},'TECAA':_0x58f408(0x33c),'ILbFS':_0x33f7d8(0xc45),'PEsJg':function(_0x12b1cf,_0x102551){return _0x12b1cf(_0x102551);},'bccop':function(_0x534414,_0x675d7b){return _0x534414==_0x675d7b;},'UlALh':function(_0x4a0aee,_0x28fff8){return _0x4a0aee===_0x28fff8;},'cQwpe':_0x58f408(0x987),'ihFCI':_0x3356b0(0xc70),'mWnIG':function(_0x52d3d1,_0x4f04a9){return _0x52d3d1+_0x4f04a9;},'dEOGk':function(_0xa66d0e,_0x2f47ac){return _0xa66d0e+_0x2f47ac;},'tJOoA':function(_0x70ffa7,_0xaa4eaa){return _0x70ffa7+_0xaa4eaa;},'XKDZu':_0x33f7d8(0xcf3),'cdxfa':function(_0x5ec4bc,_0xe2143){return _0x5ec4bc+_0xe2143;},'wBxhu':function(_0x2e9add,_0x17c4a8){return _0x2e9add+_0x17c4a8;},'RgRsD':function(_0x819a76,_0x12a50f){return _0x819a76+_0x12a50f;},'CJkZb':function(_0x46c450,_0x3942d7){return _0x46c450+_0x3942d7;},'EMmLb':function(_0xdca38a,_0x57caa6){return _0xdca38a+_0x57caa6;},'EEXCq':_0x58f408(0xab9),'odqzj':_0x322752(0x649)+_0x331231(0x81b)+_0x33f7d8(0x84e)+_0x58f408(0xcb4)};if(_0x1e73b6[_0x58f408(0x512)](lock_chat,0x2636+0x241f+-0x4a54)){if(_0x1e73b6[_0x58f408(0xbcc)](_0x1e73b6[_0x58f408(0x50c)],_0x1e73b6[_0x331231(0x3d9)])){_0x1e73b6[_0x331231(0x98a)](alert,_0x1e73b6[_0x322752(0xbfe)]);return;}else _0x19d3ca[_0x322752(0x7c3)](_0x215d94);}prev_chat=document[_0x331231(0xd72)+_0x331231(0xd11)+_0x331231(0x7c5)](_0x1e73b6[_0x3356b0(0x195)])[_0x3356b0(0xc4b)+_0x322752(0x858)];if(_0x1e73b6[_0x33f7d8(0xc62)](_0xf959c0,_0x1e73b6[_0x33f7d8(0xa39)])){if(_0x1e73b6[_0x33f7d8(0xcf4)](_0x1e73b6[_0x58f408(0x176)],_0x1e73b6[_0x322752(0xb29)]))try{var _0x2bb137=new _0x5a77a4(_0x3dda61),_0xf54a63='';for(var _0x3860b4=0x1c4d+0x19ae+-0x35fb;_0x1e73b6[_0x58f408(0x295)](_0x3860b4,_0x2bb137[_0x322752(0x24b)+_0x58f408(0xbc9)]);_0x3860b4++){_0xf54a63+=_0xbada5[_0x322752(0x1a9)+_0x58f408(0xa69)+_0x3356b0(0x4d5)](_0x2bb137[_0x3860b4]);}return _0xf54a63;}catch(_0x163a79){}else document[_0x322752(0xd72)+_0x58f408(0xd11)+_0x322752(0x7c5)](_0x1e73b6[_0x322752(0x195)])[_0x58f408(0xc4b)+_0x33f7d8(0x858)]=_0x1e73b6[_0x331231(0xd2d)](_0x1e73b6[_0x58f408(0x88f)](_0x1e73b6[_0x58f408(0x3ef)](_0x1e73b6[_0x331231(0xb72)](_0x1e73b6[_0x3356b0(0x50f)](_0x1e73b6[_0x3356b0(0xb62)](prev_chat,_0x1e73b6[_0x322752(0x46f)]),_0x1e73b6[_0x331231(0xb1b)]),_0x1e73b6[_0x33f7d8(0x8fb)]),_0x1e73b6[_0x58f408(0x636)]),_0x1e73b6[_0x3356b0(0xc27)]),_0x1e73b6[_0x322752(0xa12)]);}else _0x1e73b6[_0x33f7d8(0xc9d)](_0x1e73b6[_0x3356b0(0x1dc)],_0x1e73b6[_0x322752(0x1dc)])?document[_0x58f408(0xd72)+_0x33f7d8(0xd11)+_0x322752(0x7c5)](_0x1e73b6[_0x322752(0x195)])[_0x331231(0xc4b)+_0x58f408(0x858)]=_0x1e73b6[_0x33f7d8(0x765)](_0x1e73b6[_0x58f408(0x9f0)](_0x1e73b6[_0x322752(0x282)](_0x1e73b6[_0x33f7d8(0xd0f)](_0x1e73b6[_0x33f7d8(0xc93)](_0x1e73b6[_0x33f7d8(0x3a9)](prev_chat,_0x1e73b6[_0x322752(0x46f)]),_0x1e73b6[_0x3356b0(0xb1b)]),_0x1e73b6[_0x3356b0(0x8fb)]),_0x1e73b6[_0x331231(0x7ab)](String,_0xf959c0)),_0x1e73b6[_0x322752(0xc27)]),_0x1e73b6[_0x33f7d8(0xa12)]):_0x440262[_0x322752(0x7cb)](_0x1e73b6[_0x322752(0xbb4)],_0x10d998);modal[_0x33f7d8(0x27b)][_0x58f408(0x5a5)+'ay']=_0x1e73b6[_0x331231(0x2d7)],document[_0x322752(0xac5)+_0x331231(0x8b0)+_0x331231(0x372)](_0x1e73b6[_0x3356b0(0x21c)])[_0x3356b0(0xc4b)+_0x322752(0x858)]='';var _0x12fc7e=new Promise((_0x4ad61f,_0x37e29f)=>{const _0x36076b=_0x331231,_0x28bec6=_0x58f408,_0x253ece=_0x33f7d8,_0x5a80de=_0x3356b0,_0x1ed44d=_0x33f7d8,_0xe53dac={};_0xe53dac[_0x36076b(0x976)]=_0x1e73b6[_0x36076b(0x263)],_0xe53dac[_0x253ece(0x5fc)]=_0x1e73b6[_0x36076b(0x3f2)];const _0x16b863=_0xe53dac;if(_0x1e73b6[_0x1ed44d(0xbcc)](_0x1e73b6[_0x253ece(0x57e)],_0x1e73b6[_0x253ece(0x9ee)])){var _0x48631e=document[_0x36076b(0xac5)+_0x1ed44d(0x8b0)+_0x253ece(0x372)](_0x1e73b6[_0x36076b(0x65f)]);_0x48631e[_0x36076b(0x718)]=_0x3c63e5;if(_0x1e73b6[_0x1ed44d(0xa43)](_0xf959c0,_0x1e73b6[_0x253ece(0xa39)])){if(_0x1e73b6[_0x36076b(0x3af)](_0x1e73b6[_0x28bec6(0x15b)],_0x1e73b6[_0x5a80de(0x3ca)]))document[_0x5a80de(0xcf9)+_0x28bec6(0x3ab)+_0x36076b(0x312)+'r'](_0x1e73b6[_0x1ed44d(0xd37)],function(){const _0x5286a0=_0x5a80de,_0x3c86c6=_0x253ece,_0x3de30a=_0x1ed44d,_0x56e85d=_0x1ed44d,_0x124ea6=_0x36076b,_0x1ad4f9={'hDgxM':function(_0xedbc91,_0x48c174){const _0x38d320=_0x1a0d;return _0x1e73b6[_0x38d320(0x476)](_0xedbc91,_0x48c174);},'Hatce':_0x1e73b6[_0x5286a0(0x8a2)],'SDgBj':_0x1e73b6[_0x3c86c6(0xa1e)],'ynGtH':_0x1e73b6[_0x3c86c6(0x67d)],'pOJSt':function(_0x2033a0,_0x2537cb){const _0x15631e=_0x5286a0;return _0x1e73b6[_0x15631e(0x5e4)](_0x2033a0,_0x2537cb);},'xrqjB':_0x1e73b6[_0x3de30a(0x9ba)],'Kqcvy':function(_0x531c02,_0x10fe42){const _0x38901b=_0x56e85d;return _0x1e73b6[_0x38901b(0x604)](_0x531c02,_0x10fe42);},'FjXqI':_0x1e73b6[_0x124ea6(0x299)],'yAHdI':_0x1e73b6[_0x124ea6(0x1b2)],'dsuWV':_0x1e73b6[_0x3de30a(0x831)]};_0x1e73b6[_0x5286a0(0x476)](_0x1e73b6[_0x124ea6(0xd73)],_0x1e73b6[_0x3de30a(0xd73)])?_0x48631e[_0x3c86c6(0x47f)+_0x3c86c6(0x41f)+_0x56e85d(0x76a)][_0x3de30a(0xb79)+_0x124ea6(0x78a)+_0x56e85d(0x6d9)+_0x124ea6(0xba6)][_0x3de30a(0xbed)+_0x56e85d(0x520)+_0x3c86c6(0x734)+_0x5286a0(0x47a)][_0x5286a0(0xae6)](function(){const _0x4fc447=_0x5286a0,_0x4ba876=_0x3de30a,_0x439f48=_0x56e85d,_0x252083=_0x3de30a,_0x16c9c0=_0x3c86c6,_0x3b91c9={'gYrtQ':function(_0x5cda9f,_0x1e4cd6){const _0x28e163=_0x1a0d;return _0x1ad4f9[_0x28e163(0xc00)](_0x5cda9f,_0x1e4cd6);},'TPHtN':_0x1ad4f9[_0x4fc447(0xd7d)],'oRjMS':_0x1ad4f9[_0x4ba876(0x9a1)],'rNfYU':_0x1ad4f9[_0x4fc447(0x4e9)],'ywZPv':function(_0x2906cb,_0x12e82b){const _0x6544dc=_0x4ba876;return _0x1ad4f9[_0x6544dc(0xc5a)](_0x2906cb,_0x12e82b);},'SprcM':_0x1ad4f9[_0x252083(0xafa)]};_0x1ad4f9[_0x4ba876(0x788)](_0x1ad4f9[_0x16c9c0(0x2c7)],_0x1ad4f9[_0x252083(0x2dd)])?_0x48631e[_0x252083(0x47f)+_0x16c9c0(0x41f)+_0x4ba876(0x76a)][_0x4ba876(0xb79)+_0x439f48(0x78a)+_0x16c9c0(0x6d9)+_0x4ba876(0xba6)][_0x16c9c0(0x97d)+_0x439f48(0xc31)]['on'](_0x1ad4f9[_0x4fc447(0x986)],function(_0x4d2f46){const _0x336cd9=_0x439f48,_0x1e9f8d=_0x16c9c0,_0x58f1a9=_0x252083,_0x55caa2=_0x439f48,_0xd44e67=_0x439f48;if(_0x3b91c9[_0x336cd9(0x6da)](_0x3b91c9[_0x1e9f8d(0x5ad)],_0x3b91c9[_0x58f1a9(0x1fc)]))throw _0x4a4ee1;else console[_0x336cd9(0x7c3)](_0x3b91c9[_0x58f1a9(0x253)]),_0x3b91c9[_0x336cd9(0x978)](_0x4ad61f,_0x3b91c9[_0x336cd9(0x745)]);}):_0x428551+='上';}):_0x4a1a35+=_0x341693[0x167c+-0x1211+-0x46b][_0x3de30a(0xcb8)][_0x5286a0(0x47f)+'nt'];});else return _0x15a27e[_0x1ed44d(0xccf)+_0x36076b(0xac6)]()[_0x28bec6(0x334)+'h'](ohGTEr[_0x1ed44d(0x976)])[_0x1ed44d(0xccf)+_0x253ece(0xac6)]()[_0x36076b(0x3e2)+_0x36076b(0x2b9)+'r'](_0xd7432c)[_0x1ed44d(0x334)+'h'](ohGTEr[_0x1ed44d(0x976)]);}else{if(_0x48631e[_0x5a80de(0x39d)+_0x5a80de(0x2f2)+'t'])_0x1e73b6[_0x253ece(0x3af)](_0x1e73b6[_0x28bec6(0x182)],_0x1e73b6[_0x253ece(0x96d)])?_0x48631e[_0x253ece(0x39d)+_0x253ece(0x2f2)+'t'](_0x1e73b6[_0x1ed44d(0x3f2)],function(){const _0x43a748=_0x1ed44d,_0x4be03f=_0x28bec6,_0x2010bd=_0x36076b,_0x517a06=_0x1ed44d,_0x4584e1=_0x5a80de,_0x1c015d={'ltbqd':_0x1e73b6[_0x43a748(0xb45)],'THArG':function(_0x52ca95,_0x24d050){const _0x22ea06=_0x43a748;return _0x1e73b6[_0x22ea06(0x5e4)](_0x52ca95,_0x24d050);},'XAhSj':_0x1e73b6[_0x4be03f(0x9ba)]};_0x1e73b6[_0x2010bd(0x3af)](_0x1e73b6[_0x517a06(0x16a)],_0x1e73b6[_0x517a06(0x16a)])?_0x46312d[_0x43a748(0x39d)+_0x4be03f(0x2f2)+'t'](_0x16b863[_0x4584e1(0x5fc)],function(){const _0xa01215=_0x517a06,_0x172f67=_0x43a748,_0x1db5e5=_0x43a748,_0x38b7b2=_0x43a748;_0x552865[_0xa01215(0x7c3)](_0x1c015d[_0xa01215(0x956)]),_0x1c015d[_0xa01215(0xb81)](_0x23364b,_0x1c015d[_0x172f67(0x7c9)]);}):(console[_0x4be03f(0x7c3)](_0x1e73b6[_0x4be03f(0xb45)]),_0x1e73b6[_0x2010bd(0x5e4)](_0x4ad61f,_0x1e73b6[_0x43a748(0x9ba)]));}):_0x1fc4bd='按钮';else{if(_0x1e73b6[_0x253ece(0x1e2)](_0x1e73b6[_0x5a80de(0x201)],_0x1e73b6[_0x28bec6(0x93f)]))_0x48631e[_0x5a80de(0x6b8)+'d']=function(){const _0x2dfc2b=_0x253ece,_0x34c540=_0x5a80de,_0x317fa8=_0x253ece,_0x2a7476=_0x253ece,_0x4abbd1=_0x36076b,_0x30b1d9={'SflPf':function(_0x5b0497,_0xb7b80b){const _0x22908c=_0x1a0d;return _0x1e73b6[_0x22908c(0x9fa)](_0x5b0497,_0xb7b80b);},'eHoMU':_0x1e73b6[_0x2dfc2b(0xc96)]};if(_0x1e73b6[_0x2dfc2b(0xcb3)](_0x1e73b6[_0x2dfc2b(0xd01)],_0x1e73b6[_0x2a7476(0xd01)]))try{_0x44403f=_0x30b1d9[_0x34c540(0xa78)](_0x56b814,_0x5adfac);const _0x3186fe={};return _0x3186fe[_0x34c540(0x798)]=_0x30b1d9[_0x34c540(0x44f)],_0x252e36[_0x4abbd1(0x4eb)+'e'][_0x2dfc2b(0xd74)+'pt'](_0x3186fe,_0x173583,_0x1176a0);}catch(_0x5808d7){}else console[_0x4abbd1(0x7c3)](_0x1e73b6[_0x2a7476(0xb45)]),_0x1e73b6[_0x34c540(0x5e4)](_0x4ad61f,_0x1e73b6[_0x4abbd1(0x9ba)]);};else return-0x1dc7+0x1f*-0xc7+0x1*0x35e1;}}}else{const _0x1fc1e3=_0x252faf[_0x1ed44d(0x78d)](_0x2df149,arguments);return _0x2947a4=null,_0x1fc1e3;}});keytextres=[],_0x12fc7e[_0x331231(0xae6)](()=>{const _0xd462ec=_0x3356b0,_0x5944c5=_0x33f7d8,_0x374d9f=_0x331231,_0x33ca30=_0x58f408,_0x159187=_0x322752,_0x339b9d={'duMNn':function(_0x1655be,_0x5ab1c4){const _0x3e4514=_0x1a0d;return _0x1e73b6[_0x3e4514(0x7d6)](_0x1655be,_0x5ab1c4);},'YkaQR':function(_0x81dae1,_0x36bfa1,_0x3d4da2){const _0x105094=_0x1a0d;return _0x1e73b6[_0x105094(0x270)](_0x81dae1,_0x36bfa1,_0x3d4da2);},'cyeNp':function(_0x288ad9,_0x59b017){const _0x4a8290=_0x1a0d;return _0x1e73b6[_0x4a8290(0xba3)](_0x288ad9,_0x59b017);},'lNScE':function(_0x2aea3f,_0x4f750f){const _0x1ac754=_0x1a0d;return _0x1e73b6[_0x1ac754(0x765)](_0x2aea3f,_0x4f750f);},'osJAG':function(_0x340750,_0x11fe3e){const _0x19e106=_0x1a0d;return _0x1e73b6[_0x19e106(0x9fb)](_0x340750,_0x11fe3e);},'snoCC':_0x1e73b6[_0xd462ec(0x527)],'PZlbH':function(_0x594da4,_0x30c546){const _0xac2bd0=_0xd462ec;return _0x1e73b6[_0xac2bd0(0x161)](_0x594da4,_0x30c546);},'jKKAc':_0x1e73b6[_0x5944c5(0xd5b)],'tkNMF':function(_0x45020f,_0x43f44e){const _0x525256=_0x5944c5;return _0x1e73b6[_0x525256(0x2fc)](_0x45020f,_0x43f44e);},'OGYkl':function(_0x40d1ef,_0x109fa1){const _0x3117d9=_0xd462ec;return _0x1e73b6[_0x3117d9(0xba7)](_0x40d1ef,_0x109fa1);},'VwhkQ':_0x1e73b6[_0xd462ec(0x6ce)],'OjISV':_0x1e73b6[_0x33ca30(0xbfe)],'RjGef':_0x1e73b6[_0x5944c5(0x3a0)],'VTnxB':_0x1e73b6[_0x374d9f(0x71d)],'mWGwJ':function(_0x43281d,_0x58499c){const _0x219092=_0x374d9f;return _0x1e73b6[_0x219092(0x5e4)](_0x43281d,_0x58499c);},'KBQhc':function(_0x3cb0d9){const _0x3dec25=_0x33ca30;return _0x1e73b6[_0x3dec25(0x983)](_0x3cb0d9);},'jtieq':function(_0x48764a,_0x2c8702){const _0xb1dcb1=_0x159187;return _0x1e73b6[_0xb1dcb1(0x83d)](_0x48764a,_0x2c8702);},'qZoMD':_0x1e73b6[_0x33ca30(0x374)],'jwBCB':_0x1e73b6[_0xd462ec(0x55c)],'PBemw':_0x1e73b6[_0x159187(0x35b)],'oJqeC':_0x1e73b6[_0x159187(0x306)],'Tltdi':_0x1e73b6[_0x374d9f(0x91e)],'dEQkN':_0x1e73b6[_0x5944c5(0x84f)],'pdExN':_0x1e73b6[_0x33ca30(0x4b4)],'NYVgv':_0x1e73b6[_0x374d9f(0x294)],'GGvdJ':function(_0x4a8784,_0xbdc9bb){const _0x5337c3=_0x33ca30;return _0x1e73b6[_0x5337c3(0x42f)](_0x4a8784,_0xbdc9bb);},'Bsfsj':_0x1e73b6[_0x374d9f(0x845)],'SgsNd':function(_0x1589a9,_0x58b778){const _0x3cd7a9=_0xd462ec;return _0x1e73b6[_0x3cd7a9(0x660)](_0x1589a9,_0x58b778);},'PySZp':_0x1e73b6[_0x374d9f(0x3a7)],'Ybzzl':_0x1e73b6[_0x5944c5(0xcf1)],'Epfob':function(_0x50c872,_0x2a1876){const _0x43b9c1=_0x33ca30;return _0x1e73b6[_0x43b9c1(0xb8a)](_0x50c872,_0x2a1876);},'LAACS':function(_0x1a9374,_0xf24b1a){const _0x5d5c10=_0x374d9f;return _0x1e73b6[_0x5d5c10(0xb8a)](_0x1a9374,_0xf24b1a);},'zcBoS':_0x1e73b6[_0xd462ec(0xae4)],'MEqGX':_0x1e73b6[_0x159187(0x8e9)],'tAAjd':function(_0x18a16b,_0xfcab3a){const _0x3f4ac0=_0x159187;return _0x1e73b6[_0x3f4ac0(0x484)](_0x18a16b,_0xfcab3a);},'OiCPI':_0x1e73b6[_0x374d9f(0x37c)],'Tatdr':function(_0x543a11,_0x364944){const _0x34e5fd=_0x374d9f;return _0x1e73b6[_0x34e5fd(0xb19)](_0x543a11,_0x364944);},'qLloa':function(_0x2a0b06,_0x1fc80c){const _0x581ce2=_0x159187;return _0x1e73b6[_0x581ce2(0x50f)](_0x2a0b06,_0x1fc80c);},'MYSOd':function(_0x5615c3,_0x5c17f4){const _0x39ffe0=_0x5944c5;return _0x1e73b6[_0x39ffe0(0x2aa)](_0x5615c3,_0x5c17f4);},'Netih':function(_0x1750db,_0x45cd9d){const _0x268c71=_0x5944c5;return _0x1e73b6[_0x268c71(0x530)](_0x1750db,_0x45cd9d);},'pAmmY':_0x1e73b6[_0xd462ec(0x2d5)],'PxnZc':function(_0x1dfa20,_0x484239){const _0xce0969=_0x159187;return _0x1e73b6[_0xce0969(0xa8f)](_0x1dfa20,_0x484239);},'icomn':_0x1e73b6[_0x374d9f(0x595)],'mJZMo':_0x1e73b6[_0x5944c5(0x567)],'UZaTd':function(_0x3b7d33,_0x40cb98){const _0xd24273=_0x33ca30;return _0x1e73b6[_0xd24273(0x202)](_0x3b7d33,_0x40cb98);},'FkcAO':function(_0x21a5e6,_0x3430c2){const _0x9e3426=_0xd462ec;return _0x1e73b6[_0x9e3426(0xcf2)](_0x21a5e6,_0x3430c2);},'kYNQH':function(_0x271bdf,_0x2e4e72){const _0x2ef433=_0x33ca30;return _0x1e73b6[_0x2ef433(0x48e)](_0x271bdf,_0x2e4e72);},'lLWqD':_0x1e73b6[_0x159187(0x49f)],'andkx':_0x1e73b6[_0x159187(0x6b7)],'UdHri':_0x1e73b6[_0x374d9f(0x7af)],'lJWmf':_0x1e73b6[_0xd462ec(0x98e)],'YHsiY':function(_0x154be8,_0x1968c4){const _0x4481ea=_0x374d9f;return _0x1e73b6[_0x4481ea(0x7ab)](_0x154be8,_0x1968c4);},'JrjPF':_0x1e73b6[_0xd462ec(0x195)],'CuCbQ':function(_0x22e65f,_0x2dfe1c,_0x7b9954){const _0x477467=_0x5944c5;return _0x1e73b6[_0x477467(0x4e0)](_0x22e65f,_0x2dfe1c,_0x7b9954);},'FnVuc':_0x1e73b6[_0xd462ec(0x355)],'WLKAf':function(_0x31a495,_0x552a88){const _0x577a76=_0xd462ec;return _0x1e73b6[_0x577a76(0xa8f)](_0x31a495,_0x552a88);},'EMHTg':_0x1e73b6[_0xd462ec(0x52b)]};if(_0x1e73b6[_0x5944c5(0x604)](_0x1e73b6[_0xd462ec(0x812)],_0x1e73b6[_0xd462ec(0x812)]))return _0x339b9d[_0xd462ec(0xd4f)](_0x339b9d[_0x159187(0xcd2)](_0x2cd160,_0x339b9d[_0x33ca30(0x49d)](_0x339b9d[_0x33ca30(0x49d)](_0x562028,'\x20'),_0x4e107b),_0x5dc4b[0xdd5+-0x1825+-0x1*-0xa51]),_0x339b9d[_0x374d9f(0xcd2)](_0x1d77b4,_0x339b9d[_0xd462ec(0x49d)](_0x339b9d[_0x5944c5(0xd23)](_0x4bc279,'\x20'),_0x168411),_0x2c0142[0x2049*0x1+0x3*0x7d3+-0x37c1]))?-(0x514+-0x1d35+0x1822):0x7eb+0x493+-0xc7d;else{const _0xbaca32=document[_0x374d9f(0xac5)+_0xd462ec(0x8b0)+_0x33ca30(0x372)](_0x1e73b6[_0x33ca30(0x65f)])[_0x33ca30(0x47f)+_0x374d9f(0x41f)+_0x33ca30(0x76a)][_0x374d9f(0xc59)+_0x33ca30(0xbcd)],_0x2625f3=_0xbaca32[_0x33ca30(0xd72)+_0x374d9f(0xd11)+_0xd462ec(0x927)+_0xd462ec(0x605)]('a');for(let _0x5b171a=-0x32+-0x361+-0x5*-0xb7;_0x1e73b6[_0xd462ec(0xb19)](_0x5b171a,_0x2625f3[_0xd462ec(0x1d9)+'h']);_0x5b171a++){if(_0x1e73b6[_0x159187(0xaa5)](_0x1e73b6[_0xd462ec(0x289)],_0x1e73b6[_0xd462ec(0x289)])){if(!_0x2625f3[_0x5b171a][_0xd462ec(0x2b7)])continue;_0x2625f3[_0x5b171a][_0xd462ec(0xcf9)+_0x159187(0x3ab)+_0x5944c5(0x312)+'r'](_0x1e73b6[_0xd462ec(0x186)],function(_0x128d7a){const _0xe80041=_0x374d9f,_0x218866=_0x33ca30,_0x277906=_0xd462ec,_0x3ed763=_0x5944c5,_0xc31dc5=_0x33ca30,_0x4965df={};_0x4965df[_0xe80041(0x725)]=_0x339b9d[_0x218866(0x6a2)];const _0x1d5485=_0x4965df;if(_0x339b9d[_0xe80041(0x439)](_0x339b9d[_0x3ed763(0x415)],_0x339b9d[_0xc31dc5(0x415)]))_0x5a4a85[_0xe80041(0xac5)+_0x277906(0x8b0)+_0x3ed763(0x372)](_0x1d5485[_0x3ed763(0x725)])[_0x218866(0x139)+_0xe80041(0x753)]=_0x12f4ba[_0x218866(0xac5)+_0xc31dc5(0x8b0)+_0xe80041(0x372)](_0x1d5485[_0xc31dc5(0x725)])[_0x3ed763(0x139)+_0xc31dc5(0x50d)+'ht'];else{if(_0x339b9d[_0x218866(0x1bb)](window[_0x3ed763(0x778)+_0xe80041(0x32e)],0xd*-0x254+0x14a7+0x1*0x99e)){if(_0x339b9d[_0x3ed763(0x94f)](_0x339b9d[_0xe80041(0xb78)],_0x339b9d[_0x3ed763(0xb78)])){if(_0x5bcaf0)return _0x59db97;else slzazX[_0x218866(0x199)](_0x192e08,0x1e5d+0x1e55+0x11*-0x392);}else _0x128d7a[_0xc31dc5(0xd43)+_0xe80041(0x2c5)+_0xe80041(0xc7e)](),_0x339b9d[_0x3ed763(0x199)](alert,_0x339b9d[_0xe80041(0x475)]);}else{if(_0x339b9d[_0xe80041(0x1bb)](_0x339b9d[_0x277906(0x686)],_0x339b9d[_0x3ed763(0x686)]))_0x339b9d[_0xe80041(0xcd2)](modal_open,_0x2625f3[_0x5b171a][_0x3ed763(0x2b7)],_0x339b9d[_0x218866(0x335)]);else{if(_0x1a2df6){const _0x2e8a4c=_0x2987b4[_0x218866(0x78d)](_0xd8afef,arguments);return _0x501cc1=null,_0x2e8a4c;}}}}});}else{const _0x241a5d=_0xa54f28[_0x33ca30(0x78d)](_0x572e6e,arguments);return _0x4b1d5f=null,_0x241a5d;}}document[_0x374d9f(0xac5)+_0xd462ec(0x8b0)+_0x5944c5(0x372)](_0x1e73b6[_0xd462ec(0xc20)])[_0xd462ec(0x6c1)+_0x159187(0x5d0)+'d'](document[_0x159187(0xac5)+_0x33ca30(0x8b0)+_0x159187(0x372)](_0x1e73b6[_0xd462ec(0x527)])),document[_0x159187(0xac5)+_0x33ca30(0x8b0)+_0xd462ec(0x372)](_0x1e73b6[_0x33ca30(0xc20)])[_0x159187(0x6c1)+_0x159187(0x5d0)+'d'](document[_0x33ca30(0xac5)+_0x159187(0x8b0)+_0x5944c5(0x372)](_0x1e73b6[_0x374d9f(0x7ea)]));var _0x1b5c50=document[_0x159187(0xac5)+_0xd462ec(0x8b0)+_0x33ca30(0x372)](_0x1e73b6[_0x33ca30(0x65f)]);new Promise((_0x171b5a,_0x528fa4)=>{const _0x1ae185=_0x33ca30,_0x14c2c9=_0x5944c5,_0x41ab6d=_0x374d9f,_0x37db17=_0x33ca30,_0x19dcf0=_0xd462ec,_0x1c43aa={'WQhim':function(_0x430b36,_0x4d41b9,_0x3e8df4){const _0x32ed12=_0x1a0d;return _0x1e73b6[_0x32ed12(0x270)](_0x430b36,_0x4d41b9,_0x3e8df4);},'wqTMk':_0x1e73b6[_0x1ae185(0x174)],'pZLzN':_0x1e73b6[_0x1ae185(0xd7b)],'bTWlO':_0x1e73b6[_0x14c2c9(0x71d)],'OTGoH':_0x1e73b6[_0x1ae185(0xce2)],'CdOGL':function(_0x4d3f65,_0x3b2e76){const _0x50a344=_0x14c2c9;return _0x1e73b6[_0x50a344(0x9fa)](_0x4d3f65,_0x3b2e76);},'YCpDj':function(_0x3e9e0d,_0x20bf68){const _0x402a9=_0x1ae185;return _0x1e73b6[_0x402a9(0x882)](_0x3e9e0d,_0x20bf68);},'yquSp':function(_0x228cd8,_0x142033){const _0x2b2a05=_0x1ae185;return _0x1e73b6[_0x2b2a05(0x9fa)](_0x228cd8,_0x142033);},'bsyun':_0x1e73b6[_0x41ab6d(0xbfe)],'HkgOv':_0x1e73b6[_0x41ab6d(0xbb4)],'LbmfT':function(_0x5f0c9e,_0xe6cfd8){const _0x405399=_0x14c2c9;return _0x1e73b6[_0x405399(0x22e)](_0x5f0c9e,_0xe6cfd8);},'PKwjK':function(_0x146239,_0x36d9c3,_0x1e2c2c){const _0x384648=_0x41ab6d;return _0x1e73b6[_0x384648(0x270)](_0x146239,_0x36d9c3,_0x1e2c2c);},'yPGfg':function(_0x301b6d,_0x5bdbc5){const _0x51abc1=_0x37db17;return _0x1e73b6[_0x51abc1(0x3ef)](_0x301b6d,_0x5bdbc5);},'EGjsd':_0x1e73b6[_0x1ae185(0x195)],'ACYQe':function(_0x5a5758,_0x59e203){const _0x32b375=_0x41ab6d;return _0x1e73b6[_0x32b375(0xc5e)](_0x5a5758,_0x59e203);},'mJtpC':function(_0x255914,_0x900b45){const _0x2acf8e=_0x1ae185;return _0x1e73b6[_0x2acf8e(0x3ef)](_0x255914,_0x900b45);},'WGjzP':_0x1e73b6[_0x37db17(0x46f)],'OUTVO':_0x1e73b6[_0x19dcf0(0xb1b)],'zuPrZ':_0x1e73b6[_0x1ae185(0x8fb)],'rfHey':_0x1e73b6[_0x14c2c9(0x636)],'LymzV':_0x1e73b6[_0x1ae185(0xc27)],'vZQRf':_0x1e73b6[_0x37db17(0xa12)],'Vncpk':_0x1e73b6[_0x14c2c9(0x845)],'rZmtA':function(_0x431ab0,_0x22a6cc){const _0x2131d7=_0x37db17;return _0x1e73b6[_0x2131d7(0x9fb)](_0x431ab0,_0x22a6cc);},'Agvgj':function(_0x1fcd25,_0x4693cd){const _0x3894cb=_0x19dcf0;return _0x1e73b6[_0x3894cb(0x50f)](_0x1fcd25,_0x4693cd);},'yBTmw':_0x1e73b6[_0x37db17(0xc35)],'CVRYf':_0x1e73b6[_0x37db17(0xba1)],'EZJOw':function(_0x5a8ff5){const _0x22c882=_0x41ab6d;return _0x1e73b6[_0x22c882(0x574)](_0x5a8ff5);},'nJqsS':_0x1e73b6[_0x1ae185(0xb45)],'LQczr':_0x1e73b6[_0x1ae185(0x9ba)],'zJkwT':function(_0x3968d5,_0x3df62a){const _0x385588=_0x19dcf0;return _0x1e73b6[_0x385588(0x50f)](_0x3968d5,_0x3df62a);},'Yjspx':function(_0x325a3e,_0x4967a4){const _0x3807ae=_0x19dcf0;return _0x1e73b6[_0x3807ae(0xd2d)](_0x325a3e,_0x4967a4);},'zrAkY':function(_0x49ff64,_0x247dc4){const _0x98db4d=_0x1ae185;return _0x1e73b6[_0x98db4d(0x1e2)](_0x49ff64,_0x247dc4);},'dJTam':_0x1e73b6[_0x14c2c9(0x74a)],'vdBpS':function(_0xd26636,_0x540538){const _0x4e403f=_0x14c2c9;return _0x1e73b6[_0x4e403f(0xbff)](_0xd26636,_0x540538);},'jEYcA':function(_0x5e1351,_0x486b89){const _0x215a74=_0x37db17;return _0x1e73b6[_0x215a74(0x882)](_0x5e1351,_0x486b89);},'PclUm':_0x1e73b6[_0x1ae185(0x375)],'gRvum':_0x1e73b6[_0x1ae185(0x5ab)],'lXksj':_0x1e73b6[_0x1ae185(0x7da)],'qgZbo':function(_0x30e9a8,_0x45a2af){const _0x1bbdef=_0x19dcf0;return _0x1e73b6[_0x1bbdef(0xbff)](_0x30e9a8,_0x45a2af);},'BHNln':_0x1e73b6[_0x41ab6d(0xbd1)],'vHgpe':_0x1e73b6[_0x19dcf0(0x17c)],'vhbxp':_0x1e73b6[_0x41ab6d(0xd07)],'GCWct':function(_0x28acf2,_0x3cb196){const _0x392d11=_0x37db17;return _0x1e73b6[_0x392d11(0x7d6)](_0x28acf2,_0x3cb196);},'uYteC':_0x1e73b6[_0x14c2c9(0x3b0)],'METbA':function(_0x1bea5d,_0x51164f){const _0xd4fc69=_0x19dcf0;return _0x1e73b6[_0xd4fc69(0x38a)](_0x1bea5d,_0x51164f);},'XXClL':function(_0xc07520,_0x4d384f){const _0xb736a9=_0x19dcf0;return _0x1e73b6[_0xb736a9(0x882)](_0xc07520,_0x4d384f);},'vgqNo':_0x1e73b6[_0x19dcf0(0xbb9)],'xnTfo':_0x1e73b6[_0x1ae185(0x7d5)],'NdVAd':function(_0x168b49,_0x29e58e){const _0x424cdb=_0x14c2c9;return _0x1e73b6[_0x424cdb(0x3d4)](_0x168b49,_0x29e58e);},'RoWwd':function(_0x101267,_0x3a9587){const _0xea796b=_0x37db17;return _0x1e73b6[_0xea796b(0x882)](_0x101267,_0x3a9587);},'drUln':_0x1e73b6[_0x41ab6d(0x539)],'NssMf':function(_0x469e42,_0x14fa6a){const _0x3d28af=_0x1ae185;return _0x1e73b6[_0x3d28af(0xc9d)](_0x469e42,_0x14fa6a);},'booIc':_0x1e73b6[_0x19dcf0(0x805)],'YGCnA':_0x1e73b6[_0x37db17(0xbaf)],'uCcpW':function(_0x216515,_0x2dbba9){const _0x5645a9=_0x1ae185;return _0x1e73b6[_0x5645a9(0x624)](_0x216515,_0x2dbba9);},'BksGL':function(_0x2aa1a3,_0x4f5d53){const _0x303a4c=_0x37db17;return _0x1e73b6[_0x303a4c(0xc10)](_0x2aa1a3,_0x4f5d53);},'pQEig':function(_0x43ae3f,_0x1f8fc1){const _0x10f4ae=_0x37db17;return _0x1e73b6[_0x10f4ae(0x8c2)](_0x43ae3f,_0x1f8fc1);},'jryCY':function(_0xcfe6c1,_0x5bf54e){const _0x321d0e=_0x41ab6d;return _0x1e73b6[_0x321d0e(0x1eb)](_0xcfe6c1,_0x5bf54e);},'Oawxj':_0x1e73b6[_0x19dcf0(0x8ba)],'xCrkq':_0x1e73b6[_0x14c2c9(0x490)],'wgXnL':_0x1e73b6[_0x14c2c9(0xb75)],'upAvb':function(_0x3d82f2,_0x198109){const _0x2ba3da=_0x19dcf0;return _0x1e73b6[_0x2ba3da(0x9ca)](_0x3d82f2,_0x198109);},'qRRhF':_0x1e73b6[_0x41ab6d(0x5a9)],'jqQvz':function(_0x5d37c4,_0x30e382){const _0x38994a=_0x37db17;return _0x1e73b6[_0x38994a(0xd48)](_0x5d37c4,_0x30e382);},'JTeJw':function(_0x3d5cfd,_0x1385ca){const _0x1d65ac=_0x41ab6d;return _0x1e73b6[_0x1d65ac(0x484)](_0x3d5cfd,_0x1385ca);},'uyvmK':_0x1e73b6[_0x37db17(0x265)],'GYJtZ':_0x1e73b6[_0x37db17(0x8f9)],'Ufqim':_0x1e73b6[_0x1ae185(0x61a)],'kGOtk':function(_0x23872c,_0xbb9c2a){const _0x4c3bcd=_0x1ae185;return _0x1e73b6[_0x4c3bcd(0xc0c)](_0x23872c,_0xbb9c2a);},'BKkRx':function(_0x340ad9,_0x36a253){const _0x22d4bd=_0x1ae185;return _0x1e73b6[_0x22d4bd(0x1eb)](_0x340ad9,_0x36a253);},'ssteB':_0x1e73b6[_0x37db17(0x53e)],'eMKNv':function(_0xbf494b,_0x5e1c40){const _0x284800=_0x19dcf0;return _0x1e73b6[_0x284800(0x8b1)](_0xbf494b,_0x5e1c40);},'JNDuh':function(_0x55a3bd,_0x55d04d){const _0x153d8e=_0x37db17;return _0x1e73b6[_0x153d8e(0xb6a)](_0x55a3bd,_0x55d04d);},'kwXvA':function(_0xaecebb,_0x3a2e7f){const _0x552ff0=_0x37db17;return _0x1e73b6[_0x552ff0(0x882)](_0xaecebb,_0x3a2e7f);},'MsTNO':_0x1e73b6[_0x14c2c9(0xb0f)],'CEbbN':_0x1e73b6[_0x19dcf0(0xb8d)],'hMPqX':_0x1e73b6[_0x14c2c9(0x1a3)],'KgaFJ':_0x1e73b6[_0x41ab6d(0xce8)],'ypXoq':function(_0x4c1ca8,_0x588ddf){const _0x19ac18=_0x14c2c9;return _0x1e73b6[_0x19ac18(0xc10)](_0x4c1ca8,_0x588ddf);},'EnLgx':_0x1e73b6[_0x1ae185(0x663)],'dTHsm':_0x1e73b6[_0x14c2c9(0xd35)],'cLDKQ':_0x1e73b6[_0x41ab6d(0x2b2)]};if(_0x1e73b6[_0x41ab6d(0x604)](_0x1e73b6[_0x41ab6d(0x760)],_0x1e73b6[_0x41ab6d(0x760)]))_0x32bcc0+=_0x1ef2ad[-0x2c2+0x4c6+-0x204][_0x19dcf0(0xcb8)][_0x1ae185(0x47f)+'nt'];else{if(_0x1e73b6[_0x19dcf0(0x965)](_0xf959c0,_0x1e73b6[_0x19dcf0(0xa39)])){if(_0x1e73b6[_0x19dcf0(0x417)](_0x1e73b6[_0x37db17(0xb67)],_0x1e73b6[_0x14c2c9(0x7e7)]))_0x4819b7[_0x1ae185(0xd43)+_0x41ab6d(0x2c5)+_0x41ab6d(0xc7e)](),_0x339b9d[_0x14c2c9(0xc28)](_0x3453b0,_0x339b9d[_0x14c2c9(0x475)]);else{var _0x3b9c80=_0x1b5c50[_0x19dcf0(0x47f)+_0x14c2c9(0x41f)+_0x1ae185(0x76a)][_0x19dcf0(0xb79)+_0x41ab6d(0x78a)+_0x41ab6d(0x6d9)+_0x19dcf0(0xba6)][_0x41ab6d(0xc0b)+_0x19dcf0(0x6a1)+'t'],_0x13e2bf=_0x3b9c80[_0x14c2c9(0x4ff)+_0x41ab6d(0x451)],_0x1c883e=[];sentences=[];for(var _0xd261a1=0x170d*0x1+-0x1*0x1937+-0x1*-0x22b;_0x1e73b6[_0x19dcf0(0x2de)](_0xd261a1,_0x13e2bf);_0xd261a1++){_0x1e73b6[_0x41ab6d(0x1e2)](_0x1e73b6[_0x37db17(0xbec)],_0x1e73b6[_0x14c2c9(0x73c)])?_0x1c883e[_0x19dcf0(0x35e)](_0x3b9c80[_0x14c2c9(0x1e7)+'ge'](_0xd261a1)):slzazX[_0x1ae185(0xb28)](_0x4b7745);}Promise[_0x41ab6d(0xa8e)](_0x1c883e)[_0x1ae185(0xae6)](function(_0x4ae41e){const _0x395e4c=_0x14c2c9,_0x47cdc9=_0x19dcf0,_0x10c986=_0x41ab6d,_0x548173=_0x41ab6d,_0x438fbb=_0x1ae185;if(_0x339b9d[_0x395e4c(0x8c6)](_0x339b9d[_0x395e4c(0x60c)],_0x339b9d[_0x395e4c(0xc9f)])){var _0x3b5b60=[],_0x55ccde=[];for(var _0x51f9b3 of _0x4ae41e){if(_0x339b9d[_0x395e4c(0x1bb)](_0x339b9d[_0x10c986(0x661)],_0x339b9d[_0x10c986(0xb77)]))_0x5398ad='表单';else{const _0x11416a={};_0x11416a[_0x438fbb(0x1f6)]=0x1,_0x3b9c80[_0x395e4c(0xcf8)]=_0x51f9b3[_0x47cdc9(0x878)+_0x438fbb(0x5a3)+'t'](_0x11416a),_0x3b5b60[_0x438fbb(0x35e)](_0x51f9b3[_0x47cdc9(0x498)+_0x438fbb(0xb47)+_0x438fbb(0x707)]());const _0x1d6cb6={};_0x1d6cb6[_0x395e4c(0x1f6)]=0x1,_0x55ccde[_0x47cdc9(0x35e)]([_0x51f9b3[_0x548173(0x878)+_0x395e4c(0x5a3)+'t'](_0x1d6cb6),_0x339b9d[_0x548173(0xd23)](_0x51f9b3[_0x10c986(0xc95)+_0x438fbb(0xb06)],0x4*0x78d+0xf47+-0x2*0x16bd)]);}}return Promise[_0x10c986(0xa8e)]([Promise[_0x47cdc9(0xa8e)](_0x3b5b60),_0x55ccde]);}else{const _0x272eae=_0x3658db[_0x10c986(0x3e2)+_0x10c986(0x2b9)+'r'][_0x395e4c(0x684)+_0x438fbb(0xb52)][_0x395e4c(0x7ff)](_0x28e1bc),_0x8216fe=_0x22cad8[_0x37dadf],_0x508c25=_0x30d804[_0x8216fe]||_0x272eae;_0x272eae[_0x548173(0x43b)+_0x395e4c(0x995)]=_0xc4365b[_0x548173(0x7ff)](_0x46f1ce),_0x272eae[_0x438fbb(0xccf)+_0x548173(0xac6)]=_0x508c25[_0x10c986(0xccf)+_0x395e4c(0xac6)][_0x548173(0x7ff)](_0x508c25),_0x500823[_0x8216fe]=_0x272eae;}})[_0x14c2c9(0xae6)](function(_0x480be2){const _0x2f5a18=_0x41ab6d,_0x38bf3d=_0x37db17,_0x2d0aed=_0x41ab6d,_0x417dab=_0x1ae185,_0x35c9df=_0x41ab6d,_0x535ed5={'rBUzK':function(_0x5640c4,_0x5c3e6b){const _0x4c582d=_0x1a0d;return _0x1c43aa[_0x4c582d(0x16d)](_0x5640c4,_0x5c3e6b);},'fAzRd':function(_0xc030a0,_0x4bbc40,_0x420364){const _0x5db927=_0x1a0d;return _0x1c43aa[_0x5db927(0x4c1)](_0xc030a0,_0x4bbc40,_0x420364);},'WcGHL':function(_0x5ae217,_0x3dec88){const _0x35fa24=_0x1a0d;return _0x1c43aa[_0x35fa24(0x40d)](_0x5ae217,_0x3dec88);},'xtbdC':function(_0x3d1107,_0xb4ef53){const _0x556b8a=_0x1a0d;return _0x1c43aa[_0x556b8a(0x40d)](_0x3d1107,_0xb4ef53);},'Hxqhi':function(_0x240187,_0x10c7c9){const _0x246a46=_0x1a0d;return _0x1c43aa[_0x246a46(0x40d)](_0x240187,_0x10c7c9);},'lBJUk':_0x1c43aa[_0x2f5a18(0x21e)],'JdQGS':function(_0x291d38,_0x119801){const _0xff4310=_0x2f5a18;return _0x1c43aa[_0xff4310(0x40d)](_0x291d38,_0x119801);},'QPPXa':function(_0xa93526,_0x345b15){const _0x274741=_0x2f5a18;return _0x1c43aa[_0x274741(0xaa4)](_0xa93526,_0x345b15);},'GsVKp':function(_0x5dcae3,_0x48e672){const _0x23a061=_0x2f5a18;return _0x1c43aa[_0x23a061(0xaa4)](_0x5dcae3,_0x48e672);},'WjeGO':function(_0x21b04f,_0x4ba87f){const _0x5b7bf9=_0x2f5a18;return _0x1c43aa[_0x5b7bf9(0xd54)](_0x21b04f,_0x4ba87f);},'gIpMf':_0x1c43aa[_0x38bf3d(0x67b)],'sjMed':_0x1c43aa[_0x2d0aed(0x5d1)],'Pmefo':_0x1c43aa[_0x38bf3d(0x481)],'TCEpk':_0x1c43aa[_0x417dab(0x708)],'nOMCu':_0x1c43aa[_0x417dab(0x614)],'ARIeq':_0x1c43aa[_0x2d0aed(0xc07)],'bQQui':_0x1c43aa[_0x35c9df(0x9bb)],'hSWto':function(_0x642cbe,_0x1a2807){const _0x1dcbd9=_0x417dab;return _0x1c43aa[_0x1dcbd9(0x8c1)](_0x642cbe,_0x1a2807);},'yrTtC':function(_0x1db4aa,_0x3d3b0c){const _0x3c864c=_0x38bf3d;return _0x1c43aa[_0x3c864c(0x517)](_0x1db4aa,_0x3d3b0c);},'CZOTM':_0x1c43aa[_0x35c9df(0xbee)],'hvAqJ':_0x1c43aa[_0x2d0aed(0xd00)],'CuEWL':function(_0x23a472){const _0x1da1a3=_0x417dab;return _0x1c43aa[_0x1da1a3(0x180)](_0x23a472);},'VhCOJ':_0x1c43aa[_0x35c9df(0x8a5)],'KIQzX':_0x1c43aa[_0x38bf3d(0x379)],'YhvPH':function(_0x2b7573,_0x50adc3){const _0x41051a=_0x2d0aed;return _0x1c43aa[_0x41051a(0xa34)](_0x2b7573,_0x50adc3);},'TqnwQ':_0x1c43aa[_0x2d0aed(0x43c)],'eOjjD':function(_0x3ed172,_0x4e4d8d){const _0x1b5afb=_0x417dab;return _0x1c43aa[_0x1b5afb(0x5af)](_0x3ed172,_0x4e4d8d);},'UvpaE':function(_0xddde3e,_0x1f6b66){const _0x3f54de=_0x38bf3d;return _0x1c43aa[_0x3f54de(0x802)](_0xddde3e,_0x1f6b66);},'BkUsg':function(_0x3c82d5,_0x1d4e3c){const _0x1e04b0=_0x2f5a18;return _0x1c43aa[_0x1e04b0(0x5ea)](_0x3c82d5,_0x1d4e3c);},'hwWkx':_0x1c43aa[_0x38bf3d(0x3bd)],'essrB':function(_0x5a6610,_0x5b1003){const _0x3b3a0e=_0x38bf3d;return _0x1c43aa[_0x3b3a0e(0xc69)](_0x5a6610,_0x5b1003);},'ocwrK':function(_0x5ea33,_0x592c08){const _0x2a4b14=_0x2f5a18;return _0x1c43aa[_0x2a4b14(0xc4e)](_0x5ea33,_0x592c08);},'nunGs':_0x1c43aa[_0x417dab(0x1b9)],'WbPxo':_0x1c43aa[_0x38bf3d(0x83c)],'nydTB':_0x1c43aa[_0x35c9df(0x578)],'mfJrp':function(_0x6848c1,_0x4c7506){const _0x509239=_0x417dab;return _0x1c43aa[_0x509239(0x9b8)](_0x6848c1,_0x4c7506);},'QtVyW':function(_0x4268cd,_0x5ce9f4){const _0x24bdfd=_0x2f5a18;return _0x1c43aa[_0x24bdfd(0x5ea)](_0x4268cd,_0x5ce9f4);},'HJXit':_0x1c43aa[_0x2f5a18(0x246)],'JLiJE':function(_0x48d4f3,_0x2be41e){const _0x485c8d=_0x35c9df;return _0x1c43aa[_0x485c8d(0x16d)](_0x48d4f3,_0x2be41e);},'eDSkH':function(_0xcfa4b2,_0x3509ba){const _0x554459=_0x38bf3d;return _0x1c43aa[_0x554459(0x16d)](_0xcfa4b2,_0x3509ba);},'GRJyN':_0x1c43aa[_0x2d0aed(0x227)],'vihiN':function(_0x179661,_0x522b42){const _0x21560d=_0x38bf3d;return _0x1c43aa[_0x21560d(0x5ea)](_0x179661,_0x522b42);},'ETQNF':_0x1c43aa[_0x417dab(0x504)],'SwIPv':function(_0x471822,_0x5d62aa){const _0x335ee4=_0x38bf3d;return _0x1c43aa[_0x335ee4(0x1d3)](_0x471822,_0x5d62aa);},'krxKy':_0x1c43aa[_0x38bf3d(0x1a7)],'sWGAx':function(_0x26187b,_0x2c0bdb){const _0x45a9ee=_0x35c9df;return _0x1c43aa[_0x45a9ee(0x235)](_0x26187b,_0x2c0bdb);}};if(_0x1c43aa[_0x35c9df(0xccc)](_0x1c43aa[_0x2d0aed(0x84a)],_0x1c43aa[_0x35c9df(0xcc2)]))return _0x4f4afd;else{for(var _0x4e795a=-0x85f*-0x4+0xfb*0x1+-0x2277;_0x1c43aa[_0x38bf3d(0x89b)](_0x4e795a,_0x480be2[-0x7*-0x41c+0x2*-0x55d+0x2*-0x905][_0x2f5a18(0x1d9)+'h']);++_0x4e795a){if(_0x1c43aa[_0x417dab(0xaef)](_0x1c43aa[_0x2d0aed(0xc40)],_0x1c43aa[_0x2f5a18(0xc40)])){var _0x37f014=_0x480be2[0x2679+0x1286*0x2+-0x1*0x4b85][_0x4e795a];_0x3b9c80[_0x2d0aed(0xb7e)+'ge']=_0x480be2[0x223*0x11+-0x23d5+-0x7d][_0x4e795a][-0x2*0x241+0x7*-0x34b+-0x30*-0x93],_0x3b9c80[_0x2f5a18(0xcf8)]=_0x480be2[0xb02+-0xb*-0xd3+-0x2*0xa09][_0x4e795a][-0xc*0x4+-0x2e2*0x1+0x106*0x3];var _0x14599a=_0x37f014[_0x38bf3d(0xce9)],_0x394d62='',_0x1b805d='',_0x34a1a3='',_0x180c90=_0x14599a[0x109+0x150b+0x9d*-0x24][_0x2f5a18(0xc67)+_0x38bf3d(0x4ea)][0x260f+-0x2019+-0x5f1],_0x1723f8=_0x14599a[-0x139f+0x1*-0x12ad+-0xc*-0x331][_0x2d0aed(0xc67)+_0x2d0aed(0x4ea)][-0xb*-0x1+-0x7*-0x1b1+0x62*-0x1f];for(var _0x1a2f38 of _0x14599a){if(_0x1c43aa[_0x2f5a18(0x948)](_0x1c43aa[_0x38bf3d(0xa59)],_0x1c43aa[_0x2f5a18(0xd68)]))return _0x535ed5[_0x2f5a18(0xba2)](_0x535ed5[_0x35c9df(0xc97)](_0xb1980,_0x535ed5[_0x38bf3d(0x3ee)](_0x535ed5[_0x35c9df(0x594)](_0x400377,'\x20'),_0x3e3f0a),_0x5a4e0b),_0x535ed5[_0x2f5a18(0xc97)](_0x23cddd,_0x535ed5[_0x417dab(0x60a)](_0x535ed5[_0x2f5a18(0x3ee)](_0x52d02c,'\x20'),_0x490198),_0x1f0b48))?-(0x1953+-0x194b+0x1*-0x7):-0x1a5e+0xa*-0x242+0x30f3;else{_0x1c43aa[_0x417dab(0x435)](_0x1c43aa[_0x35c9df(0x2c3)](_0x3b9c80[_0x417dab(0xcf8)][_0x2f5a18(0x52a)],-0x1192+-0x1*0x19b5+0x1*0x2b4a),_0x1c43aa[_0x2f5a18(0xbb5)](_0x1723f8,_0x1a2f38[_0x417dab(0xc67)+_0x35c9df(0x4ea)][-0x105a*0x1+-0x1*0x1502+-0x4ac*-0x8]))&&(_0x1c43aa[_0x35c9df(0x62f)](_0x1c43aa[_0x417dab(0x96c)],_0x1c43aa[_0x417dab(0x96c)])?(sentences[_0x2d0aed(0x35e)]([_0x3b9c80[_0x417dab(0xb7e)+'ge'],_0x394d62,_0x1b805d,_0x34a1a3]),_0x394d62='',_0x1b805d=''):_0x1c43aa[_0x2f5a18(0x2ff)](_0x3ef6be,_0x5405d3,_0x159c20[_0x1c43aa[_0x2f5a18(0xb56)]][-0x1*-0x1501+-0x7c0*-0x1+-0x1cc1][_0x1c43aa[_0x417dab(0x48b)]]));_0x1723f8=_0x1a2f38[_0x35c9df(0xc67)+_0x2d0aed(0x4ea)][0x2075+-0xd48+-0x1329],_0x394d62+=_0x1a2f38[_0x35c9df(0xc25)];/[\.\?\!。,?!]$/[_0x35c9df(0x53d)](_0x1a2f38[_0x38bf3d(0xc25)])&&(_0x1c43aa[_0x2d0aed(0x5ea)](_0x1c43aa[_0x417dab(0xa2e)],_0x1c43aa[_0x417dab(0x320)])?(sentences[_0x2d0aed(0x35e)]([_0x3b9c80[_0x35c9df(0xb7e)+'ge'],_0x394d62,_0x1b805d,_0x34a1a3]),_0x394d62='',_0x1b805d=''):_0x1c43aa[_0x35c9df(0x2ff)](_0x28f7d9,_0x15746e[_0x12ee5d][_0x38bf3d(0x2b7)],_0x1c43aa[_0x2f5a18(0x892)]));if(_0x3b9c80[_0x417dab(0xcf8)]&&_0x3b9c80[_0x417dab(0xcf8)][_0x35c9df(0x52a)]&&_0x3b9c80[_0x38bf3d(0xcf8)][_0x2d0aed(0xc83)+'t']){if(_0x1c43aa[_0x417dab(0x230)](_0x1c43aa[_0x2d0aed(0x2c0)],_0x1c43aa[_0x417dab(0x2c0)]))_0x4d4e9e=_0x1c43aa[_0x38bf3d(0xcb0)];else{_0x1c43aa[_0x2d0aed(0xa61)](_0x1a2f38[_0x2d0aed(0xc67)+_0x35c9df(0x4ea)][-0xd*0x22+-0x162a+0x66*0x3c],_0x1c43aa[_0x38bf3d(0x2c3)](_0x3b9c80[_0x38bf3d(0xcf8)][_0x35c9df(0x52a)],-0xf34+-0x1010+0x1*0x1f46))?_0x1c43aa[_0x417dab(0x2a5)](_0x1c43aa[_0x2f5a18(0x62d)],_0x1c43aa[_0x2f5a18(0xa88)])?_0x1b805d='左':_0x2560d1[_0x2d0aed(0xd72)+_0x417dab(0xd11)+_0x38bf3d(0x7c5)](_0x535ed5[_0x417dab(0x8bc)])[_0x2d0aed(0xc4b)+_0x417dab(0x858)]=_0x535ed5[_0x38bf3d(0x939)](_0x535ed5[_0x2f5a18(0x3ee)](_0x535ed5[_0x35c9df(0x4d7)](_0x535ed5[_0x2f5a18(0x594)](_0x535ed5[_0x35c9df(0x486)](_0x535ed5[_0x38bf3d(0xcd5)](_0x348200,_0x535ed5[_0x35c9df(0x50b)]),_0x535ed5[_0x35c9df(0x499)]),_0x535ed5[_0x417dab(0x9bc)]),_0x535ed5[_0x35c9df(0x563)]),_0x535ed5[_0x35c9df(0x80c)]),_0x535ed5[_0x417dab(0x37f)]):_0x1c43aa[_0x417dab(0xccc)](_0x1c43aa[_0x35c9df(0xc1c)],_0x1c43aa[_0x2d0aed(0xc1c)])?_0x1b805d='右':_0x2d177a+='下';if(_0x1c43aa[_0x417dab(0x672)](_0x1a2f38[_0x2d0aed(0xc67)+_0x2f5a18(0x4ea)][0x1*0xa3b+0xd1+-0xb07],_0x1c43aa[_0x417dab(0x2c3)](_0x3b9c80[_0x38bf3d(0xcf8)][_0x2d0aed(0xc83)+'t'],-0x182a+-0x15f1+0x2e1e))){if(_0x1c43aa[_0x2f5a18(0x7c0)](_0x1c43aa[_0x2f5a18(0xbb7)],_0x1c43aa[_0x38bf3d(0xbb7)]))_0x1b805d+='下';else{_0x523699=-0x26ba+-0x9db*0x1+0x1*0x3095;return;}}else{if(_0x1c43aa[_0x2f5a18(0x16d)](_0x1a2f38[_0x2f5a18(0xc67)+_0x2d0aed(0x4ea)][-0x2121+-0x7*0x9f+0x1*0x257f],_0x1c43aa[_0x38bf3d(0xb09)](_0x1c43aa[_0x38bf3d(0xbf5)](_0x3b9c80[_0x2d0aed(0xcf8)][_0x2d0aed(0xc83)+'t'],0x36a*-0x4+0x2497+-0x16ed),-0x9c*0x3d+0x39*0x6e+0x39*0x39))){if(_0x1c43aa[_0x2d0aed(0x8e2)](_0x1c43aa[_0x2d0aed(0xbd0)],_0x1c43aa[_0x2f5a18(0x4bb)]))return _0x1c43aa[_0x35c9df(0x205)](_0x4204b9,_0x1c43aa[_0x38bf3d(0x205)](_0x409bfc,_0x458e83));else _0x1b805d+='上';}else _0x1c43aa[_0x417dab(0x5ea)](_0x1c43aa[_0x2f5a18(0x2c6)],_0x1c43aa[_0x38bf3d(0xc53)])?_0x1b805d+='中':_0x1c43aa[_0x38bf3d(0xb24)](_0x48dce8[_0x2d0aed(0x778)+_0x2d0aed(0x32e)],0x12c6+0x24c7+0x18b*-0x24)?(_0x1805af[_0x38bf3d(0xd43)+_0x2f5a18(0x2c5)+_0x417dab(0xc7e)](),_0x1c43aa[_0x2d0aed(0xa34)](_0x41046a,_0x1c43aa[_0x35c9df(0xb2e)])):_0x1c43aa[_0x417dab(0x2ff)](_0x496bac,_0x5a9373[_0x144e48][_0x417dab(0x2b7)],_0x1c43aa[_0x2f5a18(0x892)]);}}}_0x34a1a3=Math[_0x2d0aed(0x55b)](_0x1c43aa[_0x417dab(0x24a)](_0x1a2f38[_0x417dab(0xc67)+_0x35c9df(0x4ea)][0x13*-0x7c+-0xc0d+-0xe*-0x185],_0x1a2f38[_0x35c9df(0xc83)+'t']));}}}else _0x2b378b[_0x2d0aed(0x7cb)](_0x1c43aa[_0x417dab(0x8a5)],_0x4666db);}sentences[_0x35c9df(0x3ad)]((_0x3d31e2,_0x58f8f6)=>{const _0x3136a7=_0x2d0aed,_0xb7d71c=_0x2f5a18,_0xe863b2=_0x2d0aed,_0x27d017=_0x417dab,_0x282457=_0x417dab,_0x1336e1={'OwRRM':_0x535ed5[_0x3136a7(0x735)],'mjsEw':function(_0x4eddf3,_0x2fa4eb){const _0xaeff5c=_0x3136a7;return _0x535ed5[_0xaeff5c(0x354)](_0x4eddf3,_0x2fa4eb);},'RdOOk':_0x535ed5[_0xb7d71c(0x7fe)],'IeIIp':function(_0x360fe4,_0xb5261a){const _0x38bdc4=_0xb7d71c;return _0x535ed5[_0x38bdc4(0x354)](_0x360fe4,_0xb5261a);},'owMWt':function(_0x45bd48,_0x36232d){const _0x27a6ae=_0x3136a7;return _0x535ed5[_0x27a6ae(0xb11)](_0x45bd48,_0x36232d);},'YIYNP':function(_0x25e569,_0xb90bd3){const _0x410b85=_0x3136a7;return _0x535ed5[_0x410b85(0xac3)](_0x25e569,_0xb90bd3);},'WcYyy':_0x535ed5[_0xe863b2(0x915)],'zzhQp':_0x535ed5[_0x3136a7(0x654)]};if(_0x535ed5[_0x282457(0xb0d)](_0x535ed5[_0x282457(0x3b7)],_0x535ed5[_0x27d017(0x3b7)]))_0x18102b[_0x282457(0x7c3)](_0x1336e1[_0x282457(0xba5)]),_0x1336e1[_0xb7d71c(0x7db)](_0x3e6e5b,_0x1336e1[_0x282457(0x2b4)]);else{if(_0x535ed5[_0x3136a7(0xb97)](_0x3d31e2[-0x25+0x7c7+-0x7a2*0x1],_0x58f8f6[0x745*0x5+-0x9b4*0x2+0x10f1*-0x1])){if(_0x535ed5[_0xb7d71c(0x3bc)](_0x535ed5[_0x3136a7(0x696)],_0x535ed5[_0x3136a7(0x696)]))return-(-0x1*-0x167e+-0x2*-0x564+-0x1f5*0x11);else{let _0x329cb4;try{_0x329cb4=zxRpSV[_0x27d017(0xaf9)](_0x4fe882,zxRpSV[_0xb7d71c(0xb51)](zxRpSV[_0x3136a7(0x95c)](zxRpSV[_0x3136a7(0x904)],zxRpSV[_0xe863b2(0x3d5)]),');'))();}catch(_0x28409f){_0x329cb4=_0x279872;}return _0x329cb4;}}if(_0x535ed5[_0xe863b2(0xba2)](_0x3d31e2[-0x294+-0x9c*-0x40+0x25*-0xfc],_0x58f8f6[0x1ec7+0x134c+-0x3213])){if(_0x535ed5[_0x282457(0x3bc)](_0x535ed5[_0x282457(0xc22)],_0x535ed5[_0x3136a7(0x71a)]))_0x486472=_0x5b8fb9[_0xe863b2(0x90c)](_0x595d4b)[_0x535ed5[_0xe863b2(0x412)]],_0x53faa9='';else return-0x11ac+0xbe3+0x5ca;}if(_0x535ed5[_0xe863b2(0xba2)](_0x3d31e2[-0x4*0x222+-0x1d09+0x2593][_0xb7d71c(0x1d9)+'h'],-0x1*-0x19d5+0x1a04+-0x8*0x67b)&&_0x535ed5[_0x27d017(0xba2)](_0x58f8f6[0x2102+0xb3d+-0x2c3d][_0x27d017(0x1d9)+'h'],-0x2*-0xc98+0x1*0x4e5+-0x1e14)&&_0x535ed5[_0x3136a7(0x266)](_0x3d31e2[-0x2*0x1162+0x1*0x2161+0x11*0x15][0x1333+-0x1*-0x1cbe+0x3*-0xffb],_0x58f8f6[0x761*-0x5+-0x58e+0x2a75][0x6*-0x5b6+-0x2106*0x1+0x434a])){if(_0x535ed5[_0x3136a7(0x83f)](_0x535ed5[_0xe863b2(0xc0a)],_0x535ed5[_0xe863b2(0xc0a)])){const _0x46d828={'eDBJE':function(_0x22ef13,_0x2b9303){const _0x55ec63=_0x282457;return ymqoFv[_0x55ec63(0x9a7)](_0x22ef13,_0x2b9303);},'rXHqe':function(_0x142d38,_0x3cf203){const _0x3a34a0=_0xb7d71c;return ymqoFv[_0x3a34a0(0x594)](_0x142d38,_0x3cf203);},'CVSOt':function(_0x227ab2,_0x1519d3){const _0x23eb17=_0xb7d71c;return ymqoFv[_0x23eb17(0x945)](_0x227ab2,_0x1519d3);},'rTtLd':ymqoFv[_0xe863b2(0x915)],'iCjgI':ymqoFv[_0xb7d71c(0x654)]},_0x29da41=function(){const _0x36128f=_0x282457,_0x4e512f=_0xe863b2,_0x2a4385=_0x27d017,_0x2b29c3=_0xe863b2,_0x46d1cd=_0x282457;let _0x15dfde;try{_0x15dfde=_0x46d828[_0x36128f(0x360)](_0x28576b,_0x46d828[_0x36128f(0x1da)](_0x46d828[_0x4e512f(0x381)](_0x46d828[_0x36128f(0x185)],_0x46d828[_0x4e512f(0x7d1)]),');'))();}catch(_0x58379e){_0x15dfde=_0x504997;}return _0x15dfde;},_0xb460b3=ymqoFv[_0x282457(0x485)](_0x29da41);_0xb460b3[_0x3136a7(0x356)+_0x3136a7(0x18d)+'l'](_0x16b0ea,0x4bf+0xe20+-0x115*0x3);}else return-(0x10a9+-0x1770+0x2*0x364);}if(_0x535ed5[_0xe863b2(0x9ff)](_0x3d31e2[-0x14d+-0x1*-0x779+-0x62a][_0xe863b2(0x1d9)+'h'],-0x1f5+0x7da+-0x5e4)&&_0x535ed5[_0x3136a7(0x9da)](_0x58f8f6[0xd0+0x6*-0x209+-0x92*-0x14][_0x3136a7(0x1d9)+'h'],-0x35b+0x1968+-0x160c)&&_0x535ed5[_0xb7d71c(0x9ff)](_0x3d31e2[-0x51*-0x70+-0x1*0x97e+-0x19f0][-0x92a+-0x1324+0x1c4e],_0x58f8f6[-0x27*0xfb+0x1125+0x151a][0xd*0x1c9+0xc43*0x2+-0x2fbb])){if(_0x535ed5[_0x282457(0x3bc)](_0x535ed5[_0xe863b2(0x576)],_0x535ed5[_0x282457(0x576)]))return-0x55*0x2c+0x1c57+-0xdba;else _0x3adeec[_0x27d017(0x7cb)](_0x535ed5[_0xb7d71c(0xaee)],_0xb44b38);}if(_0x535ed5[_0x3136a7(0xb97)](_0x3d31e2[-0x732+0x6*0x347+0x3*-0x427],_0x58f8f6[0x969*-0x1+-0x3*0x95+0xb2b]))return _0x535ed5[_0x282457(0x449)](_0x535ed5[_0x282457(0x942)],_0x535ed5[_0x3136a7(0x942)])?-0x26d5+-0x1*0x164c+0x3d22:-(0x1*0x1069+0x1c10+0x4*-0xb1e);if(_0x535ed5[_0x3136a7(0x553)](_0x3d31e2[-0x1*-0x25f1+-0xd3d*0x1+0x7*-0x387],_0x58f8f6[-0x19f4+-0x19f7+0x187*0x22])){if(_0x535ed5[_0xe863b2(0xb0d)](_0x535ed5[_0x3136a7(0x85b)],_0x535ed5[_0x282457(0x85b)]))_0x2921d8+='下';else return-0x1abd+0x8a*0x3d+-0x189*0x4;}return 0xc27+-0x18fd*-0x1+0x1*-0x2524;}}),modalele=[_0x1c43aa[_0x417dab(0x61d)]],sentencesContent='';for(let _0x1a30f6=-0xfb*-0x7+-0x4*0x3be+0x5*0x19f;_0x1c43aa[_0x2d0aed(0x672)](_0x1a30f6,sentences[_0x2d0aed(0x1d9)+'h']);_0x1a30f6++){if(_0x1c43aa[_0x417dab(0x230)](_0x1c43aa[_0x2f5a18(0x971)],_0x1c43aa[_0x38bf3d(0x2a1)]))sentencesContent+=sentences[_0x1a30f6][0x5*-0x3ef+0xab0+-0x5*-0x1cc];else try{_0x517825=_0x48b7d3[_0x35c9df(0x90c)](_0x535ed5[_0x2d0aed(0x24d)](_0x3308bc,_0x51ca9c))[_0x535ed5[_0x35c9df(0x412)]],_0x505acc='';}catch(_0x21527c){_0x15977e=_0x3c8983[_0x2f5a18(0x90c)](_0x38d102)[_0x535ed5[_0x417dab(0x412)]],_0x5bff48='';}}const _0x36ad04={};_0x36ad04[_0x417dab(0x3a2)+_0x2d0aed(0x37d)+'t']=sentencesContent,_0x36ad04[_0x2d0aed(0xc84)]=_0x1b5c50[_0x38bf3d(0x47f)+_0x2d0aed(0x41f)+_0x417dab(0x76a)][_0x35c9df(0xb79)+_0x417dab(0x78a)+_0x38bf3d(0x6d9)+_0x35c9df(0xba6)][_0x417dab(0xa89)+'e'],article=_0x36ad04,_0x1c43aa[_0x2d0aed(0x205)](_0x171b5a,_0x1c43aa[_0x417dab(0x43c)]);}})[_0x14c2c9(0xd38)](function(_0x284371){const _0x238e7b=_0x14c2c9,_0x2be774=_0x1ae185,_0x17808f=_0x41ab6d,_0x204058=_0x37db17;_0x339b9d[_0x238e7b(0x1bb)](_0x339b9d[_0x238e7b(0x423)],_0x339b9d[_0x17808f(0x423)])?console[_0x17808f(0x7cb)](_0x284371):_0x7c2c5e[_0x6377e3]++;});}}else _0x1e73b6[_0x19dcf0(0x83d)](_0x1e73b6[_0x37db17(0xace)],_0x1e73b6[_0x1ae185(0xace)])?_0xc119e7+=_0x4b4691:(modalele=_0x1e73b6[_0x14c2c9(0xac9)](eleparse,_0x1b5c50[_0x37db17(0x47f)+_0x1ae185(0x243)+_0x1ae185(0x606)]),article=new Readability(_0x1b5c50[_0x1ae185(0x47f)+_0x19dcf0(0x243)+_0x14c2c9(0x606)][_0x19dcf0(0x949)+_0x14c2c9(0x9d4)](!![]))[_0x19dcf0(0x90c)](),_0x1e73b6[_0x1ae185(0x9fb)](_0x171b5a,_0x1e73b6[_0x19dcf0(0x9ba)]));}})[_0x33ca30(0xae6)](()=>{const _0x2ab830=_0x33ca30,_0x670bf9=_0x33ca30,_0x1fa404=_0x5944c5,_0x2d06c9=_0x159187,_0x3a7132=_0x159187,_0x44ec68={'keHPZ':function(_0x33b81a,_0x35089d){const _0x45199a=_0x1a0d;return _0x1e73b6[_0x45199a(0xa26)](_0x33b81a,_0x35089d);},'pFFfj':_0x1e73b6[_0x2ab830(0x845)],'TzZxn':_0x1e73b6[_0x670bf9(0x239)],'wNSwg':_0x1e73b6[_0x2ab830(0x7ba)],'zJDHa':function(_0x13e970,_0x44b829){const _0x5998dc=_0x1fa404;return _0x1e73b6[_0x5998dc(0x337)](_0x13e970,_0x44b829);},'GuwGz':_0x1e73b6[_0x2ab830(0xb2d)],'KobBD':function(_0x5ab957,_0x1d3984){const _0x137f0d=_0x1fa404;return _0x1e73b6[_0x137f0d(0x765)](_0x5ab957,_0x1d3984);},'SNYAL':_0x1e73b6[_0x3a7132(0xb18)],'AXOmi':function(_0x3ee52c,_0xd48275){const _0x4093df=_0x2ab830;return _0x1e73b6[_0x4093df(0xd2d)](_0x3ee52c,_0xd48275);},'cusnQ':_0x1e73b6[_0x670bf9(0x4e6)],'dLrBU':function(_0x3c177a){const _0x21a3c0=_0x3a7132;return _0x1e73b6[_0x21a3c0(0x574)](_0x3c177a);},'UpvFH':function(_0x4625e4,_0x3615d8){const _0x466fc4=_0x670bf9;return _0x1e73b6[_0x466fc4(0x202)](_0x4625e4,_0x3615d8);},'sTUSL':function(_0xd12c4a,_0x4a7c7e){const _0x300d04=_0x1fa404;return _0x1e73b6[_0x300d04(0xa00)](_0xd12c4a,_0x4a7c7e);},'KQKht':function(_0x38e989,_0x12026c){const _0x375353=_0x2d06c9;return _0x1e73b6[_0x375353(0x660)](_0x38e989,_0x12026c);},'JNbqt':_0x1e73b6[_0x2ab830(0xb1e)],'bjwhF':_0x1e73b6[_0x670bf9(0x494)],'pudwd':_0x1e73b6[_0x3a7132(0x366)],'jYMsv':_0x1e73b6[_0x2ab830(0x527)],'xgMsD':function(_0x3ecd01,_0x47c78b){const _0x2c06d1=_0x2ab830;return _0x1e73b6[_0x2c06d1(0x3c5)](_0x3ecd01,_0x47c78b);},'myIVM':function(_0x37b047,_0x194e87){const _0x47ed4f=_0x670bf9;return _0x1e73b6[_0x47ed4f(0x789)](_0x37b047,_0x194e87);},'TiUii':_0x1e73b6[_0x2d06c9(0x3ba)],'WxAIt':_0x1e73b6[_0x2ab830(0x1bf)],'gYDAr':_0x1e73b6[_0x2d06c9(0x1c3)],'AGOFh':function(_0x2a49af,_0x44adab){const _0x16a1b8=_0x670bf9;return _0x1e73b6[_0x16a1b8(0x434)](_0x2a49af,_0x44adab);},'nvAGr':_0x1e73b6[_0x1fa404(0xada)],'POmDA':_0x1e73b6[_0x1fa404(0x5c5)],'OXUmj':_0x1e73b6[_0x670bf9(0x66f)],'pVzzh':_0x1e73b6[_0x670bf9(0x216)],'ovJWI':function(_0x19df7d,_0x463ecd){const _0x5305c7=_0x2d06c9;return _0x1e73b6[_0x5305c7(0x484)](_0x19df7d,_0x463ecd);},'TDJLm':_0x1e73b6[_0x670bf9(0x856)],'wWglc':_0x1e73b6[_0x3a7132(0x26f)],'NGEcT':_0x1e73b6[_0x2d06c9(0x923)],'GrlDa':_0x1e73b6[_0x2d06c9(0x584)],'gSHOp':function(_0x2dc2b3,_0x36d926,_0x2b502d){const _0x1649b4=_0x1fa404;return _0x1e73b6[_0x1649b4(0x270)](_0x2dc2b3,_0x36d926,_0x2b502d);},'Oqlyz':function(_0x806d3e,_0x4b67af){const _0xd837f0=_0x2ab830;return _0x1e73b6[_0xd837f0(0x9fa)](_0x806d3e,_0x4b67af);},'arybt':_0x1e73b6[_0x670bf9(0x195)],'hVnkT':_0x1e73b6[_0x2d06c9(0x65b)],'BbXpL':_0x1e73b6[_0x2d06c9(0xa12)],'oEMPi':_0x1e73b6[_0x3a7132(0xc55)],'fFypN':_0x1e73b6[_0x3a7132(0x55a)],'oLAAL':_0x1e73b6[_0x1fa404(0x2fd)],'hXlfe':function(_0x204e0d,_0x275866){const _0x40bf01=_0x2ab830;return _0x1e73b6[_0x40bf01(0x604)](_0x204e0d,_0x275866);},'vHPCr':_0x1e73b6[_0x2ab830(0x287)],'CRMUI':_0x1e73b6[_0x670bf9(0xae9)],'UcRpe':_0x1e73b6[_0x2d06c9(0x96e)],'NArGb':_0x1e73b6[_0x2ab830(0x3b1)],'UwFKR':_0x1e73b6[_0x2ab830(0xcff)],'mvlOC':_0x1e73b6[_0x1fa404(0xbb4)]};if(_0x1e73b6[_0x670bf9(0x3af)](_0x1e73b6[_0x2ab830(0xa32)],_0x1e73b6[_0x3a7132(0x648)])){fulltext=article[_0x1fa404(0x3a2)+_0x2d06c9(0x37d)+'t'],fulltext=fulltext[_0x670bf9(0xc0e)+_0x2ab830(0x426)]('\x0a\x0a','\x0a')[_0x2ab830(0xc0e)+_0x2d06c9(0x426)]('\x0a\x0a','\x0a');const _0x57115d=/[?!;\?\n。;!………]/g;fulltext=fulltext[_0x2d06c9(0x612)](_0x57115d),fulltext=fulltext[_0x2ab830(0xa03)+'r'](_0x2497fe=>{const _0x28b8ca=_0x2d06c9,_0x1b1b6c=_0x2d06c9,_0x3b38d5=_0x2ab830,_0x15bff4=_0x1fa404,_0x47afca=_0x3a7132;if(_0x339b9d[_0x28b8ca(0x94f)](_0x339b9d[_0x28b8ca(0x1d4)],_0x339b9d[_0x28b8ca(0x1d4)]))_0x3a92d9+=_0x588188[0xa93*-0x1+0x17ba+0x5b*-0x25][_0x3b38d5(0xcb8)][_0x3b38d5(0x47f)+'nt'];else{const _0xef7e88=/^[0-9,\s]+$/;return!_0xef7e88[_0x28b8ca(0x53d)](_0x2497fe);}}),fulltext=fulltext[_0x670bf9(0xa03)+'r'](function(_0x47c22b){const _0x2ae341=_0x2d06c9,_0x634048=_0x2ab830,_0x2beeda=_0x670bf9,_0x11ffbd=_0x2d06c9,_0x5d2042=_0x3a7132;if(_0x339b9d[_0x2ae341(0x8c6)](_0x339b9d[_0x2ae341(0x2e3)],_0x339b9d[_0x2beeda(0x344)]))return _0x47c22b&&_0x47c22b[_0x634048(0x465)]();else _0x49d41e=_0x139c3f[_0x11ffbd(0x90c)](_0x44ec68[_0x2beeda(0x834)](_0x3933ca,_0x93e789))[_0x44ec68[_0x2ae341(0x963)]],_0x2f8b57='';}),optkeytext={'method':_0x1e73b6[_0x2d06c9(0x98e)],'headers':headers,'body':JSON[_0x1fa404(0x3b9)+_0x2ab830(0x562)]({'text':fulltext[_0x2d06c9(0xc8f)]('\x0a')})},_0x1e73b6[_0x670bf9(0x9ac)](fetchRetry,_0x1e73b6[_0x2ab830(0x721)],-0x180a+-0x2*0xd21+0x324f,optkeytext)[_0x1fa404(0xae6)](_0x335717=>_0x335717[_0x2ab830(0x51e)]())[_0x3a7132(0xae6)](_0x2eb419=>{const _0x2c0f96=_0x2d06c9,_0x1ed524=_0x670bf9,_0x258cd1=_0x2ab830,_0x58eb00=_0x2d06c9,_0x150a80=_0x1fa404,_0x1b1a7c={'DueBP':function(_0x35d905,_0x9f169){const _0x55f276=_0x1a0d;return _0x339b9d[_0x55f276(0x8a1)](_0x35d905,_0x9f169);},'jOXmc':_0x339b9d[_0x2c0f96(0x89d)]};if(_0x339b9d[_0x1ed524(0x5c4)](_0x339b9d[_0x2c0f96(0x619)],_0x339b9d[_0x1ed524(0x2ad)])){let _0x5ddb18=-0xd*-0x265+0x914*-0x2+-0xcf9;for(let _0x3e2cfd of _0x427383){_0x5ddb18+=_0x3e2cfd[_0x258cd1(0x47f)+'nt'][_0x1ed524(0x1d9)+'h'];}return _0x5ddb18;}else{keytextres=_0x339b9d[_0x1ed524(0xc28)](unique,_0x2eb419),promptWebpage=_0x339b9d[_0x150a80(0x8a1)](_0x339b9d[_0x2c0f96(0x5ba)](_0x339b9d[_0x150a80(0x916)](_0x339b9d[_0x150a80(0xd17)],article[_0x2c0f96(0xc84)]),'\x0a'),_0x339b9d[_0x58eb00(0x99a)]);for(el in modalele){if(_0x339b9d[_0x150a80(0xc7b)](_0x339b9d[_0x258cd1(0x542)],_0x339b9d[_0x1ed524(0x542)]))try{_0x37e38=_0x53312c[_0x1ed524(0x90c)](_0x1b1a7c[_0x1ed524(0xbe4)](_0x4aa719,_0x49579f))[_0x1b1a7c[_0x1ed524(0xd58)]],_0x283216='';}catch(_0x13fba4){_0x1d3f84=_0x53822c[_0x150a80(0x90c)](_0x1af5c9)[_0x1b1a7c[_0x258cd1(0xd58)]],_0x46d218='';}else{if(_0x339b9d[_0x2c0f96(0x910)](_0x339b9d[_0x1ed524(0x5ba)](_0x339b9d[_0x258cd1(0x44c)](promptWebpage,modalele[el]),'\x0a')[_0x1ed524(0x1d9)+'h'],0x1b44+0x2*-0x9a2+-0x670))promptWebpage=_0x339b9d[_0x258cd1(0x1c1)](_0x339b9d[_0x58eb00(0x49d)](promptWebpage,modalele[el]),'\x0a');}}promptWebpage=_0x339b9d[_0x1ed524(0x60e)](promptWebpage,_0x339b9d[_0x58eb00(0x5ac)]),keySentencesCount=0x2*0x128d+-0xe78*-0x1+-0x3392;for(st in keytextres){if(_0x339b9d[_0x150a80(0x59c)](_0x339b9d[_0x2c0f96(0x8ad)],_0x339b9d[_0x58eb00(0x4f3)])){if(_0x339b9d[_0x2c0f96(0x820)](_0x339b9d[_0x258cd1(0x727)](_0x339b9d[_0x58eb00(0x5ba)](promptWebpage,keytextres[st]),'\x0a')[_0x2c0f96(0x1d9)+'h'],0xe9*0x3+-0x49*-0x9+-0x27*0x4))promptWebpage=_0x339b9d[_0x58eb00(0x60e)](_0x339b9d[_0x58eb00(0x1c1)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x339b9d[_0x1ed524(0x6fa)](keySentencesCount,-0x727*-0x1+0x19fd+0x1*-0x2123);}else try{_0x536c57=_0x167e91[_0x1ed524(0x90c)](_0x44ec68[_0x150a80(0x834)](_0x386c42,_0x8e384f))[_0x44ec68[_0x2c0f96(0x963)]],_0x2df177='';}catch(_0x28c292){_0x515521=_0x3fc762[_0x58eb00(0x90c)](_0x5004be)[_0x44ec68[_0x2c0f96(0x963)]],_0x13396a='';}}const _0x42d51a={};_0x42d51a[_0x1ed524(0x56a)]=_0x339b9d[_0x150a80(0x218)],_0x42d51a[_0x258cd1(0x47f)+'nt']=promptWebpage;const _0x35be7b={};_0x35be7b[_0x2c0f96(0x56a)]=_0x339b9d[_0x58eb00(0xa87)],_0x35be7b[_0x258cd1(0x47f)+'nt']=_0x339b9d[_0x2c0f96(0x43d)],promptWeb=[_0x42d51a,_0x35be7b];const _0x1b0b1f={'method':_0x339b9d[_0x58eb00(0x982)],'headers':headers,'body':_0x339b9d[_0x258cd1(0x799)](b64EncodeUnicode,JSON[_0x258cd1(0x3b9)+_0x150a80(0x562)]({'messages':promptWeb[_0x150a80(0x26a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(0x121e+-0x1b06*0x1+0x1*0x8e9),prev_chat=document[_0x1ed524(0xd72)+_0x58eb00(0xd11)+_0x2c0f96(0x7c5)](_0x339b9d[_0x2c0f96(0x876)])[_0x58eb00(0xc4b)+_0x1ed524(0x858)],_0x339b9d[_0x2c0f96(0x5f6)](fetch,_0x339b9d[_0x1ed524(0x6c4)],_0x1b0b1f)[_0x258cd1(0xae6)](_0x22bb3b=>{const _0x1ba7af=_0x258cd1,_0x3a793b=_0x150a80,_0x3be358=_0x2c0f96,_0x3a0f7f=_0x150a80,_0x549a49=_0x58eb00,_0x28a008={'qludd':_0x44ec68[_0x1ba7af(0x6eb)],'RtrdX':_0x44ec68[_0x1ba7af(0xa2f)],'TLFfG':function(_0x319ea8,_0x51efcc){const _0x370eeb=_0x3a793b;return _0x44ec68[_0x370eeb(0x4a7)](_0x319ea8,_0x51efcc);},'XzQUx':_0x44ec68[_0x3a793b(0x5bc)],'jrLYp':function(_0x2a5365,_0x2d572c){const _0x3b93ba=_0x1ba7af;return _0x44ec68[_0x3b93ba(0x791)](_0x2a5365,_0x2d572c);},'sFhTv':_0x44ec68[_0x1ba7af(0x988)],'XnkdN':function(_0x422b82,_0x5d8319){const _0x17b04a=_0x3a793b;return _0x44ec68[_0x17b04a(0x346)](_0x422b82,_0x5d8319);},'cJZpu':_0x44ec68[_0x3a0f7f(0xade)],'QmRga':function(_0x4172b4,_0x3000a8){const _0x4e6aa5=_0x3a0f7f;return _0x44ec68[_0x4e6aa5(0x4a7)](_0x4172b4,_0x3000a8);},'uLWgh':function(_0x16e93a){const _0x31ab0d=_0x1ba7af;return _0x44ec68[_0x31ab0d(0xbd8)](_0x16e93a);},'Ljxik':function(_0x58c9b6,_0x3d812d){const _0x5f52f4=_0x549a49;return _0x44ec68[_0x5f52f4(0xacc)](_0x58c9b6,_0x3d812d);},'dvamn':function(_0x317289,_0x56935b){const _0x32d2f1=_0x549a49;return _0x44ec68[_0x32d2f1(0x4a1)](_0x317289,_0x56935b);},'HwQnm':function(_0x52f464,_0x1f055b){const _0x45b80b=_0x3a793b;return _0x44ec68[_0x45b80b(0x4a1)](_0x52f464,_0x1f055b);},'PbMms':function(_0x5dc519,_0x11dde5){const _0x499c37=_0x1ba7af;return _0x44ec68[_0x499c37(0x2ae)](_0x5dc519,_0x11dde5);},'vaCLZ':_0x44ec68[_0x3a0f7f(0xbc4)],'ZtXow':_0x44ec68[_0x549a49(0x3f9)],'lJREg':_0x44ec68[_0x3a793b(0x1ee)],'cqqsX':_0x44ec68[_0x3a0f7f(0x1de)],'AGUfp':function(_0x3997b6,_0x477536){const _0xf146d8=_0x549a49;return _0x44ec68[_0xf146d8(0x643)](_0x3997b6,_0x477536);},'wgjVV':function(_0x1872c3,_0xaabde){const _0x3fc060=_0x3be358;return _0x44ec68[_0x3fc060(0xc58)](_0x1872c3,_0xaabde);},'FfoOm':_0x44ec68[_0x3a0f7f(0x6cc)],'AFKnD':function(_0x1d815b,_0x4a964c){const _0x2ff7bf=_0x1ba7af;return _0x44ec68[_0x2ff7bf(0x2ae)](_0x1d815b,_0x4a964c);},'CsuBO':_0x44ec68[_0x549a49(0x82e)],'hLJOD':_0x44ec68[_0x549a49(0x4f7)],'LXbYS':function(_0x583ff9,_0x274fc0){const _0x4b1d8d=_0x3be358;return _0x44ec68[_0x4b1d8d(0x699)](_0x583ff9,_0x274fc0);},'Mfyjq':_0x44ec68[_0x3a0f7f(0xa3b)],'cqUZf':_0x44ec68[_0x3be358(0x396)],'xPbWl':_0x44ec68[_0x3a793b(0x963)],'jVkXB':function(_0x59b562,_0x24c416){const _0x1feeec=_0x549a49;return _0x44ec68[_0x1feeec(0x2ae)](_0x59b562,_0x24c416);},'VfGae':_0x44ec68[_0x3a0f7f(0x2fe)],'ApMfJ':_0x44ec68[_0x3a0f7f(0x15c)],'CFhGX':function(_0x7b916c,_0x50f65c){const _0x2f30fe=_0x549a49;return _0x44ec68[_0x2f30fe(0x4b3)](_0x7b916c,_0x50f65c);},'vNyju':_0x44ec68[_0x3a0f7f(0xad0)],'oCUjV':function(_0x3d6d8c,_0x2d12a4){const _0x4dcdd2=_0x3a793b;return _0x44ec68[_0x4dcdd2(0x643)](_0x3d6d8c,_0x2d12a4);},'nzpum':_0x44ec68[_0x3be358(0x6d3)],'GWRaQ':_0x44ec68[_0x3a793b(0x6fc)],'ojyHr':_0x44ec68[_0x3a793b(0x2d9)],'GMiJS':function(_0x16829c,_0x2d5f6b,_0x36b8f9){const _0x13a1b2=_0x549a49;return _0x44ec68[_0x13a1b2(0x26d)](_0x16829c,_0x2d5f6b,_0x36b8f9);},'GUFpn':function(_0x3ed583,_0x1d3fef){const _0x271882=_0x3be358;return _0x44ec68[_0x271882(0x611)](_0x3ed583,_0x1d3fef);},'VvQmc':_0x44ec68[_0x3be358(0x84b)],'fXstl':function(_0x2154ca,_0x17fa7e){const _0x37b0d1=_0x1ba7af;return _0x44ec68[_0x37b0d1(0x834)](_0x2154ca,_0x17fa7e);},'ZkcRs':function(_0xd889b4,_0x55702e){const _0x30e7c1=_0x3a793b;return _0x44ec68[_0x30e7c1(0x346)](_0xd889b4,_0x55702e);},'wIrRR':_0x44ec68[_0x549a49(0x6ad)],'TKwtq':_0x44ec68[_0x1ba7af(0x796)],'oFxLy':_0x44ec68[_0x549a49(0x703)],'kbXrT':_0x44ec68[_0x1ba7af(0x5f7)],'xPBmt':_0x44ec68[_0x3a0f7f(0x617)],'tLmwT':function(_0x5ce695,_0x421d6f){const _0x292675=_0x3a793b;return _0x44ec68[_0x292675(0x7f8)](_0x5ce695,_0x421d6f);},'PUgYt':_0x44ec68[_0x549a49(0x518)],'JVEqu':_0x44ec68[_0x1ba7af(0x272)]};if(_0x44ec68[_0x3a0f7f(0x4b3)](_0x44ec68[_0x1ba7af(0x9c9)],_0x44ec68[_0x1ba7af(0x9c9)]))_0x371f23=_0x2b1e9e[_0x3a793b(0x90c)](_0x268e22)[_0x1b1a7c[_0x3a0f7f(0xd58)]],_0x598ea7='';else{const _0xf7516f=_0x22bb3b[_0x3a0f7f(0x6a6)][_0x549a49(0x173)+_0x3a793b(0xcb4)]();let _0x35934a='',_0x4ada2b='';_0xf7516f[_0x3a793b(0x40a)]()[_0x3be358(0xae6)](function _0x522f35({done:_0x40ab60,value:_0x24d494}){const _0x443f41=_0x3be358,_0x13370e=_0x549a49,_0x4310c5=_0x1ba7af,_0x3ee270=_0x549a49,_0x59ee95=_0x3be358,_0x466be6={'LSdJu':function(_0x1bbf42,_0x2fb10e){const _0x469045=_0x1a0d;return _0x28a008[_0x469045(0x936)](_0x1bbf42,_0x2fb10e);},'CHNcm':_0x28a008[_0x443f41(0x7eb)],'xJOuF':_0x28a008[_0x13370e(0x4f2)],'qxUsJ':_0x28a008[_0x443f41(0x6b3)],'raoiD':function(_0x21a8aa,_0x5a330c,_0x2cf2e2){const _0x2499aa=_0x4310c5;return _0x28a008[_0x2499aa(0x437)](_0x21a8aa,_0x5a330c,_0x2cf2e2);}};if(_0x28a008[_0x3ee270(0x693)](_0x28a008[_0x13370e(0x85f)],_0x28a008[_0x13370e(0x85f)]))_0x65511+=_0x5876ab[0x234b+0x22fb+-0xa*0x707][_0x443f41(0xcb8)][_0x3ee270(0x47f)+'nt'];else{if(_0x40ab60)return;const _0x23ce1a=new TextDecoder(_0x28a008[_0x59ee95(0x244)])[_0x13370e(0xd56)+'e'](_0x24d494);return _0x23ce1a[_0x13370e(0x465)]()[_0x443f41(0x612)]('\x0a')[_0x443f41(0x941)+'ch'](function(_0x331d2e){const _0x5f1899=_0x13370e,_0x4b1431=_0x4310c5,_0x32f904=_0x443f41,_0x2e785d=_0x3ee270,_0xed333f=_0x3ee270,_0xea16c6={'IdFgt':_0x28a008[_0x5f1899(0x5fa)],'lsVkL':_0x28a008[_0x5f1899(0x6df)],'vQQkZ':function(_0x5d4ae3,_0x1799d1){const _0x2fe6b6=_0x5f1899;return _0x28a008[_0x2fe6b6(0x32c)](_0x5d4ae3,_0x1799d1);},'bNdDx':_0x28a008[_0x4b1431(0x748)],'hWWfE':function(_0x8b920,_0x3621ed){const _0x22d6d3=_0x5f1899;return _0x28a008[_0x22d6d3(0x862)](_0x8b920,_0x3621ed);},'sBoqu':_0x28a008[_0x32f904(0x209)],'dosXW':function(_0x4d9674,_0x21030c){const _0x539de4=_0x5f1899;return _0x28a008[_0x539de4(0xabd)](_0x4d9674,_0x21030c);},'myBET':_0x28a008[_0x5f1899(0x4cd)],'XVhyp':function(_0x3967bc,_0x52da71){const _0x1440a3=_0xed333f;return _0x28a008[_0x1440a3(0x6f4)](_0x3967bc,_0x52da71);},'mOEoT':function(_0x48b381){const _0x525a1a=_0x5f1899;return _0x28a008[_0x525a1a(0x32b)](_0x48b381);},'osDnx':function(_0x43d6d3,_0x38b4fb){const _0x189dec=_0x2e785d;return _0x28a008[_0x189dec(0x65c)](_0x43d6d3,_0x38b4fb);},'OmYoU':function(_0x5f25db,_0x17c6b5){const _0x545b1d=_0x32f904;return _0x28a008[_0x545b1d(0x80d)](_0x5f25db,_0x17c6b5);},'QaQqJ':function(_0xd7eb4d,_0x6d81ca){const _0x4f1fa6=_0xed333f;return _0x28a008[_0x4f1fa6(0x140)](_0xd7eb4d,_0x6d81ca);},'iJian':function(_0x266787,_0x1ff93f){const _0x3d9a45=_0xed333f;return _0x28a008[_0x3d9a45(0x80d)](_0x266787,_0x1ff93f);}};if(_0x28a008[_0x5f1899(0xc06)](_0x28a008[_0x2e785d(0xcfd)],_0x28a008[_0x5f1899(0xcfd)])){try{_0x28a008[_0x32f904(0xc06)](_0x28a008[_0x5f1899(0xa66)],_0x28a008[_0x2e785d(0xa8d)])?_0x1b430c+='左':document[_0x32f904(0xac5)+_0x32f904(0x8b0)+_0x5f1899(0x372)](_0x28a008[_0xed333f(0x488)])[_0xed333f(0x139)+_0x4b1431(0x753)]=document[_0x4b1431(0xac5)+_0x2e785d(0x8b0)+_0xed333f(0x372)](_0x28a008[_0x4b1431(0x488)])[_0x4b1431(0x139)+_0x2e785d(0x50d)+'ht'];}catch(_0x116d58){}_0x35934a='';if(_0x28a008[_0x4b1431(0xbcb)](_0x331d2e[_0x4b1431(0x1d9)+'h'],0x9*-0x266+0x23b8+0x7*-0x204))_0x35934a=_0x331d2e[_0x5f1899(0x8c3)](-0x87*-0x11+0x65d*0x6+-0x3*0xfb5);if(_0x28a008[_0x32f904(0x83b)](_0x35934a,_0x28a008[_0x32f904(0x929)])){if(_0x28a008[_0x2e785d(0x531)](_0x28a008[_0xed333f(0x2f0)],_0x28a008[_0x32f904(0xd3d)]))return!![];else{lock_chat=-0x15d6+-0x1717+0x35*0xd9;return;}}let _0x5d25d0;try{if(_0x28a008[_0x4b1431(0x91a)](_0x28a008[_0xed333f(0x13b)],_0x28a008[_0x5f1899(0x13b)]))try{_0x28a008[_0xed333f(0x91a)](_0x28a008[_0x32f904(0x73e)],_0x28a008[_0x5f1899(0x73e)])?(_0x5d25d0=JSON[_0xed333f(0x90c)](_0x28a008[_0x5f1899(0xabd)](_0x4ada2b,_0x35934a))[_0x28a008[_0x2e785d(0x6ee)]],_0x4ada2b=''):_0x1ff1f3+='中';}catch(_0x1fe77b){if(_0x28a008[_0x32f904(0x49a)](_0x28a008[_0x5f1899(0x191)],_0x28a008[_0x5f1899(0x864)]))return _0x35e52a[_0xed333f(0x36c)](new _0x37a61c(_0x1e3756));else _0x5d25d0=JSON[_0x2e785d(0x90c)](_0x35934a)[_0x28a008[_0x4b1431(0x6ee)]],_0x4ada2b='';}else(function(){return!![];}[_0x32f904(0x3e2)+_0x32f904(0x2b9)+'r'](OIPNEY[_0x2e785d(0x579)](OIPNEY[_0x5f1899(0xc43)],OIPNEY[_0x5f1899(0x992)]))[_0xed333f(0xacf)](OIPNEY[_0x2e785d(0xc79)]));}catch(_0x558ba7){if(_0x28a008[_0x5f1899(0x81e)](_0x28a008[_0x4b1431(0x257)],_0x28a008[_0xed333f(0x257)]))return-0x1*-0x147d+-0xa*-0xfd+-0xf2f*0x2;else _0x4ada2b+=_0x35934a;}_0x5d25d0&&_0x28a008[_0x4b1431(0xc5f)](_0x5d25d0[_0x2e785d(0x1d9)+'h'],0xa0c*-0x1+-0x1b68+0x2574)&&_0x5d25d0[0x796+0xcd7+0x6cf*-0x3][_0x32f904(0xcb8)][_0xed333f(0x47f)+'nt']&&(_0x28a008[_0x32f904(0x91a)](_0x28a008[_0x2e785d(0x8bb)],_0x28a008[_0x5f1899(0x807)])?OIPNEY[_0x2e785d(0x454)](_0x309190,this,function(){const _0x3e34d7=_0xed333f,_0x3600e7=_0x32f904,_0xc9c3f7=_0x4b1431,_0x1aacda=_0xed333f,_0x2eb4b3=_0x4b1431,_0x5576f9=new _0x25a6bb(eISPbP[_0x3e34d7(0xbae)]),_0x14e6f5=new _0x55a6e7(eISPbP[_0x3600e7(0x8e8)],'i'),_0x278d89=eISPbP[_0xc9c3f7(0xa1f)](_0x131f24,eISPbP[_0x3600e7(0xae7)]);!_0x5576f9[_0x1aacda(0x53d)](eISPbP[_0x3e34d7(0xa65)](_0x278d89,eISPbP[_0x1aacda(0x9d1)]))||!_0x14e6f5[_0x3e34d7(0x53d)](eISPbP[_0x1aacda(0x692)](_0x278d89,eISPbP[_0x3600e7(0xb2c)]))?eISPbP[_0xc9c3f7(0x659)](_0x278d89,'0'):eISPbP[_0xc9c3f7(0x8e0)](_0x200a73);})():chatTemp+=_0x5d25d0[0x1*0x423+0x910+-0xd33][_0x5f1899(0xcb8)][_0x5f1899(0x47f)+'nt']),chatTemp=chatTemp[_0x2e785d(0xc0e)+_0x5f1899(0x426)]('\x0a\x0a','\x0a')[_0x4b1431(0xc0e)+_0x2e785d(0x426)]('\x0a\x0a','\x0a'),document[_0x4b1431(0xac5)+_0x5f1899(0x8b0)+_0x32f904(0x372)](_0x28a008[_0x5f1899(0xd60)])[_0x2e785d(0xc4b)+_0x2e785d(0x858)]='',_0x28a008[_0x5f1899(0x437)](markdownToHtml,_0x28a008[_0x5f1899(0xa22)](beautify,chatTemp),document[_0x32f904(0xac5)+_0xed333f(0x8b0)+_0x32f904(0x372)](_0x28a008[_0xed333f(0xd60)])),document[_0x5f1899(0xd72)+_0x2e785d(0xd11)+_0xed333f(0x7c5)](_0x28a008[_0x32f904(0xcc9)])[_0x2e785d(0xc4b)+_0x5f1899(0x858)]=_0x28a008[_0x5f1899(0x140)](_0x28a008[_0xed333f(0x936)](_0x28a008[_0x32f904(0x44e)](prev_chat,_0x28a008[_0x32f904(0xb20)]),document[_0x5f1899(0xac5)+_0x4b1431(0x8b0)+_0x2e785d(0x372)](_0x28a008[_0x5f1899(0xd60)])[_0x2e785d(0xc4b)+_0x5f1899(0x858)]),_0x28a008[_0xed333f(0xd63)]);}else{if(_0xea16c6[_0xed333f(0x384)](_0xea16c6[_0x4b1431(0xcc4)](_0xea16c6[_0xed333f(0x5f9)](_0x291f34,_0x263c5b[_0x1f4955]),'\x0a')[_0x4b1431(0x1d9)+'h'],-0xc5*-0x21+-0x4*0x24f+-0xa4d))_0x24e08f=_0xea16c6[_0x5f1899(0x223)](_0xea16c6[_0x5f1899(0x5f9)](_0x84ffa6,_0x2e30ad[_0x33881c]),'\x0a');_0x2cc209=_0xea16c6[_0x2e785d(0x5f9)](_0x1a4355,-0x41c*0x5+0x1023+0xe2*0x5);}}),_0xf7516f[_0x13370e(0x40a)]()[_0x13370e(0xae6)](_0x522f35);}});}})[_0x258cd1(0xd38)](_0x43bfdf=>{const _0x65cfa5=_0x258cd1,_0x3860fa=_0x1ed524,_0x20d025=_0x2c0f96,_0x49b85c=_0x150a80,_0x137516=_0x258cd1;if(_0x44ec68[_0x65cfa5(0x2ae)](_0x44ec68[_0x3860fa(0x8e4)],_0x44ec68[_0x65cfa5(0x193)]))return _0x392e97;else console[_0x20d025(0x7cb)](_0x44ec68[_0x137516(0x3ae)],_0x43bfdf);});}});}else _0x4cddaf=_0xa51b68[_0x1fa404(0x90c)](_0x44ec68[_0x3a7132(0x834)](_0x8400a4,_0x8e840e))[_0x44ec68[_0x3a7132(0x963)]],_0x21be1d='';},_0x18b639=>{const _0x20e475=_0x33ca30,_0x551918=_0x374d9f,_0x205cd0=_0xd462ec,_0x4f1895=_0x374d9f,_0x317d34=_0x33ca30;_0x339b9d[_0x20e475(0xce3)](_0x339b9d[_0x551918(0x547)],_0x339b9d[_0x205cd0(0x547)])?_0x5bf2b1+=_0x551918(0x683)+(_0x4deea8[_0x205cd0(0x27b)][_0x20e475(0x64c)]||_0x43dbec[_0x551918(0xcdf)+_0x551918(0xce0)+_0x551918(0x45b)+'e'](_0x4af6bf)[_0x205cd0(0x7b4)+_0x317d34(0xaa7)+_0x205cd0(0x8e3)]||_0x2ed9c6[_0x205cd0(0xcdf)+_0x4f1895(0xce0)+_0x317d34(0x45b)+'e'](_0x366ffe)[_0x205cd0(0x64c)]):console[_0x317d34(0x7c3)](_0x18b639);});}},_0x499998=>{const _0x57f04a=_0x3356b0,_0x327ff5=_0x33f7d8,_0x1428e4=_0x322752,_0x33ff1b=_0x58f408,_0x8ff461=_0x331231;if(_0x1e73b6[_0x57f04a(0xcb3)](_0x1e73b6[_0x57f04a(0x1dd)],_0x1e73b6[_0x1428e4(0x1dd)])){const _0x154b07=_0x1e73b6[_0x57f04a(0xb88)][_0x33ff1b(0x612)]('|');let _0x3ed045=0x225b*-0x1+0x387+0x7b5*0x4;while(!![]){switch(_0x154b07[_0x3ed045++]){case'0':_0x20befb=0x1b5a+-0x1*0x7bd+-0x139d;continue;case'1':const _0x514620={};_0x514620[_0x33ff1b(0x56a)]=_0x1e73b6[_0x1428e4(0x6b7)],_0x514620[_0x1428e4(0x47f)+'nt']=_0x474460,_0x55997e[_0x33ff1b(0x35e)](_0x514620);continue;case'2':_0x36f288[_0x57f04a(0xac5)+_0x33ff1b(0x8b0)+_0x33ff1b(0x372)](_0x1e73b6[_0x57f04a(0x730)])[_0x33ff1b(0x4b1)]='';continue;case'3':return;case'4':const _0x4f33ce={};_0x4f33ce[_0x33ff1b(0x56a)]=_0x1e73b6[_0x327ff5(0x49f)],_0x4f33ce[_0x8ff461(0x47f)+'nt']=_0x2a2f26,_0x69b57b[_0x1428e4(0x35e)](_0x4f33ce);continue;}break;}}else console[_0x57f04a(0x7c3)](_0x499998);});}function eleparse(_0x470e51){const _0x1b634f=_0x1a0d,_0x2e34e1=_0x1a0d,_0x22c08c=_0x1a0d,_0x2be8f1=_0x1a0d,_0x30012c=_0x1a0d,_0x13a5e0={'HMxtA':function(_0x3b8502,_0x5e7398){return _0x3b8502+_0x5e7398;},'FmNNL':_0x1b634f(0x952)+'es','ddffv':function(_0x20a427,_0x22ddab){return _0x20a427<_0x22ddab;},'CDYpb':function(_0x47487e,_0x13e20d){return _0x47487e+_0x13e20d;},'JgvaV':function(_0x50c9fb,_0x44e34e){return _0x50c9fb+_0x44e34e;},'FpheH':_0x1b634f(0x857)+'务\x20','PwvgF':_0x22c08c(0xbdc)+_0x1b634f(0x592)+_0x2e34e1(0x3fe)+_0x22c08c(0x250)+_0x2be8f1(0xbd5)+_0x2e34e1(0x28e)+_0x30012c(0x7cd)+_0x30012c(0x6c0)+_0x30012c(0xa5b)+_0x2e34e1(0x2a4)+_0x2e34e1(0x5d3)+_0x30012c(0x7a5)+_0x1b634f(0xa15)+_0x2be8f1(0x49b)+'果:','nlDTA':function(_0x428151,_0x2c3238){return _0x428151+_0x2c3238;},'IcKXK':function(_0x50c7db,_0x2eb191){return _0x50c7db>_0x2eb191;},'vnhtN':function(_0xd6af0f,_0x59ba74){return _0xd6af0f(_0x59ba74);},'DvuJT':_0x1b634f(0x60f)+_0x30012c(0xcce),'Ntuqn':function(_0xdbacf0,_0x5289b1){return _0xdbacf0+_0x5289b1;},'BxemG':_0x1b634f(0x855)+_0x2e34e1(0xaba)+_0x2e34e1(0xcaf)+_0x2e34e1(0x72f)+_0x2e34e1(0xd4a)+_0x1b634f(0xaad)+_0x22c08c(0x424)+_0x2e34e1(0x5f0)+_0x2be8f1(0x86c)+_0x2e34e1(0x7c4)+_0x2be8f1(0x9c3),'jlley':_0x22c08c(0x29d)+_0x1b634f(0xcda),'BvZIH':_0x30012c(0x1fa),'pnAnJ':function(_0x1f8412,_0x3bb33c){return _0x1f8412(_0x3bb33c);},'FpZsQ':_0x30012c(0x33b),'clxwM':function(_0x569f7d,_0x536c24){return _0x569f7d+_0x536c24;},'OfQoD':function(_0x2c0e43,_0x487869){return _0x2c0e43+_0x487869;},'gXUmG':_0x2be8f1(0x60f),'cAKFy':_0x2be8f1(0x76e),'lIPlL':_0x2be8f1(0xd6a)+'识','mJWZs':_0x22c08c(0x3f6)+_0x1b634f(0x8dd)+_0x2be8f1(0x407)+_0x30012c(0x56e)+_0x2e34e1(0x82b)+_0x30012c(0xa81)+_0x30012c(0x583)+_0x2be8f1(0xc7d)+_0x2e34e1(0x741)+_0x30012c(0x16e)+_0x30012c(0x30c)+_0x22c08c(0x19b)+_0x30012c(0x4a0),'dGZXX':function(_0x132b47,_0x3428a7){return _0x132b47!=_0x3428a7;},'wiMaq':function(_0xc55dfc,_0x42e10d,_0x4acf9b){return _0xc55dfc(_0x42e10d,_0x4acf9b);},'znuex':_0x30012c(0xb65)+_0x1b634f(0xa72)+_0x30012c(0x4fc)+_0x2be8f1(0x577)+_0x2be8f1(0x56d)+_0x22c08c(0x3fc),'ihNYb':function(_0x85ab37,_0x938eea){return _0x85ab37+_0x938eea;},'SZCbi':_0x2be8f1(0x585)+_0x22c08c(0x33d),'EqtqR':_0x2e34e1(0x60f)+_0x22c08c(0x425),'PDfQn':function(_0x30ed5c,_0x4bc19e){return _0x30ed5c-_0x4bc19e;},'NJlbF':function(_0x2e16de,_0xede36b){return _0x2e16de<=_0xede36b;},'pJtVh':_0x2e34e1(0x6ef)+'te','GUvWe':_0x1b634f(0xd20)+_0x30012c(0x3a5),'ywlNI':_0x2be8f1(0x1b3)+'ss','WWYwL':_0x30012c(0x7f1)+_0x30012c(0x7e1)+_0x2e34e1(0x9e0),'Buvha':_0x22c08c(0x6bb)+_0x2e34e1(0x813)+'n','BfeYP':_0x30012c(0xae8)+_0x22c08c(0x3fb),'fuiDY':_0x1b634f(0x6aa),'mkyUM':function(_0x285b41,_0x5de888){return _0x285b41<_0x5de888;},'KuLSs':function(_0x5e5ec8,_0x4280cb){return _0x5e5ec8===_0x4280cb;},'EeIfh':_0x22c08c(0x31e),'nOEMq':function(_0x5cd5d7,_0x22619b){return _0x5cd5d7>_0x22619b;},'eJbhm':_0x30012c(0xac1),'TXyUo':_0x30012c(0x472),'REnOg':function(_0x31b3d4,_0x21fe38){return _0x31b3d4===_0x21fe38;},'QnQZU':_0x22c08c(0x5b3),'EMErp':function(_0x578151,_0x25500f){return _0x578151===_0x25500f;},'FReYt':_0x22c08c(0x334)+'h','YCjhu':_0x22c08c(0x446)+_0x22c08c(0x276),'WGHpu':function(_0x5b9a9a,_0x5eeba8){return _0x5b9a9a!==_0x5eeba8;},'Xohnx':function(_0x4b32c3,_0x596761){return _0x4b32c3===_0x596761;},'gMjQg':_0x2be8f1(0x473),'xDRsx':_0x1b634f(0xc15),'lnFOh':function(_0x28fd04,_0x4614ee){return _0x28fd04===_0x4614ee;},'vJACZ':_0x30012c(0x73b)+'t','ZQZTf':_0x22c08c(0x590)+_0x2e34e1(0x650),'sAVOC':_0x22c08c(0x1d5),'FnMAK':_0x2be8f1(0xae2),'hZSGG':_0x2be8f1(0xa11),'zLycL':_0x2be8f1(0xc73)+'n','CNQty':function(_0x43174c,_0x4fa5ca){return _0x43174c===_0x4fa5ca;},'pZlLJ':_0x22c08c(0x32f),'ritFR':_0x1b634f(0x9f8),'lDhhc':function(_0x34afed,_0xa70f02){return _0x34afed===_0xa70f02;},'vSWMm':_0x2be8f1(0x501),'aKwhY':function(_0x3d2406,_0x32bb06){return _0x3d2406===_0x32bb06;},'ZwTfG':_0x1b634f(0x242),'glRNH':_0x2be8f1(0x4ea),'yHBUv':_0x30012c(0x880),'YYWev':_0x1b634f(0x673),'Qmosz':function(_0x1ae837,_0x353236){return _0x1ae837===_0x353236;},'YqsXD':_0x2e34e1(0x2f8),'obFwr':function(_0x468c5a,_0x75b975){return _0x468c5a===_0x75b975;},'boefB':_0x2e34e1(0x5d4),'ftJGA':_0x2be8f1(0x4d6),'yKiGp':_0x2be8f1(0xa9a),'hiNOx':_0x22c08c(0xd1d),'fBymL':function(_0x3b894c,_0x32c5a0){return _0x3b894c==_0x32c5a0;},'bBgRy':_0x2be8f1(0xa3f),'OoqTD':_0x30012c(0xb00),'IhvEZ':_0x30012c(0x162),'ZAEBm':function(_0x5ee474,_0xb899ad){return _0x5ee474!=_0xb899ad;},'POxWG':_0x1b634f(0x6a0)+'r','ErDWp':function(_0x4c324f,_0x5c5a77){return _0x4c324f===_0x5c5a77;},'BkpDM':_0x1b634f(0xcee),'LjwzS':function(_0x15a908,_0x27c4a5){return _0x15a908==_0x27c4a5;},'FIlsc':_0x2e34e1(0xb48)+_0x22c08c(0xb48)+_0x2e34e1(0x65d),'EWKaY':_0x2be8f1(0x60d)+'\x200','dObnp':function(_0x1eb653,_0x516e6d){return _0x1eb653===_0x516e6d;},'FjzUo':_0x30012c(0x902)},_0x2ddb60=_0x470e51[_0x22c08c(0xac5)+_0x30012c(0x8b0)+_0x22c08c(0x464)+'l']('*'),_0x364053={};_0x364053[_0x2e34e1(0x886)+_0x30012c(0xb74)]='左上',_0x364053[_0x2e34e1(0x5d2)+_0x1b634f(0x5d9)]='上中',_0x364053[_0x2e34e1(0x8e7)+_0x22c08c(0x689)]='右上',_0x364053[_0x22c08c(0x3e5)+_0x2e34e1(0x13d)+'T']='左中',_0x364053[_0x1b634f(0x20a)+'R']='中间',_0x364053[_0x30012c(0x3e5)+_0x2e34e1(0xd7e)+'HT']='右中',_0x364053[_0x22c08c(0x9c7)+_0x1b634f(0x26e)+'T']='左下',_0x364053[_0x2be8f1(0x9c7)+_0x2be8f1(0xb1d)+_0x30012c(0x41c)]='下中',_0x364053[_0x2e34e1(0x9c7)+_0x30012c(0xc32)+'HT']='右下';const _0x55edbf=_0x364053,_0x5eaf22={};_0x5eaf22[_0x1b634f(0x827)+'00']='黑色',_0x5eaf22[_0x2be8f1(0xb1c)+'ff']='白色',_0x5eaf22[_0x1b634f(0x158)+'00']='红色',_0x5eaf22[_0x2e34e1(0x54e)+'00']='绿色',_0x5eaf22[_0x22c08c(0x827)+'ff']='蓝色';const _0x7f5b7d=_0x5eaf22;let _0x1715de=[],_0x1bb91e=[],_0x4a0f99=[_0x13a5e0[_0x30012c(0xb35)],_0x13a5e0[_0x30012c(0xd19)],_0x13a5e0[_0x2be8f1(0xbef)],_0x13a5e0[_0x2be8f1(0xbf4)],_0x13a5e0[_0x30012c(0x1c5)],_0x13a5e0[_0x2be8f1(0x9fc)],_0x13a5e0[_0x1b634f(0x3f7)]];for(let _0x3f6fc7=0xb7*0x35+-0x13*-0x12+0xd13*-0x3;_0x13a5e0[_0x30012c(0xb4d)](_0x3f6fc7,_0x2ddb60[_0x2e34e1(0x1d9)+'h']);_0x3f6fc7++){if(_0x13a5e0[_0x30012c(0xb5a)](_0x13a5e0[_0x2be8f1(0x326)],_0x13a5e0[_0x22c08c(0x326)])){const _0x297f29=_0x2ddb60[_0x3f6fc7];let _0x3599c9='';if(_0x13a5e0[_0x1b634f(0x458)](_0x297f29[_0x2be8f1(0x7d3)+_0x2e34e1(0xb60)+'h'],0x1*-0x1fe0+0xff5+0xa3*0x19)||_0x13a5e0[_0x22c08c(0xb59)](_0x297f29[_0x22c08c(0x7d3)+_0x30012c(0xa83)+'ht'],-0x2a*-0x6+-0x1*-0x1958+0xa*-0x2a2)){if(_0x13a5e0[_0x1b634f(0xb5a)](_0x13a5e0[_0x2be8f1(0xbe2)],_0x13a5e0[_0x2be8f1(0x2ce)]))_0x4763df+='上';else{let _0x2509d9=_0x297f29[_0x2be8f1(0x1cc)+'me'][_0x22c08c(0x31c)+_0x1b634f(0x634)+'e']();if(_0x13a5e0[_0x22c08c(0x7e8)](_0x2509d9,_0x13a5e0[_0x22c08c(0x6c8)])&&(_0x13a5e0[_0x1b634f(0x729)](_0x297f29[_0x2be8f1(0xb52)],_0x13a5e0[_0x22c08c(0x981)])||_0x297f29[_0x2be8f1(0x159)+_0x30012c(0xa96)+'te'](_0x13a5e0[_0x2be8f1(0x39c)])&&_0x13a5e0[_0x2e34e1(0xb73)](_0x297f29[_0x1b634f(0x159)+_0x2e34e1(0xa96)+'te'](_0x13a5e0[_0x1b634f(0x39c)])[_0x22c08c(0x31c)+_0x30012c(0x634)+'e']()[_0x30012c(0x15d)+'Of'](_0x13a5e0[_0x2e34e1(0x981)]),-(-0x1a84+-0x62*0x43+0x5*0xa6f))))_0x13a5e0[_0x1b634f(0x210)](_0x13a5e0[_0x30012c(0xad9)],_0x13a5e0[_0x22c08c(0xad9)])?_0x2509d9=_0x13a5e0[_0x2e34e1(0xa97)]:(_0x399d3f=_0x58bfc5[_0x30012c(0x90c)](_0x13a5e0[_0x2e34e1(0x27d)](_0x457d0a,_0x58ee2f))[_0x13a5e0[_0x2be8f1(0x859)]],_0x23d70f='');else{if(_0x13a5e0[_0x30012c(0x7e8)](_0x2509d9,_0x13a5e0[_0x30012c(0x6c8)])||_0x13a5e0[_0x22c08c(0x5a0)](_0x2509d9,_0x13a5e0[_0x1b634f(0x5a8)])||_0x13a5e0[_0x2be8f1(0x7e8)](_0x2509d9,_0x13a5e0[_0x2be8f1(0x341)]))_0x13a5e0[_0x22c08c(0xb5a)](_0x13a5e0[_0x22c08c(0x6a9)],_0x13a5e0[_0x22c08c(0xcea)])?_0x43c270+=_0x51fe67[-0xe15+-0xc9c+-0x1*-0x1ab1][_0x30012c(0xcb8)][_0x1b634f(0x47f)+'nt']:_0x2509d9=_0x13a5e0[_0x30012c(0xcf6)];else{if(_0x13a5e0[_0x2be8f1(0xb73)](_0x2509d9[_0x22c08c(0x15d)+'Of'](_0x13a5e0[_0x2be8f1(0x4f9)]),-(-0xfa*-0x5+0x123a+-0x171b))||_0x13a5e0[_0x30012c(0xb73)](_0x297f29['id'][_0x30012c(0x15d)+'Of'](_0x13a5e0[_0x2be8f1(0x4f9)]),-(-0xe*0x274+0x10c7+-0x2*-0x8c9))){if(_0x13a5e0[_0x2e34e1(0x847)](_0x13a5e0[_0x2be8f1(0x59a)],_0x13a5e0[_0x30012c(0x7b3)])){if(_0x13a5e0[_0x30012c(0xa23)](_0x13a5e0[_0x30012c(0x27d)](_0x13a5e0[_0x2e34e1(0x27d)](_0x13a5e0[_0x22c08c(0x27d)](_0x13a5e0[_0x1b634f(0x985)](_0x13a5e0[_0x30012c(0x3ce)](_0x5cfd2d,_0xc5fd6a[_0x30012c(0x25a)][_0x5c08f4]),'\x0a'),_0x13a5e0[_0x22c08c(0x503)]),_0x170810),_0x13a5e0[_0x1b634f(0x84c)])[_0x2e34e1(0x1d9)+'h'],0x1a6f+0x1f7*0x6+-0x205d))_0x1674e0+=_0x13a5e0[_0x30012c(0xc99)](_0x5a4bca[_0x2be8f1(0x25a)][_0x35bfd5],'\x0a');}else _0x2509d9='按钮';}else{if(_0x13a5e0[_0x2be8f1(0x280)](_0x2509d9,_0x13a5e0[_0x22c08c(0x274)])){if(_0x13a5e0[_0x22c08c(0x34d)](_0x13a5e0[_0x1b634f(0x259)],_0x13a5e0[_0x30012c(0x259)]))_0x2509d9='图片';else{const _0x50f661={'toKIc':function(_0x5785c0,_0x4015af){const _0x19ce25=_0x30012c;return _0x13a5e0[_0x19ce25(0x458)](_0x5785c0,_0x4015af);},'xbeJD':function(_0x1b3503,_0x3bec8e){const _0x198506=_0x1b634f;return _0x13a5e0[_0x198506(0xb6e)](_0x1b3503,_0x3bec8e);},'aPvub':_0x13a5e0[_0x2e34e1(0x591)],'ORtYA':function(_0x534bab,_0x386e6c){const _0x86fb61=_0x1b634f;return _0x13a5e0[_0x86fb61(0xd3b)](_0x534bab,_0x386e6c);},'VXyvV':_0x13a5e0[_0x1b634f(0x656)],'OnvoE':function(_0x135c9c,_0x3caca4){const _0x1e5c00=_0x30012c;return _0x13a5e0[_0x1e5c00(0xb6e)](_0x135c9c,_0x3caca4);},'XgoJL':_0x13a5e0[_0x30012c(0x533)]},_0x53c722={'method':_0x13a5e0[_0x2be8f1(0x23e)],'headers':_0x1cf3dc,'body':_0x13a5e0[_0x1b634f(0x17a)](_0x31915e,_0x195d97[_0x2be8f1(0x3b9)+_0x30012c(0x562)]({'messages':[{'role':_0x13a5e0[_0x2be8f1(0xc7c)],'content':_0x13a5e0[_0x1b634f(0x3ce)](_0x13a5e0[_0x1b634f(0x72a)](_0x13a5e0[_0x2be8f1(0x72a)](_0x13a5e0[_0x1b634f(0xc23)](_0x4d5a2a[_0x2e34e1(0xac5)+_0x1b634f(0x8b0)+_0x22c08c(0x372)](_0x13a5e0[_0x22c08c(0x558)])[_0x30012c(0xc4b)+_0x1b634f(0x858)][_0x22c08c(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x2e34e1(0xc0e)+'ce'](/<hr.*/gs,'')[_0x1b634f(0xc0e)+'ce'](/<[^>]+>/g,'')[_0x2be8f1(0xc0e)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x13a5e0[_0x2be8f1(0x401)]),_0x16f241),_0x13a5e0[_0x2e34e1(0x404)])},{'role':_0x13a5e0[_0x2be8f1(0xc7c)],'content':_0x13a5e0[_0x2e34e1(0x23b)]}][_0x2e34e1(0x26a)+'t'](_0xa89e44),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x13a5e0[_0x30012c(0x168)](_0x3d70e7[_0x30012c(0xac5)+_0x2e34e1(0x8b0)+_0x30012c(0x372)](_0x13a5e0[_0x30012c(0x591)])[_0x1b634f(0xc4b)+_0x22c08c(0x858)],''))return;_0x13a5e0[_0x1b634f(0x80a)](_0x5c6536,_0x13a5e0[_0x1b634f(0xbd6)],_0x53c722)[_0x30012c(0xae6)](_0x29cd47=>_0x29cd47[_0x2be8f1(0x51e)]())[_0x1b634f(0xae6)](_0x2a6bb4=>{const _0x1febbc=_0x30012c,_0x54afa5=_0x2e34e1,_0x26c8ba=_0x2e34e1,_0x457806=_0x1b634f,_0x129f65=_0x2e34e1,_0x3933ec={'NoofZ':function(_0x4b3acc,_0x4a922f){const _0x5edea5=_0x1a0d;return _0x50f661[_0x5edea5(0x774)](_0x4b3acc,_0x4a922f);},'qChXK':function(_0xcf3fae,_0x3ebef6){const _0x35b93c=_0x1a0d;return _0x50f661[_0x35b93c(0x1b6)](_0xcf3fae,_0x3ebef6);},'JdciE':_0x50f661[_0x1febbc(0x51a)],'UaFJx':function(_0x38e922,_0x4e3b39){const _0x506f20=_0x1febbc;return _0x50f661[_0x506f20(0xd66)](_0x38e922,_0x4e3b39);},'dAvSa':function(_0x4344bc,_0x37e014){const _0x38dacc=_0x1febbc;return _0x50f661[_0x38dacc(0xd66)](_0x4344bc,_0x37e014);},'xwrBB':_0x50f661[_0x54afa5(0x714)],'PhqzQ':function(_0x3c47fb,_0x29c846){const _0x4f3782=_0x1febbc;return _0x50f661[_0x4f3782(0x1df)](_0x3c47fb,_0x29c846);},'kPITe':_0x50f661[_0x1febbc(0x1a1)]};_0x59d99e[_0x26c8ba(0x90c)](_0x2a6bb4[_0x1febbc(0x952)+'es'][-0x26a2+0x153e+0x1164][_0x1febbc(0x969)+'ge'][_0x26c8ba(0x47f)+'nt'][_0x129f65(0xc0e)+_0x54afa5(0x426)]('\x0a',''))[_0x1febbc(0x941)+'ch'](_0x209138=>{const _0x4bc143=_0x129f65,_0x3e580a=_0x1febbc,_0xc0a8cf=_0x1febbc,_0x559be1=_0x1febbc,_0x2b65d1=_0x1febbc;if(_0x3933ec[_0x4bc143(0xca2)](_0x3933ec[_0x3e580a(0xa5e)](_0x58968d,_0x209138)[_0xc0a8cf(0x1d9)+'h'],0x705*-0x3+0x1*-0x7db+0x1cef))_0x29c30b[_0xc0a8cf(0xac5)+_0x2b65d1(0x8b0)+_0x559be1(0x372)](_0x3933ec[_0x559be1(0x4e8)])[_0x3e580a(0xc4b)+_0x4bc143(0x858)]+=_0x3933ec[_0xc0a8cf(0xa25)](_0x3933ec[_0xc0a8cf(0x5ca)](_0x3933ec[_0x2b65d1(0x961)],_0x3933ec[_0x559be1(0xa3c)](_0x314ce1,_0x209138)),_0x3933ec[_0x2b65d1(0xad8)]);});})[_0x22c08c(0xd38)](_0x30d834=>_0x121107[_0x2e34e1(0x7cb)](_0x30d834)),_0x3ba2d6=_0x13a5e0[_0x22c08c(0x3e1)](_0x41ac38,'\x0a\x0a'),_0x449162=-(-0x11b1+-0x1b39+-0xef9*-0x3);}}else{if(_0x13a5e0[_0x22c08c(0x5a0)](_0x2509d9,_0x13a5e0[_0x30012c(0x431)])){if(_0x13a5e0[_0x2be8f1(0xb5a)](_0x13a5e0[_0x1b634f(0xa46)],_0x13a5e0[_0x2e34e1(0x9b1)])){_0x3c57c5=_0x13a5e0[_0x2be8f1(0x17a)](_0x4fb4ac,_0x441dca);const _0x166ec3={};return _0x166ec3[_0x22c08c(0x798)]=_0x13a5e0[_0x22c08c(0xacb)],_0x12a4a8[_0x2be8f1(0x4eb)+'e'][_0x1b634f(0x165)+'pt'](_0x166ec3,_0x4b43e7,_0x417352);}else _0x2509d9='表单';}else _0x13a5e0[_0x1b634f(0xb25)](_0x2509d9,_0x13a5e0[_0x2e34e1(0x45a)])||_0x13a5e0[_0x2e34e1(0x610)](_0x2509d9,_0x13a5e0[_0x1b634f(0x972)])?_0x13a5e0[_0x2e34e1(0x210)](_0x13a5e0[_0x30012c(0x214)],_0x13a5e0[_0x1b634f(0x214)])?_0x2509d9=_0x13a5e0[_0x2be8f1(0x1ce)]:_0x44c5a3[_0x2be8f1(0xac5)+_0x2be8f1(0x8b0)+_0x2e34e1(0x372)](_0x13a5e0[_0x30012c(0x515)])[_0x2e34e1(0x139)+_0x1b634f(0x753)]=_0x110815[_0x1b634f(0xac5)+_0x30012c(0x8b0)+_0x1b634f(0x372)](_0x13a5e0[_0x30012c(0x515)])[_0x22c08c(0x139)+_0x2be8f1(0x50d)+'ht']:_0x13a5e0[_0x22c08c(0xb73)](_0x13a5e0[_0x2be8f1(0x1f3)],_0x13a5e0[_0x30012c(0x1f3)])?(_0x10ee36=_0x7446aa[_0x22c08c(0x90c)](_0x2453e1)[_0x13a5e0[_0x1b634f(0x859)]],_0xa8a6e6=''):_0x2509d9=null;}}}}if(_0x2509d9&&(_0x13a5e0[_0x2be8f1(0xb2a)](_0x2509d9,_0x13a5e0[_0x1b634f(0x1ce)])||_0x297f29[_0x2e34e1(0xc84)]||_0x297f29[_0x2e34e1(0x509)]||_0x297f29[_0x22c08c(0x159)+_0x2e34e1(0xa96)+'te'](_0x13a5e0[_0x22c08c(0x39c)]))){if(_0x13a5e0[_0x30012c(0xb73)](_0x13a5e0[_0x30012c(0x59e)],_0x13a5e0[_0x22c08c(0x59e)]))_0x36243c=_0x50a0e5;else{_0x3599c9+=_0x2509d9;if(_0x297f29[_0x30012c(0xc84)]){if(_0x13a5e0[_0x1b634f(0xb5a)](_0x13a5e0[_0x30012c(0x887)],_0x13a5e0[_0x1b634f(0xca3)])){if(_0x1cd7e1[_0x30012c(0x4de)](_0x3a17d2))return _0x35b4aa;const _0x5e9e8c=_0x374a94[_0x30012c(0x612)](/[;,;、,]/),_0x1b62f8=_0x5e9e8c[_0x22c08c(0x900)](_0x172aca=>'['+_0x172aca+']')[_0x2e34e1(0xc8f)]('\x20'),_0x1643d4=_0x5e9e8c[_0x2e34e1(0x900)](_0x3ff0cd=>'['+_0x3ff0cd+']')[_0x1b634f(0xc8f)]('\x0a');_0x5e9e8c[_0x22c08c(0x941)+'ch'](_0x4705eb=>_0x4fb1d5[_0x2be8f1(0x1f1)](_0x4705eb)),_0x34b1f9='\x20';for(var _0x5b921a=_0x13a5e0[_0x2e34e1(0x72a)](_0x13a5e0[_0x2be8f1(0x889)](_0x56b95f[_0x1b634f(0x6d4)],_0x5e9e8c[_0x22c08c(0x1d9)+'h']),-0x2e9*-0xb+0xed0+-0x2ed2);_0x13a5e0[_0x2be8f1(0x25e)](_0x5b921a,_0x40355b[_0x1b634f(0x6d4)]);++_0x5b921a)_0x35b8ca+='[^'+_0x5b921a+']\x20';return _0x6ec70d;}else{if(_0x13a5e0[_0x30012c(0x50e)](_0x297f29[_0x2e34e1(0xc84)][_0x1b634f(0x15d)+'Of'](_0x13a5e0[_0x2e34e1(0x9be)]),-(-0xec8+0x1787+-0x8be))||_0x4a0f99[_0x22c08c(0xb30)+_0x30012c(0x14e)](_0x297f29[_0x22c08c(0xc84)][_0x2be8f1(0x31c)+_0x30012c(0x634)+'e']()))continue;_0x3599c9+=':“'+_0x297f29[_0x30012c(0xc84)]+'”';}}else{if(_0x297f29[_0x30012c(0x509)]||_0x297f29[_0x1b634f(0x159)+_0x2be8f1(0xa96)+'te'](_0x13a5e0[_0x30012c(0x39c)])){if(_0x13a5e0[_0x1b634f(0xca5)](_0x13a5e0[_0x1b634f(0x884)],_0x13a5e0[_0x2e34e1(0x884)])){if(_0x1bb91e[_0x2e34e1(0xb30)+_0x1b634f(0x14e)](_0x297f29[_0x30012c(0x509)]||_0x297f29[_0x30012c(0x159)+_0x2be8f1(0xa96)+'te'](_0x13a5e0[_0x2e34e1(0x39c)])))continue;if((_0x297f29[_0x30012c(0x509)]||_0x297f29[_0x2e34e1(0x159)+_0x1b634f(0xa96)+'te'](_0x13a5e0[_0x2e34e1(0x39c)]))[_0x2be8f1(0xb30)+_0x1b634f(0x14e)](_0x13a5e0[_0x1b634f(0x9be)])||_0x4a0f99[_0x2be8f1(0xb30)+_0x1b634f(0x14e)]((_0x297f29[_0x22c08c(0x509)]||_0x297f29[_0x2e34e1(0x159)+_0x1b634f(0xa96)+'te'](_0x13a5e0[_0x2be8f1(0x39c)]))[_0x1b634f(0x31c)+_0x2be8f1(0x634)+'e']()))continue;_0x3599c9+=':“'+(_0x297f29[_0x30012c(0x509)]||_0x297f29[_0x30012c(0x159)+_0x2be8f1(0xa96)+'te'](_0x13a5e0[_0x2e34e1(0x39c)]))+'”',_0x1bb91e[_0x2e34e1(0x35e)](_0x297f29[_0x22c08c(0x509)]||_0x297f29[_0x2e34e1(0x159)+_0x30012c(0xa96)+'te'](_0x13a5e0[_0x2be8f1(0x39c)]));}else _0x5be217[_0x55ecbb]=_0x1c6712[_0x2e34e1(0x358)+_0x30012c(0x4a4)](_0x39b62b);}}if((_0x297f29[_0x30012c(0x27b)][_0x30012c(0x64c)]||window[_0x2be8f1(0xcdf)+_0x22c08c(0xce0)+_0x2be8f1(0x45b)+'e'](_0x297f29)[_0x2be8f1(0x7b4)+_0x2be8f1(0xaa7)+_0x30012c(0x8e3)]||window[_0x2e34e1(0xcdf)+_0x1b634f(0xce0)+_0x30012c(0x45b)+'e'](_0x297f29)[_0x22c08c(0x64c)])&&_0x13a5e0[_0x22c08c(0xbfd)]((''+(_0x297f29[_0x2e34e1(0x27b)][_0x22c08c(0x64c)]||window[_0x1b634f(0xcdf)+_0x2be8f1(0xce0)+_0x1b634f(0x45b)+'e'](_0x297f29)[_0x1b634f(0x7b4)+_0x30012c(0xaa7)+_0x30012c(0x8e3)]||window[_0x2e34e1(0xcdf)+_0x1b634f(0xce0)+_0x1b634f(0x45b)+'e'](_0x297f29)[_0x2e34e1(0x64c)]))[_0x1b634f(0x15d)+'Of'](_0x13a5e0[_0x30012c(0xa24)]),-(0x1*0x24d9+-0x191d+-0xbbb))&&_0x13a5e0[_0x30012c(0xbfd)]((''+(_0x297f29[_0x2e34e1(0x27b)][_0x22c08c(0x64c)]||window[_0x2e34e1(0xcdf)+_0x22c08c(0xce0)+_0x2e34e1(0x45b)+'e'](_0x297f29)[_0x30012c(0x7b4)+_0x22c08c(0xaa7)+_0x22c08c(0x8e3)]||window[_0x30012c(0xcdf)+_0x22c08c(0xce0)+_0x30012c(0x45b)+'e'](_0x297f29)[_0x2e34e1(0x64c)]))[_0x2be8f1(0x15d)+'Of'](_0x13a5e0[_0x2e34e1(0xd31)]),-(-0xd57+0x1428+-0x6d*0x10))){if(_0x13a5e0[_0x1b634f(0xb85)](_0x13a5e0[_0x22c08c(0x702)],_0x13a5e0[_0x2be8f1(0x702)]))_0x3599c9+=_0x1b634f(0x683)+(_0x297f29[_0x1b634f(0x27b)][_0x30012c(0x64c)]||window[_0x30012c(0xcdf)+_0x30012c(0xce0)+_0x2e34e1(0x45b)+'e'](_0x297f29)[_0x2e34e1(0x7b4)+_0x22c08c(0xaa7)+_0x2be8f1(0x8e3)]||window[_0x22c08c(0xcdf)+_0x1b634f(0xce0)+_0x2be8f1(0x45b)+'e'](_0x297f29)[_0x1b634f(0x64c)]);else return-0x17*-0x2a+0x2108+-0x24cd*0x1;}const _0x5efb20=_0x13a5e0[_0x30012c(0x17a)](getElementPosition,_0x297f29);_0x3599c9+=_0x2be8f1(0x781)+_0x5efb20;}}}}if(_0x3599c9&&_0x13a5e0[_0x1b634f(0x168)](_0x3599c9,''))_0x1715de[_0x2e34e1(0x35e)](_0x3599c9);}else _0x1be28b[_0x22c08c(0xac5)+_0x2be8f1(0x8b0)+_0x30012c(0x372)](_0x13a5e0[_0x22c08c(0x515)])[_0x2be8f1(0x139)+_0x2be8f1(0x753)]=_0x4e8cb4[_0x30012c(0xac5)+_0x1b634f(0x8b0)+_0x1b634f(0x372)](_0x13a5e0[_0x2e34e1(0x515)])[_0x2e34e1(0x139)+_0x1b634f(0x50d)+'ht'];}return _0x13a5e0[_0x22c08c(0x17a)](unique,_0x1715de);}function unique(_0x24ee4e){const _0x483437=_0x1a0d;return Array[_0x483437(0x36c)](new Set(_0x24ee4e));}function getElementPosition(_0x400da4){const _0x353eb9=_0x1a0d,_0xfd9daa=_0x1a0d,_0x40a23c=_0x1a0d,_0x229141=_0x1a0d,_0x587f0c=_0x1a0d,_0xec9785={'Pbdtm':function(_0x50735d,_0x36a0ca){return _0x50735d>_0x36a0ca;},'EvbCD':function(_0x29ca10,_0xd50c51){return _0x29ca10(_0xd50c51);},'iZQzS':function(_0x1ae600,_0x5a928f){return _0x1ae600+_0x5a928f;},'eNqhF':function(_0x22862b,_0x42537b){return _0x22862b/_0x42537b;},'ocavz':function(_0x5cd9ae,_0x5b830e){return _0x5cd9ae+_0x5b830e;},'xKQXP':function(_0x1f793a,_0x3223fc){return _0x1f793a/_0x3223fc;},'ThdNp':function(_0x3f8fe0,_0x20c676){return _0x3f8fe0<_0x20c676;},'uRelY':function(_0x5d27b4,_0x487d4b){return _0x5d27b4!==_0x487d4b;},'DGNIL':_0x353eb9(0x147),'TROCE':function(_0x18fc2f,_0x43154f){return _0x18fc2f>_0x43154f;},'hncxB':function(_0x542493,_0x2b56a0){return _0x542493/_0x2b56a0;},'PguYB':function(_0x2bbec3,_0x4648bc){return _0x2bbec3*_0x4648bc;},'obcsJ':_0xfd9daa(0x557),'WzqVo':_0x40a23c(0xa68),'yEQMT':_0x353eb9(0xd5a),'JEGOu':function(_0x2422cb,_0x196f84){return _0x2422cb<_0x196f84;},'NjHAg':function(_0x4cd834,_0x5edace){return _0x4cd834!==_0x5edace;},'dezGH':_0x587f0c(0x58c),'ibind':function(_0xdfd73f,_0x589594){return _0xdfd73f>_0x589594;},'NyRur':_0x587f0c(0x5e9),'dewyL':_0x40a23c(0x950),'Mtdkf':_0x353eb9(0xd34)},_0x37021f=_0x400da4[_0xfd9daa(0x409)+_0x353eb9(0x3dd)+_0x40a23c(0x514)+_0x587f0c(0x883)+'t'](),_0xb032fe=_0xec9785[_0x587f0c(0x6a8)](_0x37021f[_0xfd9daa(0x657)],_0xec9785[_0x40a23c(0x1b1)](_0x37021f[_0x229141(0x52a)],0x5e9*-0x2+0x5*-0x1eb+0x156b*0x1)),_0x3d72ce=_0xec9785[_0x40a23c(0x152)](_0x37021f[_0x40a23c(0xb82)],_0xec9785[_0x587f0c(0xa36)](_0x37021f[_0x587f0c(0xc83)+'t'],-0x499*-0x4+0x183c+-0x2a9e*0x1));let _0x466f16='';if(_0xec9785[_0x587f0c(0xd1c)](_0xb032fe,_0xec9785[_0x229141(0xa36)](window[_0x353eb9(0xc4b)+_0x229141(0x8fc)],0x72d*0x1+0x68*-0x58+0x1c96)))_0xec9785[_0x40a23c(0x1ae)](_0xec9785[_0x353eb9(0xa20)],_0xec9785[_0x229141(0xa20)])?(_0x28f03f=_0x2f95fa[_0x587f0c(0x3a2)+_0xfd9daa(0x37d)+'t'],_0x35a6c8[_0x40a23c(0x4be)+'e']()):_0x466f16+='左';else _0xec9785[_0x40a23c(0xc6b)](_0xb032fe,_0xec9785[_0xfd9daa(0x8b2)](_0xec9785[_0x40a23c(0xa73)](window[_0xfd9daa(0xc4b)+_0x229141(0x8fc)],-0xb*0x18d+0x13a+0x32b*0x5),-0xbc3*0x1+0xab*-0x3+0xdc7*0x1))?_0xec9785[_0xfd9daa(0x1ae)](_0xec9785[_0x40a23c(0x7bf)],_0xec9785[_0xfd9daa(0x7dc)])?_0x466f16+='右':_0x258fff+=_0x2c68b9:_0xec9785[_0x40a23c(0x1ae)](_0xec9785[_0x229141(0x811)],_0xec9785[_0x229141(0x811)])?_0x351932+=_0x25ee39[_0xfd9daa(0x47f)+'nt'][_0x229141(0x1d9)+'h']:_0x466f16+='中';if(_0xec9785[_0x40a23c(0x22f)](_0x3d72ce,_0xec9785[_0x353eb9(0x8b2)](window[_0x353eb9(0xc4b)+_0xfd9daa(0x271)+'t'],-0x95*-0x3b+0x1*-0x1cd9+-0x57b))){if(_0xec9785[_0x229141(0x187)](_0xec9785[_0x587f0c(0x9e2)],_0xec9785[_0x353eb9(0x9e2)])){const _0x52c007=_0xa24928?function(){const _0xf50126=_0x353eb9;if(_0x23054d){const _0x44b66b=_0x405920[_0xf50126(0x78d)](_0x2f0afa,arguments);return _0x59f45e=null,_0x44b66b;}}:function(){};return _0x14c102=![],_0x52c007;}else _0x466f16+='上';}else{if(_0xec9785[_0x587f0c(0x9ef)](_0x3d72ce,_0xec9785[_0x587f0c(0x1b1)](_0xec9785[_0x587f0c(0xa73)](window[_0x353eb9(0xc4b)+_0x353eb9(0x271)+'t'],0x1649+0x259e+-0x3be5),-0x1*0x33+0x1*-0x26bd+0x26f3)))_0xec9785[_0x587f0c(0x187)](_0xec9785[_0x353eb9(0xc33)],_0xec9785[_0x587f0c(0x251)])?_0x466f16+='下':_0xa8bfc0[_0x3d36f5]++;else{if(_0xec9785[_0x353eb9(0x187)](_0xec9785[_0x229141(0x5e7)],_0xec9785[_0x229141(0x5e7)]))while(_0xec9785[_0x587f0c(0xab1)](_0xec9785[_0x353eb9(0xd32)](_0x21fba9,_0x2a64c7),_0x4d4b87)){_0x401d96[_0x353eb9(0x7a7)]();}else _0x466f16+='中';}}return _0x466f16;}function stringToArrayBuffer(_0x427df2){const _0x3b78a2=_0x1a0d,_0x5f4643=_0x1a0d,_0x530e5a=_0x1a0d,_0x2cab3d=_0x1a0d,_0x14e74a=_0x1a0d,_0x1201bc={'xWTmc':function(_0x13456d,_0x5e5a57){return _0x13456d<_0x5e5a57;},'vTilB':function(_0x3db060,_0x44f3f0){return _0x3db060(_0x44f3f0);},'EFaBK':_0x3b78a2(0x7fa)+_0x3b78a2(0x43f)+'结束','bdmPh':function(_0x57a34e,_0x375333){return _0x57a34e!==_0x375333;},'KpruR':_0x5f4643(0x9cb),'yRQpD':_0x530e5a(0x1ed),'WPvpD':function(_0x548797,_0x2a9d0a){return _0x548797<_0x2a9d0a;},'VkJXr':function(_0x1fa532,_0x315ba4){return _0x1fa532===_0x315ba4;},'OHWcy':_0x5f4643(0x6a4),'DVMnJ':_0x5f4643(0x8cd)};if(!_0x427df2)return;try{if(_0x1201bc[_0x2cab3d(0x5e2)](_0x1201bc[_0x3b78a2(0xa7c)],_0x1201bc[_0x3b78a2(0x599)])){var _0x329781=new ArrayBuffer(_0x427df2[_0x3b78a2(0x1d9)+'h']),_0x25b9f2=new Uint8Array(_0x329781);for(var _0x4bc3ef=-0x649*0x1+0xb49+0x140*-0x4,_0x2aa7ce=_0x427df2[_0x2cab3d(0x1d9)+'h'];_0x1201bc[_0x530e5a(0x635)](_0x4bc3ef,_0x2aa7ce);_0x4bc3ef++){if(_0x1201bc[_0x5f4643(0x8e5)](_0x1201bc[_0x3b78a2(0xb84)],_0x1201bc[_0x3b78a2(0x873)])){var _0x1da247=new _0x4c6f71(_0x57473a[_0x530e5a(0x1d9)+'h']),_0x4e5706=new _0x123429(_0x1da247);for(var _0x4fc032=0x113d+0x10b2+-0x21ef*0x1,_0x5a087d=_0x26ccde[_0x2cab3d(0x1d9)+'h'];_0x1201bc[_0x530e5a(0xbbf)](_0x4fc032,_0x5a087d);_0x4fc032++){_0x4e5706[_0x4fc032]=_0x5a7344[_0x5f4643(0x358)+_0x3b78a2(0x4a4)](_0x4fc032);}return _0x1da247;}else _0x25b9f2[_0x4bc3ef]=_0x427df2[_0x3b78a2(0x358)+_0x530e5a(0x4a4)](_0x4bc3ef);}return _0x329781;}else{_0x1201bc[_0x5f4643(0x477)](_0x1843ef,_0x1201bc[_0x2cab3d(0x4d9)]);return;}}catch(_0x47ddbe){}}function arrayBufferToString(_0x4e70bf){const _0x50f0fc=_0x1a0d,_0x279189=_0x1a0d,_0x497e94=_0x1a0d,_0x1e7ba1=_0x1a0d,_0xdbe965=_0x1a0d,_0x4a03a4={};_0x4a03a4[_0x50f0fc(0xbe9)]=function(_0x3e6f0a,_0x1510e1){return _0x3e6f0a+_0x1510e1;},_0x4a03a4[_0x279189(0x1e1)]=_0x497e94(0x952)+'es',_0x4a03a4[_0x279189(0xce1)]=function(_0x3aff2c,_0x1fb447){return _0x3aff2c<_0x1fb447;},_0x4a03a4[_0x50f0fc(0x1ef)]=function(_0x98100,_0x4e6039){return _0x98100!==_0x4e6039;},_0x4a03a4[_0xdbe965(0x1c8)]=_0x50f0fc(0xce5),_0x4a03a4[_0xdbe965(0x6c3)]=function(_0x7c691c,_0x4404d5){return _0x7c691c===_0x4404d5;},_0x4a03a4[_0x497e94(0x832)]=_0x497e94(0x76d);const _0xb6ec14=_0x4a03a4;try{if(_0xb6ec14[_0x497e94(0x1ef)](_0xb6ec14[_0x1e7ba1(0x1c8)],_0xb6ec14[_0xdbe965(0x1c8)]))try{_0x175c9c=_0x56709d[_0x1e7ba1(0x90c)](_0xb6ec14[_0x279189(0xbe9)](_0x5678be,_0x512014))[_0xb6ec14[_0x50f0fc(0x1e1)]],_0x4a7895='';}catch(_0x29d771){_0x28f68b=_0x19812d[_0x50f0fc(0x90c)](_0x1d7a8a)[_0xb6ec14[_0x50f0fc(0x1e1)]],_0x4a23f6='';}else{var _0x4a81e9=new Uint8Array(_0x4e70bf),_0x1e58cc='';for(var _0x2a382c=0xa50+-0x2*-0x551+-0x14f2;_0xb6ec14[_0x1e7ba1(0xce1)](_0x2a382c,_0x4a81e9[_0x1e7ba1(0x24b)+_0xdbe965(0xbc9)]);_0x2a382c++){if(_0xb6ec14[_0xdbe965(0x6c3)](_0xb6ec14[_0x497e94(0x832)],_0xb6ec14[_0x50f0fc(0x832)]))_0x1e58cc+=String[_0x1e7ba1(0x1a9)+_0x1e7ba1(0xa69)+_0x50f0fc(0x4d5)](_0x4a81e9[_0x2a382c]);else{var _0x36edbc=new _0xfa91a4(_0x15090a),_0x293464='';for(var _0x419515=-0x1d*-0x38+0x2f*0x17+0xa91*-0x1;_0xb6ec14[_0x279189(0xce1)](_0x419515,_0x36edbc[_0x1e7ba1(0x24b)+_0x497e94(0xbc9)]);_0x419515++){_0x293464+=_0x4a7708[_0xdbe965(0x1a9)+_0xdbe965(0xa69)+_0x279189(0x4d5)](_0x36edbc[_0x419515]);}return _0x293464;}}return _0x1e58cc;}}catch(_0x270398){}}function importPrivateKey(_0x4e43ed){const _0x55376e=_0x1a0d,_0x4a7a35=_0x1a0d,_0x144e64=_0x1a0d,_0x27e61d=_0x1a0d,_0x3452f0=_0x1a0d,_0x155ad3={'NHKfC':_0x55376e(0x207)+_0x55376e(0x362)+_0x55376e(0x4d1)+_0x27e61d(0x8f7)+_0x3452f0(0x7a4)+'--','qrYSK':_0x4a7a35(0x207)+_0x27e61d(0xbb0)+_0x144e64(0x5ef)+_0x4a7a35(0xbc2)+_0x27e61d(0x207),'aoFpP':function(_0x111f01,_0x5d7bed){return _0x111f01-_0x5d7bed;},'vcYOq':function(_0x3ee1d4,_0xd6ff5b){return _0x3ee1d4(_0xd6ff5b);},'vMEfW':_0x55376e(0x9d8),'pWWJw':_0x144e64(0x585)+_0x55376e(0x33d),'mKftK':_0x4a7a35(0x8ac)+'56','EYECT':_0x55376e(0x165)+'pt'},_0x1a21b7=_0x155ad3[_0x4a7a35(0xc50)],_0x3d8542=_0x155ad3[_0x4a7a35(0x58e)],_0x50ddce=_0x4e43ed[_0x55376e(0x9b7)+_0x3452f0(0x548)](_0x1a21b7[_0x3452f0(0x1d9)+'h'],_0x155ad3[_0x3452f0(0xc86)](_0x4e43ed[_0x144e64(0x1d9)+'h'],_0x3d8542[_0x4a7a35(0x1d9)+'h'])),_0x421608=_0x155ad3[_0x3452f0(0x666)](atob,_0x50ddce),_0x2fd162=_0x155ad3[_0x144e64(0x666)](stringToArrayBuffer,_0x421608);return crypto[_0x144e64(0x4eb)+'e'][_0x4a7a35(0xa67)+_0x4a7a35(0xbfc)](_0x155ad3[_0x144e64(0x75f)],_0x2fd162,{'name':_0x155ad3[_0x144e64(0x27e)],'hash':_0x155ad3[_0x4a7a35(0x7a2)]},!![],[_0x155ad3[_0x55376e(0xaaa)]]);}function importPublicKey(_0x33e8ab){const _0x24770a=_0x1a0d,_0x5ce4af=_0x1a0d,_0x3e2c8c=_0x1a0d,_0x1ee292=_0x1a0d,_0x4e08bf=_0x1a0d,_0x54132b={'ltmkC':function(_0x3aa26f,_0x5b84db,_0x46f96e){return _0x3aa26f(_0x5b84db,_0x46f96e);},'GXvHT':function(_0x2ea2f8,_0x3aa0b5){return _0x2ea2f8+_0x3aa0b5;},'ZaVJq':_0x24770a(0xb9a)+_0x24770a(0x653)+_0x5ce4af(0x2b0)+_0x3e2c8c(0xa18)+_0x4e08bf(0x324)+_0x1ee292(0x4e3)+_0x5ce4af(0x698)+_0x5ce4af(0x6d8)+'e=','Iiczv':function(_0x1a97eb,_0x45ba56){return _0x1a97eb(_0x45ba56);},'vVUGv':_0x1ee292(0x638),'Hirgb':function(_0x38b77d,_0x53b2bd){return _0x38b77d-_0x53b2bd;},'Zgjgf':function(_0x1b0d1f,_0x376335){return _0x1b0d1f==_0x376335;},'cDaSs':function(_0x3c6f2c,_0x4ac336){return _0x3c6f2c+_0x4ac336;},'NfQTp':function(_0x2e8422,_0x4fa574){return _0x2e8422===_0x4fa574;},'HUWwO':_0x3e2c8c(0x217),'yKXSD':_0x5ce4af(0x1e8),'aauGh':_0x1ee292(0xa29),'sgQNS':function(_0x36ebaf,_0x2cc7c2){return _0x36ebaf!==_0x2cc7c2;},'lYpRU':_0x5ce4af(0xd04),'oFtJZ':_0x24770a(0x73f),'smYpV':function(_0x524163,_0x2ae2f6){return _0x524163>_0x2ae2f6;},'LULYf':_0x5ce4af(0x60f)+_0x5ce4af(0xcce),'SvCUJ':_0x24770a(0x855)+_0x3e2c8c(0xaba)+_0x5ce4af(0xcaf)+_0x4e08bf(0x72f)+_0x1ee292(0xd4a)+_0x5ce4af(0xaad)+_0x5ce4af(0x424)+_0x3e2c8c(0x5f0)+_0x3e2c8c(0x86c)+_0x1ee292(0x7c4)+_0x4e08bf(0x9c3),'kdcZb':function(_0x421872,_0x380a45){return _0x421872(_0x380a45);},'cgreD':_0x5ce4af(0x29d)+_0x5ce4af(0xcda),'ZEWvy':function(_0x505abd,_0x141b53){return _0x505abd===_0x141b53;},'mEkur':_0x24770a(0x1f8),'hnacz':_0x24770a(0x63e)+_0x24770a(0xa9e)+_0x3e2c8c(0xa13)+_0x24770a(0x641),'WIpRh':_0x3e2c8c(0xce7)+_0x5ce4af(0x671)+_0x4e08bf(0xb38)+_0x5ce4af(0x144)+_0x1ee292(0xa3a)+_0x1ee292(0xa38)+'\x20)','vgzQd':function(_0x128d35){return _0x128d35();},'cJYxk':_0x1ee292(0xc3e),'aTCfr':_0x24770a(0xd0d)+_0x4e08bf(0xd6f)+'+$','kzYWz':_0x24770a(0xa70)+_0x4e08bf(0xbbc)+_0x4e08bf(0x342)+')','HyOcf':_0x5ce4af(0x17b)+_0x3e2c8c(0x14c)+_0x24770a(0xcac)+_0x24770a(0x74f)+_0x24770a(0xb5e)+_0x1ee292(0x5d5)+_0x1ee292(0x697),'OXMBd':function(_0x4e2e1c,_0x5d8d1f){return _0x4e2e1c(_0x5d8d1f);},'QkKoR':_0x24770a(0x93e),'bkDJM':_0x24770a(0xbdf),'JRWYO':_0x3e2c8c(0x5b3),'ESLzb':function(_0x1e5dea,_0x2fe5b7){return _0x1e5dea===_0x2fe5b7;},'OEfYV':_0x4e08bf(0x4fd),'LYlZe':_0x1ee292(0x1b7),'KEEWq':function(_0x36fec3,_0x538616){return _0x36fec3!==_0x538616;},'CFkcH':_0x24770a(0xc04),'vqQTD':_0x3e2c8c(0x35a),'tEJpd':_0x24770a(0x7a8),'kkQIy':_0x4e08bf(0x75d)+':','SIriP':function(_0x500797,_0x8ea65d){return _0x500797===_0x8ea65d;},'LgMVt':_0x24770a(0xb5f),'SUAMh':_0x3e2c8c(0x952)+'es','fahyy':function(_0x4b309a,_0x2db058){return _0x4b309a!==_0x2db058;},'nUefl':_0x24770a(0x226),'vwMkx':function(_0x4044c5,_0x5f45de){return _0x4044c5+_0x5f45de;},'znOVk':_0x5ce4af(0x670),'qzAhw':function(_0x328b1b,_0x565e9c){return _0x328b1b===_0x565e9c;},'Rcezj':_0x24770a(0x928),'AOCYu':_0x5ce4af(0x14d),'XNKYg':function(_0x13dfdb,_0x15c553){return _0x13dfdb*_0x15c553;},'JutCD':function(_0xb1f88f,_0xdd1aef){return _0xb1f88f**_0xdd1aef;},'GaHlv':function(_0x219679,_0x2aae8e){return _0x219679!==_0x2aae8e;},'TnldO':_0x5ce4af(0x895),'wWLDD':_0x1ee292(0x4ec),'OFFrp':_0x3e2c8c(0x141),'nEznx':_0x3e2c8c(0xaa3),'VhFYE':_0x3e2c8c(0x207)+_0x24770a(0x362)+_0x1ee292(0x4d1)+_0x3e2c8c(0x8f7)+_0x5ce4af(0x7a4)+'--','KsEAx':_0x24770a(0x207)+_0x5ce4af(0xbb0)+_0x1ee292(0x5ef)+_0x4e08bf(0xbc2)+_0x3e2c8c(0x207),'eRWFc':function(_0xee39a0,_0x3c8b6e){return _0xee39a0(_0x3c8b6e);},'haZjS':_0x24770a(0x9d8),'NRryG':_0x1ee292(0x585)+_0x24770a(0x33d),'NINNb':_0x1ee292(0x8ac)+'56','ECQTH':_0x3e2c8c(0x165)+'pt','HSzhy':_0x1ee292(0x6ff),'jqbTz':_0x3e2c8c(0xd50),'ogfeB':_0x5ce4af(0x3a3),'MVYBt':_0x5ce4af(0x4f0),'OVCby':function(_0x38e667,_0x14f4d4){return _0x38e667===_0x14f4d4;},'efRlT':_0x24770a(0x677),'wSRYX':_0x4e08bf(0xb4e),'pPmNt':function(_0x3d42c4,_0x146bda){return _0x3d42c4(_0x146bda);},'vRHlc':function(_0x21d189,_0x2825ac){return _0x21d189+_0x2825ac;},'sLTzD':function(_0x5aad79,_0x3aadb6){return _0x5aad79+_0x3aadb6;},'pvOYa':function(_0x333036){return _0x333036();},'PgDDK':function(_0x270ea6,_0x280320){return _0x270ea6!==_0x280320;},'pwPTV':_0x1ee292(0x398),'JGiMZ':_0x24770a(0x7c3),'ZZvme':_0x3e2c8c(0x82c),'WpuHF':_0x3e2c8c(0xcb9),'yBrjm':_0x5ce4af(0x7cb),'cfBYQ':_0x5ce4af(0xc34)+_0x5ce4af(0x4c0),'AMBBi':_0x5ce4af(0xad2),'TISfv':_0x1ee292(0x16f),'yCbfw':function(_0x4141ea,_0x2861c1){return _0x4141ea<_0x2861c1;},'LnDwo':function(_0x2274e5,_0x570f0b){return _0x2274e5!==_0x570f0b;},'DXRTN':_0x4e08bf(0xc4c),'qPzzm':_0x3e2c8c(0xc3d),'elKIa':function(_0x166dfa,_0x3be66a,_0x8e70a6){return _0x166dfa(_0x3be66a,_0x8e70a6);},'VKUnf':function(_0x9d5779,_0x557457,_0x3d5650){return _0x9d5779(_0x557457,_0x3d5650);},'fHqrb':function(_0x3f2315){return _0x3f2315();},'DRtie':_0x3e2c8c(0x207)+_0x5ce4af(0x362)+_0x1ee292(0xc2b)+_0x1ee292(0x4a8)+_0x3e2c8c(0xb36)+'-','jEoGn':_0x5ce4af(0x207)+_0x24770a(0xbb0)+_0x4e08bf(0x7bb)+_0x24770a(0xa6f)+_0x5ce4af(0x581),'dMnyW':function(_0x58c2a1,_0x47ae13){return _0x58c2a1(_0x47ae13);},'QqMTJ':function(_0x3aa00b,_0x50c62f){return _0x3aa00b(_0x50c62f);},'jEJTV':_0x3e2c8c(0x284),'lQIkH':_0x3e2c8c(0xd74)+'pt'},_0x4c6877=(function(){const _0x2a477a=_0x5ce4af,_0x396bd8=_0x4e08bf,_0x29ae1c=_0x4e08bf,_0x2e1d71=_0x24770a,_0x23ad36=_0x24770a,_0x2a497c={'bVISE':function(_0x5bc37c,_0x5ecf8a,_0x11459f){const _0x1e48e3=_0x1a0d;return _0x54132b[_0x1e48e3(0x569)](_0x5bc37c,_0x5ecf8a,_0x11459f);},'hjLec':function(_0x4c18be,_0x42d842){const _0x8d8427=_0x1a0d;return _0x54132b[_0x8d8427(0x241)](_0x4c18be,_0x42d842);},'lxqFo':_0x54132b[_0x2a477a(0x5a7)],'YDZYx':function(_0x3788f8,_0xbc31c1){const _0x5365c7=_0x2a477a;return _0x54132b[_0x5365c7(0x367)](_0x3788f8,_0xbc31c1);},'wzGah':_0x54132b[_0x396bd8(0x388)],'iEBsT':function(_0x4d2963,_0x108b3d){const _0x32eb5c=_0x396bd8;return _0x54132b[_0x32eb5c(0xb95)](_0x4d2963,_0x108b3d);},'esTWH':function(_0xdb0d7d,_0x49a586){const _0x30afbb=_0x396bd8;return _0x54132b[_0x30afbb(0x53a)](_0xdb0d7d,_0x49a586);},'JcSwM':function(_0x3aad64,_0x3b623f){const _0x155aea=_0x2a477a;return _0x54132b[_0x155aea(0x241)](_0x3aad64,_0x3b623f);},'pSeLK':function(_0x19da1a,_0x46c288){const _0x52b3d6=_0x396bd8;return _0x54132b[_0x52b3d6(0x1a6)](_0x19da1a,_0x46c288);},'BiNmG':function(_0x43d174,_0x32240e){const _0x8cd0a6=_0x396bd8;return _0x54132b[_0x8cd0a6(0xc0f)](_0x43d174,_0x32240e);},'nAmpC':_0x54132b[_0x2a477a(0x395)],'vcUvV':_0x54132b[_0x2e1d71(0x9d2)],'nqcdO':_0x54132b[_0x2e1d71(0xc6f)],'uERrs':function(_0x197ac2,_0x2a9f56){const _0x54de74=_0x396bd8;return _0x54132b[_0x54de74(0x743)](_0x197ac2,_0x2a9f56);},'ZokVs':_0x54132b[_0x29ae1c(0xb05)],'FiVjt':_0x54132b[_0x2a477a(0xd29)],'BxPRU':function(_0x5a4a2a,_0x55e8f2){const _0x3efcf7=_0x29ae1c;return _0x54132b[_0x3efcf7(0x6cd)](_0x5a4a2a,_0x55e8f2);},'dbhcA':_0x54132b[_0x2e1d71(0x7bc)],'znPzh':function(_0x12e7b3,_0x295723){const _0x332dde=_0x2e1d71;return _0x54132b[_0x332dde(0x241)](_0x12e7b3,_0x295723);},'ffIYi':_0x54132b[_0x396bd8(0xca0)],'vAYqb':function(_0x3eff03,_0x1d7904){const _0x17f116=_0x396bd8;return _0x54132b[_0x17f116(0x88a)](_0x3eff03,_0x1d7904);},'KfVYc':_0x54132b[_0x2e1d71(0x93d)]};if(_0x54132b[_0x2a477a(0x3b4)](_0x54132b[_0x2e1d71(0x839)],_0x54132b[_0x396bd8(0x839)])){let _0x20e0d0=!![];return function(_0x2d62ba,_0x5aef8b){const _0x33d304=_0x23ad36,_0x7c71db=_0x396bd8,_0xb75632=_0x2a477a,_0x390891=_0x23ad36,_0x10dd3f=_0x396bd8,_0x5603a2={'SXJpt':function(_0x393a28,_0x5af380){const _0xf47302=_0x1a0d;return _0x2a497c[_0xf47302(0x38e)](_0x393a28,_0x5af380);},'uVzxf':function(_0xbba38a,_0xae68a0){const _0x3e9481=_0x1a0d;return _0x2a497c[_0x3e9481(0x4f5)](_0xbba38a,_0xae68a0);},'ollHy':function(_0x57a305,_0x51bcc3){const _0xebdf5f=_0x1a0d;return _0x2a497c[_0xebdf5f(0x850)](_0x57a305,_0x51bcc3);},'kVcWl':function(_0xceb062,_0x4569c0){const _0x4c3e34=_0x1a0d;return _0x2a497c[_0x4c3e34(0x211)](_0xceb062,_0x4569c0);},'OkDJh':function(_0x283b12,_0x401257){const _0x123c23=_0x1a0d;return _0x2a497c[_0x123c23(0x1cd)](_0x283b12,_0x401257);},'QioSx':function(_0x43d5cc,_0x3bf4d4){const _0x27ff30=_0x1a0d;return _0x2a497c[_0x27ff30(0x211)](_0x43d5cc,_0x3bf4d4);},'LlFiT':function(_0x1c81bc,_0x23d82e){const _0xa77325=_0x1a0d;return _0x2a497c[_0xa77325(0x4f5)](_0x1c81bc,_0x23d82e);},'sHRAV':function(_0x25b412,_0x4a5e7a){const _0x4dc993=_0x1a0d;return _0x2a497c[_0x4dc993(0x13a)](_0x25b412,_0x4a5e7a);},'JqSmu':_0x2a497c[_0x33d304(0xb4c)],'yeDTi':_0x2a497c[_0x7c71db(0xd10)],'Gqvaw':_0x2a497c[_0x33d304(0x6fb)]};if(_0x2a497c[_0xb75632(0xc8e)](_0x2a497c[_0x390891(0x450)],_0x2a497c[_0x10dd3f(0x4cc)])){const _0x5e0fb7=_0x20e0d0?function(){const _0x1545ff=_0x390891,_0xe7a125=_0xb75632,_0x26a09f=_0x33d304,_0x38861d=_0x10dd3f,_0xe64e08=_0x390891,_0x32cb9f={'EmFVJ':function(_0x1b2c31,_0x339055){const _0x238574=_0x1a0d;return _0x5603a2[_0x238574(0x315)](_0x1b2c31,_0x339055);},'glgOv':function(_0x2affec,_0x521000){const _0x262d5c=_0x1a0d;return _0x5603a2[_0x262d5c(0x81a)](_0x2affec,_0x521000);},'BdcTc':function(_0x2d3b13,_0x2f3953){const _0x3954dd=_0x1a0d;return _0x5603a2[_0x3954dd(0x9d0)](_0x2d3b13,_0x2f3953);},'KOkmJ':function(_0x253273,_0x28ddc5){const _0x23df4e=_0x1a0d;return _0x5603a2[_0x23df4e(0x9d0)](_0x253273,_0x28ddc5);},'lMmed':function(_0x51e63b,_0x4445e0){const _0x5dd690=_0x1a0d;return _0x5603a2[_0x5dd690(0x9d0)](_0x51e63b,_0x4445e0);},'raLZI':function(_0x80c079,_0x4f4d41){const _0x287a84=_0x1a0d;return _0x5603a2[_0x287a84(0xd26)](_0x80c079,_0x4f4d41);},'jbKPz':function(_0x3bd7f7,_0x524501){const _0x20f48f=_0x1a0d;return _0x5603a2[_0x20f48f(0xb3e)](_0x3bd7f7,_0x524501);},'vlrao':function(_0x50d4cd,_0x15cc6a){const _0x185b3d=_0x1a0d;return _0x5603a2[_0x185b3d(0x369)](_0x50d4cd,_0x15cc6a);}};if(_0x5603a2[_0x1545ff(0x493)](_0x5603a2[_0xe7a125(0xd7f)],_0x5603a2[_0xe7a125(0x706)])){if(_0x32cb9f[_0xe7a125(0x957)](_0x9feeb6[_0xe64e08(0x15d)+'Of'](_0x47d0e0[_0x102154][0xf74*-0x2+-0x1*0xf07+-0x30*-0xf5]),-(0x10*-0xb9+0x912+0x27f)))_0x264569[_0xe64e08(0x8f4)+'ft'](_0x32cb9f[_0xe64e08(0xbd4)](_0x32cb9f[_0x38861d(0xbd4)](_0x32cb9f[_0xe7a125(0xc57)](_0x32cb9f[_0x26a09f(0x2a8)](_0x32cb9f[_0x26a09f(0x2a8)](_0x32cb9f[_0x1545ff(0xa90)](_0x32cb9f[_0xe64e08(0xc57)](_0x32cb9f[_0xe64e08(0x8a3)]('第',_0x32cb9f[_0x1545ff(0xa74)](_0x5abbb2,_0xbc1d80[_0x34b289][-0x20*0x8d+0xf41+0x1*0x25f])),'页'),_0xdb6512[_0x2a96e1][-0xd0a*-0x1+-0x25e9+-0x84b*-0x3]),'第'),_0x32cb9f[_0x26a09f(0xc1e)](_0xc36110,_0x3f745c[_0x1ad949][-0x11*-0x71+0x2f*-0x5d+0x1*0x995])),'行:'),_0x5d4c2d[_0x1c9ef3][-0x15a*0x10+0xfa9+0xbf*0x8]),'\x0a'));}else{if(_0x5aef8b){if(_0x5603a2[_0x38861d(0x493)](_0x5603a2[_0xe64e08(0x463)],_0x5603a2[_0x38861d(0x463)])){const _0x2b3a42=_0x5aef8b[_0x38861d(0x78d)](_0x2d62ba,arguments);return _0x5aef8b=null,_0x2b3a42;}else{_0x417ba9=_0x5603a2[_0xe64e08(0x397)](_0x360e87,0x3af+0x1*-0x17ff+0x7*0x2e7);if(!_0x394fa3)throw _0x175c7c;return _0x5603a2[_0x38861d(0x369)](_0x109002,-0x17b6*0x1+-0xe34+0xf3*0x2a)[_0x26a09f(0xae6)](()=>_0x5276ab(_0xdd3c81,_0x870dc8,_0x19a4ed));}}}}:function(){};return _0x20e0d0=![],_0x5e0fb7;}else{_0x35ad11=_0x38609f[_0x33d304(0x5a2)](_0x1ed302)[0x14b7*0x1+-0x23d8+0xf21*0x1],_0x2a497c[_0x7c71db(0x98f)](_0x4f8e45,_0x2a497c[_0x390891(0x2ed)](_0x2a497c[_0x10dd3f(0x97b)],_0x2a497c[_0x7c71db(0x4f5)](_0x312591,_0x235d50)),_0x2a497c[_0x390891(0xaea)]);return;}};}else{if(_0x2a497c[_0x23ad36(0x744)](_0x2a497c[_0x2a477a(0x4f5)](_0x360ced,_0x2e73da)[_0x2e1d71(0x1d9)+'h'],-0x124a*-0x1+0xbcc+0xb3*-0x2b))_0x4eb5fb[_0x396bd8(0xac5)+_0x2e1d71(0x8b0)+_0x396bd8(0x372)](_0x2a497c[_0x29ae1c(0x96b)])[_0x2e1d71(0xc4b)+_0x396bd8(0x858)]+=_0x2a497c[_0x396bd8(0x211)](_0x2a497c[_0x23ad36(0x6c5)](_0x2a497c[_0x23ad36(0x938)],_0x2a497c[_0x2e1d71(0xa7a)](_0x4d2f9a,_0x363760)),_0x2a497c[_0x396bd8(0x1fd)]);}}()),_0x3d8190=_0x54132b[_0x3e2c8c(0x24e)](_0x4c6877,this,function(){const _0x3ba774=_0x1ee292,_0xaa2e51=_0x5ce4af,_0x4317a0=_0x4e08bf,_0x3788bf=_0x3e2c8c,_0x32958a=_0x3e2c8c;if(_0x54132b[_0x3ba774(0x743)](_0x54132b[_0xaa2e51(0xc2a)],_0x54132b[_0x3ba774(0xc2a)])){const _0x46aa19=aOJwCo[_0xaa2e51(0x367)](_0x3cc3e5,aOJwCo[_0x32958a(0x1a6)](aOJwCo[_0x3ba774(0x1a6)](aOJwCo[_0x3788bf(0x9cd)],aOJwCo[_0x3788bf(0xd13)]),');'));_0x425296=aOJwCo[_0x4317a0(0x394)](_0x46aa19);}else return _0x3d8190[_0xaa2e51(0xccf)+_0x3ba774(0xac6)]()[_0x3ba774(0x334)+'h'](_0x54132b[_0x4317a0(0x32a)])[_0x32958a(0xccf)+_0xaa2e51(0xac6)]()[_0x3788bf(0x3e2)+_0xaa2e51(0x2b9)+'r'](_0x3d8190)[_0x4317a0(0x334)+'h'](_0x54132b[_0x3ba774(0x32a)]);});_0x54132b[_0x1ee292(0x1ca)](_0x3d8190);const _0x3f5527=(function(){const _0x3fc5c3=_0x5ce4af,_0x178bb3=_0x3e2c8c,_0x51920c=_0x1ee292,_0x307284=_0x24770a,_0x48a600=_0x4e08bf,_0x20bbf8={'LPjmL':_0x54132b[_0x3fc5c3(0x7f3)],'FgdvS':_0x54132b[_0x3fc5c3(0xbf1)],'OTCLQ':function(_0x560ce0,_0x2793b4){const _0x1e5d86=_0x178bb3;return _0x54132b[_0x1e5d86(0x7f6)](_0x560ce0,_0x2793b4);},'EQTzo':_0x54132b[_0x3fc5c3(0x7c1)],'ZHPyp':function(_0x2c420a,_0x45cb3d){const _0x1992b9=_0x178bb3;return _0x54132b[_0x1992b9(0x241)](_0x2c420a,_0x45cb3d);},'FsQxM':_0x54132b[_0x178bb3(0x170)],'TXfnV':_0x54132b[_0x3fc5c3(0x27c)],'eXyiG':function(_0x5c96d8,_0xfb9e37){const _0x555f79=_0x48a600;return _0x54132b[_0x555f79(0x367)](_0x5c96d8,_0xfb9e37);},'eDJwz':function(_0x19e01f){const _0x1b60aa=_0x48a600;return _0x54132b[_0x1b60aa(0x394)](_0x19e01f);},'znudC':function(_0x3b73e1,_0x544d31){const _0x3168a7=_0x178bb3;return _0x54132b[_0x3168a7(0xa60)](_0x3b73e1,_0x544d31);},'iIhbc':_0x54132b[_0x48a600(0xd22)],'ufEkP':_0x54132b[_0x51920c(0xd4c)],'cwzbH':function(_0xa6c880,_0x7e531){const _0x2b2b13=_0x3fc5c3;return _0x54132b[_0x2b2b13(0x313)](_0xa6c880,_0x7e531);},'jizQL':_0x54132b[_0x48a600(0x192)],'rGJQw':function(_0x229862,_0x12407f){const _0x1c6ff0=_0x3fc5c3;return _0x54132b[_0x1c6ff0(0x313)](_0x229862,_0x12407f);},'MDyWY':_0x54132b[_0x3fc5c3(0x8c9)],'anTfk':_0x54132b[_0x3fc5c3(0xd46)],'zOHjw':_0x54132b[_0x48a600(0x200)]};if(_0x54132b[_0x48a600(0x5d6)](_0x54132b[_0x178bb3(0x443)],_0x54132b[_0x3fc5c3(0x443)])){let _0xbe9f4f=!![];return function(_0x1ae4b8,_0x5a3ea0){const _0x46cbae=_0x51920c,_0x1dfff4=_0x48a600,_0xb6d01d=_0x178bb3;if(_0x20bbf8[_0x46cbae(0x966)](_0x20bbf8[_0x46cbae(0x935)],_0x20bbf8[_0x1dfff4(0xa6a)])){const _0x2e5042=_0xbe9f4f?function(){const _0x2b10fd=_0xb6d01d,_0x99f2f=_0x1dfff4,_0x30492a=_0x1dfff4,_0x277b60=_0x46cbae,_0x486b2e=_0x1dfff4,_0x3414bd={'uyFUr':_0x20bbf8[_0x2b10fd(0x3bf)],'VrTaG':_0x20bbf8[_0x99f2f(0xc4d)],'fuQIn':function(_0x1ba20c,_0x3ae6d4){const _0x1c5f53=_0x2b10fd;return _0x20bbf8[_0x1c5f53(0xd45)](_0x1ba20c,_0x3ae6d4);},'zLlSn':_0x20bbf8[_0x30492a(0xcb2)],'oPNpg':function(_0x5cf478,_0x33b40d){const _0x2e9c3d=_0x2b10fd;return _0x20bbf8[_0x2e9c3d(0x8a9)](_0x5cf478,_0x33b40d);},'bwDzz':_0x20bbf8[_0x99f2f(0x751)],'UkGBa':function(_0x3ffd76,_0x12f4f3){const _0x45df0e=_0x99f2f;return _0x20bbf8[_0x45df0e(0x8a9)](_0x3ffd76,_0x12f4f3);},'nXYhA':_0x20bbf8[_0x277b60(0x6f9)],'OhqnB':function(_0x23b2ca,_0x46f665){const _0x4095aa=_0x2b10fd;return _0x20bbf8[_0x4095aa(0x633)](_0x23b2ca,_0x46f665);},'VmGcg':function(_0x1f0907){const _0x398351=_0x2b10fd;return _0x20bbf8[_0x398351(0xc01)](_0x1f0907);}};if(_0x20bbf8[_0x99f2f(0x7b8)](_0x20bbf8[_0x30492a(0x137)],_0x20bbf8[_0x2b10fd(0x1f7)])){const _0x2ec8a3=new _0x5bdee8(fmJsBd[_0x277b60(0x459)]),_0x11f4b1=new _0x2c75bb(fmJsBd[_0x30492a(0x1ad)],'i'),_0x29612b=fmJsBd[_0x2b10fd(0x18f)](_0x275cfa,fmJsBd[_0x99f2f(0xa86)]);!_0x2ec8a3[_0x2b10fd(0x53d)](fmJsBd[_0x30492a(0x580)](_0x29612b,fmJsBd[_0x277b60(0xc1b)]))||!_0x11f4b1[_0x30492a(0x53d)](fmJsBd[_0x99f2f(0x8df)](_0x29612b,fmJsBd[_0x30492a(0xbfa)]))?fmJsBd[_0x486b2e(0xaf0)](_0x29612b,'0'):fmJsBd[_0x277b60(0x8c8)](_0x5c6c3c);}else{if(_0x5a3ea0){if(_0x20bbf8[_0x30492a(0x7b9)](_0x20bbf8[_0x486b2e(0x991)],_0x20bbf8[_0x2b10fd(0x991)]))return-(0x1*-0x1c16+-0x761+0x2378);else{const _0x25c145=_0x5a3ea0[_0x277b60(0x78d)](_0x1ae4b8,arguments);return _0x5a3ea0=null,_0x25c145;}}}}:function(){};return _0xbe9f4f=![],_0x2e5042;}else _0x5b530d='图片';};}else _0x1fe411[_0x307284(0x7cb)](_0x20bbf8[_0x48a600(0x6f5)],_0x59622e);}());(function(){const _0x29013e=_0x3e2c8c,_0x3524a0=_0x24770a,_0x224216=_0x4e08bf,_0x360d60=_0x5ce4af,_0x10f4ed=_0x4e08bf,_0x29ee85={'ClxXH':function(_0x50e9c0,_0x544b8f){const _0x70a5ec=_0x1a0d;return _0x54132b[_0x70a5ec(0x6c9)](_0x50e9c0,_0x544b8f);},'nOwbS':_0x54132b[_0x29013e(0x5c8)],'rqTLa':_0x54132b[_0x29013e(0x7f3)],'Lcqhp':_0x54132b[_0x224216(0xbf1)],'WPcMf':function(_0x2f8c88,_0x8e10a1){const _0x39ec88=_0x3524a0;return _0x54132b[_0x39ec88(0x88a)](_0x2f8c88,_0x8e10a1);},'ruSlr':_0x54132b[_0x360d60(0x7c1)],'qqaON':function(_0x275936,_0x2045a2){const _0x1d1c64=_0x3524a0;return _0x54132b[_0x1d1c64(0xcaa)](_0x275936,_0x2045a2);},'dtOJG':_0x54132b[_0x3524a0(0x170)],'FiWEL':function(_0x37f88c,_0x5c1fec){const _0x5a744a=_0x224216;return _0x54132b[_0x5a744a(0xcaa)](_0x37f88c,_0x5c1fec);},'tnLHW':_0x54132b[_0x29013e(0x27c)],'fkiyS':function(_0x2a6260,_0x48710e){const _0x334a3b=_0x3524a0;return _0x54132b[_0x334a3b(0xa60)](_0x2a6260,_0x48710e);},'nrmKQ':_0x54132b[_0x360d60(0x3d2)],'KJZzp':function(_0x18877e,_0x164ab0){const _0x2ff9f0=_0x224216;return _0x54132b[_0x2ff9f0(0x632)](_0x18877e,_0x164ab0);},'emJEI':_0x54132b[_0x360d60(0xad5)],'EGIIf':function(_0x18309c){const _0x1417d9=_0x224216;return _0x54132b[_0x1417d9(0x394)](_0x18309c);}};if(_0x54132b[_0x29013e(0x6c9)](_0x54132b[_0x224216(0xa30)],_0x54132b[_0x224216(0xa30)]))try{_0x3aabd9=_0x3e9304[_0x29013e(0x90c)](_0x54132b[_0x224216(0x241)](_0x24fce6,_0x33318f))[_0x54132b[_0x29013e(0xd12)]],_0x2d1af5='';}catch(_0x3ae3da){_0x1c23a5=_0x3fadc9[_0x29013e(0x90c)](_0x32e0fa)[_0x54132b[_0x360d60(0xd12)]],_0x364096='';}else _0x54132b[_0x3524a0(0x569)](_0x3f5527,this,function(){const _0x45ea9f=_0x29013e,_0x1f39af=_0x29013e,_0x339a34=_0x29013e,_0xa235c2=_0x3524a0,_0x2d74eb=_0x360d60;if(_0x29ee85[_0x45ea9f(0x8cb)](_0x29ee85[_0x45ea9f(0xa1a)],_0x29ee85[_0x45ea9f(0xa1a)])){const _0x2619f3=_0x3cd071?function(){const _0x11e7c6=_0x339a34;if(_0xdba7e5){const _0x4c7de7=_0x5adb3c[_0x11e7c6(0x78d)](_0x16145b,arguments);return _0x1af865=null,_0x4c7de7;}}:function(){};return _0x65076b=![],_0x2619f3;}else{const _0x3e9b1c=new RegExp(_0x29ee85[_0x339a34(0xa91)]),_0x525f57=new RegExp(_0x29ee85[_0x45ea9f(0x9e4)],'i'),_0xd657d8=_0x29ee85[_0x2d74eb(0x18e)](_0x457fe2,_0x29ee85[_0x45ea9f(0x1ab)]);!_0x3e9b1c[_0x339a34(0x53d)](_0x29ee85[_0xa235c2(0x770)](_0xd657d8,_0x29ee85[_0x2d74eb(0x160)]))||!_0x525f57[_0x2d74eb(0x53d)](_0x29ee85[_0x1f39af(0xc49)](_0xd657d8,_0x29ee85[_0x2d74eb(0x21b)]))?_0x29ee85[_0x1f39af(0xd2b)](_0x29ee85[_0x45ea9f(0x867)],_0x29ee85[_0xa235c2(0x867)])?_0x29ee85[_0x45ea9f(0x18e)](_0xd657d8,'0'):_0x4c625d+=_0x5d5c25[_0x2d74eb(0x1a9)+_0xa235c2(0xa69)+_0x45ea9f(0x4d5)](_0x3afd3d[_0x3f9057]):_0x29ee85[_0xa235c2(0x323)](_0x29ee85[_0x45ea9f(0x55f)],_0x29ee85[_0x45ea9f(0x55f)])?_0x29ee85[_0xa235c2(0xaf7)](_0x457fe2):_0xdff046+=_0x1b1a49;}})();}());const _0xd80cb3=(function(){const _0x353100=_0x1ee292,_0x3e70eb=_0x3e2c8c,_0x26446d=_0x3e2c8c,_0x89b4ae=_0x3e2c8c,_0xcd67f6=_0x4e08bf,_0x11c70c={'psVdy':function(_0x43c4c0,_0x2f2ae1){const _0xfdb90d=_0x1a0d;return _0x54132b[_0xfdb90d(0x241)](_0x43c4c0,_0x2f2ae1);},'RCOJe':_0x54132b[_0x353100(0xd12)],'TqwfN':function(_0x52f829,_0x53f9c0){const _0x96a0c0=_0x353100;return _0x54132b[_0x96a0c0(0xc48)](_0x52f829,_0x53f9c0);},'pGpIg':function(_0x59d7d6,_0x428d34){const _0x101655=_0x353100;return _0x54132b[_0x101655(0xd1b)](_0x59d7d6,_0x428d34);},'lrYgA':function(_0x2d4c07,_0x52085f){const _0x44f4b7=_0x353100;return _0x54132b[_0x44f4b7(0x559)](_0x2d4c07,_0x52085f);},'UVLFs':_0x54132b[_0x353100(0x26b)],'QDJtL':_0x54132b[_0x3e70eb(0x4c4)],'mhiKC':function(_0x12b030,_0x300d14){const _0xed9a7a=_0x3e70eb;return _0x54132b[_0xed9a7a(0x313)](_0x12b030,_0x300d14);},'fzrpz':_0x54132b[_0x3e70eb(0x28b)],'mNGYV':_0x54132b[_0x3e70eb(0x837)],'iCsqp':_0x54132b[_0xcd67f6(0x926)],'OPhCX':_0x54132b[_0x3e70eb(0x8ab)],'mUGXo':function(_0x41e412,_0x42d1bc){const _0x1d1c3e=_0x3e70eb;return _0x54132b[_0x1d1c3e(0xb95)](_0x41e412,_0x42d1bc);},'wyDQp':function(_0x3b752e,_0x4106c1){const _0x23cb4d=_0x3e70eb;return _0x54132b[_0x23cb4d(0x367)](_0x3b752e,_0x4106c1);},'XPFWc':function(_0x56630f,_0x43341d){const _0x1ee93e=_0x3e70eb;return _0x54132b[_0x1ee93e(0xbe1)](_0x56630f,_0x43341d);},'cUHcj':_0x54132b[_0x3e70eb(0x4ce)],'DNVbJ':_0x54132b[_0xcd67f6(0x98b)],'dWsDF':_0x54132b[_0xcd67f6(0x333)],'amDSL':_0x54132b[_0x3e70eb(0x620)],'bbaMf':_0x54132b[_0x353100(0xb33)]};if(_0x54132b[_0xcd67f6(0x743)](_0x54132b[_0xcd67f6(0x722)],_0x54132b[_0x89b4ae(0x722)]))_0x35804a=_0x4de87b[_0x353100(0x90c)](_0x11c70c[_0x3e70eb(0x72e)](_0x56826a,_0x496e25))[_0x11c70c[_0xcd67f6(0x9ce)]],_0x27c268='';else{let _0x38ac1b=!![];return function(_0x1a509c,_0xc68110){const _0x38f23b=_0xcd67f6,_0x326c5f=_0x89b4ae,_0x76c018=_0x26446d,_0x2d4d27=_0xcd67f6,_0x59f7d4=_0x353100,_0x46ab68={'mGlPZ':_0x11c70c[_0x38f23b(0x5bd)],'qlImw':_0x11c70c[_0x326c5f(0x391)],'EQNdM':function(_0x293c5e,_0x2d9b83){const _0x291876=_0x326c5f;return _0x11c70c[_0x291876(0x1c0)](_0x293c5e,_0x2d9b83);},'eOQMu':function(_0xf77d1f,_0x92c63a){const _0x506682=_0x326c5f;return _0x11c70c[_0x506682(0x8a0)](_0xf77d1f,_0x92c63a);},'JgyKf':function(_0x9f0c07,_0x94de8f){const _0x37d5b=_0x38f23b;return _0x11c70c[_0x37d5b(0x861)](_0x9f0c07,_0x94de8f);},'YeEVr':_0x11c70c[_0x326c5f(0xbba)],'WuVjt':_0x11c70c[_0x38f23b(0x917)],'kalNJ':_0x11c70c[_0x2d4d27(0x5be)],'ydkUy':_0x11c70c[_0x76c018(0x57c)]};if(_0x11c70c[_0x38f23b(0xbbe)](_0x11c70c[_0x38f23b(0x68f)],_0x11c70c[_0x38f23b(0x68f)])){const _0x142b0f=_0x46ab68[_0x76c018(0xb17)],_0x3bb38f=_0x46ab68[_0x2d4d27(0x9f6)],_0x3308b5=_0x365c63[_0x38f23b(0x9b7)+_0x59f7d4(0x548)](_0x142b0f[_0x76c018(0x1d9)+'h'],_0x46ab68[_0x76c018(0x8f1)](_0x11c0fc[_0x59f7d4(0x1d9)+'h'],_0x3bb38f[_0x76c018(0x1d9)+'h'])),_0x1b9f81=_0x46ab68[_0x326c5f(0x6ac)](_0x1e3bbf,_0x3308b5),_0x14caf0=_0x46ab68[_0x38f23b(0x870)](_0x37e281,_0x1b9f81);return _0x3d51b0[_0x2d4d27(0x4eb)+'e'][_0x2d4d27(0xa67)+_0x59f7d4(0xbfc)](_0x46ab68[_0x76c018(0xa33)],_0x14caf0,{'name':_0x46ab68[_0x38f23b(0xb87)],'hash':_0x46ab68[_0x326c5f(0x7d7)]},!![],[_0x46ab68[_0x38f23b(0x34c)]]);}else{const _0x271ab9=_0x38ac1b?function(){const _0x53d401=_0x2d4d27,_0x9f2ece=_0x326c5f,_0x192d2e=_0x2d4d27,_0x42f79f=_0x59f7d4,_0x54e4cd=_0x76c018,_0x259353={'GCNao':function(_0x502550,_0x60a4f0){const _0x5dec51=_0x1a0d;return _0x11c70c[_0x5dec51(0x69d)](_0x502550,_0x60a4f0);},'veocm':function(_0x18c787,_0x1a7a1f){const _0x2192a6=_0x1a0d;return _0x11c70c[_0x2192a6(0xced)](_0x18c787,_0x1a7a1f);}};if(_0x11c70c[_0x53d401(0x70a)](_0x11c70c[_0x9f2ece(0x15a)],_0x11c70c[_0x192d2e(0x14f)])){if(_0xc68110){if(_0x11c70c[_0x192d2e(0xbbe)](_0x11c70c[_0x192d2e(0x5c3)],_0x11c70c[_0x53d401(0x713)])){const _0x20d78f=_0xc68110[_0x192d2e(0x78d)](_0x1a509c,arguments);return _0xc68110=null,_0x20d78f;}else _0x518f96+=_0x259353[_0x54e4cd(0x3cd)](_0x321e4b[_0x1bee55],_0x39c9a2[_0x4e2832]),_0x174873+=_0x259353[_0x9f2ece(0x1ff)](_0xef8190[_0x3306b6],-0x2336+-0x208a+0x43c2),_0x4f2af3+=_0x259353[_0x53d401(0x1ff)](_0x50b5ed[_0x5c88cc],0xc81+0x8*0x34b+-0xa3*0x3d);}}else _0x2dea2a+=_0x4bdedd[0x2156+0x1593+0x36e9*-0x1][_0x53d401(0xcb8)][_0x42f79f(0x47f)+'nt'];}:function(){};return _0x38ac1b=![],_0x271ab9;}};}}()),_0x1e3865=_0x54132b[_0x1ee292(0x752)](_0xd80cb3,this,function(){const _0x3d8fd8=_0x5ce4af,_0x2c03cf=_0x5ce4af,_0x5f2b0e=_0x5ce4af,_0x81c782=_0x24770a,_0xf8571c=_0x24770a;if(_0x54132b[_0x3d8fd8(0x3b4)](_0x54132b[_0x2c03cf(0x64b)],_0x54132b[_0x2c03cf(0x6db)]))_0x4b47e2[_0x2c03cf(0x35e)]([_0x3ede3c[_0xf8571c(0xb7e)+'ge'],_0x2187fb,_0x149fc2,_0x5b9f7b]),_0xfeab93='',_0x3ad80c='';else{let _0x2f0a9f;try{if(_0x54132b[_0x2c03cf(0x327)](_0x54132b[_0x5f2b0e(0x720)],_0x54132b[_0x2c03cf(0x3c2)])){if(_0x4c0eeb){const _0x3df627=_0x121c9e[_0x5f2b0e(0x78d)](_0x1ea0d6,arguments);return _0x1cce7c=null,_0x3df627;}}else{const _0x49747e=_0x54132b[_0x81c782(0x452)](Function,_0x54132b[_0x2c03cf(0x30f)](_0x54132b[_0x2c03cf(0x7d4)](_0x54132b[_0x5f2b0e(0x9cd)],_0x54132b[_0x5f2b0e(0xd13)]),');'));_0x2f0a9f=_0x54132b[_0xf8571c(0x1ca)](_0x49747e);}}catch(_0x371f26){_0x54132b[_0x81c782(0xa7f)](_0x54132b[_0x81c782(0x924)],_0x54132b[_0xf8571c(0x924)])?(_0x1fc319=_0x55c416[_0x3d8fd8(0x3a2)+_0x81c782(0x37d)+'t'],_0x4a80cf[_0x81c782(0x4be)+'e']()):_0x2f0a9f=window;}const _0x36c492=_0x2f0a9f[_0x2c03cf(0x7f5)+'le']=_0x2f0a9f[_0x2c03cf(0x7f5)+'le']||{},_0x22f92f=[_0x54132b[_0x3d8fd8(0xa19)],_0x54132b[_0x3d8fd8(0xbdd)],_0x54132b[_0x3d8fd8(0x6f0)],_0x54132b[_0x2c03cf(0x9e3)],_0x54132b[_0xf8571c(0x588)],_0x54132b[_0x81c782(0xa3e)],_0x54132b[_0xf8571c(0xc37)]];for(let _0x26f8f5=0x18c*-0x12+0x100e+-0x2*-0x5e5;_0x54132b[_0x2c03cf(0x51b)](_0x26f8f5,_0x22f92f[_0x3d8fd8(0x1d9)+'h']);_0x26f8f5++){if(_0x54132b[_0x3d8fd8(0x482)](_0x54132b[_0x81c782(0x3cb)],_0x54132b[_0x3d8fd8(0x4ae)])){const _0x45418a=_0xd80cb3[_0xf8571c(0x3e2)+_0x3d8fd8(0x2b9)+'r'][_0x3d8fd8(0x684)+_0x81c782(0xb52)][_0x3d8fd8(0x7ff)](_0xd80cb3),_0x48f3b2=_0x22f92f[_0x26f8f5],_0x195a6d=_0x36c492[_0x48f3b2]||_0x45418a;_0x45418a[_0x3d8fd8(0x43b)+_0x3d8fd8(0x995)]=_0xd80cb3[_0x81c782(0x7ff)](_0xd80cb3),_0x45418a[_0xf8571c(0xccf)+_0x3d8fd8(0xac6)]=_0x195a6d[_0xf8571c(0xccf)+_0x5f2b0e(0xac6)][_0x2c03cf(0x7ff)](_0x195a6d),_0x36c492[_0x48f3b2]=_0x45418a;}else return-(-0x1a55+-0x1fe2+-0x6*-0x9b4);}}});_0x54132b[_0x4e08bf(0x613)](_0x1e3865);const _0x2cbb54=_0x54132b[_0x5ce4af(0x1e9)],_0x4a4b29=_0x54132b[_0x1ee292(0x4b9)],_0xccc64d=_0x33e8ab[_0x4e08bf(0x9b7)+_0x5ce4af(0x548)](_0x2cbb54[_0x1ee292(0x1d9)+'h'],_0x54132b[_0x3e2c8c(0xb95)](_0x33e8ab[_0x3e2c8c(0x1d9)+'h'],_0x4a4b29[_0x1ee292(0x1d9)+'h'])),_0x43cc7a=_0x54132b[_0x1ee292(0xc82)](atob,_0xccc64d),_0x119b26=_0x54132b[_0x24770a(0x5f1)](stringToArrayBuffer,_0x43cc7a);return crypto[_0x1ee292(0x4eb)+'e'][_0x3e2c8c(0xa67)+_0x3e2c8c(0xbfc)](_0x54132b[_0x5ce4af(0x797)],_0x119b26,{'name':_0x54132b[_0x1ee292(0x98b)],'hash':_0x54132b[_0x4e08bf(0x333)]},!![],[_0x54132b[_0x4e08bf(0x57b)]]);}function encryptDataWithPublicKey(_0x200029,_0x58e224){const _0x402319=_0x1a0d,_0x3b2771=_0x1a0d,_0x42c53b=_0x1a0d,_0x25b22a=_0x1a0d,_0x8aff52=_0x1a0d,_0x14c2d8={'CetUP':function(_0x5e2443,_0x36a347){return _0x5e2443!==_0x36a347;},'LIcPC':_0x402319(0xb64),'TngYz':function(_0x31e0c8,_0x3b92a8){return _0x31e0c8(_0x3b92a8);},'XvhoS':_0x402319(0x585)+_0x3b2771(0x33d)};try{if(_0x14c2d8[_0x402319(0xab8)](_0x14c2d8[_0x8aff52(0x4dc)],_0x14c2d8[_0x3b2771(0x4dc)]))return-(0x25db+-0x911+-0x1cc9);else{_0x200029=_0x14c2d8[_0x3b2771(0x3ed)](stringToArrayBuffer,_0x200029);const _0x23b57c={};return _0x23b57c[_0x3b2771(0x798)]=_0x14c2d8[_0x8aff52(0x554)],crypto[_0x42c53b(0x4eb)+'e'][_0x25b22a(0xd74)+'pt'](_0x23b57c,_0x58e224,_0x200029);}}catch(_0x561402){}}function decryptDataWithPrivateKey(_0x8cd69d,_0x3e911f){const _0xb024d0=_0x1a0d,_0xcc4ffb=_0x1a0d,_0x514f81=_0x1a0d,_0x51ad66=_0x1a0d,_0x1a1d98=_0x1a0d,_0x4bb9c8={'nKwzp':function(_0x517dc9,_0x247df1){return _0x517dc9(_0x247df1);},'tOIAu':_0xb024d0(0x585)+_0xcc4ffb(0x33d)};_0x8cd69d=_0x4bb9c8[_0xcc4ffb(0x2f1)](stringToArrayBuffer,_0x8cd69d);const _0x4f5f98={};return _0x4f5f98[_0xb024d0(0x798)]=_0x4bb9c8[_0x1a1d98(0x86b)],crypto[_0x514f81(0x4eb)+'e'][_0x1a1d98(0x165)+'pt'](_0x4f5f98,_0x3e911f,_0x8cd69d);}function _0x1a0d(_0x50e75d,_0x457fe2){const _0x4ae240=_0x572a();return _0x1a0d=function(_0x322a7b,_0x3ef48e){_0x322a7b=_0x322a7b-(-0x1*0x236f+0x1817+0xc8d);let _0x348619=_0x4ae240[_0x322a7b];return _0x348619;},_0x1a0d(_0x50e75d,_0x457fe2);}const pubkey=_0xf9acf4(0x207)+_0xf9acf4(0x362)+_0x51c145(0xc2b)+_0x51c145(0x4a8)+_0x51c145(0xb36)+_0x135ea1(0x6f1)+_0x42e93c(0xb9e)+_0x135ea1(0x296)+_0x51c145(0x2e9)+_0x51c145(0x3e9)+_0x135ea1(0xb16)+_0x51c145(0xbce)+_0xf9acf4(0x5f3)+_0x42e93c(0x2f7)+_0x135ea1(0x772)+_0x135ea1(0xd08)+_0x135ea1(0xa08)+_0x42e93c(0x178)+_0x42e93c(0x190)+_0x5aec22(0x2cd)+_0x51c145(0x440)+_0x135ea1(0xd76)+_0x42e93c(0xd30)+_0xf9acf4(0x236)+_0x5aec22(0x63c)+_0x5aec22(0x66b)+_0x135ea1(0x447)+_0x5aec22(0xad6)+_0x51c145(0xcb7)+_0x51c145(0x947)+_0xf9acf4(0xb08)+_0x51c145(0x9a5)+_0x42e93c(0xc2d)+_0x5aec22(0x51d)+_0x135ea1(0x568)+_0x51c145(0x863)+_0xf9acf4(0x898)+_0x135ea1(0x38c)+_0x5aec22(0x9e9)+_0xf9acf4(0x615)+_0x135ea1(0x58d)+_0xf9acf4(0x3cf)+_0x5aec22(0x4e1)+_0x135ea1(0xb50)+_0xf9acf4(0x2d2)+_0x42e93c(0xa2b)+_0x51c145(0x4b8)+_0x51c145(0x305)+_0x51c145(0x528)+_0x135ea1(0x6b1)+_0x135ea1(0xa51)+_0x5aec22(0x468)+_0x135ea1(0x899)+_0x42e93c(0x954)+_0x5aec22(0xa40)+_0x135ea1(0x59f)+_0x42e93c(0x145)+_0xf9acf4(0x169)+_0x42e93c(0x7ed)+_0x135ea1(0x252)+_0x42e93c(0xd2f)+_0x135ea1(0x997)+_0x5aec22(0x70e)+_0x51c145(0x1ac)+_0x51c145(0xae5)+_0x135ea1(0x1f4)+_0xf9acf4(0x448)+_0x51c145(0x1a5)+_0xf9acf4(0xcc1)+_0xf9acf4(0xb7b)+_0xf9acf4(0xaec)+_0x51c145(0x99e)+_0x51c145(0x6ed)+_0x5aec22(0xbf6)+_0x42e93c(0x7b5)+_0x51c145(0x705)+_0x42e93c(0x453)+_0x5aec22(0x8bd)+_0xf9acf4(0xa52)+_0x42e93c(0x996)+_0x51c145(0x3f5)+_0x42e93c(0x392)+_0x135ea1(0xd27)+_0x42e93c(0x364)+_0xf9acf4(0x72b)+_0x51c145(0x601)+_0xf9acf4(0x6e3)+_0x51c145(0x7a4)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x36e2af){const _0x552d5a=_0x42e93c,_0x559b9e=_0x51c145,_0x5273b6={'gUAGR':function(_0x29a45b,_0x15ab00){return _0x29a45b(_0x15ab00);},'gOXMk':function(_0x2cebfd,_0x80e6ab){return _0x2cebfd(_0x80e6ab);}};return _0x5273b6[_0x552d5a(0xbab)](btoa,_0x5273b6[_0x559b9e(0x75a)](encodeURIComponent,_0x36e2af));}var word_last=[];(function(){const _0x50d63f=_0x5aec22,_0x70f748=_0x42e93c,_0x54d651=_0x51c145,_0x36e051=_0x51c145,_0x2234bc=_0x42e93c,_0x35aa11={'XWYAa':_0x50d63f(0xaae)+_0x50d63f(0x37a),'rwCKY':_0x54d651(0x60f)+_0x70f748(0x215)+'t','RMAGS':_0x36e051(0x33b),'VwcWQ':_0x2234bc(0x99b)+_0x50d63f(0x75e),'dUwrZ':_0x70f748(0xacd)+_0x54d651(0x6a7)+_0x36e051(0x967)+_0x54d651(0x9b4)+_0x2234bc(0xb39)+_0x54d651(0xa71)+_0x50d63f(0xcd1)+_0x36e051(0x39b)+_0x70f748(0x85c)+_0x36e051(0x304)+_0x54d651(0x3c0)+_0x70f748(0x6c7)+_0x54d651(0x2bb),'zosze':function(_0x1d78d5,_0x37487c){return _0x1d78d5+_0x37487c;},'ralUH':_0x2234bc(0x2c9)+_0x50d63f(0xb98)+_0x70f748(0x4bd),'FLhix':function(_0x20d359,_0x2e5c39){return _0x20d359(_0x2e5c39);},'iRXmV':function(_0x35e456,_0x41ea27){return _0x35e456+_0x41ea27;},'kAFJM':_0x50d63f(0x817)+_0x50d63f(0x7cf)+'rl','BcHMU':function(_0x4e1c3b,_0x40e0f8){return _0x4e1c3b(_0x40e0f8);},'sFtik':_0x2234bc(0x65e),'jNXIs':_0x2234bc(0xc14),'hcLhb':_0x50d63f(0x329)+'l','EUCvq':function(_0x2a8ee7,_0x12de7c){return _0x2a8ee7(_0x12de7c);},'sqVYZ':_0x36e051(0x3dc)+_0x54d651(0xb26),'WRsnZ':function(_0x416938,_0x44bc32){return _0x416938+_0x44bc32;},'NEeAo':_0x50d63f(0x229)+_0x54d651(0xb80)+_0x50d63f(0x7de),'RWbWn':function(_0x1c8e02,_0x2ffd18){return _0x1c8e02(_0x2ffd18);},'qhUZy':_0x70f748(0x3dc),'ByCff':_0x2234bc(0x34b),'WfDnn':function(_0x1f6720,_0x57fd06){return _0x1f6720(_0x57fd06);},'IaSpJ':_0x70f748(0x3dc)+':','gTOsl':function(_0xf260ea,_0x446d34){return _0xf260ea(_0x446d34);},'UbbyE':function(_0x2f757f,_0x5b8e04){return _0x2f757f(_0x5b8e04);},'zppfS':_0x2234bc(0x3dc)+_0x2234bc(0x48a),'XApIk':function(_0x58c8df,_0x3c59f6){return _0x58c8df(_0x3c59f6);},'tjXvm':_0x50d63f(0xa6d)+_0x54d651(0xb80)+_0x36e051(0x7de),'kkCrL':function(_0x3269a1,_0x1e246f){return _0x3269a1(_0x1e246f);},'ksihV':_0x36e051(0x888)+'rl','zZmMI':function(_0x21f860,_0x4a3987){return _0x21f860+_0x4a3987;},'IzzLJ':function(_0x1ce93b,_0x41c127){return _0x1ce93b(_0x41c127);},'WpDuP':_0x54d651(0x54d)+'rl','MRaIL':_0x70f748(0xa0f),'tTVeJ':function(_0x265cd7,_0x2129c5){return _0x265cd7+_0x2129c5;},'SomgP':_0x2234bc(0xcfb)+_0x50d63f(0xb98)+_0x50d63f(0x4bd),'hAJCr':_0x2234bc(0x3dc)+_0x2234bc(0xb65)+_0x50d63f(0x308)+'l','glHVk':_0x50d63f(0x7e5)+'l','RQNOz':function(_0x3b9e55,_0x19a291){return _0x3b9e55(_0x19a291);},'RfmAb':function(_0x2acabe,_0x18a16e){return _0x2acabe+_0x18a16e;},'wRroP':_0x50d63f(0x6ca)+_0x70f748(0xb98)+_0x50d63f(0x4bd),'lyVPE':_0x50d63f(0x29b)+'l','ZckSL':function(_0x1fbc36,_0x14864f){return _0x1fbc36+_0x14864f;},'ebJnS':_0x70f748(0x6f7)+'rl','GGrPW':function(_0x510cb3,_0x2d8c11){return _0x510cb3(_0x2d8c11);},'rVRND':_0x2234bc(0x3dc)+_0x50d63f(0x328)+_0x54d651(0x7cf)+'rl','OFHTp':function(_0x503d2d,_0x3ae3b5){return _0x503d2d(_0x3ae3b5);},'nMBFE':function(_0x4dd79e,_0x141c36){return _0x4dd79e+_0x141c36;},'ueAWR':function(_0x43cf19,_0xf882d7){return _0x43cf19+_0xf882d7;},'RKGDf':function(_0xf8eb07,_0x175437){return _0xf8eb07+_0x175437;},'qkSoW':_0x70f748(0xc02)+_0x54d651(0xb80)+_0x70f748(0x7de),'vWKmG':function(_0x43b253,_0x515042){return _0x43b253+_0x515042;},'ZeRhv':_0x54d651(0x75d)+':','KlqFn':function(_0x1c7d34,_0x41e6c4){return _0x1c7d34===_0x41e6c4;},'OayUR':_0x50d63f(0xcae),'htgGp':_0x36e051(0x4ed),'wYjzY':function(_0x359783,_0x56319d){return _0x359783===_0x56319d;},'tCatD':_0x36e051(0xa94),'SxdCf':_0x36e051(0xc98),'oqZuD':function(_0x1558ad,_0x5d366f){return _0x1558ad+_0x5d366f;},'cDakV':_0x70f748(0x63e)+_0x54d651(0xa9e)+_0x50d63f(0xa13)+_0x2234bc(0x641),'NfOaW':_0x50d63f(0xce7)+_0x2234bc(0x671)+_0x36e051(0xb38)+_0x50d63f(0x144)+_0x70f748(0xa3a)+_0x54d651(0xa38)+'\x20)','GYXHT':function(_0x3545fa,_0x4c8de7){return _0x3545fa===_0x4c8de7;},'sIQoA':_0x70f748(0x27f),'dcqWD':_0x70f748(0x596),'jNTFg':function(_0x22233d){return _0x22233d();}},_0x20be4d=function(){const _0x224ebc=_0x36e051,_0x440db4=_0x2234bc,_0x5e4b66=_0x54d651,_0xe5c594=_0x36e051,_0x137cb3=_0x54d651,_0x166b80={'ioxvb':_0x35aa11[_0x224ebc(0x4b2)],'sFxYp':function(_0x332a28,_0x3b3a59){const _0x5de416=_0x224ebc;return _0x35aa11[_0x5de416(0x410)](_0x332a28,_0x3b3a59);},'VPbQL':_0x35aa11[_0x224ebc(0xbcf)],'fWZTL':function(_0x33311f,_0x7040d2){const _0x2dc36b=_0x224ebc;return _0x35aa11[_0x2dc36b(0x85e)](_0x33311f,_0x7040d2);},'FIuFv':function(_0x5cf5f9,_0x1e4148){const _0x379c5d=_0x440db4;return _0x35aa11[_0x379c5d(0xbf7)](_0x5cf5f9,_0x1e4148);},'nPSrq':_0x35aa11[_0x224ebc(0xb8b)],'LgOSx':function(_0x104ee2,_0x41e028){const _0x15996a=_0x224ebc;return _0x35aa11[_0x15996a(0x2da)](_0x104ee2,_0x41e028);},'iDKra':_0x35aa11[_0xe5c594(0x44d)],'qIMiP':function(_0x2ebb0c,_0x47e303){const _0x56b0fd=_0x440db4;return _0x35aa11[_0x56b0fd(0x410)](_0x2ebb0c,_0x47e303);},'pmMGP':function(_0x3dd583,_0x307559){const _0x9a77db=_0x5e4b66;return _0x35aa11[_0x9a77db(0xbf7)](_0x3dd583,_0x307559);},'GoBYK':_0x35aa11[_0xe5c594(0x38b)],'XZxTe':_0x35aa11[_0xe5c594(0x59d)],'gORGX':function(_0x2df832,_0x51b10f){const _0x5366d5=_0x137cb3;return _0x35aa11[_0x5366d5(0x352)](_0x2df832,_0x51b10f);},'cwaTO':_0x35aa11[_0xe5c594(0x9a2)],'vRviu':function(_0x2d7d56,_0x43b2c8){const _0x2c9b47=_0x137cb3;return _0x35aa11[_0x2c9b47(0x90a)](_0x2d7d56,_0x43b2c8);},'OedRO':function(_0x11a8c2,_0x358d8c){const _0x4ef283=_0xe5c594;return _0x35aa11[_0x4ef283(0x2da)](_0x11a8c2,_0x358d8c);},'deiSH':_0x35aa11[_0x440db4(0x4ac)],'pxTku':function(_0x23a797,_0x40c170){const _0xf62dbf=_0x137cb3;return _0x35aa11[_0xf62dbf(0x352)](_0x23a797,_0x40c170);},'PXWHF':function(_0x21b263,_0x1fbd9b){const _0x56e57e=_0xe5c594;return _0x35aa11[_0x56e57e(0xa55)](_0x21b263,_0x1fbd9b);},'fcKSb':function(_0x4a5ecf,_0x41f6fc){const _0x261352=_0x5e4b66;return _0x35aa11[_0x261352(0x2da)](_0x4a5ecf,_0x41f6fc);},'fuNZe':_0x35aa11[_0x440db4(0xaf1)],'ulspT':function(_0x36306b,_0x4447c2){const _0x3e9571=_0x224ebc;return _0x35aa11[_0x3e9571(0x90a)](_0x36306b,_0x4447c2);},'xHCeL':_0x35aa11[_0x440db4(0x645)],'eslgl':function(_0x2d408d,_0x1a210e){const _0x529076=_0x5e4b66;return _0x35aa11[_0x529076(0xd69)](_0x2d408d,_0x1a210e);},'rZiTm':function(_0x1e6871,_0x44a0bf){const _0x5b8d5b=_0xe5c594;return _0x35aa11[_0x5b8d5b(0xa55)](_0x1e6871,_0x44a0bf);},'gOTOD':_0x35aa11[_0x440db4(0x5a4)],'IxlRY':function(_0x2d80ec,_0x16d6cb){const _0x4ecc9e=_0x5e4b66;return _0x35aa11[_0x4ecc9e(0x240)](_0x2d80ec,_0x16d6cb);},'nrGlG':function(_0x49aaa6,_0x54b124){const _0x313a54=_0x137cb3;return _0x35aa11[_0x313a54(0xd78)](_0x49aaa6,_0x54b124);},'vPvEZ':function(_0x4a6785,_0x1b69ff){const _0x405834=_0x440db4;return _0x35aa11[_0x405834(0x410)](_0x4a6785,_0x1b69ff);},'ZieYP':_0x35aa11[_0x137cb3(0x6a5)],'bekiD':function(_0x178ab8,_0x10163a){const _0x343e82=_0x5e4b66;return _0x35aa11[_0x343e82(0x990)](_0x178ab8,_0x10163a);},'mdFeW':_0x35aa11[_0x440db4(0x85a)],'uXUuV':function(_0x214d43,_0x1cf0d3){const _0x16565f=_0x224ebc;return _0x35aa11[_0x16565f(0xbf7)](_0x214d43,_0x1cf0d3);},'tKyZq':function(_0x52a702,_0x1d059c){const _0x1cefd1=_0xe5c594;return _0x35aa11[_0x1cefd1(0xb15)](_0x52a702,_0x1d059c);},'XuKbg':function(_0x5a8806,_0x51d800){const _0x58424f=_0x137cb3;return _0x35aa11[_0x58424f(0x90a)](_0x5a8806,_0x51d800);},'LoldV':_0x35aa11[_0x5e4b66(0x79f)],'lSkfA':function(_0x1cae73,_0x5ecc5a){const _0x2dc872=_0x224ebc;return _0x35aa11[_0x2dc872(0x352)](_0x1cae73,_0x5ecc5a);},'zZjyx':function(_0x1c18c3,_0x5978fe){const _0x3f7996=_0x137cb3;return _0x35aa11[_0x3f7996(0x728)](_0x1c18c3,_0x5978fe);},'Gfaib':function(_0x222936,_0x224d43){const _0x5058db=_0x137cb3;return _0x35aa11[_0x5058db(0x4fa)](_0x222936,_0x224d43);},'rQOwI':_0x35aa11[_0xe5c594(0x92d)],'nlgjK':function(_0x48dc31,_0x1f6856){const _0x20a0b1=_0x137cb3;return _0x35aa11[_0x20a0b1(0x990)](_0x48dc31,_0x1f6856);},'UWtlI':_0x35aa11[_0x137cb3(0x90f)],'MiYBE':function(_0x4fd26c,_0x52af6f){const _0x35e7cc=_0x224ebc;return _0x35aa11[_0x35e7cc(0x85e)](_0x4fd26c,_0x52af6f);},'QSPMn':function(_0x37759d,_0x3936e7){const _0x55925f=_0x5e4b66;return _0x35aa11[_0x55925f(0xaa6)](_0x37759d,_0x3936e7);},'LoLpi':_0x35aa11[_0x137cb3(0xa10)],'tqhTq':function(_0x1cab32,_0xfe7021){const _0x2d28a0=_0x224ebc;return _0x35aa11[_0x2d28a0(0x410)](_0x1cab32,_0xfe7021);},'dPWVG':_0x35aa11[_0x224ebc(0x906)],'QpUof':function(_0x71ade2,_0x2dacc9){const _0x577d41=_0xe5c594;return _0x35aa11[_0x577d41(0x240)](_0x71ade2,_0x2dacc9);},'MTSKG':_0x35aa11[_0x440db4(0x825)],'LIRII':function(_0xa2a791,_0x16ed47){const _0x57bb26=_0x224ebc;return _0x35aa11[_0x57bb26(0xd78)](_0xa2a791,_0x16ed47);},'SbOdR':function(_0x58e505,_0x533e8a){const _0x3cdec1=_0x137cb3;return _0x35aa11[_0x3cdec1(0xbf7)](_0x58e505,_0x533e8a);},'DMQXV':function(_0x215157,_0x526f6a){const _0x5dd84a=_0x440db4;return _0x35aa11[_0x5dd84a(0x410)](_0x215157,_0x526f6a);},'lnmxX':function(_0x558736,_0x36326e){const _0x278c20=_0x440db4;return _0x35aa11[_0x278c20(0x5fd)](_0x558736,_0x36326e);},'kpBBS':function(_0x5559f1,_0x20751e){const _0x56fc85=_0x5e4b66;return _0x35aa11[_0x56fc85(0x402)](_0x5559f1,_0x20751e);},'GQndW':_0x35aa11[_0x224ebc(0x455)],'VRMTF':function(_0x55611c,_0x71de10){const _0x4d3420=_0x5e4b66;return _0x35aa11[_0x4d3420(0xaa6)](_0x55611c,_0x71de10);},'dcGHr':_0x35aa11[_0x224ebc(0x846)],'gQVAz':function(_0x118a8c,_0x87783e){const _0x54b1b9=_0x5e4b66;return _0x35aa11[_0x54b1b9(0xd69)](_0x118a8c,_0x87783e);},'SQAhq':function(_0x384f86,_0x374f26){const _0x3984af=_0x5e4b66;return _0x35aa11[_0x3984af(0x3b2)](_0x384f86,_0x374f26);},'AKzks':_0x35aa11[_0x440db4(0x9e6)],'EZtMg':function(_0x50d30a,_0x4c2309){const _0x241e4f=_0x224ebc;return _0x35aa11[_0x241e4f(0xb31)](_0x50d30a,_0x4c2309);},'VrfWU':function(_0x5e9899,_0x385fd1){const _0x354c7e=_0x137cb3;return _0x35aa11[_0x354c7e(0xd78)](_0x5e9899,_0x385fd1);},'qsDTT':_0x35aa11[_0x137cb3(0x97e)],'nhAcm':function(_0x248be2,_0x1382b3){const _0x4664e3=_0x137cb3;return _0x35aa11[_0x4664e3(0x4a6)](_0x248be2,_0x1382b3);},'nqOhp':function(_0x55b92d,_0xc54d96){const _0x5f447b=_0x440db4;return _0x35aa11[_0x5f447b(0x86e)](_0x55b92d,_0xc54d96);},'UDtEn':function(_0x3273c1,_0x32cbac){const _0x21bd7d=_0x5e4b66;return _0x35aa11[_0x21bd7d(0x352)](_0x3273c1,_0x32cbac);},'aQraB':function(_0x5b6b18,_0x270d15){const _0x2e6424=_0xe5c594;return _0x35aa11[_0x2e6424(0x768)](_0x5b6b18,_0x270d15);},'eRFXx':function(_0x44e058,_0x4a1309){const _0x29f97f=_0x224ebc;return _0x35aa11[_0x29f97f(0xcdc)](_0x44e058,_0x4a1309);},'TyIgo':_0x35aa11[_0x224ebc(0xd40)],'qBqLD':function(_0x37b8c1,_0x488e87){const _0xd6108a=_0x137cb3;return _0x35aa11[_0xd6108a(0xb7f)](_0x37b8c1,_0x488e87);},'oLPdI':_0x35aa11[_0xe5c594(0xd7c)]};if(_0x35aa11[_0x137cb3(0x2c2)](_0x35aa11[_0x440db4(0xd51)],_0x35aa11[_0xe5c594(0x419)])){const _0x554a63=_0x166b80[_0x440db4(0x2ea)][_0x5e4b66(0x612)]('|');let _0x1b017f=-0x12fc+0x1117+-0x5*-0x61;while(!![]){switch(_0x554a63[_0x1b017f++]){case'0':_0x4677e4=_0x3f7c3c[_0x5e4b66(0xc0e)+_0xe5c594(0x426)](_0x166b80[_0x5e4b66(0x213)](_0x166b80[_0x440db4(0x66a)],_0x166b80[_0xe5c594(0x94a)](_0x533da1,_0x4ab522)),_0x166b80[_0xe5c594(0xa98)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0x137cb3(0xc16)](_0x4b764a,_0x5efd93)));continue;case'1':_0x4ddb71=_0x35e058[_0x440db4(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0x440db4(0xa98)](_0x166b80[_0xe5c594(0x732)],_0x166b80[_0x137cb3(0x94a)](_0x41f4b1,_0x4f4f22)),_0x166b80[_0x137cb3(0x5cf)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0xe5c594(0xc16)](_0xe8eb9c,_0x549971)));continue;case'2':_0x3ffd69=_0xb22fda[_0x440db4(0xc0e)+_0xe5c594(0x426)](_0x166b80[_0xe5c594(0x371)](_0x166b80[_0x224ebc(0x623)],_0x166b80[_0xe5c594(0x94a)](_0x2e490b,_0x1fd16e)),_0x166b80[_0xe5c594(0x371)](_0x166b80[_0x224ebc(0x607)],_0x166b80[_0x224ebc(0x94a)](_0x52ee7b,_0x296baf)));continue;case'3':_0x4e7979=_0x5d0db1[_0xe5c594(0xc0e)+_0x5e4b66(0x426)](_0x166b80[_0x5e4b66(0x213)](_0x166b80[_0x137cb3(0x433)],_0x166b80[_0x224ebc(0xc16)](_0x35f0ef,_0x2000d5)),_0x166b80[_0x5e4b66(0x371)](_0x166b80[_0x224ebc(0x607)],_0x166b80[_0x224ebc(0xa06)](_0xc8209c,_0x5d11b1)));continue;case'4':_0xb0d203=_0x31b5fd[_0x137cb3(0xc0e)+_0xe5c594(0x426)](_0x166b80[_0x440db4(0xa98)](_0x166b80[_0x5e4b66(0x4dd)],_0x166b80[_0xe5c594(0xa06)](_0x4c1aa5,_0x42310b)),_0x166b80[_0x224ebc(0x300)](_0x166b80[_0x137cb3(0x607)],_0x166b80[_0x440db4(0x681)](_0x295c37,_0x11d914)));continue;case'5':_0x1a4b8a=_0x5181b5[_0xe5c594(0xc0e)+_0x137cb3(0x426)](_0x166b80[_0xe5c594(0x213)](_0x166b80[_0x137cb3(0xca4)],_0x166b80[_0x137cb3(0x8dc)](_0x5c188f,_0x5ac76e)),_0x166b80[_0x224ebc(0x213)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0x137cb3(0x8db)](_0x5a8a3e,_0x3ffd07)));continue;case'6':_0x3080bb=_0x227389[_0x137cb3(0xc0e)+_0x440db4(0x426)](_0x166b80[_0x5e4b66(0xa98)](_0x166b80[_0x224ebc(0x623)],_0x166b80[_0x5e4b66(0x8fd)](_0x46c314,_0x1d5513)),_0x166b80[_0x440db4(0x300)](_0x166b80[_0x224ebc(0x607)],_0x166b80[_0xe5c594(0x8fd)](_0x5bd99d,_0x4301d3)));continue;case'7':_0xa8605d=_0xd0288e[_0x224ebc(0xc0e)+_0x137cb3(0x426)](_0x166b80[_0xe5c594(0xa98)](_0x166b80[_0xe5c594(0x3d6)],_0x166b80[_0x224ebc(0x8db)](_0x106a7f,_0x2a7947)),_0x166b80[_0xe5c594(0x7a9)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0x5e4b66(0x94a)](_0x380758,_0x53621a)));continue;case'8':_0x2741c9=_0x212b4b[_0x440db4(0xc0e)+_0x440db4(0x426)](_0x166b80[_0x224ebc(0x7a9)](_0x166b80[_0xe5c594(0x8af)],_0x166b80[_0xe5c594(0x376)](_0x3cb71b,_0x24120e)),_0x166b80[_0x137cb3(0x300)](_0x166b80[_0x440db4(0x607)],_0x166b80[_0x5e4b66(0xbbd)](_0x1c22ca,_0x2442fa)));continue;case'9':_0x544c5e=_0x29e4e5[_0x5e4b66(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0x5e4b66(0x300)](_0x166b80[_0x224ebc(0x1c6)],_0x166b80[_0x137cb3(0x4bc)](_0x21b122,_0x3019fb)),_0x166b80[_0x224ebc(0x7a9)](_0x166b80[_0x440db4(0x607)],_0x166b80[_0x5e4b66(0x318)](_0xbaef08,_0x1a6537)));continue;case'10':_0x2a27c7=_0x5b4c7e[_0xe5c594(0xc0e)+_0x440db4(0x426)](_0x166b80[_0x137cb3(0xcdd)](_0x166b80[_0x5e4b66(0xbe7)],_0x166b80[_0x224ebc(0x318)](_0x13f7d9,_0x277c3f)),_0x166b80[_0x137cb3(0x213)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0x224ebc(0xd2c)](_0x5e098,_0xf5bd86)));continue;case'11':_0x5cd77f=_0x206f53[_0xe5c594(0xc0e)+_0x137cb3(0x426)](_0x166b80[_0x440db4(0x213)](_0x166b80[_0x224ebc(0x82f)],_0x166b80[_0x137cb3(0x4bc)](_0x55af6f,_0x3c34b5)),_0x166b80[_0x137cb3(0x3e6)](_0x166b80[_0x137cb3(0x607)],_0x166b80[_0x224ebc(0x5b8)](_0x40e0a9,_0x2210d4)));continue;case'12':_0x149a06=_0x37d5c2[_0x137cb3(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0xe5c594(0x222)](_0x166b80[_0x137cb3(0x75c)],_0x166b80[_0xe5c594(0xa82)](_0x2bb9f6,_0xee0017)),_0x166b80[_0x137cb3(0x4a2)](_0x166b80[_0x440db4(0x607)],_0x166b80[_0xe5c594(0xbd2)](_0x50f4c2,_0x2ec59c)));continue;case'13':_0x5d7f82=_0x33650c[_0x5e4b66(0xc0e)+_0xe5c594(0x426)](_0x166b80[_0x5e4b66(0x222)](_0x166b80[_0xe5c594(0xb21)],_0x166b80[_0x137cb3(0xd79)](_0x30479e,_0x10b280)),_0x166b80[_0x5e4b66(0xcdd)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0xe5c594(0x8db)](_0x5a5b00,_0x16163d)));continue;case'14':_0xc4b0a2=_0x158596[_0x137cb3(0xc0e)+_0x5e4b66(0x426)](_0x166b80[_0x5e4b66(0x213)](_0x166b80[_0x224ebc(0x738)],_0x166b80[_0xe5c594(0x4bc)](_0x59e212,_0x30f126)),_0x166b80[_0x5e4b66(0x300)](_0x166b80[_0x440db4(0x607)],_0x166b80[_0x137cb3(0x196)](_0x480d7d,_0x42a23e)));continue;case'15':_0x3368fd=_0x1bae1c[_0xe5c594(0xc0e)+_0x440db4(0x426)](_0x166b80[_0x224ebc(0x63a)](_0x166b80[_0x5e4b66(0xbad)],_0x166b80[_0x137cb3(0x94a)](_0x368ebd,_0x104a3b)),_0x166b80[_0x224ebc(0x7a9)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0xe5c594(0xc16)](_0x5743ed,_0x2fcd7b)));continue;case'16':_0x112dc4=_0x21705b[_0x5e4b66(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0x440db4(0x77b)](_0x166b80[_0xe5c594(0x4ee)],_0x166b80[_0x440db4(0xc16)](_0xd94195,_0xdf92d9)),_0x166b80[_0x440db4(0xcdd)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0x137cb3(0x281)](_0x374f54,_0x4456ee)));continue;case'17':_0x395d83=_0x36c1a8[_0x224ebc(0xc0e)+_0x440db4(0x426)](_0x166b80[_0x5e4b66(0xcdd)](_0x166b80[_0x440db4(0xba0)],_0x166b80[_0x440db4(0x4b7)](_0x4d6931,_0x2627f8)),_0x166b80[_0xe5c594(0xa4a)](_0x166b80[_0x224ebc(0x607)],_0x166b80[_0x440db4(0xa06)](_0x45840e,_0x544796)));continue;case'18':_0x25ce7d=_0x3713f9[_0x440db4(0xc0e)+_0x137cb3(0x426)](_0x166b80[_0x5e4b66(0xa6c)](_0x166b80[_0x5e4b66(0x8af)],_0x166b80[_0xe5c594(0x4db)](_0x293dc5,_0x479115)),_0x166b80[_0x440db4(0xab0)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0x440db4(0x4b7)](_0x209c50,_0x57d5c6)));continue;case'19':_0x468e40=_0x2a77e1[_0x440db4(0xc0e)+_0x137cb3(0x426)](_0x166b80[_0x137cb3(0x7a9)](_0x166b80[_0xe5c594(0x1d7)],_0x166b80[_0x137cb3(0xd2c)](_0x29a0ea,_0x5af001)),_0x166b80[_0x440db4(0x4d4)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0xe5c594(0x4b7)](_0x19dd88,_0x3e3f52)));continue;case'20':_0x1c09c1=_0x4a3aef[_0x137cb3(0xc0e)+_0x5e4b66(0x426)](_0x166b80[_0x440db4(0xab0)](_0x166b80[_0x224ebc(0x4d0)],_0x166b80[_0x137cb3(0x77c)](_0x2c9607,_0x4580dd)),_0x166b80[_0x137cb3(0x4a2)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0xe5c594(0x318)](_0x549949,_0x1c94d2)));continue;case'21':_0x3759e2=_0x3f90a7[_0x440db4(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0x224ebc(0xbeb)](_0x166b80[_0x5e4b66(0x2bf)],_0x166b80[_0x440db4(0x89c)](_0x6fe8a0,_0x3ddefa)),_0x166b80[_0x224ebc(0x7a9)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0x440db4(0x89a)](_0x7de3ac,_0x32b968)));continue;case'22':_0x56772f=_0x4e377d[_0x137cb3(0xc0e)+_0x224ebc(0x426)](_0x166b80[_0xe5c594(0x4d4)](_0x166b80[_0x224ebc(0x7b2)],_0x166b80[_0xe5c594(0x994)](_0x2345fd,_0xe410bc)),_0x166b80[_0x224ebc(0x824)](_0x166b80[_0x137cb3(0x607)],_0x166b80[_0x5e4b66(0xc7f)](_0x24272c,_0x1d099e)));continue;case'23':_0xd31ff4=_0x5c4282[_0x137cb3(0xc0e)+_0xe5c594(0x426)](_0x166b80[_0x440db4(0x946)](_0x166b80[_0x440db4(0x738)],_0x166b80[_0x137cb3(0xd2c)](_0x30f848,_0x5bbf6a)),_0x166b80[_0x137cb3(0x1a4)](_0x166b80[_0x5e4b66(0x607)],_0x166b80[_0x440db4(0x89a)](_0x16afe3,_0x1d577a)));continue;case'24':_0x1f43b3=_0x137c02[_0x137cb3(0xc0e)+_0x440db4(0x426)](_0x166b80[_0xe5c594(0xab0)](_0x166b80[_0x440db4(0x4fe)],_0x166b80[_0x224ebc(0xd79)](_0x10ae64,_0x27b102)),_0x166b80[_0x5e4b66(0xc91)](_0x166b80[_0xe5c594(0x607)],_0x166b80[_0xe5c594(0x94a)](_0x1a94e2,_0x359e9a)));continue;}break;}}else{let _0x2c4b4f;try{if(_0x35aa11[_0xe5c594(0x90b)](_0x35aa11[_0x137cb3(0x853)],_0x35aa11[_0x5e4b66(0x960)])){const _0x4d93f0=_0x35aa11[_0x137cb3(0x6d6)][_0x137cb3(0x612)]('|');let _0x4d1a0e=0x1*-0x110b+0x1da3*0x1+-0x1*0xc98;while(!![]){switch(_0x4d93f0[_0x4d1a0e++]){case'0':_0x1b9adb=0x181a+0x1bc8+-0x33e2;continue;case'1':_0x174151[_0x224ebc(0xac5)+_0x440db4(0x8b0)+_0x224ebc(0x372)](_0x35aa11[_0x5e4b66(0x69f)])[_0xe5c594(0x4b1)]='';continue;case'2':const _0x1f20e0={};_0x1f20e0[_0x440db4(0x56a)]=_0x35aa11[_0xe5c594(0x68e)],_0x1f20e0[_0x137cb3(0x47f)+'nt']=_0x5d835b,_0x2067ec[_0x137cb3(0x35e)](_0x1f20e0);continue;case'3':return;case'4':const _0x3effd0={};_0x3effd0[_0x440db4(0x56a)]=_0x35aa11[_0x440db4(0xafc)],_0x3effd0[_0xe5c594(0x47f)+'nt']=_0xf8ad18,_0x162330[_0x224ebc(0x35e)](_0x3effd0);continue;}break;}}else _0x2c4b4f=_0x35aa11[_0x5e4b66(0x352)](Function,_0x35aa11[_0x5e4b66(0xcdc)](_0x35aa11[_0x5e4b66(0x622)](_0x35aa11[_0x224ebc(0x7f9)],_0x35aa11[_0x224ebc(0x564)]),');'))();}catch(_0x527eec){_0x35aa11[_0xe5c594(0xadd)](_0x35aa11[_0x224ebc(0x959)],_0x35aa11[_0x137cb3(0xa0d)])?_0x4072bb[_0x137cb3(0x7cb)](_0x166b80[_0x440db4(0x1d2)],_0x2503f3):_0x2c4b4f=window;}return _0x2c4b4f;}},_0x4dfd3f=_0x35aa11[_0x54d651(0xb54)](_0x20be4d);_0x4dfd3f[_0x70f748(0x356)+_0x54d651(0x18d)+'l'](_0x457fe2,0x78b*0x3+-0x2*0x97d+0xbf9);}());var lock_chat=-0x13d3+0x11b1+0x1*0x223;function wait(_0x2694da){return new Promise(_0x42172a=>setTimeout(_0x42172a,_0x2694da));}function fetchRetry(_0x29e016,_0x5e3a22,_0x3e733b={}){const _0x21bb1a=_0x42e93c,_0x4c04a0=_0xf9acf4,_0x27e920=_0x5aec22,_0x506d4a=_0xf9acf4,_0x56fc55={'sypkW':function(_0x3f9d5b,_0x2075e7){return _0x3f9d5b===_0x2075e7;},'BgJnr':_0x21bb1a(0xd47),'bxyPh':function(_0x177ab2,_0x591238){return _0x177ab2-_0x591238;},'QpnsW':function(_0x59f5c3,_0x47ce53){return _0x59f5c3!==_0x47ce53;},'jpvQm':_0x4c04a0(0x95f),'sPvGe':function(_0x10ed9a,_0x48fef9){return _0x10ed9a(_0x48fef9);},'ijFgK':function(_0x5b232a,_0x35beab,_0x8323c9){return _0x5b232a(_0x35beab,_0x8323c9);}};function _0x1b608c(_0x2db85b){const _0x51ce44=_0x4c04a0,_0x4c95b1=_0x21bb1a,_0x53d564=_0x4c04a0,_0x50e946=_0x21bb1a,_0x1a30ab=_0x21bb1a;if(_0x56fc55[_0x51ce44(0xc61)](_0x56fc55[_0x51ce44(0xaf5)],_0x56fc55[_0x51ce44(0xaf5)])){triesLeft=_0x56fc55[_0x4c95b1(0x28c)](_0x5e3a22,-0x1980+0x821+0x1160);if(!triesLeft){if(_0x56fc55[_0x50e946(0x35d)](_0x56fc55[_0x53d564(0x81c)],_0x56fc55[_0x50e946(0x81c)]))_0xf13244='右';else throw _0x2db85b;}return _0x56fc55[_0x53d564(0x15e)](wait,-0x2153*-0x1+-0x244d+0x4ee)[_0x4c95b1(0xae6)](()=>fetchRetry(_0x29e016,triesLeft,_0x3e733b));}else return-0x2*-0x12bf+0x67*-0x3+-0x2448;}return _0x56fc55[_0x27e920(0x919)](fetch,_0x29e016,_0x3e733b)[_0x506d4a(0xd38)](_0x1b608c);}function send_webchat(_0x1e3d3c){const _0x4d2a8d=_0x135ea1,_0xc8ddec=_0x51c145,_0x5b468c=_0x135ea1,_0x1c0ddf=_0x135ea1,_0x1aa97c=_0x42e93c,_0x2437c2={'vQYMV':function(_0x22ce7c,_0x53f3d9){return _0x22ce7c===_0x53f3d9;},'KLqaS':_0x4d2a8d(0x2f5),'wlnQa':_0x4d2a8d(0x1f2),'NNWlq':_0xc8ddec(0x75d)+':','CxvJI':_0xc8ddec(0xd52)+_0x1aa97c(0x4cf),'pSoYX':_0x5b468c(0x33b),'QiTEO':_0x1c0ddf(0x60f)+_0x1aa97c(0x215)+'t','AxavZ':_0x4d2a8d(0x99b)+_0xc8ddec(0x75e),'FbxsM':function(_0xcc1437,_0x3904c7){return _0xcc1437<_0x3904c7;},'ToOXj':_0x5b468c(0x952)+'es','tgBeC':function(_0x35b029,_0x48e774){return _0x35b029===_0x48e774;},'xOMjk':_0x1aa97c(0xb63),'qvtnS':_0x4d2a8d(0x572),'PAhQl':_0xc8ddec(0xb0b)+_0xc8ddec(0x8a6)+'d','VPROG':function(_0x474db3,_0x1209d1){return _0x474db3(_0x1209d1);},'ornHP':_0x4d2a8d(0x20e)+'ss','IdaaO':_0x5b468c(0x336)+_0x5b468c(0xd03),'DtFae':function(_0x352607,_0x524f17){return _0x352607(_0x524f17);},'xaiwg':function(_0x212f08,_0x3981ba){return _0x212f08+_0x3981ba;},'Bilnt':_0x1c0ddf(0x979),'EulTj':_0xc8ddec(0x81d),'AZuGK':_0x1aa97c(0x183)+_0x1c0ddf(0x5ce)+'t','pzNJy':function(_0x6126f3,_0x45a03b){return _0x6126f3!==_0x45a03b;},'Kzchx':_0xc8ddec(0x89f),'lhQWR':_0x1c0ddf(0x758),'DLsnj':_0x1c0ddf(0xc85),'pQHmO':_0x4d2a8d(0x60f)+_0x1c0ddf(0x425),'Eeekd':function(_0x35cbf3,_0x32667b){return _0x35cbf3>_0x32667b;},'oCjKh':function(_0x1163ea,_0x561aab){return _0x1163ea==_0x561aab;},'BfWIz':_0x1c0ddf(0x8ef)+']','ooYaf':function(_0x5e1533,_0x4b7814){return _0x5e1533===_0x4b7814;},'hipYN':_0xc8ddec(0x3f3),'rElmn':_0x1c0ddf(0x785),'oGyDw':_0xc8ddec(0x268)+_0x4d2a8d(0x4cf),'EGVpG':_0x5b468c(0x212),'VGEVc':_0x1aa97c(0x28d),'hiUgo':_0x5b468c(0x46b),'RLNta':_0x1aa97c(0x317),'GFdvX':_0x4d2a8d(0x5b0),'iFRBm':_0x5b468c(0xa64),'TUYjO':_0x1c0ddf(0xc52),'JTZWM':_0x1c0ddf(0x73d),'FnYfB':_0xc8ddec(0x5d7)+'pt','OnfqH':function(_0x1869ba,_0x463048,_0x258446){return _0x1869ba(_0x463048,_0x258446);},'yTwmk':_0x4d2a8d(0xcc8)+_0x1c0ddf(0x3da),'IhNNO':_0xc8ddec(0x36d)+_0x1c0ddf(0xb12)+_0x1c0ddf(0x45f)+_0x5b468c(0x2bc)+_0x4d2a8d(0x314),'eKmrp':_0xc8ddec(0x694)+'>','GUDMy':_0x1aa97c(0x349),'SNWnY':_0x5b468c(0x67a),'CZUTm':_0x1c0ddf(0x6b9),'jsgBN':function(_0x374af7,_0x4c51cf){return _0x374af7(_0x4c51cf);},'IymSb':_0x1c0ddf(0xc6d),'quOwN':_0x1c0ddf(0x7ce),'MINyA':function(_0x28090f,_0x1bbd15){return _0x28090f+_0x1bbd15;},'pZaIP':function(_0x1deabb,_0x388a14){return _0x1deabb+_0x388a14;},'lUpfB':function(_0x25d282,_0x204c1a){return _0x25d282+_0x204c1a;},'yMrih':_0x5b468c(0x857)+'务\x20','DbcVs':_0x1aa97c(0xbdc)+_0xc8ddec(0x592)+_0x1c0ddf(0x3fe)+_0x5b468c(0x250)+_0x1c0ddf(0xbd5)+_0x4d2a8d(0x28e)+_0xc8ddec(0x7cd)+_0x1c0ddf(0x6c0)+_0x1aa97c(0xa5b)+_0x5b468c(0x2a4)+_0x4d2a8d(0x5d3)+_0x1c0ddf(0x7a5)+_0xc8ddec(0xa15)+_0x5b468c(0x49b)+'果:','yuStG':_0x1aa97c(0x403)+'m','wTpLf':_0xc8ddec(0x4b0)+_0x1aa97c(0xd57)+_0x1aa97c(0xbac)+_0xc8ddec(0xa75)+_0x1aa97c(0x750)+_0x5b468c(0xab5)+_0x1aa97c(0x7f0)+_0x5b468c(0xa9f)+_0x5b468c(0xa6b)+_0x5b468c(0x9c5)+_0xc8ddec(0x9bd)+_0x1aa97c(0xb5d)+_0xc8ddec(0xc65)+_0x1aa97c(0xb55)+_0x1c0ddf(0x418)+_0x5b468c(0x228)+_0x1c0ddf(0xcba),'MpCas':function(_0x2aebc2,_0x2d8a93){return _0x2aebc2+_0x2d8a93;},'iLpXZ':_0x1c0ddf(0x8d4)+'\x0a','jTiSU':_0xc8ddec(0xb9f)+_0xc8ddec(0x6ba),'KVMxZ':_0x1aa97c(0x1fa),'kycst':function(_0x2a377d,_0x1067b0,_0xcbfb43){return _0x2a377d(_0x1067b0,_0xcbfb43);},'maYaY':function(_0x385494,_0xbe1a7d){return _0x385494(_0xbe1a7d);},'BRtng':function(_0x18630e,_0x36b80c){return _0x18630e+_0x36b80c;},'HpQIh':_0x4d2a8d(0x36d)+_0x5b468c(0xb12)+_0xc8ddec(0x45f)+_0xc8ddec(0x2c8)+_0xc8ddec(0x9a3)+'\x22>','ODqQg':function(_0x4b2177,_0x46c20f,_0x21e135){return _0x4b2177(_0x46c20f,_0x21e135);},'ghMjv':_0x1aa97c(0xb65)+_0x1aa97c(0xa72)+_0x5b468c(0x4fc)+_0xc8ddec(0x577)+_0x4d2a8d(0x56d)+_0x1c0ddf(0x3fc),'wLlgG':function(_0x277d6a,_0x4b3682){return _0x277d6a!=_0x4b3682;},'NoefU':function(_0x252e88,_0x1c3858){return _0x252e88!==_0x1c3858;},'jgHzg':_0x4d2a8d(0x3a4),'IXVCG':_0x1aa97c(0x7fa)+_0xc8ddec(0x43f)+'结束','xudUG':_0x5b468c(0x60f),'OjAsa':function(_0x2413ca,_0x343953){return _0x2413ca+_0x343953;},'vnfuR':function(_0x58192f,_0x1e282e){return _0x58192f+_0x1e282e;},'IBHPm':_0x5b468c(0x5e1),'DFTKl':_0x1c0ddf(0x1bc)+'果\x0a','qWBRj':_0x1aa97c(0x5f8),'Bjxun':_0x1aa97c(0x7d9),'pTEKU':function(_0x3aca42){return _0x3aca42();},'rxypX':function(_0x296956,_0x3a3b9a){return _0x296956>_0x3a3b9a;},'vqvTl':function(_0x34a6d5,_0x4e56c0,_0x784a34){return _0x34a6d5(_0x4e56c0,_0x784a34);},'THWjO':_0x1aa97c(0xb65)+_0xc8ddec(0xa72)+_0xc8ddec(0x4fc)+_0x1aa97c(0x989)+_0xc8ddec(0x92f)+'q=','zGLHI':function(_0x158d57,_0x272d4b){return _0x158d57(_0x272d4b);},'PYmyx':_0x5b468c(0x31d)+_0x1c0ddf(0x896)+_0x4d2a8d(0x9af)+_0x5b468c(0xa85)+_0x4d2a8d(0x138)+_0xc8ddec(0xa42)+_0x1aa97c(0x573)+_0x4d2a8d(0x303)+_0x1aa97c(0x7d0)+_0x1c0ddf(0x549)+_0xc8ddec(0x993)+_0x4d2a8d(0x700)+_0x5b468c(0x5cd)+_0x4d2a8d(0xcc5)+'n'};if(_0x2437c2[_0x5b468c(0x4aa)](lock_chat,0x199d+-0xdd3*-0x1+-0x2770)){if(_0x2437c2[_0x1aa97c(0x3ff)](_0x2437c2[_0x1aa97c(0xce6)],_0x2437c2[_0x4d2a8d(0xce6)])){const _0x908001=_0x1eb751?function(){const _0x3ee5d6=_0x1aa97c;if(_0x1350ba){const _0x39d59e=_0x5a26a0[_0x3ee5d6(0x78d)](_0x392a37,arguments);return _0x241936=null,_0x39d59e;}}:function(){};return _0x8c589=![],_0x908001;}else{_0x2437c2[_0x4d2a8d(0x3bb)](alert,_0x2437c2[_0xc8ddec(0x184)]);return;}}lock_chat=0x1*0x23ad+-0x1ae1+-0x8cb,knowledge=document[_0x5b468c(0xac5)+_0xc8ddec(0x8b0)+_0x4d2a8d(0x372)](_0x2437c2[_0x1c0ddf(0x1e4)])[_0x4d2a8d(0xc4b)+_0x4d2a8d(0x858)][_0x1aa97c(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x1c0ddf(0xc0e)+'ce'](/<hr.*/gs,'')[_0xc8ddec(0xc0e)+'ce'](/<[^>]+>/g,'')[_0xc8ddec(0xc0e)+'ce'](/\n\n/g,'\x0a');if(_0x2437c2[_0xc8ddec(0x370)](knowledge[_0x1c0ddf(0x1d9)+'h'],0xd*-0x28d+0x1b0c+0x7ad))knowledge[_0x4d2a8d(0x8c3)](0xae*0x2+-0x12e1+0x1315);knowledge+=_0x2437c2[_0x1aa97c(0xab6)](_0x2437c2[_0x1aa97c(0xac8)](_0x2437c2[_0x1c0ddf(0xc8a)],original_search_query),_0x2437c2[_0xc8ddec(0x61b)]);let _0x3c4663=document[_0xc8ddec(0xac5)+_0x5b468c(0x8b0)+_0xc8ddec(0x372)](_0x2437c2[_0xc8ddec(0x2e4)])[_0x4d2a8d(0x4b1)];if(_0x1e3d3c){if(_0x2437c2[_0xc8ddec(0x3ff)](_0x2437c2[_0x1c0ddf(0x712)],_0x2437c2[_0x1c0ddf(0x8da)]))_0x3c4663=_0x1e3d3c[_0x4d2a8d(0x3a2)+_0x4d2a8d(0x37d)+'t'],_0x1e3d3c[_0x1c0ddf(0x4be)+'e'](),_0x2437c2[_0xc8ddec(0x78c)](chatmore);else return![];}if(_0x2437c2[_0xc8ddec(0x8cf)](_0x3c4663[_0xc8ddec(0x1d9)+'h'],-0xf8b+0x1dbf+-0x12f*0xc)||_0x2437c2[_0x1c0ddf(0xb66)](_0x3c4663[_0x4d2a8d(0x1d9)+'h'],-0x22ea+0x1*-0x12b8+0x56b*0xa))return;_0x2437c2[_0x1c0ddf(0x8a7)](fetchRetry,_0x2437c2[_0x1aa97c(0xac8)](_0x2437c2[_0x5b468c(0xa95)](_0x2437c2[_0xc8ddec(0x462)],_0x2437c2[_0x4d2a8d(0x8ae)](encodeURIComponent,_0x3c4663)),_0x2437c2[_0xc8ddec(0x5a6)]),0x4*-0x78b+0x4*0x3d3+0x25*0x67)[_0x1c0ddf(0xae6)](_0x49e8fc=>_0x49e8fc[_0x1c0ddf(0x51e)]())[_0x1c0ddf(0xae6)](_0x834232=>{const _0x43e0b9=_0x1aa97c,_0x4a329c=_0x4d2a8d,_0x382bf2=_0x1c0ddf,_0x194e3c=_0x1c0ddf,_0x233947=_0x4d2a8d,_0x237fbc={'XMbRp':_0x2437c2[_0x43e0b9(0xc5c)],'GqURY':_0x2437c2[_0x4a329c(0x918)],'PqBmy':_0x2437c2[_0x4a329c(0x2e4)],'vAfgQ':_0x2437c2[_0x43e0b9(0x8b4)],'lnsuj':function(_0x94116,_0x2fe4ff){const _0x57bdb8=_0x4a329c;return _0x2437c2[_0x57bdb8(0x3c7)](_0x94116,_0x2fe4ff);},'YBVyW':_0x2437c2[_0x4a329c(0xab7)],'ZAkJH':function(_0x21dfcc,_0x501f2a){const _0x1d21e4=_0x43e0b9;return _0x2437c2[_0x1d21e4(0xa84)](_0x21dfcc,_0x501f2a);},'nLdbU':_0x2437c2[_0x194e3c(0x1f0)],'XBIdQ':_0x2437c2[_0x382bf2(0xd16)],'nauML':_0x2437c2[_0x194e3c(0x19f)],'uaBRx':function(_0x1b1377,_0x13d3fd){const _0x34c911=_0x43e0b9;return _0x2437c2[_0x34c911(0x6e6)](_0x1b1377,_0x13d3fd);},'SCzbH':_0x2437c2[_0x194e3c(0x387)],'UOFiH':_0x2437c2[_0x194e3c(0xbaa)],'noWGy':function(_0x25830a,_0x268d82){const _0x545524=_0x43e0b9;return _0x2437c2[_0x545524(0x3bb)](_0x25830a,_0x268d82);},'SFXXT':_0x2437c2[_0x194e3c(0xcb1)],'EGkTT':function(_0x560ba7,_0x79317b){const _0xa9409b=_0x233947;return _0x2437c2[_0xa9409b(0xa95)](_0x560ba7,_0x79317b);},'gENFL':_0x2437c2[_0x43e0b9(0xb94)],'RuAVw':_0x2437c2[_0x233947(0x6dd)],'AylxB':_0x2437c2[_0x43e0b9(0x7b7)],'gIkpW':function(_0x327a73,_0x271d69){const _0x8dc48b=_0x43e0b9;return _0x2437c2[_0x8dc48b(0xc9e)](_0x327a73,_0x271d69);},'mrYCl':_0x2437c2[_0x382bf2(0x999)],'ctTBS':_0x2437c2[_0x233947(0x1d8)],'sfRrf':_0x2437c2[_0x43e0b9(0xcb6)],'TYKTK':_0x2437c2[_0x4a329c(0xc8b)],'kgnLF':function(_0x677661,_0x51f999){const _0x22a373=_0x194e3c;return _0x2437c2[_0x22a373(0x370)](_0x677661,_0x51f999);},'IFhXi':function(_0x3c6bd1,_0x4e5178){const _0x50e306=_0x382bf2;return _0x2437c2[_0x50e306(0x8cf)](_0x3c6bd1,_0x4e5178);},'ASzmv':_0x2437c2[_0x4a329c(0xa8a)],'dKObE':function(_0x1b5f72,_0xa87453){const _0x39af55=_0x382bf2;return _0x2437c2[_0x39af55(0x52d)](_0x1b5f72,_0xa87453);},'ywKuL':_0x2437c2[_0x233947(0x3d0)],'Mmpee':_0x2437c2[_0x43e0b9(0x655)],'abhKV':_0x2437c2[_0x194e3c(0x598)],'Xzyuo':_0x2437c2[_0x43e0b9(0x838)],'fPcfi':_0x2437c2[_0x194e3c(0x5db)],'NRNoj':_0x2437c2[_0x43e0b9(0x869)],'qXULX':_0x2437c2[_0x4a329c(0x1ba)],'gOiXO':function(_0x52c7c3,_0x279f60){const _0x2d6324=_0x382bf2;return _0x2437c2[_0x2d6324(0x52d)](_0x52c7c3,_0x279f60);},'VrUoS':_0x2437c2[_0x4a329c(0x55d)],'VVcMC':_0x2437c2[_0x194e3c(0x7df)],'rIQhh':_0x2437c2[_0x382bf2(0xb76)],'fHBhu':function(_0x4ed5b8,_0x426f8f){const _0x30c6ad=_0x43e0b9;return _0x2437c2[_0x30c6ad(0x370)](_0x4ed5b8,_0x426f8f);},'AeNQE':function(_0x52c124,_0x12f551){const _0x1cd6b6=_0x233947;return _0x2437c2[_0x1cd6b6(0xa84)](_0x52c124,_0x12f551);},'bvmtg':_0x2437c2[_0x233947(0x893)],'siFhM':_0x2437c2[_0x43e0b9(0xd62)],'QRMfM':function(_0x59fb61,_0x543b8d,_0x413fc1){const _0x3f568d=_0x194e3c;return _0x2437c2[_0x3f568d(0x9eb)](_0x59fb61,_0x543b8d,_0x413fc1);},'ZJGbp':_0x2437c2[_0x382bf2(0x254)],'Glcug':function(_0x4817e6,_0x4b03c5){const _0x234460=_0x194e3c;return _0x2437c2[_0x234460(0xa95)](_0x4817e6,_0x4b03c5);},'dxxUs':_0x2437c2[_0x194e3c(0x625)],'IKvyV':_0x2437c2[_0x4a329c(0x2ec)],'PXaGs':_0x2437c2[_0x382bf2(0x197)]};if(_0x2437c2[_0x382bf2(0x35f)](_0x2437c2[_0x4a329c(0x826)],_0x2437c2[_0x233947(0xc08)])){const _0x4666b8=_0x237fbc[_0x382bf2(0x6fe)][_0x233947(0x612)]('|');let _0x2b28ec=-0x2211+-0x151*0xa+0x1*0x2f3b;while(!![]){switch(_0x4666b8[_0x2b28ec++]){case'0':const _0x5c861f={};_0x5c861f[_0x4a329c(0x56a)]=_0x237fbc[_0x43e0b9(0x301)],_0x5c861f[_0x43e0b9(0x47f)+'nt']=_0x4c3295,_0x5281bc[_0x194e3c(0x35e)](_0x5c861f);continue;case'1':_0x251e71[_0x382bf2(0xac5)+_0x194e3c(0x8b0)+_0x43e0b9(0x372)](_0x237fbc[_0x382bf2(0xa07)])[_0x4a329c(0x4b1)]='';continue;case'2':const _0x5babe1={};_0x5babe1[_0x233947(0x56a)]=_0x237fbc[_0x194e3c(0x6bd)],_0x5babe1[_0x382bf2(0x47f)+'nt']=_0x458de2,_0x36c734[_0x43e0b9(0x35e)](_0x5babe1);continue;case'3':_0x1a0109=-0x104*0x3+0x1201*0x2+0x20f6*-0x1;continue;case'4':return;}break;}}else{prompt=JSON[_0x4a329c(0x90c)](_0x2437c2[_0x43e0b9(0x9f9)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x4a329c(0xb1f)](_0x834232[_0x233947(0x293)+_0x382bf2(0x39f)][-0x1f19+-0x551*0x7+0x4450][_0x233947(0x47f)+'nt'])[-0x3*0x7af+0x25eb+-0xedd])),prompt[_0x382bf2(0x262)][_0x382bf2(0x347)+_0x382bf2(0x790)+_0x194e3c(0x92c)+'y']=0x219*0x9+-0x1c26*-0x1+-0x2f06,prompt[_0x382bf2(0x262)][_0x233947(0xc09)+_0x382bf2(0x188)+'e']=-0x1a93+-0x7*0x577+-0x1035*-0x4+0.9;for(st in prompt[_0x382bf2(0x25a)]){if(_0x2437c2[_0x382bf2(0xc9e)](_0x2437c2[_0x382bf2(0x23d)],_0x2437c2[_0x194e3c(0x69c)])){if(_0x2437c2[_0x4a329c(0x3c7)](_0x2437c2[_0x382bf2(0xa95)](_0x2437c2[_0x233947(0x234)](_0x2437c2[_0x382bf2(0xbe8)](_0x2437c2[_0x4a329c(0x234)](_0x2437c2[_0x233947(0x5f4)](knowledge,prompt[_0x382bf2(0x25a)][st]),'\x0a'),_0x2437c2[_0x43e0b9(0x630)]),_0x3c4663),_0x2437c2[_0x382bf2(0x93a)])[_0x4a329c(0x1d9)+'h'],-0x35*0x9e+-0x1925+0x1*0x3fb7))knowledge+=_0x2437c2[_0x194e3c(0xbe8)](prompt[_0x194e3c(0x25a)][st],'\x0a');}else _0x565705[_0x233947(0x7cb)](_0x4b512e);}const _0x77b784={};_0x77b784[_0x4a329c(0x56a)]=_0x2437c2[_0x233947(0xaf6)],_0x77b784[_0x4a329c(0x47f)+'nt']=_0x2437c2[_0x233947(0x5c9)],prompt[_0x382bf2(0x262)][_0x43e0b9(0x969)+_0x43e0b9(0x451)]=[_0x77b784,{'role':_0x2437c2[_0x194e3c(0x8b4)],'content':_0x2437c2[_0x233947(0x76b)](_0x2437c2[_0x4a329c(0x181)],knowledge)},{'role':_0x2437c2[_0x382bf2(0x918)],'content':_0x2437c2[_0x194e3c(0xbe8)](_0x2437c2[_0x194e3c(0x76b)](_0x2437c2[_0x194e3c(0x1d6)],_0x3c4663),'”')}],optionsweb={'method':_0x2437c2[_0x233947(0xcca)],'headers':headers,'body':_0x2437c2[_0x233947(0x3bb)](b64EncodeUnicode,JSON[_0x4a329c(0x3b9)+_0x4a329c(0x562)](prompt[_0x233947(0x262)]))},document[_0x194e3c(0xac5)+_0x4a329c(0x8b0)+_0x43e0b9(0x372)](_0x2437c2[_0x43e0b9(0xd62)])[_0x43e0b9(0xc4b)+_0x4a329c(0x858)]='',_0x2437c2[_0x43e0b9(0x444)](markdownToHtml,_0x2437c2[_0x43e0b9(0x225)](beautify,_0x3c4663),document[_0x4a329c(0xac5)+_0x194e3c(0x8b0)+_0x43e0b9(0x372)](_0x2437c2[_0x194e3c(0xd62)])),chatTemp='',text_offset=-(-0x153a+-0x161+0x1*0x169c),prev_chat=document[_0x4a329c(0xd72)+_0x382bf2(0xd11)+_0x382bf2(0x7c5)](_0x2437c2[_0x4a329c(0x254)])[_0x382bf2(0xc4b)+_0x194e3c(0x858)],prev_chat=_0x2437c2[_0x43e0b9(0x7fd)](_0x2437c2[_0x4a329c(0xa95)](_0x2437c2[_0x233947(0x234)](prev_chat,_0x2437c2[_0x233947(0xcc3)]),document[_0x43e0b9(0xac5)+_0x194e3c(0x8b0)+_0x382bf2(0x372)](_0x2437c2[_0x382bf2(0xd62)])[_0x4a329c(0xc4b)+_0x4a329c(0x858)]),_0x2437c2[_0x382bf2(0x2ec)]),_0x2437c2[_0x382bf2(0x769)](fetch,_0x2437c2[_0x194e3c(0x800)],optionsweb)[_0x382bf2(0xae6)](_0xc857ae=>{const _0x1ee4df=_0x382bf2,_0x19c78b=_0x4a329c,_0x47dcf5=_0x382bf2,_0x3c9c97=_0x194e3c,_0x3d389a=_0x194e3c,_0x230df6={'ltwxL':_0x237fbc[_0x1ee4df(0xc56)],'PnvIZ':function(_0x5a2216,_0x4f5999){const _0x51c2d4=_0x1ee4df;return _0x237fbc[_0x51c2d4(0x8a4)](_0x5a2216,_0x4f5999);},'WmHmo':_0x237fbc[_0x19c78b(0x4c2)],'qfMoh':_0x237fbc[_0x1ee4df(0x5b5)],'JUUrs':function(_0x200906,_0x37e585){const _0x240e8e=_0x47dcf5;return _0x237fbc[_0x240e8e(0xc39)](_0x200906,_0x37e585);},'mGbBo':_0x237fbc[_0x3c9c97(0x393)],'byoFF':function(_0x427319,_0x2e62ad){const _0x470b69=_0x1ee4df;return _0x237fbc[_0x470b69(0x5aa)](_0x427319,_0x2e62ad);},'XFPgv':_0x237fbc[_0x19c78b(0x4ad)],'NIPVp':function(_0xaf052d,_0x4182cd){const _0x354c5e=_0x19c78b;return _0x237fbc[_0x354c5e(0x5aa)](_0xaf052d,_0x4182cd);},'vZNhe':_0x237fbc[_0x1ee4df(0x75b)],'PBMsI':_0x237fbc[_0x1ee4df(0x2e1)],'MFecE':_0x237fbc[_0x47dcf5(0xd24)],'Waler':function(_0x714429,_0x251b09){const _0x1e19ef=_0x3c9c97;return _0x237fbc[_0x1e19ef(0x818)](_0x714429,_0x251b09);},'PLUrV':_0x237fbc[_0x3d389a(0x852)],'qMrBa':function(_0x98652f,_0x560079){const _0x57635c=_0x47dcf5;return _0x237fbc[_0x57635c(0x535)](_0x98652f,_0x560079);},'AZcaK':_0x237fbc[_0x3c9c97(0x20d)],'SZaVg':_0x237fbc[_0x19c78b(0x3cc)],'cTOvE':_0x237fbc[_0x1ee4df(0xb07)],'IzjQR':function(_0x326a24,_0xe007a3){const _0x355030=_0x1ee4df;return _0x237fbc[_0x355030(0xba8)](_0x326a24,_0xe007a3);},'PjxNp':function(_0x3d9d05,_0x1d9616){const _0x164c72=_0x47dcf5;return _0x237fbc[_0x164c72(0x9f1)](_0x3d9d05,_0x1d9616);},'axmqo':_0x237fbc[_0x3c9c97(0x483)],'MoThf':function(_0x3851d1,_0x2c896){const _0x520f02=_0x19c78b;return _0x237fbc[_0x520f02(0x742)](_0x3851d1,_0x2c896);},'MCqck':_0x237fbc[_0x3d389a(0x566)],'XpMrL':_0x237fbc[_0x19c78b(0x629)],'caqnW':_0x237fbc[_0x1ee4df(0x9ed)],'zjrJV':_0x237fbc[_0x1ee4df(0xa07)],'qjIEy':_0x237fbc[_0x1ee4df(0x6bd)],'ZeEEn':_0x237fbc[_0x19c78b(0x301)],'HMflm':function(_0x2ac901,_0x1d4bbd){const _0x41c7cc=_0x3d389a;return _0x237fbc[_0x41c7cc(0x535)](_0x2ac901,_0x1d4bbd);},'iFNBi':_0x237fbc[_0x19c78b(0xb6d)],'fZKwq':_0x237fbc[_0x1ee4df(0xb86)],'syDNH':function(_0x5dbbb2,_0x4a35b6){const _0x49bc0c=_0x3d389a;return _0x237fbc[_0x49bc0c(0x535)](_0x5dbbb2,_0x4a35b6);},'HcYHV':_0x237fbc[_0x47dcf5(0x2e7)],'nOTKI':_0x237fbc[_0x3c9c97(0x545)],'Mktiy':function(_0x4d660e,_0x277cd5){const _0x433ad1=_0x1ee4df;return _0x237fbc[_0x433ad1(0x20f)](_0x4d660e,_0x277cd5);},'sHqND':_0x237fbc[_0x3c9c97(0x87c)],'Lzkom':_0x237fbc[_0x3c9c97(0x68d)],'DcYOb':_0x237fbc[_0x3d389a(0x9d5)],'gWEsW':function(_0x3fc0c5,_0xd79313){const _0x1eef1e=_0x47dcf5;return _0x237fbc[_0x1eef1e(0x5fe)](_0x3fc0c5,_0xd79313);},'pUXyT':function(_0xa4686e,_0x24bc2d){const _0x5aafed=_0x3c9c97;return _0x237fbc[_0x5aafed(0xaa0)](_0xa4686e,_0x24bc2d);},'cCmHL':_0x237fbc[_0x3c9c97(0x46a)],'reNLO':_0x237fbc[_0x19c78b(0xc80)],'JawAM':function(_0x2ec74e,_0x2050d7,_0x4fdaa9){const _0x6142f0=_0x19c78b;return _0x237fbc[_0x6142f0(0x925)](_0x2ec74e,_0x2050d7,_0x4fdaa9);},'olQAK':function(_0x2797bf,_0x15cd0b){const _0x4cd34c=_0x1ee4df;return _0x237fbc[_0x4cd34c(0x8a4)](_0x2797bf,_0x15cd0b);},'kjLPQ':_0x237fbc[_0x3d389a(0xa53)],'OOVne':function(_0x1c76b9,_0x243878){const _0xedd644=_0x1ee4df;return _0x237fbc[_0xedd644(0x4e5)](_0x1c76b9,_0x243878);},'FNXtW':function(_0x5ed71d,_0x3edd0e){const _0x367138=_0x19c78b;return _0x237fbc[_0x367138(0x5aa)](_0x5ed71d,_0x3edd0e);},'PAqCP':_0x237fbc[_0x3c9c97(0xaac)],'txRqG':_0x237fbc[_0x1ee4df(0x724)]};if(_0x237fbc[_0x47dcf5(0x818)](_0x237fbc[_0x1ee4df(0x5b6)],_0x237fbc[_0x1ee4df(0x5b6)])){const _0xdd6a9b={'gAwrp':_0x230df6[_0x3c9c97(0x777)],'cfNio':function(_0x1730be,_0x304336){const _0x166e17=_0x19c78b;return _0x230df6[_0x166e17(0x5c6)](_0x1730be,_0x304336);},'XoNbq':_0x230df6[_0x19c78b(0x283)]};_0x5bfbf9[_0x47dcf5(0x6b8)+'d']=function(){const _0x3a9085=_0x19c78b,_0x56987f=_0x19c78b,_0x276950=_0x3d389a,_0xb19dcf=_0x1ee4df;_0xf54f60[_0x3a9085(0x7c3)](_0xdd6a9b[_0x56987f(0xc2f)]),_0xdd6a9b[_0x56987f(0x8b7)](_0x5af355,_0xdd6a9b[_0x56987f(0xa0a)]);};}else{const _0x1e76fa=_0xc857ae[_0x47dcf5(0x6a6)][_0x3c9c97(0x173)+_0x47dcf5(0xcb4)]();let _0x44eef4='',_0x52f89b='';_0x1e76fa[_0x3d389a(0x40a)]()[_0x47dcf5(0xae6)](function _0x5050ec({done:_0x5ee6c3,value:_0x2ded28}){const _0x49ad79=_0x3c9c97,_0x1f84d0=_0x1ee4df,_0x145f64=_0x3d389a,_0x37b879=_0x19c78b,_0x24f29d=_0x3d389a,_0xc727e8={'pdxPM':function(_0x1694d4,_0x30a9fd){const _0x39e2c0=_0x1a0d;return _0x237fbc[_0x39e2c0(0x8eb)](_0x1694d4,_0x30a9fd);},'IImnq':_0x237fbc[_0x49ad79(0x4ad)]};if(_0x237fbc[_0x1f84d0(0x535)](_0x237fbc[_0x1f84d0(0x9a9)],_0x237fbc[_0x1f84d0(0x9a9)])){if(_0x5ee6c3)return;const _0x12e510=new TextDecoder(_0x237fbc[_0x24f29d(0x496)])[_0x24f29d(0xd56)+'e'](_0x2ded28);return _0x12e510[_0x145f64(0x465)]()[_0x1f84d0(0x612)]('\x0a')[_0x1f84d0(0x941)+'ch'](function(_0x19ae11){const _0x2474e3=_0x24f29d,_0xd5bb68=_0x1f84d0,_0x3c74f1=_0x1f84d0,_0x230b36=_0x1f84d0,_0x29664b=_0x24f29d,_0x2f6495={'IfxQg':_0x230df6[_0x2474e3(0x99f)],'mvyfW':function(_0x4be1a5,_0x27b5d9){const _0x29c3a6=_0x2474e3;return _0x230df6[_0x29c3a6(0xa56)](_0x4be1a5,_0x27b5d9);},'OZHHH':_0x230df6[_0xd5bb68(0x283)],'fMcUw':_0x230df6[_0x2474e3(0x9dc)],'jPivN':function(_0x2eb46e,_0x205255){const _0x779ca3=_0x3c74f1;return _0x230df6[_0x779ca3(0xc4a)](_0x2eb46e,_0x205255);},'ywPIs':_0x230df6[_0x2474e3(0x204)],'pToJC':function(_0x194f81,_0x536845){const _0x3aa01b=_0x230b36;return _0x230df6[_0x3aa01b(0x565)](_0x194f81,_0x536845);},'ourKc':_0x230df6[_0x2474e3(0xad3)],'AlzlV':_0x230df6[_0x2474e3(0x84d)],'VcWJg':_0x230df6[_0x29664b(0xb7d)]};if(_0x230df6[_0x230b36(0xbea)](_0x230df6[_0xd5bb68(0xa45)],_0x230df6[_0xd5bb68(0xa45)]))_0x2011da[_0xd5bb68(0x7c3)](_0x2f6495[_0xd5bb68(0xd44)]),_0x2f6495[_0x3c74f1(0x47b)](_0x358585,_0x2f6495[_0x29664b(0x930)]);else{try{_0x230df6[_0x230b36(0xa0c)](_0x230df6[_0xd5bb68(0x44b)],_0x230df6[_0x3c74f1(0xa49)])?lhVliC[_0x29664b(0x47b)](_0x1fb75c,'0'):document[_0x29664b(0xac5)+_0x29664b(0x8b0)+_0x29664b(0x372)](_0x230df6[_0x2474e3(0xbf3)])[_0x29664b(0x139)+_0x230b36(0x753)]=document[_0xd5bb68(0xac5)+_0x2474e3(0x8b0)+_0x2474e3(0x372)](_0x230df6[_0x230b36(0xbf3)])[_0x29664b(0x139)+_0x29664b(0x50d)+'ht'];}catch(_0xfff7ff){}_0x44eef4='';if(_0x230df6[_0x2474e3(0x286)](_0x19ae11[_0x3c74f1(0x1d9)+'h'],0x7db*0x3+0x11ef*-0x1+-0x4*0x167))_0x44eef4=_0x19ae11[_0x230b36(0x8c3)](-0x2*0x491+0x18c3+-0xf9b);if(_0x230df6[_0x3c74f1(0x467)](_0x44eef4,_0x230df6[_0x29664b(0x715)])){if(_0x230df6[_0x29664b(0x279)](_0x230df6[_0x29664b(0x621)],_0x230df6[_0xd5bb68(0xc26)]))_0x2ba0a8[_0x3c74f1(0x7cb)](_0x2f6495[_0x2474e3(0xc9b)],_0x15fb04);else{const _0x40bdd9=_0x230df6[_0x230b36(0x5b1)][_0x29664b(0x612)]('|');let _0x2bb214=-0x2445+0x5a9+0x1e9c;while(!![]){switch(_0x40bdd9[_0x2bb214++]){case'0':lock_chat=0xcdd+-0x3dd*0xa+-0x1*-0x19c5;continue;case'1':document[_0x2474e3(0xac5)+_0x29664b(0x8b0)+_0x2474e3(0x372)](_0x230df6[_0x2474e3(0xd25)])[_0x2474e3(0x4b1)]='';continue;case'2':const _0x252540={};_0x252540[_0x230b36(0x56a)]=_0x230df6[_0x230b36(0x544)],_0x252540[_0x29664b(0x47f)+'nt']=chatTemp,word_last[_0x3c74f1(0x35e)](_0x252540);continue;case'3':const _0x524639={};_0x524639[_0x29664b(0x56a)]=_0x230df6[_0x230b36(0x719)],_0x524639[_0x29664b(0x47f)+'nt']=_0x3c4663,word_last[_0x2474e3(0x35e)](_0x524639);continue;case'4':return;}break;}}}let _0x151e44;try{if(_0x230df6[_0x29664b(0x40e)](_0x230df6[_0x2474e3(0x2d1)],_0x230df6[_0xd5bb68(0x7cc)])){var _0xc1cdc=[],_0x5f3876=[];for(var _0x45fcca of _0x1ecd55){const _0x2d955c={};_0x2d955c[_0x3c74f1(0x1f6)]=0x1,_0x10d183[_0x3c74f1(0xcf8)]=_0x45fcca[_0xd5bb68(0x878)+_0x230b36(0x5a3)+'t'](_0x2d955c),_0xc1cdc[_0x2474e3(0x35e)](_0x45fcca[_0xd5bb68(0x498)+_0x3c74f1(0xb47)+_0x2474e3(0x707)]());const _0x418506={};_0x418506[_0x3c74f1(0x1f6)]=0x1,_0x5f3876[_0x29664b(0x35e)]([_0x45fcca[_0x230b36(0x878)+_0x3c74f1(0x5a3)+'t'](_0x418506),_0x2f6495[_0x2474e3(0x87a)](_0x45fcca[_0x2474e3(0xc95)+_0x29664b(0xb06)],-0x949*-0x3+-0x1bba+-0x20)]);}return _0x390d06[_0xd5bb68(0xa8e)]([_0x1cb312[_0x29664b(0xa8e)](_0xc1cdc),_0x5f3876]);}else try{_0x230df6[_0x29664b(0xa62)](_0x230df6[_0x230b36(0x835)],_0x230df6[_0x3c74f1(0xbc3)])?(_0x319a87=_0x1e272b[_0xd5bb68(0x90c)](_0x2f6495[_0x29664b(0x87a)](_0x3291c7,_0x12777e))[_0x2f6495[_0x230b36(0xd65)]],_0x176a2d=''):(_0x151e44=JSON[_0x2474e3(0x90c)](_0x230df6[_0xd5bb68(0xc4a)](_0x52f89b,_0x44eef4))[_0x230df6[_0x2474e3(0x204)]],_0x52f89b='');}catch(_0x246994){if(_0x230df6[_0x2474e3(0x1d1)](_0x230df6[_0x230b36(0x60b)],_0x230df6[_0x3c74f1(0x60b)]))_0x151e44=JSON[_0xd5bb68(0x90c)](_0x44eef4)[_0x230df6[_0x230b36(0x204)]],_0x52f89b='';else{const _0x5d9c29=/^[0-9,\s]+$/;return!_0x5d9c29[_0x2474e3(0x53d)](_0x3f9d7a);}}}catch(_0x4db6cd){_0x230df6[_0x3c74f1(0xbea)](_0x230df6[_0xd5bb68(0x736)],_0x230df6[_0x3c74f1(0x3f1)])?_0x52f89b+=_0x44eef4:function(){return![];}[_0x29664b(0x3e2)+_0x3c74f1(0x2b9)+'r'](lhVliC[_0xd5bb68(0x92a)](lhVliC[_0x2474e3(0x377)],lhVliC[_0x3c74f1(0x4d2)]))[_0xd5bb68(0x78d)](lhVliC[_0x3c74f1(0xc51)]);}if(_0x151e44&&_0x230df6[_0xd5bb68(0x3e0)](_0x151e44[_0x230b36(0x1d9)+'h'],0x455*-0x5+-0x194f+0x2ef8)&&_0x151e44[-0x1f*0xed+0x1*-0x12d1+0x2f84][_0x3c74f1(0xcb8)][_0x2474e3(0x47f)+'nt']){if(_0x230df6[_0x3c74f1(0x67e)](_0x230df6[_0x29664b(0xa37)],_0x230df6[_0xd5bb68(0xa37)]))chatTemp+=_0x151e44[0x1*0x1c9f+-0xe91+0x7*-0x202][_0x29664b(0xcb8)][_0x230b36(0x47f)+'nt'];else{if(!_0x1109ad)return;try{var _0x19332e=new _0x3521a4(_0xaac28d[_0x3c74f1(0x1d9)+'h']),_0x2bd289=new _0x5f2c3c(_0x19332e);for(var _0x2afa5b=0xe34+0xef8+-0x1d2c,_0x5dbc49=_0x4ecddc[_0xd5bb68(0x1d9)+'h'];_0xc727e8[_0x29664b(0x3ec)](_0x2afa5b,_0x5dbc49);_0x2afa5b++){_0x2bd289[_0x2afa5b]=_0x3cbeba[_0x230b36(0x358)+_0x2474e3(0x4a4)](_0x2afa5b);}return _0x19332e;}catch(_0x157ecd){}}}chatTemp=chatTemp[_0x3c74f1(0xc0e)+_0x3c74f1(0x426)]('\x0a\x0a','\x0a')[_0x29664b(0xc0e)+_0x29664b(0x426)]('\x0a\x0a','\x0a'),document[_0x29664b(0xac5)+_0x2474e3(0x8b0)+_0xd5bb68(0x372)](_0x230df6[_0x2474e3(0xaaf)])[_0x3c74f1(0xc4b)+_0x230b36(0x858)]='',_0x230df6[_0x29664b(0x8d9)](markdownToHtml,_0x230df6[_0x3c74f1(0x14b)](beautify,chatTemp),document[_0xd5bb68(0xac5)+_0xd5bb68(0x8b0)+_0x230b36(0x372)](_0x230df6[_0x3c74f1(0xaaf)])),document[_0x2474e3(0xd72)+_0x230b36(0xd11)+_0x2474e3(0x7c5)](_0x230df6[_0x230b36(0xa57)])[_0xd5bb68(0xc4b)+_0x3c74f1(0x858)]=_0x230df6[_0x2474e3(0x175)](_0x230df6[_0x29664b(0x422)](_0x230df6[_0x2474e3(0x422)](prev_chat,_0x230df6[_0x3c74f1(0x332)]),document[_0x29664b(0xac5)+_0x2474e3(0x8b0)+_0xd5bb68(0x372)](_0x230df6[_0x2474e3(0xaaf)])[_0x2474e3(0xc4b)+_0x2474e3(0x858)]),_0x230df6[_0x230b36(0xd64)]);}}),_0x1e76fa[_0x145f64(0x40a)]()[_0x24f29d(0xae6)](_0x5050ec);}else _0x16d914=_0x4b2521[_0x1f84d0(0x90c)](_0x2bea69)[_0xc727e8[_0x1f84d0(0xd05)]],_0x327bf6='';});}})[_0x43e0b9(0xd38)](_0x1d663b=>{const _0x557664=_0x43e0b9,_0xeb8fa0=_0x4a329c,_0x2c4b12=_0x233947,_0x2e1bfe=_0x4a329c,_0x819b8c=_0x194e3c;_0x2437c2[_0x557664(0x35f)](_0x2437c2[_0xeb8fa0(0xabc)],_0x2437c2[_0x557664(0x474)])?(_0x54d765=_0x394480[_0x2e1bfe(0x90c)](_0x47049a)[_0x237fbc[_0x557664(0x4ad)]],_0x4aa2e6=''):console[_0x2e1bfe(0x7cb)](_0x2437c2[_0x557664(0xcb1)],_0x1d663b);});}});}function getContentLength(_0x5ab837){const _0x205369=_0x42e93c,_0x4d78da=_0x135ea1,_0x4f08f0=_0x51c145,_0x143697=_0x42e93c,_0xc8b5ec=_0x135ea1,_0x48e4b4={};_0x48e4b4[_0x205369(0x8c4)]=_0x4d78da(0xa9a),_0x48e4b4[_0x205369(0x322)]=function(_0x5deb47,_0x2b77db){return _0x5deb47!==_0x2b77db;},_0x48e4b4[_0x4d78da(0x55e)]=_0x143697(0x399);const _0x1b4fb9=_0x48e4b4;let _0x3b7b3d=-0x13ea+-0x33*0x75+0x2b39;for(let _0x2b6082 of _0x5ab837){_0x1b4fb9[_0x4d78da(0x322)](_0x1b4fb9[_0x143697(0x55e)],_0x1b4fb9[_0x143697(0x55e)])?_0x32085f=_0x1b4fb9[_0x4f08f0(0x8c4)]:_0x3b7b3d+=_0x2b6082[_0x4f08f0(0x47f)+'nt'][_0x4f08f0(0x1d9)+'h'];}return _0x3b7b3d;}function trimArray(_0x4867fe,_0x37d804){const _0x48da54=_0x51c145,_0x50592d=_0x42e93c,_0x2d4e27=_0x135ea1,_0xdccb49=_0x51c145,_0x288260=_0x5aec22,_0x30ffa1={'Cmode':function(_0x58092c,_0x5af881){return _0x58092c>_0x5af881;},'WKwQf':function(_0x50074e,_0x1ec515){return _0x50074e(_0x1ec515);},'UHeiV':function(_0x191452,_0x41e3ab){return _0x191452!==_0x41e3ab;},'gwfup':_0x48da54(0xc1f),'rdric':_0x48da54(0xa41)};while(_0x30ffa1[_0x2d4e27(0x70c)](_0x30ffa1[_0x2d4e27(0x9e8)](getContentLength,_0x4867fe),_0x37d804)){_0x30ffa1[_0xdccb49(0x9ae)](_0x30ffa1[_0x288260(0x264)],_0x30ffa1[_0x288260(0xaf8)])?_0x4867fe[_0x2d4e27(0x7a7)]():_0x3c6abd+=_0x26da80[0xdbe+0xb0*0x3+-0xfce][_0x288260(0xcb8)][_0x50592d(0x47f)+'nt'];}}function send_modalchat(_0x453462,_0xe49575){const _0x3cf4e8=_0x42e93c,_0x468529=_0x42e93c,_0x5d608f=_0x135ea1,_0x514d79=_0x51c145,_0x11de8c=_0x5aec22,_0x7243e1={'zomzq':function(_0x4ab823,_0x458ef2){return _0x4ab823(_0x458ef2);},'CvFWf':_0x3cf4e8(0x585)+_0x468529(0x33d),'kJAQH':_0x5d608f(0x319)+_0x3cf4e8(0x9c4),'Nazyv':_0x11de8c(0xcc8)+_0x3cf4e8(0x2cc)+_0x11de8c(0x2cb),'zRutB':function(_0x58a7fc){return _0x58a7fc();},'CnhIZ':_0x3cf4e8(0xcc8)+_0x5d608f(0x8ca),'wHlZX':function(_0x1dc1bc,_0x5c9067){return _0x1dc1bc>=_0x5c9067;},'ZpMpT':_0x514d79(0x9aa)+_0x3cf4e8(0x6a3)+_0x468529(0xcab)+_0x11de8c(0x54b)+_0x11de8c(0x1fe)+_0x468529(0x78f)+_0x11de8c(0x79a)+_0x468529(0x5fb)+_0x3cf4e8(0x79d)+_0x11de8c(0x3f8)+_0x11de8c(0x8c0)+_0x468529(0x500)+_0x468529(0x9de),'iPMUb':function(_0x40ecd5,_0x739e00){return _0x40ecd5+_0x739e00;},'zGubd':_0x5d608f(0x3dc)+_0x3cf4e8(0xb26),'yrLUR':_0x11de8c(0x817)+_0x514d79(0x7cf)+'rl','LCTMC':function(_0x535c3a,_0x52e769){return _0x535c3a+_0x52e769;},'JgEaI':_0x3cf4e8(0x6ca)+_0x11de8c(0xb98)+_0x514d79(0x4bd),'kCReC':function(_0x3c3793,_0x13ea84){return _0x3c3793(_0x13ea84);},'LFmeT':_0x468529(0xc14),'GcZiV':function(_0x5c2bd2,_0x2bac60){return _0x5c2bd2+_0x2bac60;},'YzvID':function(_0x56aea4,_0x281252){return _0x56aea4(_0x281252);},'Skgsp':_0x5d608f(0xc02)+_0x3cf4e8(0xb80)+_0x514d79(0x7de),'tmRUR':function(_0x10d444,_0x3e3f81){return _0x10d444+_0x3e3f81;},'mzRzT':function(_0x32f02a,_0x32dd2b){return _0x32f02a+_0x32dd2b;},'BylXO':_0x514d79(0xa0f),'EZavt':function(_0x1719d1,_0x3b36d4){return _0x1719d1(_0x3b36d4);},'OYIso':function(_0x5bc4fb,_0x57fc34){return _0x5bc4fb+_0x57fc34;},'OPLLO':function(_0x2c75e6,_0x445e6b){return _0x2c75e6(_0x445e6b);},'zfnTN':_0x468529(0x3dc),'ZqRXB':function(_0x519554,_0x4f8860){return _0x519554+_0x4f8860;},'TOdXV':function(_0x21cc28,_0x443a03){return _0x21cc28(_0x443a03);},'yFoPs':_0x11de8c(0x7e5)+'l','JvtJf':function(_0x111e3b,_0x3daa36){return _0x111e3b(_0x3daa36);},'yzYkp':function(_0x435f1a,_0x2ec18e){return _0x435f1a+_0x2ec18e;},'OMQQT':_0x514d79(0x3dc)+':','MKUZN':function(_0x155465,_0x4fb8fe){return _0x155465(_0x4fb8fe);},'gkksg':function(_0x34e4c5,_0xc4b257){return _0x34e4c5+_0xc4b257;},'dcTLr':function(_0x59af43,_0x146107){return _0x59af43+_0x146107;},'JauBs':_0x468529(0x3dc)+_0x3cf4e8(0x328)+_0x5d608f(0x7cf)+'rl','wIraH':function(_0x54209d,_0x2af8eb){return _0x54209d(_0x2af8eb);},'kpPEM':function(_0x59899a,_0x2b4f4b){return _0x59899a+_0x2b4f4b;},'gaJIF':_0x514d79(0x29b)+'l','hpYPi':function(_0x2f44a1,_0x1e6dda){return _0x2f44a1(_0x1e6dda);},'ciiJf':function(_0x1c1bb7,_0x49cbf1){return _0x1c1bb7+_0x49cbf1;},'ISTBf':function(_0x1c1b2e,_0x3c3e4f){return _0x1c1b2e+_0x3c3e4f;},'jrsrd':function(_0x2dc59c,_0x42bd07){return _0x2dc59c(_0x42bd07);},'jqPmR':_0x11de8c(0x65e),'ybSVa':function(_0x38c309,_0x3cec11){return _0x38c309+_0x3cec11;},'HKZzP':_0x5d608f(0x2c9)+_0x514d79(0xb98)+_0x514d79(0x4bd),'aStgc':function(_0x413846,_0x166517){return _0x413846+_0x166517;},'mNRla':_0x11de8c(0x329)+'l','vSWvO':function(_0x27054a,_0x1cd949){return _0x27054a(_0x1cd949);},'UVfFZ':_0x3cf4e8(0x6f7)+'rl','Nmowr':function(_0x2f7560,_0xafa493){return _0x2f7560(_0xafa493);},'RuyEl':function(_0x15a992,_0x1678ae){return _0x15a992+_0x1678ae;},'dSQNx':function(_0x1fc666,_0x151b8e){return _0x1fc666+_0x151b8e;},'BfgHt':_0x468529(0x3dc)+_0x468529(0xb65)+_0x3cf4e8(0x308)+'l','YQuRN':function(_0x4ba118,_0x34483f){return _0x4ba118+_0x34483f;},'OJzBb':_0x514d79(0xa6d)+_0x514d79(0xb80)+_0x11de8c(0x7de),'zAJFK':function(_0x19b8b6,_0x4d67c0){return _0x19b8b6(_0x4d67c0);},'nxlNw':function(_0x4fec8f,_0xd8d5a8){return _0x4fec8f+_0xd8d5a8;},'mOsrt':function(_0x389a66,_0x498cdd){return _0x389a66(_0x498cdd);},'frLoC':function(_0x4bd8af,_0x3926ff){return _0x4bd8af+_0x3926ff;},'nrNXK':_0x514d79(0x3dc)+_0x3cf4e8(0x48a),'TxRRr':function(_0x1a496d,_0x3f0f5d){return _0x1a496d+_0x3f0f5d;},'DHiYc':function(_0xb4d632,_0x16a716){return _0xb4d632(_0x16a716);},'VcEyo':_0x5d608f(0x229)+_0x11de8c(0xb80)+_0x5d608f(0x7de),'QbsrS':function(_0x5240bc,_0x3aeb31){return _0x5240bc(_0x3aeb31);},'zUakB':function(_0x48905a,_0xe13deb){return _0x48905a+_0xe13deb;},'DYctF':_0x468529(0x888)+'rl','UIgss':function(_0xef7150,_0x4813cc){return _0xef7150(_0x4813cc);},'AgoAf':function(_0xb10c93,_0x494024){return _0xb10c93+_0x494024;},'BwpKs':function(_0x336804,_0x29dc45){return _0x336804+_0x29dc45;},'zksqQ':_0x468529(0x54d)+'rl','TZxfm':function(_0x442c21,_0x360af3){return _0x442c21+_0x360af3;},'QQIpG':function(_0x476999,_0x247f56){return _0x476999+_0x247f56;},'Kvvcy':_0x514d79(0xcfb)+_0x468529(0xb98)+_0x3cf4e8(0x4bd),'gbqEY':function(_0x19407d,_0x4e7e51){return _0x19407d(_0x4e7e51);},'fxhZh':function(_0x3cd98a,_0x364803){return _0x3cd98a+_0x364803;},'elVEl':function(_0x4c82d8,_0x2d0546){return _0x4c82d8(_0x2d0546);},'crluq':_0x514d79(0x34b),'iWyKK':function(_0x1bcc92,_0x2f2c51){return _0x1bcc92(_0x2f2c51);},'ThgKl':function(_0x231fe2,_0x50a645){return _0x231fe2(_0x50a645);},'qpFwv':function(_0xf6cd8d,_0x361ab0){return _0xf6cd8d(_0x361ab0);},'LAGLd':function(_0x42be3c,_0x53fb70){return _0x42be3c+_0x53fb70;},'YDNUq':_0x5d608f(0xb65)+_0x11de8c(0x308)+'l','cRowk':function(_0x1c542f,_0x4c77e7){return _0x1c542f(_0x4c77e7);},'VZeYg':function(_0x223e3f,_0x5c8bbe){return _0x223e3f+_0x5c8bbe;},'eDnrC':_0x3cf4e8(0xb65)+_0x11de8c(0x48a),'okbxp':function(_0x4e900f,_0xf674ef){return _0x4e900f(_0xf674ef);},'kjEIl':function(_0x45f666,_0x297d1d){return _0x45f666+_0x297d1d;},'JjJYk':_0x468529(0x48a),'tEFuu':function(_0x10fcbd,_0x170513){return _0x10fcbd(_0x170513);},'npHOh':function(_0x18c81c,_0x425005){return _0x18c81c<_0x425005;},'UreNd':function(_0x27ac90,_0x22d9dc){return _0x27ac90+_0x22d9dc;},'yTJIi':_0x468529(0x7fa)+_0x3cf4e8(0x43f)+'结束','eZyqb':_0x11de8c(0xc59)+_0x3cf4e8(0x64d)+_0x3cf4e8(0xa4c),'qOphu':_0x468529(0x336)+_0x514d79(0xd03),'KsJkU':_0x3cf4e8(0x20e)+'ss','IwqGZ':_0x3cf4e8(0xa16)+_0x3cf4e8(0x506)+_0x5d608f(0xd03),'fWrzz':function(_0x59aa2b,_0x22754c){return _0x59aa2b===_0x22754c;},'UWobE':_0x3cf4e8(0xbf0),'ILNbH':function(_0x2c0da8,_0x17bbe3){return _0x2c0da8>_0x17bbe3;},'GDzvJ':function(_0x253050,_0xef71a6,_0x5e4b1f){return _0x253050(_0xef71a6,_0x5e4b1f);},'iThwt':function(_0x3d0281,_0x2395d3){return _0x3d0281+_0x2395d3;},'HGfTY':function(_0x33b8b8,_0x554571){return _0x33b8b8!==_0x554571;},'TNQCw':_0x514d79(0x22a),'cFqGJ':_0x468529(0x9f3),'ZjFdD':_0x468529(0xc03),'sQdZI':function(_0x1e63df,_0x2d6bd8){return _0x1e63df(_0x2d6bd8);},'fRFcS':function(_0x5bd375){return _0x5bd375();},'lXnZl':function(_0x43de46,_0x255f72){return _0x43de46!==_0x255f72;},'yhKft':_0x514d79(0xbda),'jZhvt':function(_0x3775d5,_0x58e016,_0x44f560){return _0x3775d5(_0x58e016,_0x44f560);},'xWpTP':function(_0x34f0b0,_0x289feb){return _0x34f0b0+_0x289feb;},'rHEch':function(_0x2b4740,_0x41f115){return _0x2b4740===_0x41f115;},'RYQhe':_0x3cf4e8(0x87e),'azLgp':_0x514d79(0x3d3),'sbUSI':function(_0xec9d02,_0x3fec3f){return _0xec9d02!==_0x3fec3f;},'Hijfi':_0x468529(0x64e),'kywVZ':_0x468529(0xadb),'iViAv':function(_0x432ca4,_0xd1732f){return _0x432ca4==_0xd1732f;},'oVmvb':function(_0x110786,_0x3cee35){return _0x110786-_0x3cee35;},'xbVph':function(_0x124592,_0x4a90cd){return _0x124592(_0x4a90cd);},'LxvFw':function(_0x2d50f8,_0x2cb593){return _0x2d50f8(_0x2cb593);},'PtCQn':function(_0x117830,_0x327c5c){return _0x117830+_0x327c5c;},'TZKFy':function(_0x4a6256,_0x39fa4c){return _0x4a6256+_0x39fa4c;},'sxXlL':_0x3cf4e8(0x63e)+_0x11de8c(0xa9e)+_0x3cf4e8(0xa13)+_0x468529(0x641),'Ocqed':_0x5d608f(0xce7)+_0x468529(0x671)+_0x514d79(0xb38)+_0x468529(0x144)+_0x514d79(0xa3a)+_0x468529(0xa38)+'\x20)','XjsTa':_0x5d608f(0x952)+'es','UVVbN':_0x5d608f(0x60f)+_0x5d608f(0x425),'PCrOm':_0x3cf4e8(0x75d)+':','sIXoS':function(_0x301982,_0x1cd088){return _0x301982!==_0x1cd088;},'HUHby':_0x468529(0x9bf),'VBmrR':_0x11de8c(0xbdb),'zEqlP':_0x514d79(0x572),'qAMiu':function(_0x4d8413,_0x48789f){return _0x4d8413+_0x48789f;},'Nqwnq':function(_0xa16190){return _0xa16190();},'sYyZg':_0x468529(0x7c3),'chXjW':_0x5d608f(0x82c),'IAmZU':_0x468529(0xcb9),'dWuKS':_0x5d608f(0x7cb),'BwpUx':_0x5d608f(0xc34)+_0x11de8c(0x4c0),'Ntwed':_0x3cf4e8(0xad2),'yWseg':_0x468529(0x16f),'PlTdi':_0x468529(0x909),'YPzeL':_0x3cf4e8(0x22d),'dykzH':function(_0x3800c2,_0x4aea6f){return _0x3800c2!==_0x4aea6f;},'llJRO':_0x514d79(0xb10),'nYaNr':function(_0x499eef,_0x214b8d){return _0x499eef>_0x214b8d;},'xcweI':function(_0x463895,_0x19944b){return _0x463895==_0x19944b;},'XcgrZ':_0x514d79(0x8ef)+']','dKQNU':_0x514d79(0xa27),'YsgnZ':_0x11de8c(0x7ca),'pygKj':_0x468529(0x25f)+_0x3cf4e8(0xb4b),'PayTh':_0x5d608f(0x99b)+_0x11de8c(0x75e),'ekbnv':_0x468529(0x60f)+_0x514d79(0x215)+'t','tXfxn':_0x468529(0x33b),'uKBcD':function(_0xf4202,_0x45547e){return _0xf4202===_0x45547e;},'sjRHu':_0x468529(0xb71),'BNSjE':_0x5d608f(0x15f),'PNOiV':_0x3cf4e8(0x8d8),'shnmH':_0x468529(0x42d),'QEuHz':_0x5d608f(0xb83),'TkWgG':_0x468529(0x4ef),'NvIDR':_0x11de8c(0xbb2),'BNcgn':_0x11de8c(0xb57),'UUqLD':_0x468529(0x5d7)+'pt','mJjdK':function(_0x217dc2,_0x1b15bb){return _0x217dc2(_0x1b15bb);},'JKKvh':_0x5d608f(0xcc8)+_0x5d608f(0x3da),'VQNmg':_0x468529(0x36d)+_0x514d79(0xb12)+_0x5d608f(0x45f)+_0x514d79(0x2bc)+_0x11de8c(0x314),'RApKA':_0x3cf4e8(0x694)+'>','wyTKj':function(_0x27eee1,_0x3239dd){return _0x27eee1!==_0x3239dd;},'rABlR':_0x3cf4e8(0x757),'QjQAm':_0x514d79(0xa80),'CFdcc':_0x514d79(0x543),'nbLKp':_0x514d79(0x951),'hepHR':function(_0x3d8b56,_0x1e8c31){return _0x3d8b56!=_0x1e8c31;},'Zxphu':_0x3cf4e8(0x9f4),'YLmcp':_0x3cf4e8(0x45c),'jUPxX':function(_0x154760,_0x574ab9){return _0x154760(_0x574ab9);},'gTyyS':function(_0xd04b7d,_0x383129){return _0xd04b7d+_0x383129;},'xIVxs':function(_0x46c47c,_0x10932b){return _0x46c47c+_0x10932b;},'ofxUv':function(_0x459587,_0x280311){return _0x459587+_0x280311;},'kxKmh':_0x514d79(0x60f),'EYPVO':_0x5d608f(0x69a)+_0x468529(0x4af),'gVuTi':_0x5d608f(0x1bc)+'果\x0a','cjHpb':_0x514d79(0xd4e)+_0x5d608f(0x56b)+_0x11de8c(0xd0e)+_0x5d608f(0x6c6)+_0x468529(0x4fb),'bmckK':_0x3cf4e8(0x324)+_0x468529(0x4e3)+_0x514d79(0x698)+_0x11de8c(0x6d8)+'e=','IhABM':_0x3cf4e8(0xb92),'xjojH':_0x514d79(0x5d8),'Ljnlb':function(_0x53a844,_0x507314){return _0x53a844+_0x507314;},'LsYcT':function(_0x168ade,_0x5649e7){return _0x168ade+_0x5649e7;},'kYCvj':_0x5d608f(0x51c)+':','ozjcf':function(_0x4ad971,_0x459292){return _0x4ad971+_0x459292;},'hnKqj':_0x468529(0x1e5)+':\x0a','rJCRd':function(_0x3ff29d,_0x55c91e){return _0x3ff29d<_0x55c91e;},'vrMee':_0x514d79(0x782),'TfBGx':function(_0x3c19ba,_0x48f509){return _0x3c19ba+_0x48f509;},'xXWNm':function(_0x263675,_0x3b1499){return _0x263675+_0x3b1499;},'noHPK':function(_0x49c018,_0x4bd242){return _0x49c018+_0x4bd242;},'Jqvar':function(_0x85fc70,_0x315b9b){return _0x85fc70+_0x315b9b;},'Puwle':function(_0x448e91,_0x4a4506){return _0x448e91(_0x4a4506);},'nRoNU':_0x5d608f(0x4c5),'lvHLF':_0x3cf4e8(0x220),'CIWNq':function(_0x437e70,_0xb9b159){return _0x437e70+_0xb9b159;},'gmWHP':_0x5d608f(0xb6b),'BhGtb':_0x3cf4e8(0x3aa)+'\x0a','VMjfW':_0x3cf4e8(0xd3f),'qqpnp':_0x468529(0x4a9),'Qkark':function(_0x4ea67f,_0x4154e8){return _0x4ea67f+_0x4154e8;},'BpcrJ':function(_0x19d31e,_0x584805){return _0x19d31e+_0x584805;},'sAjex':function(_0x50ebe2,_0x419126){return _0x50ebe2+_0x419126;},'glDDU':function(_0x3c7e99,_0xc70529){return _0x3c7e99+_0xc70529;},'MMwzv':_0x514d79(0x91c)+'\x0a','zyJNd':function(_0x188717,_0x436808){return _0x188717<_0x436808;},'USHxj':function(_0x3bdfd9,_0x23f4db){return _0x3bdfd9!==_0x23f4db;},'GUmTx':_0x514d79(0x871),'pMzsS':function(_0x7b53b8,_0x40a868){return _0x7b53b8===_0x40a868;},'eDzME':_0x514d79(0x9c1),'QSahg':function(_0x4b5564,_0xe81cbc){return _0x4b5564<_0xe81cbc;},'cFnfa':function(_0x54d1d6,_0x43cb99){return _0x54d1d6+_0x43cb99;},'EyhhM':_0x468529(0x403)+'m','cgEWT':_0x11de8c(0x4b0)+_0x514d79(0xd57)+_0x514d79(0xbac)+_0x11de8c(0xa75)+_0x5d608f(0x750)+_0x3cf4e8(0xab5)+'何人','OwNpk':function(_0x391dab,_0x124f84){return _0x391dab+_0x124f84;},'kqaiT':_0x514d79(0xb2b),'lTplV':_0x514d79(0x775)+_0x3cf4e8(0x232)+_0x514d79(0x5bb),'ZXMnu':_0x514d79(0x1fa),'VCKBG':function(_0x2792fb,_0x5b46f2){return _0x2792fb(_0x5b46f2);},'BHNmw':function(_0x53330f,_0x28b855){return _0x53330f(_0x28b855);},'uteDR':function(_0x503a62,_0x390aaf){return _0x503a62+_0x390aaf;},'qLyvc':_0x5d608f(0x36d)+_0x5d608f(0xb12)+_0x3cf4e8(0x45f)+_0x5d608f(0x2c8)+_0x11de8c(0x9a3)+'\x22>','ndDfl':function(_0x176b15,_0xf647cd,_0x86407b){return _0x176b15(_0xf647cd,_0x86407b);},'TOpzO':_0x514d79(0xb65)+_0x11de8c(0xa72)+_0x11de8c(0x4fc)+_0x3cf4e8(0x577)+_0x11de8c(0x56d)+_0x5d608f(0x3fc)};let _0x5bd401=document[_0x514d79(0xac5)+_0x514d79(0x8b0)+_0x5d608f(0x372)](_0x7243e1[_0x5d608f(0x9ea)])[_0x3cf4e8(0x4b1)];if(_0x453462){if(_0x7243e1[_0x11de8c(0x36b)](_0x7243e1[_0x3cf4e8(0xc72)],_0x7243e1[_0x514d79(0xc72)])){_0x21d09b=_0x7243e1[_0x3cf4e8(0x87d)](_0x110ae1,_0x5d2ec2);const _0x466759={};return _0x466759[_0x468529(0x798)]=_0x7243e1[_0x468529(0x86d)],_0x37d04a[_0x468529(0x4eb)+'e'][_0x5d608f(0xd74)+'pt'](_0x466759,_0x29b411,_0x35b2cd);}else _0x5bd401=_0x453462[_0x468529(0x3a2)+_0x3cf4e8(0x37d)+'t'],_0x453462[_0x5d608f(0x4be)+'e']();}if(_0x7243e1[_0x468529(0x23f)](_0x5bd401[_0x11de8c(0x1d9)+'h'],0x3*0x469+0x16a6+-0x23e1)||_0x7243e1[_0x514d79(0xbc0)](_0x5bd401[_0x468529(0x1d9)+'h'],-0x20b*0x9+0x5fc+0xcf3))return;_0x7243e1[_0x5d608f(0x142)](trimArray,word_last,-0x2aa+0x10e9+0x3*-0x419);if(_0x7243e1[_0x468529(0x34a)](lock_chat,-0x1f07*0x1+-0x1c25+0x3b2c)){if(_0x7243e1[_0x514d79(0x5df)](_0x7243e1[_0x5d608f(0x7f7)],_0x7243e1[_0x3cf4e8(0xd77)])){const _0x559f73=_0x7243e1[_0x3cf4e8(0x89e)][_0x514d79(0x612)]('|');let _0x29e690=-0x2da*-0x1+-0x2*-0xc7d+-0x1bd4;while(!![]){switch(_0x559f73[_0x29e690++]){case'0':_0x24bf57[_0x5d608f(0xd72)+_0x3cf4e8(0xd11)+_0x11de8c(0x7c5)](_0x7243e1[_0x514d79(0x511)])[_0x468529(0x27b)][_0x514d79(0x5a5)+'ay']='';continue;case'1':_0x5bcbec=0x9*-0x3a+0xe*0x24c+0x101*-0x1e;continue;case'2':_0x7243e1[_0x11de8c(0x795)](_0x5930a2);continue;case'3':_0x16a5e4[_0x11de8c(0xd72)+_0x514d79(0xd11)+_0x514d79(0x7c5)](_0x7243e1[_0x3cf4e8(0x23c)])[_0x11de8c(0x27b)][_0x3cf4e8(0x5a5)+'ay']='';continue;case'4':return;}break;}}else{_0x7243e1[_0x514d79(0x231)](alert,_0x7243e1[_0x468529(0x361)]);return;}}lock_chat=0x1b0b+0x87a+0x11c2*-0x2;const _0x39ea18=_0x7243e1[_0x5d608f(0x149)](_0x7243e1[_0x468529(0x881)](_0x7243e1[_0x468529(0xc1a)](document[_0x5d608f(0xac5)+_0x514d79(0x8b0)+_0x514d79(0x372)](_0x7243e1[_0x3cf4e8(0xad4)])[_0x514d79(0xc4b)+_0x468529(0x858)][_0x11de8c(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x3cf4e8(0xc0e)+'ce'](/<hr.*/gs,'')[_0x3cf4e8(0xc0e)+'ce'](/<[^>]+>/g,'')[_0x5d608f(0xc0e)+'ce'](/\n\n/g,'\x0a'),_0x7243e1[_0x468529(0xa17)]),search_queryquery),_0x7243e1[_0x11de8c(0x6be)]);let _0x15ff63;if(document[_0x514d79(0xac5)+_0x11de8c(0x8b0)+_0x514d79(0x372)](_0x7243e1[_0x468529(0xb49)])[_0x514d79(0x718)][_0x3cf4e8(0xb30)+_0x514d79(0x14e)](_0x7243e1[_0x514d79(0x428)])){if(_0x7243e1[_0x468529(0x5df)](_0x7243e1[_0x3cf4e8(0x31b)],_0x7243e1[_0x5d608f(0x9b6)])){_0x2c84c8=_0x3a4f78[_0x11de8c(0xc0e)+_0x5d608f(0x426)]('(','(')[_0x3cf4e8(0xc0e)+_0x468529(0x426)](')',')')[_0x3cf4e8(0xc0e)+_0x514d79(0x426)](':\x20',':')[_0x468529(0xc0e)+_0x514d79(0x426)](':',':')[_0x11de8c(0xc0e)+_0x11de8c(0x426)](',\x20',',')[_0x514d79(0xc0e)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x24c2fe=_0x22c4ef[_0x5d608f(0x7bd)+_0x514d79(0x540)][_0x468529(0x1d9)+'h'];_0x7243e1[_0x514d79(0x6cf)](_0x24c2fe,0x1c9*0x11+0xd4f+-0x2ba8);--_0x24c2fe){const _0x25f04c=_0x7243e1[_0x5d608f(0x907)][_0x514d79(0x612)]('|');let _0x5e4760=-0xc13*-0x3+-0x1*0x1567+-0xed2;while(!![]){switch(_0x25f04c[_0x5e4760++]){case'0':_0x366f07=_0x19cd73[_0x3cf4e8(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x3cf4e8(0x2eb)](_0x7243e1[_0x468529(0x30d)],_0x7243e1[_0x5d608f(0x87d)](_0x4ab30b,_0x24c2fe)),_0x7243e1[_0x5d608f(0x2eb)](_0x7243e1[_0x11de8c(0xcc0)],_0x7243e1[_0x5d608f(0x87d)](_0x5641d3,_0x24c2fe)));continue;case'1':_0x25a84f=_0xe9b530[_0x468529(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x3cf4e8(0x6b4)](_0x7243e1[_0x3cf4e8(0xabb)],_0x7243e1[_0x3cf4e8(0x6d1)](_0x1074ee,_0x24c2fe)),_0x7243e1[_0x468529(0x6b4)](_0x7243e1[_0x11de8c(0xcc0)],_0x7243e1[_0x3cf4e8(0x87d)](_0x3bcfeb,_0x24c2fe)));continue;case'2':_0x149c6e=_0x4df338[_0x468529(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x514d79(0x2eb)](_0x7243e1[_0x5d608f(0x7ae)],_0x7243e1[_0x5d608f(0x87d)](_0x40a87e,_0x24c2fe)),_0x7243e1[_0x468529(0x2a9)](_0x7243e1[_0x514d79(0xcc0)],_0x7243e1[_0x11de8c(0x7a3)](_0x310340,_0x24c2fe)));continue;case'3':_0xa38c=_0x1c2bcc[_0x468529(0xc0e)+_0x5d608f(0x426)](_0x7243e1[_0x11de8c(0x2a9)](_0x7243e1[_0x3cf4e8(0xc47)],_0x7243e1[_0x11de8c(0x87d)](_0x5790c8,_0x24c2fe)),_0x7243e1[_0x514d79(0x8d0)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x468529(0x7a3)](_0x58ffe1,_0x24c2fe)));continue;case'4':_0x299b94=_0x459413[_0x468529(0xc0e)+_0x5d608f(0x426)](_0x7243e1[_0x11de8c(0x8cc)](_0x7243e1[_0x11de8c(0x208)],_0x7243e1[_0x11de8c(0x291)](_0x37b84f,_0x24c2fe)),_0x7243e1[_0x5d608f(0xcb5)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x11de8c(0x4ab)](_0x437a27,_0x24c2fe)));continue;case'5':_0x5f460c=_0x25979c[_0x3cf4e8(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x468529(0x8d0)](_0x7243e1[_0x3cf4e8(0xaa8)],_0x7243e1[_0x3cf4e8(0x7a3)](_0x4ced39,_0x24c2fe)),_0x7243e1[_0x5d608f(0xb8f)](_0x7243e1[_0x468529(0xcc0)],_0x7243e1[_0x5d608f(0x52c)](_0x5eeb39,_0x24c2fe)));continue;case'6':_0x2158c5=_0x537a36[_0x514d79(0xc0e)+_0x5d608f(0x426)](_0x7243e1[_0x3cf4e8(0x2eb)](_0x7243e1[_0x514d79(0x71c)],_0x7243e1[_0x11de8c(0x2dc)](_0x523e86,_0x24c2fe)),_0x7243e1[_0x514d79(0xb99)](_0x7243e1[_0x514d79(0xcc0)],_0x7243e1[_0x3cf4e8(0x7a3)](_0x3ff1a6,_0x24c2fe)));continue;case'7':_0x48095a=_0x463b2f[_0x5d608f(0xc0e)+_0x468529(0x426)](_0x7243e1[_0x514d79(0xb8f)](_0x7243e1[_0x514d79(0xa99)],_0x7243e1[_0x11de8c(0x3a1)](_0x2857cf,_0x24c2fe)),_0x7243e1[_0x468529(0x28f)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x5d608f(0x87d)](_0x945f86,_0x24c2fe)));continue;case'8':_0x690f6a=_0x39641b[_0x514d79(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x5d608f(0xa8b)](_0x7243e1[_0x468529(0x5dc)],_0x7243e1[_0x11de8c(0x4ab)](_0x4829c8,_0x24c2fe)),_0x7243e1[_0x5d608f(0x8cc)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x3cf4e8(0x51f)](_0x329ed5,_0x24c2fe)));continue;case'9':_0x42d4a5=_0x21e537[_0x514d79(0xc0e)+_0x514d79(0x426)](_0x7243e1[_0x468529(0x9c2)](_0x7243e1[_0x3cf4e8(0x894)],_0x7243e1[_0x3cf4e8(0x816)](_0x21af34,_0x24c2fe)),_0x7243e1[_0x3cf4e8(0x2eb)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x11de8c(0x6d1)](_0x5c4222,_0x24c2fe)));continue;case'10':_0x2b2e61=_0x22a602[_0x514d79(0xc0e)+_0x11de8c(0x426)](_0x7243e1[_0x11de8c(0xc21)](_0x7243e1[_0x3cf4e8(0x208)],_0x7243e1[_0x11de8c(0x4ab)](_0x291d1e,_0x24c2fe)),_0x7243e1[_0x5d608f(0x747)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x468529(0x5c2)](_0x890084,_0x24c2fe)));continue;case'11':_0x2c4e4d=_0x22f393[_0x468529(0xc0e)+_0x11de8c(0x426)](_0x7243e1[_0x11de8c(0x6b4)](_0x7243e1[_0x514d79(0x363)],_0x7243e1[_0x468529(0x2dc)](_0x51a955,_0x24c2fe)),_0x7243e1[_0x5d608f(0x9c2)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x11de8c(0x4ab)](_0x3f20d9,_0x24c2fe)));continue;case'12':_0x170ad8=_0x1b92c6[_0x5d608f(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x5d608f(0x7aa)](_0x7243e1[_0x3cf4e8(0x3c9)],_0x7243e1[_0x3cf4e8(0x4ab)](_0x354d75,_0x24c2fe)),_0x7243e1[_0x468529(0xb43)](_0x7243e1[_0x468529(0xcc0)],_0x7243e1[_0x514d79(0x5c2)](_0x4302cf,_0x24c2fe)));continue;case'13':_0x431da1=_0x197971[_0x11de8c(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x3cf4e8(0x9c2)](_0x7243e1[_0x514d79(0x249)],_0x7243e1[_0x514d79(0x4ab)](_0x49fba6,_0x24c2fe)),_0x7243e1[_0x3cf4e8(0x8cc)](_0x7243e1[_0x11de8c(0xcc0)],_0x7243e1[_0x3cf4e8(0x1be)](_0x298bb3,_0x24c2fe)));continue;case'14':_0x34658c=_0x499f04[_0x3cf4e8(0xc0e)+_0x514d79(0x426)](_0x7243e1[_0x3cf4e8(0x747)](_0x7243e1[_0x514d79(0x783)],_0x7243e1[_0x3cf4e8(0xa54)](_0x47910e,_0x24c2fe)),_0x7243e1[_0x5d608f(0x809)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x3cf4e8(0x1be)](_0xeee8f2,_0x24c2fe)));continue;case'15':_0x29ac7a=_0x54eec4[_0x3cf4e8(0xc0e)+_0x468529(0x426)](_0x7243e1[_0x11de8c(0xcbf)](_0x7243e1[_0x468529(0x644)],_0x7243e1[_0x3cf4e8(0x2dc)](_0x414212,_0x24c2fe)),_0x7243e1[_0x514d79(0x6e8)](_0x7243e1[_0x514d79(0xcc0)],_0x7243e1[_0x514d79(0x4ab)](_0x1f0935,_0x24c2fe)));continue;case'16':_0xc7da44=_0x25c0fc[_0x3cf4e8(0xc0e)+_0x468529(0x426)](_0x7243e1[_0x5d608f(0xcb5)](_0x7243e1[_0x11de8c(0x6b5)],_0x7243e1[_0x5d608f(0x6ab)](_0x2689eb,_0x24c2fe)),_0x7243e1[_0x514d79(0x776)](_0x7243e1[_0x468529(0xcc0)],_0x7243e1[_0x514d79(0xa54)](_0x2fed89,_0x24c2fe)));continue;case'17':_0x374ed1=_0x24a50f[_0x514d79(0xc0e)+_0x468529(0x426)](_0x7243e1[_0x468529(0x2eb)](_0x7243e1[_0x11de8c(0x7ae)],_0x7243e1[_0x514d79(0x4ab)](_0x382509,_0x24c2fe)),_0x7243e1[_0x514d79(0xcb5)](_0x7243e1[_0x11de8c(0xcc0)],_0x7243e1[_0x5d608f(0xafb)](_0x39ec63,_0x24c2fe)));continue;case'18':_0x588eda=_0x3ae300[_0x468529(0xc0e)+_0x3cf4e8(0x426)](_0x7243e1[_0x11de8c(0x7ad)](_0x7243e1[_0x514d79(0xd5e)],_0x7243e1[_0x468529(0x6ab)](_0x1c477b,_0x24c2fe)),_0x7243e1[_0x514d79(0x93c)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x11de8c(0xd3a)](_0x4ba2d3,_0x24c2fe)));continue;case'19':_0x3acac1=_0x14e7ef[_0x5d608f(0xc0e)+_0x11de8c(0x426)](_0x7243e1[_0x3cf4e8(0x7ad)](_0x7243e1[_0x3cf4e8(0x3a8)],_0x7243e1[_0x514d79(0x1cb)](_0x150fda,_0x24c2fe)),_0x7243e1[_0x514d79(0xc05)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x5d608f(0x2dc)](_0x160261,_0x24c2fe)));continue;case'20':_0x3d9383=_0x4558d6[_0x5d608f(0xc0e)+_0x5d608f(0x426)](_0x7243e1[_0x3cf4e8(0x8cc)](_0x7243e1[_0x3cf4e8(0xc46)],_0x7243e1[_0x468529(0x575)](_0x1529c8,_0x24c2fe)),_0x7243e1[_0x5d608f(0x340)](_0x7243e1[_0x11de8c(0xcc0)],_0x7243e1[_0x3cf4e8(0x7a3)](_0x233006,_0x24c2fe)));continue;case'21':_0x31ecab=_0x4150e9[_0x514d79(0xc0e)+_0x11de8c(0x426)](_0x7243e1[_0x514d79(0x571)](_0x7243e1[_0x11de8c(0x9d6)],_0x7243e1[_0x5d608f(0x1be)](_0x24e320,_0x24c2fe)),_0x7243e1[_0x5d608f(0x8ed)](_0x7243e1[_0x468529(0xcc0)],_0x7243e1[_0x3cf4e8(0x6ab)](_0x45096d,_0x24c2fe)));continue;case'22':_0x5460ed=_0x43047a[_0x514d79(0xc0e)+_0x11de8c(0x426)](_0x7243e1[_0x11de8c(0x73a)](_0x7243e1[_0x468529(0x914)],_0x7243e1[_0x514d79(0x8e1)](_0x4c66b0,_0x24c2fe)),_0x7243e1[_0x514d79(0x432)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x514d79(0x96a)](_0x3e3510,_0x24c2fe)));continue;case'23':_0x447920=_0x358e32[_0x514d79(0xc0e)+_0x514d79(0x426)](_0x7243e1[_0x11de8c(0x571)](_0x7243e1[_0x468529(0x224)],_0x7243e1[_0x514d79(0xd0b)](_0x386870,_0x24c2fe)),_0x7243e1[_0x468529(0x8ed)](_0x7243e1[_0x5d608f(0xcc0)],_0x7243e1[_0x514d79(0xd3a)](_0x237752,_0x24c2fe)));continue;case'24':_0x2f25c2=_0x545797[_0x11de8c(0xc0e)+_0x468529(0x426)](_0x7243e1[_0x468529(0x432)](_0x7243e1[_0x3cf4e8(0x224)],_0x7243e1[_0x5d608f(0x6ab)](_0x43b31d,_0x24c2fe)),_0x7243e1[_0x514d79(0x6b4)](_0x7243e1[_0x3cf4e8(0xcc0)],_0x7243e1[_0x11de8c(0x3df)](_0x26e3ea,_0x24c2fe)));continue;}break;}}_0xc11010=_0x7243e1[_0x514d79(0x1b5)](_0x108784,_0x4d3f00);for(let _0x2268eb=_0x53219f[_0x468529(0x7bd)+_0x514d79(0x540)][_0x5d608f(0x1d9)+'h'];_0x7243e1[_0x11de8c(0x6cf)](_0x2268eb,-0x16ba+-0x2506+-0x8*-0x778);--_0x2268eb){_0x2ef43d=_0x525b5b[_0x11de8c(0xc0e)+'ce'](_0x7243e1[_0x11de8c(0x31f)](_0x7243e1[_0x468529(0xc66)],_0x7243e1[_0x5d608f(0x667)](_0x1aaaaf,_0x2268eb)),_0x41ee10[_0x11de8c(0x7bd)+_0x5d608f(0x540)][_0x2268eb]),_0x3e9ed1=_0x3ecac6[_0x468529(0xc0e)+'ce'](_0x7243e1[_0x468529(0x9d3)](_0x7243e1[_0x3cf4e8(0x8f2)],_0x7243e1[_0x468529(0x30b)](_0x257b71,_0x2268eb)),_0xdc7e22[_0x5d608f(0x7bd)+_0x5d608f(0x540)][_0x2268eb]),_0x4fb4fe=_0x41cd4b[_0x514d79(0xc0e)+'ce'](_0x7243e1[_0x468529(0x21f)](_0x7243e1[_0x5d608f(0x4ca)],_0x7243e1[_0x514d79(0xa3d)](_0x3ec3dc,_0x2268eb)),_0xd44ad0[_0x514d79(0x7bd)+_0x11de8c(0x540)][_0x2268eb]);}return _0x2397c2=_0x3fc7d8[_0x3cf4e8(0xc0e)+_0x5d608f(0x426)]('[]',''),_0xccbbec=_0xeacfb1[_0x468529(0xc0e)+_0x5d608f(0x426)]('((','('),_0x595ca4=_0x95bb0d[_0x3cf4e8(0xc0e)+_0x468529(0x426)]('))',')'),_0x22b815=_0x5666e1[_0x3cf4e8(0xc0e)+_0x468529(0x426)]('(\x0a','\x0a'),_0xe171d2;}else{_0x15ff63=_0x7243e1[_0x5d608f(0x491)](_0x7243e1[_0x11de8c(0x5ee)](_0x7243e1[_0x3cf4e8(0xd53)],article[_0x514d79(0xc84)]),'\x0a'),_0x15ff63=_0x7243e1[_0x468529(0x637)](_0x15ff63,_0x7243e1[_0x5d608f(0x255)]),sentences[_0x514d79(0x3ad)]((_0x26f165,_0xcb35f0)=>{const _0x5aa272=_0x468529,_0x7f7c4=_0x5d608f,_0x210c0a=_0x3cf4e8,_0x24040a=_0x5d608f,_0x1fa3a8=_0x3cf4e8;if(_0x7243e1[_0x5aa272(0x5df)](_0x7243e1[_0x7f7c4(0xd3c)],_0x7243e1[_0x7f7c4(0xd3c)])){if(_0x7243e1[_0x7f7c4(0x786)](_0x7243e1[_0x1fa3a8(0x142)](cosineSimilarity,_0x7243e1[_0x7f7c4(0xa8b)](_0x7243e1[_0x5aa272(0x340)](_0x5bd401,'\x20'),_0xe49575),_0x26f165[-0x1d*-0xfb+-0x1*0x1afb+-0x173*0x1]),_0x7243e1[_0x210c0a(0x142)](cosineSimilarity,_0x7243e1[_0x7f7c4(0x8d0)](_0x7243e1[_0x24040a(0xbe6)](_0x5bd401,'\x20'),_0xe49575),_0xcb35f0[0x461*0x5+-0x2a9+-0x3*0x669]))){if(_0x7243e1[_0x5aa272(0x4b6)](_0x7243e1[_0x5aa272(0x964)],_0x7243e1[_0x5aa272(0x33e)]))return-(-0x10bf+0x103+0x53f*0x3);else{if(_0x7243e1[_0x24040a(0x8fa)](_0x7243e1[_0x5aa272(0x7ad)](_0x7243e1[_0x1fa3a8(0x2ca)](_0x21d939,_0x321b0d[_0x2f8bf2]),'\x0a')[_0x5aa272(0x1d9)+'h'],0x1c08+0x2468+-0x8b4*0x7))_0x147f75=_0x7243e1[_0x7f7c4(0x809)](_0x7243e1[_0x1fa3a8(0xb99)](_0x14cc9c,_0xfba420[_0x27a820]),'\x0a');}}else{if(_0x7243e1[_0x210c0a(0x5df)](_0x7243e1[_0x24040a(0x13c)],_0x7243e1[_0x5aa272(0x13c)]))return 0xd18+0x53*0x22+-0x181d*0x1;else{_0x7243e1[_0x210c0a(0x96a)](_0x4a4ef7,_0x7243e1[_0x1fa3a8(0x361)]);return;}}}else{const _0x1ed458={'UqgQq':_0x7243e1[_0x5aa272(0xadc)],'UWBTN':_0x7243e1[_0x5aa272(0xb91)],'OhStD':function(_0x1e9981,_0x2b52d4){const _0x2d25df=_0x24040a;return _0x7243e1[_0x2d25df(0x96a)](_0x1e9981,_0x2b52d4);},'EZCPn':_0x7243e1[_0x7f7c4(0x723)]};_0x525bac[_0x24040a(0xcf9)+_0x24040a(0x3ab)+_0x7f7c4(0x312)+'r'](_0x7243e1[_0x1fa3a8(0x71b)],function(){const _0x58b87f=_0x24040a,_0x504a1c=_0x5aa272,_0x35bc6b=_0x7f7c4,_0x432505=_0x210c0a,_0xa5ae64=_0x5aa272,_0x124034={'Ozyzp':_0x1ed458[_0x58b87f(0x68c)],'PCqkO':function(_0xb5c81,_0x5dde80){const _0x3c8978=_0x58b87f;return _0x1ed458[_0x3c8978(0x400)](_0xb5c81,_0x5dde80);},'zdrWe':_0x1ed458[_0x504a1c(0xaca)]};_0x28579d[_0x35bc6b(0x47f)+_0x58b87f(0x41f)+_0x35bc6b(0x76a)][_0xa5ae64(0xb79)+_0xa5ae64(0x78a)+_0x432505(0x6d9)+_0xa5ae64(0xba6)][_0xa5ae64(0xbed)+_0x432505(0x520)+_0xa5ae64(0x734)+_0x58b87f(0x47a)][_0x504a1c(0xae6)](function(){const _0x4047fe=_0x432505,_0x5d9956=_0x432505,_0x4add82=_0xa5ae64,_0x570650=_0x58b87f,_0x399883=_0x432505;_0x565c1e[_0x4047fe(0x47f)+_0x5d9956(0x41f)+_0x4047fe(0x76a)][_0x4047fe(0xb79)+_0x4047fe(0x78a)+_0x4add82(0x6d9)+_0x399883(0xba6)][_0x570650(0x97d)+_0x570650(0xc31)]['on'](_0x1ed458[_0x5d9956(0x80b)],function(_0xb9dce0){const _0x474008=_0x570650,_0x3e85d8=_0x5d9956,_0x27b01f=_0x4add82,_0x42d84d=_0x5d9956;_0x4d865b[_0x474008(0x7c3)](_0x124034[_0x3e85d8(0x82a)]),_0x124034[_0x27b01f(0x13e)](_0x42dc21,_0x124034[_0x474008(0x2c1)]);});});});}});for(let _0x3ae05e=-0x1*-0x18b5+0x20f+-0x1ac4;_0x7243e1[_0x11de8c(0x3e7)](_0x3ae05e,Math[_0x468529(0x48d)](-0x1334*-0x2+-0x9f+-0x25c3*0x1,sentences[_0x3cf4e8(0x1d9)+'h']));++_0x3ae05e){if(_0x7243e1[_0x3cf4e8(0xa63)](_0x7243e1[_0x514d79(0x675)],_0x7243e1[_0x468529(0x675)])){if(_0x7243e1[_0x5d608f(0x277)](keytextres[_0x11de8c(0x15d)+'Of'](sentences[_0x3ae05e][-0x23ce+0x2c5+-0x210a*-0x1]),-(-0x7e6*-0x1+-0x1cc5+-0x14e*-0x10)))keytextres[_0x5d608f(0x8f4)+'ft'](_0x7243e1[_0x5d608f(0x664)](_0x7243e1[_0x3cf4e8(0x9d3)](_0x7243e1[_0x514d79(0x267)](_0x7243e1[_0x3cf4e8(0x7be)](_0x7243e1[_0x468529(0x432)](_0x7243e1[_0x3cf4e8(0x70b)](_0x7243e1[_0x5d608f(0x36a)](_0x7243e1[_0x11de8c(0x93c)]('第',_0x7243e1[_0x3cf4e8(0x1cf)](String,sentences[_0x3ae05e][-0x1*-0x26bc+0x178+-0x2834*0x1])),'页'),sentences[_0x3ae05e][0x1746+-0x1*-0x44e+-0x1b92]),'第'),_0x7243e1[_0x514d79(0x4ab)](String,sentences[_0x3ae05e][-0x26d8+0x1c*-0x7e+0xf5*0x37])),'行:'),sentences[_0x3ae05e][-0x1*-0xfce+0xa6a+-0x8bd*0x3]),'\x0a'));}else{const _0xb4c466={};_0xb4c466[_0x468529(0x1f6)]=0x1,_0x504ace[_0x11de8c(0xcf8)]=_0x3df00c[_0x468529(0x878)+_0x3cf4e8(0x5a3)+'t'](_0xb4c466),_0x20945a[_0x3cf4e8(0x35e)](_0x373ad7[_0x514d79(0x498)+_0x5d608f(0xb47)+_0x514d79(0x707)]());const _0x66a346={};_0x66a346[_0x5d608f(0x1f6)]=0x1,_0x46150a[_0x11de8c(0x35e)]([_0x4877af[_0x468529(0x878)+_0x5d608f(0x5a3)+'t'](_0x66a346),_0x7243e1[_0x514d79(0xb99)](_0x13b0aa[_0x468529(0xc95)+_0x11de8c(0xb06)],0xf5f+0xd9*0x7+-0x154d)]);}}}}else{if(_0x7243e1[_0x5d608f(0x36b)](_0x7243e1[_0x3cf4e8(0x647)],_0x7243e1[_0x514d79(0xaa9)])){_0x15ff63=_0x7243e1[_0x514d79(0xbe6)](_0x7243e1[_0x11de8c(0xc3c)](_0x7243e1[_0x11de8c(0xb8f)](_0x7243e1[_0x3cf4e8(0x307)],article[_0x514d79(0xc84)]),'\x0a'),_0x7243e1[_0x11de8c(0x848)]);for(el in modalele){if(_0x7243e1[_0x5d608f(0x597)](_0x7243e1[_0x3cf4e8(0x62e)],_0x7243e1[_0x3cf4e8(0x275)])){_0x7243e1[_0x468529(0xaed)](_0x4c93a3,_0x7243e1[_0x514d79(0x361)]);return;}else{if(_0x7243e1[_0x11de8c(0x3e7)](_0x7243e1[_0x11de8c(0xc63)](_0x7243e1[_0x11de8c(0x2a9)](_0x15ff63,modalele[el]),'\x0a')[_0x3cf4e8(0x1d9)+'h'],0x2*0x202+-0x26c8+0x2648))_0x15ff63=_0x7243e1[_0x5d608f(0x8d3)](_0x7243e1[_0x11de8c(0x1a0)](_0x15ff63,modalele[el]),'\x0a');}}_0x15ff63=_0x7243e1[_0x11de8c(0x784)](_0x15ff63,_0x7243e1[_0x468529(0xb3d)]),fulltext[_0x514d79(0x3ad)]((_0x3a30b5,_0x168691)=>{const _0x3a2a6d=_0x514d79,_0x398ab5=_0x468529,_0x1e515b=_0x11de8c,_0x59d875=_0x468529,_0x1587c1=_0x468529,_0x1eff39={'bgpQX':function(_0x56f0ca){const _0x3d2f3d=_0x1a0d;return _0x7243e1[_0x3d2f3d(0x67c)](_0x56f0ca);},'KWnHY':function(_0x424ac0,_0x18b518){const _0x2004a3=_0x1a0d;return _0x7243e1[_0x2004a3(0x30b)](_0x424ac0,_0x18b518);},'dQuYl':_0x7243e1[_0x3a2a6d(0x723)]};if(_0x7243e1[_0x3a2a6d(0x495)](_0x7243e1[_0x3a2a6d(0xd1f)],_0x7243e1[_0x1e515b(0xd1f)]))_0x4f8711+=_0x468823;else{if(_0x7243e1[_0x1e515b(0x786)](_0x7243e1[_0x1e515b(0x142)](cosineSimilarity,_0x7243e1[_0x398ab5(0x28f)](_0x7243e1[_0x59d875(0x340)](_0x5bd401,'\x20'),_0xe49575),_0x3a30b5),_0x7243e1[_0x398ab5(0x80f)](cosineSimilarity,_0x7243e1[_0x1587c1(0xb99)](_0x7243e1[_0x59d875(0x267)](_0x5bd401,'\x20'),_0xe49575),_0x168691))){if(_0x7243e1[_0x1e515b(0xa63)](_0x7243e1[_0x59d875(0xa7b)],_0x7243e1[_0x59d875(0xce4)]))_0x3b2f75=_0x177061[_0x59d875(0x3a2)+_0x1e515b(0x37d)+'t'],_0x1e7355[_0x398ab5(0x4be)+'e'](),_0x1eff39[_0x3a2a6d(0x701)](_0x525d2f);else return-(-0x11ab+0xa8b+-0x16d*-0x5);}else{if(_0x7243e1[_0x398ab5(0x5e6)](_0x7243e1[_0x398ab5(0x8d1)],_0x7243e1[_0x3a2a6d(0x920)]))return-0x169*-0x13+0x91*-0x42+0xa98;else _0x3cc050=_0x1eff39[_0x3a2a6d(0x469)](_0x1ebaba,_0x40cf88[_0x59d875(0x47f)+_0x1587c1(0x243)+_0x3a2a6d(0x606)]),_0x1f34a8=new _0x2d159a(_0x5ce195[_0x1587c1(0x47f)+_0x3a2a6d(0x243)+_0x398ab5(0x606)][_0x59d875(0x949)+_0x59d875(0x9d4)](!![]))[_0x1e515b(0x90c)](),_0x1eff39[_0x3a2a6d(0x469)](_0x258bc0,_0x1eff39[_0x59d875(0xd2a)]);}}});for(let _0x1d7794=0x22a1+-0x25cc+0x32b*0x1;_0x7243e1[_0x11de8c(0xbc5)](_0x1d7794,Math[_0x3cf4e8(0x48d)](0x1f71*-0x1+0x1bea+0x38b,fulltext[_0x11de8c(0x1d9)+'h']));++_0x1d7794){if(_0x7243e1[_0x468529(0x9df)](_0x7243e1[_0x11de8c(0xbb1)],_0x7243e1[_0x514d79(0xbb1)])){if(_0x7243e1[_0x5d608f(0x23f)](_0x49b7ac[_0x514d79(0x15d)+'Of'](_0x4b6e1c[_0x2b3ce8]),-(0x1c5c+0x301*0x1+-0x1f5c)))_0x4b504e[_0x3cf4e8(0x8f4)+'ft'](_0x57a32c[_0x56b5a6]);}else{if(_0x7243e1[_0x11de8c(0x277)](keytextres[_0x3cf4e8(0x15d)+'Of'](fulltext[_0x1d7794]),-(0x62e+0x8a*0x9+0x1*-0xb07)))keytextres[_0x468529(0x8f4)+'ft'](fulltext[_0x1d7794]);}}}else{const _0x278894='['+_0x57d412++ +_0x514d79(0x922)+_0x26115b[_0x5d608f(0x4b1)+'s']()[_0x3cf4e8(0xb46)]()[_0x11de8c(0x4b1)],_0x1d496e='[^'+_0x7243e1[_0x5d608f(0x155)](_0x37cd9a,-0x19fb+0x10aa+0x1*0x952)+_0x11de8c(0x922)+_0x270fcb[_0x514d79(0x4b1)+'s']()[_0x5d608f(0xb46)]()[_0x11de8c(0x4b1)];_0xe1cb30=_0x22e1cd+'\x0a\x0a'+_0x1d496e,_0x4dbdbb[_0x514d79(0x86a)+'e'](_0x37afe8[_0x468529(0x4b1)+'s']()[_0x514d79(0xb46)]()[_0x3cf4e8(0x4b1)]);}}keySentencesCount=-0x1727+0x22bf+-0xb98;for(st in keytextres){if(_0x7243e1[_0x3cf4e8(0xcf5)](_0x7243e1[_0x514d79(0x980)],_0x7243e1[_0x3cf4e8(0x980)])){if(_0x7243e1[_0x5d608f(0xbc6)](_0x7243e1[_0x5d608f(0x7aa)](_0x7243e1[_0x468529(0x70b)](_0x15ff63,keytextres[st]),'\x0a')[_0x11de8c(0x1d9)+'h'],-0x208f*-0x1+0x3c7+-0x1e7a))_0x15ff63=_0x7243e1[_0x3cf4e8(0x321)](_0x7243e1[_0x3cf4e8(0x8d3)](_0x15ff63,keytextres[st]),'\x0a');keySentencesCount=_0x7243e1[_0x5d608f(0x9dd)](keySentencesCount,-0x1*0x25ec+-0x6ce+0x2cbb);}else{const _0x575259={'kfTaT':_0x7243e1[_0x468529(0xb91)],'cBtpo':function(_0x590e02,_0x7812ec){const _0xf62be2=_0x5d608f;return _0x7243e1[_0xf62be2(0x3c3)](_0x590e02,_0x7812ec);},'Wrtzp':_0x7243e1[_0x11de8c(0x723)]};_0x3f5360[_0x11de8c(0x47f)+_0x3cf4e8(0x41f)+_0x468529(0x76a)][_0x514d79(0xb79)+_0x468529(0x78a)+_0x514d79(0x6d9)+_0x514d79(0xba6)][_0x11de8c(0x97d)+_0x3cf4e8(0xc31)]['on'](_0x7243e1[_0x11de8c(0xadc)],function(_0x4239e1){const _0x4f933b=_0x11de8c,_0x4a42d5=_0x514d79,_0x5098d8=_0x468529,_0xc3f87f=_0x468529;_0x1deaba[_0x4f933b(0x7c3)](_0x575259[_0x4f933b(0xb9d)]),_0x575259[_0x5098d8(0x934)](_0x4647f5,_0x575259[_0xc3f87f(0x2e0)]);});}}const _0x2d5507={};_0x2d5507[_0x3cf4e8(0x56a)]=_0x7243e1[_0x514d79(0x86f)],_0x2d5507[_0x5d608f(0x47f)+'nt']=_0x7243e1[_0x468529(0xac2)];const _0x17a1bd={};_0x17a1bd[_0x3cf4e8(0x56a)]=_0x7243e1[_0x5d608f(0x6e2)],_0x17a1bd[_0x514d79(0x47f)+'nt']=_0x15ff63,mes=[_0x2d5507,_0x17a1bd],mes=mes[_0x468529(0x26a)+'t'](word_last),mes=mes[_0x11de8c(0x26a)+'t']([{'role':_0x7243e1[_0x468529(0x973)],'content':_0x7243e1[_0x5d608f(0x8d3)](_0x7243e1[_0x5d608f(0xd5c)](_0x7243e1[_0x3cf4e8(0x7e2)],_0x5bd401),_0x7243e1[_0x514d79(0x297)])}]);const _0x1fe70a={'method':_0x7243e1[_0x5d608f(0xa8c)],'headers':headers,'body':_0x7243e1[_0x11de8c(0x5f5)](b64EncodeUnicode,JSON[_0x11de8c(0x3b9)+_0x5d608f(0x562)]({'messages':mes[_0x468529(0x26a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x5bd401=_0x5bd401[_0x11de8c(0xc0e)+_0x3cf4e8(0x426)]('\x0a\x0a','\x0a')[_0x514d79(0xc0e)+_0x514d79(0x426)]('\x0a\x0a','\x0a'),document[_0x514d79(0xac5)+_0x3cf4e8(0x8b0)+_0x5d608f(0x372)](_0x7243e1[_0x5d608f(0xc44)])[_0x11de8c(0xc4b)+_0x3cf4e8(0x858)]='',_0x7243e1[_0x514d79(0x142)](markdownToHtml,_0x7243e1[_0x3cf4e8(0x903)](beautify,_0x5bd401),document[_0x11de8c(0xac5)+_0x468529(0x8b0)+_0x514d79(0x372)](_0x7243e1[_0x514d79(0xc44)])),chatTemp='',text_offset=-(0x5*-0x268+0x95*0x3d+-0x1*0x1778),prev_chat=document[_0x11de8c(0xd72)+_0x5d608f(0xd11)+_0x514d79(0x7c5)](_0x7243e1[_0x514d79(0xd61)])[_0x468529(0xc4b)+_0x3cf4e8(0x858)],prev_chat=_0x7243e1[_0x5d608f(0xa8b)](_0x7243e1[_0x468529(0x90e)](_0x7243e1[_0x468529(0x637)](prev_chat,_0x7243e1[_0x11de8c(0x19e)]),document[_0x11de8c(0xac5)+_0x11de8c(0x8b0)+_0x11de8c(0x372)](_0x7243e1[_0x514d79(0xc44)])[_0x468529(0xc4b)+_0x11de8c(0x858)]),_0x7243e1[_0x5d608f(0x828)]),_0x7243e1[_0x3cf4e8(0x5b9)](fetch,_0x7243e1[_0x514d79(0x9c6)],_0x1fe70a)[_0x5d608f(0xae6)](_0x3434da=>{const _0x4324b7=_0x11de8c,_0x48c94e=_0x11de8c,_0x32c5a3=_0x514d79,_0x370357=_0x468529,_0x31ac61=_0x3cf4e8,_0x126ab8={'zyWps':function(_0x2f5a1f,_0x2c091e){const _0x55dbc6=_0x1a0d;return _0x7243e1[_0x55dbc6(0xd3a)](_0x2f5a1f,_0x2c091e);},'bNhYf':function(_0x2cfbb4,_0xe2e42d){const _0x6f6c0e=_0x1a0d;return _0x7243e1[_0x6f6c0e(0x7aa)](_0x2cfbb4,_0xe2e42d);},'UVAis':function(_0x338fae,_0x4e4992){const _0xdd57db=_0x1a0d;return _0x7243e1[_0xdd57db(0xb58)](_0x338fae,_0x4e4992);},'rPLLi':_0x7243e1[_0x4324b7(0x40b)],'JnkoF':_0x7243e1[_0x48c94e(0x150)],'hIUVn':function(_0x20a6c2){const _0x5d0b5d=_0x4324b7;return _0x7243e1[_0x5d0b5d(0x8d2)](_0x20a6c2);},'HOeug':_0x7243e1[_0x32c5a3(0x3a6)],'hsWwv':_0x7243e1[_0x32c5a3(0xb5c)],'tQVEP':_0x7243e1[_0x370357(0xb93)],'iPByI':_0x7243e1[_0x48c94e(0x45d)],'OhIvs':_0x7243e1[_0x4324b7(0xbbb)],'EYlBP':_0x7243e1[_0x48c94e(0x726)],'LGakj':_0x7243e1[_0x4324b7(0xbe0)],'eIMrA':function(_0x1b1f8f,_0x3387e5){const _0x2642df=_0x370357;return _0x7243e1[_0x2642df(0x8fa)](_0x1b1f8f,_0x3387e5);},'oIqXm':_0x7243e1[_0x48c94e(0xc66)],'IFNUU':_0x7243e1[_0x32c5a3(0x8f2)],'RKLNL':_0x7243e1[_0x32c5a3(0x4ca)],'GFCJl':function(_0x5a4773,_0x8333cc){const _0x274d4c=_0x4324b7;return _0x7243e1[_0x274d4c(0x495)](_0x5a4773,_0x8333cc);},'OhAzA':_0x7243e1[_0x4324b7(0x2a2)],'MDZcF':_0x7243e1[_0x370357(0x6e4)],'XTZmy':function(_0x4119a1,_0x305507){const _0x395888=_0x31ac61;return _0x7243e1[_0x395888(0xbc7)](_0x4119a1,_0x305507);},'mmwha':_0x7243e1[_0x370357(0xca7)],'QCqpM':_0x7243e1[_0x31ac61(0x6dc)],'FWSfB':function(_0x133072,_0x2e38f0){const _0x1d476e=_0x48c94e;return _0x7243e1[_0x1d476e(0xbc0)](_0x133072,_0x2e38f0);},'sHbhr':function(_0x4a2f18,_0xc9e491){const _0x565b7c=_0x31ac61;return _0x7243e1[_0x565b7c(0x277)](_0x4a2f18,_0xc9e491);},'WhsAm':_0x7243e1[_0x31ac61(0x529)],'LDRPv':_0x7243e1[_0x32c5a3(0xaf4)],'quRTq':_0x7243e1[_0x32c5a3(0x814)],'KMKcz':_0x7243e1[_0x48c94e(0x41d)],'KnmSA':_0x7243e1[_0x370357(0x6e2)],'TEORB':_0x7243e1[_0x4324b7(0x9ea)],'aTWgl':_0x7243e1[_0x32c5a3(0x973)],'sDzNN':function(_0x1f19a0,_0x41ce12){const _0x3771ed=_0x31ac61;return _0x7243e1[_0x3771ed(0x597)](_0x1f19a0,_0x41ce12);},'TqNgQ':_0x7243e1[_0x48c94e(0xbc1)],'eutJK':function(_0x124c1c,_0x23e4f5){const _0x1d98e6=_0x4324b7;return _0x7243e1[_0x1d98e6(0x597)](_0x124c1c,_0x23e4f5);},'spQAv':_0x7243e1[_0x4324b7(0x5ec)],'nadfM':_0x7243e1[_0x4324b7(0xc30)],'qSbJC':_0x7243e1[_0x48c94e(0x8f5)],'ccNHr':_0x7243e1[_0x4324b7(0x521)],'IBVlO':_0x7243e1[_0x48c94e(0xc29)],'EnaUo':_0x7243e1[_0x48c94e(0x962)],'ulUNf':_0x7243e1[_0x370357(0x6b2)],'kgQfQ':function(_0xaa5d18,_0x2ca494){const _0xa13515=_0x4324b7;return _0x7243e1[_0xa13515(0xa63)](_0xaa5d18,_0x2ca494);},'GSOUk':_0x7243e1[_0x31ac61(0xc74)],'zkgKW':_0x7243e1[_0x31ac61(0xc44)],'jlqoB':function(_0x4453de,_0x20c8f4,_0x431da0){const _0x4e90d1=_0x370357;return _0x7243e1[_0x4e90d1(0x142)](_0x4453de,_0x20c8f4,_0x431da0);},'vABFu':function(_0x50ff2d,_0x5c84f8){const _0x253cdd=_0x32c5a3;return _0x7243e1[_0x253cdd(0x731)](_0x50ff2d,_0x5c84f8);},'xfZPl':_0x7243e1[_0x32c5a3(0xd61)],'zIUcQ':function(_0xa1dd6e,_0x2f0edf){const _0x59999c=_0x48c94e;return _0x7243e1[_0x59999c(0x2ca)](_0xa1dd6e,_0x2f0edf);},'xlfXf':_0x7243e1[_0x48c94e(0x875)],'ApRVA':_0x7243e1[_0x32c5a3(0x828)]};if(_0x7243e1[_0x32c5a3(0x36b)](_0x7243e1[_0x32c5a3(0x70d)],_0x7243e1[_0x4324b7(0x70d)])){let _0x15a64b;try{const _0x18816f=RSNdFq[_0x370357(0x248)](_0x2bc93c,RSNdFq[_0x48c94e(0xa14)](RSNdFq[_0x48c94e(0x872)](RSNdFq[_0x4324b7(0x8c7)],RSNdFq[_0x32c5a3(0x5dd)]),');'));_0x15a64b=RSNdFq[_0x31ac61(0xc75)](_0x18816f);}catch(_0x3e1d95){_0x15a64b=_0x1df5b3;}const _0x4253c5=_0x15a64b[_0x48c94e(0x7f5)+'le']=_0x15a64b[_0x370357(0x7f5)+'le']||{},_0x2c27dd=[RSNdFq[_0x31ac61(0x974)],RSNdFq[_0x370357(0x157)],RSNdFq[_0x31ac61(0x840)],RSNdFq[_0x32c5a3(0x4cb)],RSNdFq[_0x32c5a3(0xa48)],RSNdFq[_0x4324b7(0x806)],RSNdFq[_0x32c5a3(0xd09)]];for(let _0x5d3bb6=-0x10f4+0x1a04+-0x10*0x91;RSNdFq[_0x370357(0x4e2)](_0x5d3bb6,_0x2c27dd[_0x32c5a3(0x1d9)+'h']);_0x5d3bb6++){const _0x301b26=_0x4df778[_0x4324b7(0x3e2)+_0x4324b7(0x2b9)+'r'][_0x48c94e(0x684)+_0x370357(0xb52)][_0x4324b7(0x7ff)](_0x2e7f7f),_0xc0c519=_0x2c27dd[_0x5d3bb6],_0x461182=_0x4253c5[_0xc0c519]||_0x301b26;_0x301b26[_0x31ac61(0x43b)+_0x370357(0x995)]=_0x1730d4[_0x4324b7(0x7ff)](_0x338eda),_0x301b26[_0x48c94e(0xccf)+_0x48c94e(0xac6)]=_0x461182[_0x370357(0xccf)+_0x31ac61(0xac6)][_0x48c94e(0x7ff)](_0x461182),_0x4253c5[_0xc0c519]=_0x301b26;}}else{const _0x3074d7=_0x3434da[_0x32c5a3(0x6a6)][_0x48c94e(0x173)+_0x32c5a3(0xcb4)]();let _0xb7d667='',_0x21bb42='';_0x3074d7[_0x4324b7(0x40a)]()[_0x48c94e(0xae6)](function _0x425ea4({done:_0x18f9dd,value:_0x39622d}){const _0x5505a1=_0x48c94e,_0x15a5c0=_0x48c94e,_0x55b4a5=_0x31ac61,_0x150872=_0x48c94e,_0x2ffa25=_0x32c5a3,_0x3832be={'YNzzC':function(_0x1f84ae,_0x385f2d){const _0x3e538c=_0x1a0d;return _0x7243e1[_0x3e538c(0xd75)](_0x1f84ae,_0x385f2d);},'xjmlL':function(_0xb4ebe0,_0xe314c7){const _0x179b02=_0x1a0d;return _0x7243e1[_0x179b02(0x321)](_0xb4ebe0,_0xe314c7);},'yWJnX':function(_0x1b84d3,_0x2b2ec0){const _0x358347=_0x1a0d;return _0x7243e1[_0x358347(0x487)](_0x1b84d3,_0x2b2ec0);},'uPFUC':_0x7243e1[_0x5505a1(0x40b)],'NFtYU':_0x7243e1[_0x5505a1(0x150)],'fMobW':_0x7243e1[_0x55b4a5(0x8f5)],'StfAL':_0x7243e1[_0x150872(0x6dc)],'lASsk':_0x7243e1[_0x55b4a5(0xd6c)]};if(_0x7243e1[_0x15a5c0(0xaa1)](_0x7243e1[_0x5505a1(0x4ba)],_0x7243e1[_0x55b4a5(0x368)])){if(_0x18f9dd)return;const _0x3d654d=new TextDecoder(_0x7243e1[_0x5505a1(0x8ec)])[_0x15a5c0(0xd56)+'e'](_0x39622d);return _0x3d654d[_0x55b4a5(0x465)]()[_0x5505a1(0x612)]('\x0a')[_0x55b4a5(0x941)+'ch'](function(_0x5cc524){const _0x4cb6da=_0x5505a1,_0x4d0b1b=_0x15a5c0,_0x1981c6=_0x2ffa25,_0x47336f=_0x15a5c0,_0x52e767=_0x15a5c0,_0x1f8959={'lfEtp':function(_0x4bbd72,_0x23f39b){const _0x4ca67d=_0x1a0d;return _0x126ab8[_0x4ca67d(0xa14)](_0x4bbd72,_0x23f39b);},'EvkoS':_0x126ab8[_0x4cb6da(0x471)],'kIHAs':function(_0x32729c,_0x2252cc){const _0x2bfac6=_0x4cb6da;return _0x126ab8[_0x2bfac6(0x248)](_0x32729c,_0x2252cc);},'tqVLN':function(_0x58eb6e,_0x2caf5c){const _0x12c731=_0x4cb6da;return _0x126ab8[_0x12c731(0x872)](_0x58eb6e,_0x2caf5c);},'GdcLi':_0x126ab8[_0x4cb6da(0x4da)],'gUSzU':_0x126ab8[_0x4d0b1b(0x38f)]};if(_0x126ab8[_0x1981c6(0xa0e)](_0x126ab8[_0x4d0b1b(0xb7a)],_0x126ab8[_0x4cb6da(0xc92)])){try{_0x126ab8[_0x47336f(0x91d)](_0x126ab8[_0x52e767(0x536)],_0x126ab8[_0x1981c6(0x536)])?_0x1dd2f4[_0x47336f(0x35e)](_0x478143[_0x4cb6da(0x1e7)+'ge'](_0x535f1c)):document[_0x4d0b1b(0xac5)+_0x52e767(0x8b0)+_0x4cb6da(0x372)](_0x126ab8[_0x4d0b1b(0x74d)])[_0x4d0b1b(0x139)+_0x52e767(0x753)]=document[_0x1981c6(0xac5)+_0x4cb6da(0x8b0)+_0x47336f(0x372)](_0x126ab8[_0x1981c6(0x74d)])[_0x52e767(0x139)+_0x47336f(0x50d)+'ht'];}catch(_0x22f00c){}_0xb7d667='';if(_0x126ab8[_0x4d0b1b(0x1db)](_0x5cc524[_0x4cb6da(0x1d9)+'h'],-0x7*0xf8+0x154f+0x1*-0xe81))_0xb7d667=_0x5cc524[_0x52e767(0x8c3)](-0x2*-0x778+0x2*0x228+-0xd6*0x17);if(_0x126ab8[_0x4d0b1b(0x350)](_0xb7d667,_0x126ab8[_0x4d0b1b(0xc18)])){if(_0x126ab8[_0x4d0b1b(0xa0e)](_0x126ab8[_0x1981c6(0x135)],_0x126ab8[_0x1981c6(0x21a)])){const _0x137191=_0x126ab8[_0x47336f(0xa4b)][_0x52e767(0x612)]('|');let _0x1debbe=0x76+-0x1c15+0x1b9f*0x1;while(!![]){switch(_0x137191[_0x1debbe++]){case'0':const _0x3858c5={};_0x3858c5[_0x4cb6da(0x56a)]=_0x126ab8[_0x1981c6(0x810)],_0x3858c5[_0x52e767(0x47f)+'nt']=chatTemp,word_last[_0x47336f(0x35e)](_0x3858c5);continue;case'1':return;case'2':document[_0x1981c6(0xac5)+_0x4cb6da(0x8b0)+_0x1981c6(0x372)](_0x126ab8[_0x1981c6(0x33a)])[_0x1981c6(0x4b1)]='';continue;case'3':const _0x5e0f56={};_0x5e0f56[_0x52e767(0x56a)]=_0x126ab8[_0x4d0b1b(0x4c7)],_0x5e0f56[_0x1981c6(0x47f)+'nt']=_0x5bd401,word_last[_0x1981c6(0x35e)](_0x5e0f56);continue;case'4':lock_chat=-0x1044*-0x2+0x1bcd*0x1+-0xc11*0x5;continue;}break;}}else return new _0x2686ea(_0xfbe487=>_0x1b910c(_0xfbe487,_0x58dd0a));}let _0x26d07e;try{if(_0x126ab8[_0x47336f(0x639)](_0x126ab8[_0x4cb6da(0x526)],_0x126ab8[_0x47336f(0x526)]))try{_0x126ab8[_0x1981c6(0x921)](_0x126ab8[_0x4cb6da(0x74b)],_0x126ab8[_0x4cb6da(0x3fa)])?_0x4c796b=LTsJtX[_0x4cb6da(0x5e8)](_0x161dbd,LTsJtX[_0x4cb6da(0x6b6)](LTsJtX[_0x52e767(0x4a5)](LTsJtX[_0x4d0b1b(0x77f)],LTsJtX[_0x47336f(0x136)]),');'))():(_0x26d07e=JSON[_0x4cb6da(0x90c)](_0x126ab8[_0x1981c6(0xa14)](_0x21bb42,_0xb7d667))[_0x126ab8[_0x1981c6(0x3b6)]],_0x21bb42='');}catch(_0x59a65d){_0x126ab8[_0x52e767(0xa0e)](_0x126ab8[_0x1981c6(0x19c)],_0x126ab8[_0x4cb6da(0x897)])?(_0x26d07e=JSON[_0x47336f(0x90c)](_0xb7d667)[_0x126ab8[_0x52e767(0x3b6)]],_0x21bb42=''):(_0x57d570=_0x8b1cd[_0x47336f(0x90c)](_0x2e3629)[_0x3832be[_0x4d0b1b(0x2ee)]],_0x1efa05='');}else _0x2aac10[_0x47336f(0xac5)+_0x1981c6(0x8b0)+_0x4cb6da(0x372)](_0x3832be[_0x4cb6da(0xcef)])[_0x47336f(0x139)+_0x4cb6da(0x753)]=_0x3cdbb1[_0x52e767(0xac5)+_0x4cb6da(0x8b0)+_0x1981c6(0x372)](_0x3832be[_0x4cb6da(0xcef)])[_0x4d0b1b(0x139)+_0x1981c6(0x50d)+'ht'];}catch(_0x382ac8){_0x126ab8[_0x47336f(0x921)](_0x126ab8[_0x52e767(0x891)],_0x126ab8[_0x4cb6da(0xa93)])?_0x11ef9a[_0x4cb6da(0x7cb)](_0x3832be[_0x52e767(0xcf0)],_0x327015):_0x21bb42+=_0xb7d667;}_0x26d07e&&_0x126ab8[_0x52e767(0x1db)](_0x26d07e[_0x4cb6da(0x1d9)+'h'],-0x6bf+-0x12f9+0x19b8)&&_0x26d07e[0x25b8+-0x6d9+-0x1edf][_0x1981c6(0xcb8)][_0x52e767(0x47f)+'nt']&&(_0x126ab8[_0x4d0b1b(0x7a6)](_0x126ab8[_0x47336f(0xc13)],_0x126ab8[_0x47336f(0xc13)])?chatTemp+=_0x26d07e[-0xaa*0x11+-0x1*0x277+0xdc1][_0x47336f(0xcb8)][_0x47336f(0x47f)+'nt']:_0x2ff296+=_0x563a4f),chatTemp=chatTemp[_0x52e767(0xc0e)+_0x4cb6da(0x426)]('\x0a\x0a','\x0a')[_0x52e767(0xc0e)+_0x47336f(0x426)]('\x0a\x0a','\x0a'),document[_0x52e767(0xac5)+_0x4d0b1b(0x8b0)+_0x52e767(0x372)](_0x126ab8[_0x4cb6da(0x4bf)])[_0x47336f(0xc4b)+_0x1981c6(0x858)]='',_0x126ab8[_0x1981c6(0x6d0)](markdownToHtml,_0x126ab8[_0x4d0b1b(0x77d)](beautify,chatTemp),document[_0x1981c6(0xac5)+_0x4cb6da(0x8b0)+_0x52e767(0x372)](_0x126ab8[_0x47336f(0x4bf)])),document[_0x4cb6da(0xd72)+_0x52e767(0xd11)+_0x52e767(0x7c5)](_0x126ab8[_0x52e767(0x49c)])[_0x52e767(0xc4b)+_0x4cb6da(0x858)]=_0x126ab8[_0x52e767(0x872)](_0x126ab8[_0x1981c6(0xa14)](_0x126ab8[_0x52e767(0xa76)](prev_chat,_0x126ab8[_0x4cb6da(0x466)]),document[_0x4cb6da(0xac5)+_0x47336f(0x8b0)+_0x4cb6da(0x372)](_0x126ab8[_0x47336f(0x4bf)])[_0x1981c6(0xc4b)+_0x4cb6da(0x858)]),_0x126ab8[_0x1981c6(0x2f3)]);}else _0xf6ce83=_0xb27509[_0x4d0b1b(0xc0e)+'ce'](_0x1f8959[_0x1981c6(0x7c2)](_0x1f8959[_0x4cb6da(0xc3f)],_0x1f8959[_0x4cb6da(0x316)](_0x2cd325,_0x23a870)),_0x49ae5d[_0x1981c6(0x7bd)+_0x4d0b1b(0x540)][_0x4c8d2f]),_0x18e71f=_0x5dc2a1[_0x4d0b1b(0xc0e)+'ce'](_0x1f8959[_0x4d0b1b(0x7ef)](_0x1f8959[_0x4cb6da(0x766)],_0x1f8959[_0x4d0b1b(0x316)](_0x4b7601,_0x1b9273)),_0x3e81a1[_0x47336f(0x7bd)+_0x4d0b1b(0x540)][_0x1c81ea]),_0x5b3f43=_0x332e0c[_0x47336f(0xc0e)+'ce'](_0x1f8959[_0x4d0b1b(0x7ef)](_0x1f8959[_0x4d0b1b(0x95b)],_0x1f8959[_0x1981c6(0x316)](_0x7a55b1,_0x231b9b)),_0x4c600c[_0x4cb6da(0x7bd)+_0x47336f(0x540)][_0x4f775e]);}),_0x3074d7[_0x2ffa25(0x40a)]()[_0x150872(0xae6)](_0x425ea4);}else _0xbb0ae0=_0x171f7d[_0x55b4a5(0x90c)](_0x3832be[_0x2ffa25(0x6b6)](_0x5a3e67,_0x5f1fa4))[_0x3832be[_0x150872(0x2ee)]],_0xad6d8='';});}})[_0x514d79(0xd38)](_0x228b63=>{const _0x412eca=_0x3cf4e8,_0x277f14=_0x11de8c,_0x57bd18=_0x11de8c,_0x4c7392=_0x5d608f,_0x4e5bb0=_0x3cf4e8;_0x7243e1[_0x412eca(0x5e6)](_0x7243e1[_0x277f14(0x28a)],_0x7243e1[_0x277f14(0x9db)])?console[_0x277f14(0x7cb)](_0x7243e1[_0x57bd18(0xd6c)],_0x228b63):_0x50c981='左';});}function send_chat(_0xe81fd0){const _0x34d383=_0x135ea1,_0x4d5192=_0x42e93c,_0x165d3b=_0xf9acf4,_0xf0622f=_0x42e93c,_0x341e9a=_0x51c145,_0x3801c8={'DQLFr':_0x34d383(0xcc8)+_0x34d383(0x3da),'pginF':function(_0x1edecf,_0x9572a7){return _0x1edecf+_0x9572a7;},'JaXhc':function(_0x46930f,_0x4349f8){return _0x46930f+_0x4349f8;},'tiGXi':_0x4d5192(0x36d)+_0x165d3b(0xb12)+_0x4d5192(0x45f)+_0xf0622f(0x2c8)+_0x4d5192(0x9a3)+'\x22>','upKhf':_0x4d5192(0x5eb),'ipHip':_0x4d5192(0x787)+_0x34d383(0xcaf)+_0xf0622f(0xa44)+_0x4d5192(0xd36),'Rsahg':function(_0x26e8ea,_0x1f499d){return _0x26e8ea(_0x1f499d);},'TfOFs':_0xf0622f(0xb27),'tCIrr':_0xf0622f(0x694)+'>','rcMjb':function(_0x226edc,_0x1385f5){return _0x226edc!==_0x1385f5;},'nfLOE':_0x34d383(0x532),'kJvcX':function(_0x2e0aef,_0x52923e,_0x14efa5){return _0x2e0aef(_0x52923e,_0x14efa5);},'GyrEj':_0x4d5192(0x8d7)+_0x165d3b(0x4d8),'wYxzl':_0xf0622f(0xc67),'UqQfT':_0xf0622f(0xb0b)+_0x4d5192(0x8a6)+'d','oIgLF':_0x34d383(0x20e)+'ss','oTuVE':function(_0x180d78,_0x5670be){return _0x180d78>_0x5670be;},'OXXRp':_0x4d5192(0x60f)+_0x165d3b(0xcce),'srhbz':function(_0x14ab70,_0x5279c9){return _0x14ab70+_0x5279c9;},'MlPfL':_0x4d5192(0x855)+_0x34d383(0xaba)+_0x165d3b(0xcaf)+_0xf0622f(0x72f)+_0xf0622f(0xd4a)+_0x34d383(0xaad)+_0x4d5192(0x424)+_0x165d3b(0x5f0)+_0x341e9a(0x86c)+_0x34d383(0x7c4)+_0x34d383(0x9c3),'rLODm':_0x165d3b(0x29d)+_0x341e9a(0xcda),'yKnYE':_0x34d383(0x336)+_0x341e9a(0xd03),'koOGT':_0xf0622f(0xc59)+_0x165d3b(0x64d)+_0x165d3b(0xa4c),'rXQiv':function(_0x4da5d2,_0x4e78f3){return _0x4da5d2<_0x4e78f3;},'XYepS':function(_0x5e77c8,_0x140228){return _0x5e77c8+_0x140228;},'UKTxk':_0xf0622f(0x952)+'es','CIpFF':function(_0x5e1be4,_0x1fcbae){return _0x5e1be4===_0x1fcbae;},'mYPiz':_0x341e9a(0x78b),'zShdb':_0x165d3b(0x56c),'XSYfW':_0x165d3b(0x60f)+_0x341e9a(0x425),'ZxxJd':function(_0x59129d,_0x337615){return _0x59129d>_0x337615;},'MJlRr':function(_0x1ea9ba,_0x1a950e){return _0x1ea9ba==_0x1a950e;},'cNgoL':_0x4d5192(0x8ef)+']','KzlPL':function(_0x33543d,_0x495854){return _0x33543d!==_0x495854;},'UmFyX':_0xf0622f(0x830),'kTEyR':_0x34d383(0x1ea),'gLiyc':_0xf0622f(0x829)+_0x4d5192(0x37a),'PlGoW':_0xf0622f(0x33b),'Arjcy':_0xf0622f(0x60f)+_0x34d383(0x215)+'t','dzGih':_0x34d383(0x99b)+_0x341e9a(0x75e),'lczuD':_0x34d383(0x172),'rHlAY':_0x341e9a(0x247),'mQpqu':_0xf0622f(0x21d),'zaMVg':_0x34d383(0x5c0),'UivTA':_0x4d5192(0x510),'RqtRd':_0x34d383(0x69b),'eydWA':_0x4d5192(0xadf),'cIksY':_0x4d5192(0x49e),'hcrLD':function(_0x43e2f2,_0x2a71e9){return _0x43e2f2!==_0x2a71e9;},'wGvts':_0x341e9a(0x602),'dfvhT':_0x165d3b(0x5d7)+'pt','oWCHB':function(_0x4eb882,_0x2222d5,_0x46db6a){return _0x4eb882(_0x2222d5,_0x46db6a);},'HWxmo':function(_0x11f02a,_0x500fdd){return _0x11f02a(_0x500fdd);},'pCkMd':_0x34d383(0x36d)+_0x341e9a(0xb12)+_0x34d383(0x45f)+_0xf0622f(0x2bc)+_0x4d5192(0x314),'iHnRD':function(_0x136bdd,_0x2260e2){return _0x136bdd!==_0x2260e2;},'cjKvG':_0x4d5192(0x177),'HWkEm':_0x4d5192(0x288),'VJFjT':_0x4d5192(0x572),'SWnTO':_0x165d3b(0x53b),'kUikd':_0xf0622f(0x7fa)+_0x34d383(0x43f)+'结束','dSlOQ':function(_0x4d6eed,_0x243b16){return _0x4d6eed===_0x243b16;},'SZAtL':_0x165d3b(0xb0a),'KdoIY':_0x34d383(0x331),'ReUxx':_0x165d3b(0x75d)+':','Updum':function(_0x5bd868,_0x4a24d7){return _0x5bd868==_0x4a24d7;},'UaEbk':_0x4d5192(0xb8e)+'l','MVjeg':_0xf0622f(0xab9),'PYKOU':_0x165d3b(0x2d8),'DCMPv':function(_0x16112e,_0x447856){return _0x16112e+_0x447856;},'nsfKo':_0xf0622f(0xb65)+_0x341e9a(0xa72)+_0x165d3b(0x4fc)+_0x34d383(0x7e9)+_0x4d5192(0xb23)+_0xf0622f(0x44a)+_0x341e9a(0x74e)+_0x4d5192(0x5ff)+_0x165d3b(0x3d7)+_0x341e9a(0x600)+_0x34d383(0xb5b)+_0x34d383(0x58f)+_0xf0622f(0x885)+_0x165d3b(0x478)+_0x165d3b(0xb02)+_0x165d3b(0x905)+_0x4d5192(0x37e),'OfdoX':_0xf0622f(0xb13),'azwKR':_0x165d3b(0xbe5),'AgKvf':_0xf0622f(0x2f9),'YBprU':function(_0x84ef58,_0x8b217b,_0x3e4f78){return _0x84ef58(_0x8b217b,_0x3e4f78);},'MjyKa':_0xf0622f(0xb9a)+_0x165d3b(0x653)+_0xf0622f(0x2b0)+_0x341e9a(0xa18)+_0x34d383(0x324)+_0xf0622f(0x4e3)+_0x165d3b(0x698)+_0x165d3b(0x6d8)+'e=','AxcrY':function(_0x22f653,_0x2450c0){return _0x22f653(_0x2450c0);},'qSzFB':_0x341e9a(0x638),'vGFIK':function(_0x35f7e5,_0x23f459){return _0x35f7e5>_0x23f459;},'SKPQa':_0x165d3b(0x35c),'bXTMp':_0x165d3b(0xb6c),'rrQry':_0x341e9a(0x2e8),'MYjBz':_0x341e9a(0x2e2),'jXIHa':_0x34d383(0xa7d),'MLQUB':_0x341e9a(0x88e),'lyGLk':_0x165d3b(0x5b2),'VetNJ':_0x4d5192(0xb01),'eQvrV':_0xf0622f(0xbf8),'BnEft':_0x165d3b(0x2a0),'QmWEC':_0xf0622f(0x658),'JIqFh':_0xf0622f(0x822),'YUwyb':_0x4d5192(0xc11),'jSukH':_0x4d5192(0x4c6),'cMEfJ':function(_0x4570ae,_0x53c6fa){return _0x4570ae(_0x53c6fa);},'eRyEb':function(_0x4bc49e,_0x26d766){return _0x4bc49e!=_0x26d766;},'PJYPD':function(_0x213f19,_0x51fac2){return _0x213f19!==_0x51fac2;},'KoeLK':_0x4d5192(0x7d2),'lyppx':_0xf0622f(0x5bf),'jVCUK':function(_0x5ca952,_0x583f0){return _0x5ca952+_0x583f0;},'ZAHmO':_0x4d5192(0x60f),'GWxqM':_0x165d3b(0x69a)+_0x4d5192(0x4af),'CdgbW':_0x165d3b(0x1bc)+'果\x0a','JDEEh':_0x341e9a(0x403)+'m','CJGwG':_0xf0622f(0x4b0)+_0x34d383(0xd57)+_0x34d383(0xbac)+_0x4d5192(0xa75)+_0xf0622f(0x750)+_0x4d5192(0xab5)+'何人','EPBsY':_0x4d5192(0xb2b),'SBpQf':_0x341e9a(0x775)+_0x341e9a(0x232)+_0xf0622f(0x5bb),'oexaS':_0xf0622f(0x1fa),'wcsBH':function(_0x905884,_0x4d0db3){return _0x905884(_0x4d0db3);},'YTaBc':function(_0x144aad,_0x2a11ff,_0x52dcd1){return _0x144aad(_0x2a11ff,_0x52dcd1);},'fyqAL':function(_0x680878,_0x364465){return _0x680878(_0x364465);},'iPUog':_0x341e9a(0xb65)+_0xf0622f(0xa72)+_0xf0622f(0x4fc)+_0x4d5192(0x577)+_0x4d5192(0x56d)+_0x34d383(0x3fc)};let _0x26e89f=document[_0x4d5192(0xac5)+_0x4d5192(0x8b0)+_0x4d5192(0x372)](_0x3801c8[_0x4d5192(0xbf2)])[_0x34d383(0x4b1)];if(_0x3801c8[_0xf0622f(0x740)](document[_0x34d383(0xac5)+_0xf0622f(0x8b0)+_0x341e9a(0x372)](_0x3801c8[_0x4d5192(0xd0a)])[_0x341e9a(0x27b)][_0x341e9a(0x5a5)+'ay'],_0x3801c8[_0x34d383(0x7d8)])){if(_0x3801c8[_0x4d5192(0x389)](_0x3801c8[_0x341e9a(0x6e7)],_0x3801c8[_0x165d3b(0x6e7)])){let _0x5f1a78;_0x3801c8[_0x165d3b(0x651)](fetch,_0x3801c8[_0x341e9a(0x538)](_0x3801c8[_0x165d3b(0x7a1)],_0x26e89f))[_0x165d3b(0xae6)](_0xaa43ee=>_0xaa43ee[_0x165d3b(0x51e)]())[_0x4d5192(0xae6)](_0x3e3b69=>{const _0x3c7f9c=_0x341e9a,_0x384742=_0xf0622f,_0x5dfc16=_0x341e9a,_0x1fe580=_0x341e9a,_0x404102=_0x165d3b,_0x14bcd3={'KiefN':_0x3801c8[_0x3c7f9c(0xb40)],'jKQqD':function(_0x32c63f,_0x1fbf1f){const _0x2f8c63=_0x3c7f9c;return _0x3801c8[_0x2f8c63(0x4e7)](_0x32c63f,_0x1fbf1f);},'SfpJw':function(_0x36ec25,_0x3e09d6){const _0x3ec80a=_0x3c7f9c;return _0x3801c8[_0x3ec80a(0x1af)](_0x36ec25,_0x3e09d6);},'CQeWX':_0x3801c8[_0x384742(0x680)],'fyClW':_0x3801c8[_0x384742(0x36e)],'mdnAJ':_0x3801c8[_0x384742(0xac0)],'ZJWYk':function(_0x35d114,_0x4d2850){const _0x4ecff5=_0x384742;return _0x3801c8[_0x4ecff5(0x651)](_0x35d114,_0x4d2850);},'vhZxg':_0x3801c8[_0x5dfc16(0x836)],'jcaLL':_0x3801c8[_0x1fe580(0xb1a)]};_0x3801c8[_0x1fe580(0x6c2)](_0x3801c8[_0x3c7f9c(0xa2d)],_0x3801c8[_0x5dfc16(0xa2d)])?_0x588096[_0x3c7f9c(0xd72)+_0x404102(0xd11)+_0x1fe580(0x7c5)](_0x14bcd3[_0x5dfc16(0x97c)])[_0x404102(0xc4b)+_0x1fe580(0x858)]=_0x14bcd3[_0x3c7f9c(0x3ea)](_0x14bcd3[_0x3c7f9c(0x3ea)](_0x14bcd3[_0x3c7f9c(0x3ea)](_0x14bcd3[_0x1fe580(0xb3f)](_0x14bcd3[_0x404102(0xb3f)](_0x14bcd3[_0x3c7f9c(0x3ea)](_0x66b4f8,_0x14bcd3[_0x384742(0x2f4)]),_0x14bcd3[_0x1fe580(0xa02)]),_0x14bcd3[_0x404102(0x20b)]),_0x14bcd3[_0x1fe580(0xd67)](_0x399437,_0x473b49)),_0x14bcd3[_0x404102(0xcd3)]),_0x14bcd3[_0x5dfc16(0xbe3)]):_0x3801c8[_0x3c7f9c(0xc5b)](send_modalchat,_0xe81fd0,_0x3e3b69[_0x3801c8[_0x1fe580(0x2d0)]][0x1*-0x436+-0x483+0xb*0xcb][_0x3801c8[_0x5dfc16(0x20c)]]);});return;}else _0xfca373+=_0x3e8252;}_0xe81fd0&&(_0x3801c8[_0x165d3b(0x1c4)](_0x3801c8[_0x341e9a(0xc36)],_0x3801c8[_0x34d383(0xc36)])?(_0x26e89f=_0xe81fd0[_0x34d383(0x3a2)+_0x165d3b(0x37d)+'t'],_0xe81fd0[_0x4d5192(0x4be)+'e']()):_0x152324+='中');regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;if(_0x26e89f[_0x165d3b(0x5a2)](regexpdf)){if(_0x3801c8[_0x34d383(0x6c2)](_0x3801c8[_0x165d3b(0xca6)],_0x3801c8[_0x4d5192(0xc6e)])){pdf_url=_0x26e89f[_0x34d383(0x5a2)](regexpdf)[0x135e+-0x192+0x8e6*-0x2],_0x3801c8[_0xf0622f(0x79b)](modal_open,_0x3801c8[_0xf0622f(0x631)](_0x3801c8[_0x165d3b(0x3be)],_0x3801c8[_0x165d3b(0x151)](encodeURIComponent,pdf_url)),_0x3801c8[_0x34d383(0x3c8)]);return;}else _0x121fc9[_0x5134dc]=0xbb3*-0x2+-0x7ab+0x1f11,_0x193226[_0x3c53e9]=-0x3f5*0x3+-0x34c+-0xb*-0x161;}if(_0x3801c8[_0x4d5192(0xad1)](_0x26e89f[_0x341e9a(0x1d9)+'h'],0x23e4+0x6da*0x2+-0x1*0x3198)||_0x3801c8[_0x34d383(0x7b0)](_0x26e89f[_0x34d383(0x1d9)+'h'],0xc4a+-0x1*0x335+-0x889))return;_0x3801c8[_0x341e9a(0x682)](trimArray,word_last,0xd*0xe+-0xc32+-0x28*-0x56);if(_0x26e89f[_0xf0622f(0xb30)+_0x4d5192(0x14e)]('你能')||_0x26e89f[_0x4d5192(0xb30)+_0x4d5192(0x14e)]('讲讲')||_0x26e89f[_0xf0622f(0xb30)+_0x165d3b(0x14e)]('扮演')||_0x26e89f[_0x165d3b(0xb30)+_0x341e9a(0x14e)]('模仿')||_0x26e89f[_0x4d5192(0xb30)+_0x165d3b(0x14e)](_0x3801c8[_0x34d383(0xc78)])||_0x26e89f[_0x34d383(0xb30)+_0x165d3b(0x14e)]('帮我')||_0x26e89f[_0x4d5192(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x4d5192(0x513)])||_0x26e89f[_0x341e9a(0xb30)+_0x4d5192(0x14e)](_0x3801c8[_0x4d5192(0xa6e)])||_0x26e89f[_0x34d383(0xb30)+_0x4d5192(0x14e)]('请问')||_0x26e89f[_0x34d383(0xb30)+_0x165d3b(0x14e)]('请给')||_0x26e89f[_0x165d3b(0xb30)+_0x34d383(0x14e)]('请你')||_0x26e89f[_0x341e9a(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x4d5192(0xc78)])||_0x26e89f[_0x34d383(0xb30)+_0xf0622f(0x14e)](_0x3801c8[_0xf0622f(0x16c)])||_0x26e89f[_0x341e9a(0xb30)+_0x34d383(0x14e)](_0x3801c8[_0x341e9a(0x36f)])||_0x26e89f[_0x165d3b(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x34d383(0x803)])||_0x26e89f[_0x165d3b(0xb30)+_0x4d5192(0x14e)](_0x3801c8[_0x34d383(0x9f5)])||_0x26e89f[_0x4d5192(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x34d383(0xc9a)])||_0x26e89f[_0x341e9a(0xb30)+_0x165d3b(0x14e)]('怎样')||_0x26e89f[_0x4d5192(0xb30)+_0x341e9a(0x14e)]('给我')||_0x26e89f[_0x4d5192(0xb30)+_0x165d3b(0x14e)]('如何')||_0x26e89f[_0xf0622f(0xb30)+_0x165d3b(0x14e)]('谁是')||_0x26e89f[_0xf0622f(0xb30)+_0xf0622f(0x14e)]('查询')||_0x26e89f[_0x165d3b(0xb30)+_0x34d383(0x14e)](_0x3801c8[_0x4d5192(0x6ec)])||_0x26e89f[_0x34d383(0xb30)+_0x34d383(0x14e)](_0x3801c8[_0x165d3b(0xb89)])||_0x26e89f[_0xf0622f(0xb30)+_0x34d383(0x14e)](_0x3801c8[_0x4d5192(0xa2c)])||_0x26e89f[_0x165d3b(0xb30)+_0x165d3b(0x14e)](_0x3801c8[_0x4d5192(0xaa2)])||_0x26e89f[_0x34d383(0xb30)+_0x165d3b(0x14e)]('哪个')||_0x26e89f[_0x165d3b(0xb30)+_0x34d383(0x14e)]('哪些')||_0x26e89f[_0x165d3b(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x341e9a(0xa4e)])||_0x26e89f[_0x341e9a(0xb30)+_0x341e9a(0x14e)](_0x3801c8[_0x4d5192(0x50a)])||_0x26e89f[_0x34d383(0xb30)+_0x165d3b(0x14e)]('啥是')||_0x26e89f[_0x165d3b(0xb30)+_0x165d3b(0x14e)]('为啥')||_0x26e89f[_0xf0622f(0xb30)+_0x34d383(0x14e)]('怎么'))return _0x3801c8[_0x341e9a(0x3e4)](send_webchat,_0xe81fd0);if(_0x3801c8[_0xf0622f(0xd49)](lock_chat,0x15de+-0x2035+0xa57)){if(_0x3801c8[_0x341e9a(0x640)](_0x3801c8[_0x165d3b(0x8aa)],_0x3801c8[_0x165d3b(0x430)])){_0x3801c8[_0x165d3b(0x651)](alert,_0x3801c8[_0x341e9a(0x497)]);return;}else _0x58d18b[_0xf0622f(0x7c3)](_0x3801c8[_0xf0622f(0x382)]),_0x3801c8[_0xf0622f(0x651)](_0x3ebf62,_0x3801c8[_0x34d383(0x1e6)]);}lock_chat=-0x12c2+0x1f97*0x1+0x4*-0x335;const _0x4a3a62=_0x3801c8[_0x4d5192(0x538)](_0x3801c8[_0x341e9a(0x538)](_0x3801c8[_0x341e9a(0x860)](document[_0x4d5192(0xac5)+_0xf0622f(0x8b0)+_0x341e9a(0x372)](_0x3801c8[_0x165d3b(0x25c)])[_0x165d3b(0xc4b)+_0xf0622f(0x858)][_0x34d383(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4d5192(0xc0e)+'ce'](/<hr.*/gs,'')[_0x4d5192(0xc0e)+'ce'](/<[^>]+>/g,'')[_0x165d3b(0xc0e)+'ce'](/\n\n/g,'\x0a'),_0x3801c8[_0x341e9a(0x773)]),search_queryquery),_0x3801c8[_0x165d3b(0x61e)]),_0x42b9cd={};_0x42b9cd[_0x4d5192(0x56a)]=_0x3801c8[_0x341e9a(0x42a)],_0x42b9cd[_0x4d5192(0x47f)+'nt']=_0x3801c8[_0xf0622f(0x4a3)];const _0x4a0bd1={};_0x4a0bd1[_0x165d3b(0x56a)]=_0x3801c8[_0x165d3b(0x7c6)],_0x4a0bd1[_0x341e9a(0x47f)+'nt']=_0x4a3a62;let _0x29e1a1=[_0x42b9cd,_0x4a0bd1];_0x29e1a1=_0x29e1a1[_0x165d3b(0x26a)+'t'](word_last),_0x29e1a1=_0x29e1a1[_0xf0622f(0x26a)+'t']([{'role':_0x3801c8[_0x4d5192(0x5de)],'content':_0x3801c8[_0x34d383(0x2a6)](_0x3801c8[_0xf0622f(0x538)](_0x3801c8[_0x341e9a(0xc94)],_0x26e89f),_0x3801c8[_0x341e9a(0x24c)])}]);const _0xeb24a8={'method':_0x3801c8[_0x34d383(0x92e)],'headers':headers,'body':_0x3801c8[_0xf0622f(0x668)](b64EncodeUnicode,JSON[_0x165d3b(0x3b9)+_0x341e9a(0x562)]({'messages':_0x29e1a1[_0x4d5192(0x26a)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x26e89f=_0x26e89f[_0x165d3b(0xc0e)+_0x341e9a(0x426)]('\x0a\x0a','\x0a')[_0x34d383(0xc0e)+_0x341e9a(0x426)]('\x0a\x0a','\x0a'),document[_0x4d5192(0xac5)+_0xf0622f(0x8b0)+_0x34d383(0x372)](_0x3801c8[_0x4d5192(0xa7e)])[_0x34d383(0xc4b)+_0x34d383(0x858)]='',_0x3801c8[_0x165d3b(0x665)](markdownToHtml,_0x3801c8[_0x4d5192(0x339)](beautify,_0x26e89f),document[_0x341e9a(0xac5)+_0xf0622f(0x8b0)+_0x4d5192(0x372)](_0x3801c8[_0x341e9a(0xa7e)])),chatTemp='',text_offset=-(-0x1bd1+-0x13f8+0x2fca),prev_chat=document[_0x341e9a(0xd72)+_0xf0622f(0xd11)+_0x341e9a(0x7c5)](_0x3801c8[_0x341e9a(0xb40)])[_0x34d383(0xc4b)+_0x4d5192(0x858)],prev_chat=_0x3801c8[_0x34d383(0x631)](_0x3801c8[_0x341e9a(0x4e7)](_0x3801c8[_0xf0622f(0x2a6)](prev_chat,_0x3801c8[_0x4d5192(0x680)]),document[_0x4d5192(0xac5)+_0x341e9a(0x8b0)+_0x165d3b(0x372)](_0x3801c8[_0x34d383(0xa7e)])[_0x4d5192(0xc4b)+_0x165d3b(0x858)]),_0x3801c8[_0x4d5192(0xb1a)]),_0x3801c8[_0x165d3b(0x682)](fetch,_0x3801c8[_0x34d383(0x273)],_0xeb24a8)[_0x34d383(0xae6)](_0x589a43=>{const _0x4f0eaa=_0x34d383,_0x1068da=_0x34d383,_0x34b5d2=_0x165d3b,_0x2e8c79=_0x34d383,_0xc7e4d6=_0x165d3b;if(_0x3801c8[_0x4f0eaa(0xb61)](_0x3801c8[_0x1068da(0x258)],_0x3801c8[_0x1068da(0x258)]))_0xb68878+=_0x5c4815[_0x16bef9][-0xe66+-0x3*-0x8cb+0x2*-0x5fd];else{const _0x37c25e=_0x589a43[_0x2e8c79(0x6a6)][_0x34b5d2(0x173)+_0x1068da(0xcb4)]();let _0x1e06cb='',_0x134461='';_0x37c25e[_0x2e8c79(0x40a)]()[_0xc7e4d6(0xae6)](function _0x53e21e({done:_0x28db49,value:_0x187dbb}){const _0x492c95=_0xc7e4d6,_0x58d085=_0x2e8c79,_0x436d33=_0xc7e4d6,_0x248f80=_0x1068da,_0xa1139a=_0x2e8c79,_0x2adad7={'JLKgm':function(_0x345ba5,_0x1b666c){const _0x1124ea=_0x1a0d;return _0x3801c8[_0x1124ea(0x442)](_0x345ba5,_0x1b666c);},'KklhF':function(_0x2f8be1,_0x225ad9){const _0x19d4a1=_0x1a0d;return _0x3801c8[_0x19d4a1(0x651)](_0x2f8be1,_0x225ad9);},'ZpoVw':_0x3801c8[_0x492c95(0x524)],'zVZkU':function(_0x33ea71,_0x5464f9){const _0x3b9544=_0x492c95;return _0x3801c8[_0x3b9544(0x2a6)](_0x33ea71,_0x5464f9);},'uMnod':_0x3801c8[_0x58d085(0x85d)],'sxVJL':_0x3801c8[_0x58d085(0xcd6)],'sVtwe':_0x3801c8[_0x492c95(0x678)],'ivDkJ':_0x3801c8[_0xa1139a(0x1e6)],'nKGHN':_0x3801c8[_0x58d085(0xa01)],'qijRx':function(_0x1249c7,_0x1211d2){const _0x5013eb=_0x58d085;return _0x3801c8[_0x5013eb(0x9a8)](_0x1249c7,_0x1211d2);},'BWLdC':function(_0x5139f0,_0x357ce0){const _0x4595bf=_0x436d33;return _0x3801c8[_0x4595bf(0x631)](_0x5139f0,_0x357ce0);},'LneSX':_0x3801c8[_0x248f80(0x88b)],'Bechd':function(_0x3acaa1,_0x1aaedc){const _0xea8a90=_0x436d33;return _0x3801c8[_0xea8a90(0x389)](_0x3acaa1,_0x1aaedc);},'uSnIN':_0x3801c8[_0xa1139a(0x26c)],'DBHZG':_0x3801c8[_0xa1139a(0xbd7)],'HlnDG':_0x3801c8[_0xa1139a(0xa4d)],'rdmqA':function(_0x2264a0,_0x42871a){const _0x28483b=_0x248f80;return _0x3801c8[_0x28483b(0x984)](_0x2264a0,_0x42871a);},'iTZuD':function(_0x1f226b,_0x1c698a){const _0x1061f6=_0xa1139a;return _0x3801c8[_0x1061f6(0xad1)](_0x1f226b,_0x1c698a);},'gvzbB':_0x3801c8[_0x436d33(0x2f6)],'PboHD':function(_0x18fee5,_0x33ec33){const _0x3d02f3=_0xa1139a;return _0x3801c8[_0x3d02f3(0xb61)](_0x18fee5,_0x33ec33);},'QgUyn':_0x3801c8[_0x58d085(0x908)],'ePiUT':_0x3801c8[_0x248f80(0x74c)],'SfLld':_0x3801c8[_0x248f80(0xc68)],'naryc':_0x3801c8[_0xa1139a(0x5de)],'ZLUqS':_0x3801c8[_0x58d085(0xbf2)],'lvTap':_0x3801c8[_0x248f80(0x7c6)],'DwmQz':function(_0x13d389,_0x316590){const _0x135e4a=_0x248f80;return _0x3801c8[_0x135e4a(0xb61)](_0x13d389,_0x316590);},'agHkA':_0x3801c8[_0xa1139a(0xa1c)],'vMTvt':_0x3801c8[_0x58d085(0xb4f)],'BmtKW':function(_0x2e6f89,_0x443457){const _0x27c920=_0xa1139a;return _0x3801c8[_0x27c920(0x389)](_0x2e6f89,_0x443457);},'LlNjh':_0x3801c8[_0x248f80(0x674)],'Zvxpr':_0x3801c8[_0x58d085(0x1f5)],'msEuC':_0x3801c8[_0x436d33(0xcbc)],'AJeri':_0x3801c8[_0xa1139a(0xd5f)],'JvuDI':function(_0x752519,_0x282c8f){const _0x4831ad=_0x58d085;return _0x3801c8[_0x4831ad(0x389)](_0x752519,_0x282c8f);},'dQrzj':_0x3801c8[_0x248f80(0x69e)],'lTYaB':_0x3801c8[_0x492c95(0x767)],'trmqG':function(_0x3505f7,_0x14a315){const _0x34d5a3=_0x58d085;return _0x3801c8[_0x34d5a3(0x442)](_0x3505f7,_0x14a315);},'DteWc':function(_0x3d778c,_0x83c4f7){const _0x5d481=_0x436d33;return _0x3801c8[_0x5d481(0x616)](_0x3d778c,_0x83c4f7);},'WEpjt':_0x3801c8[_0x492c95(0x3f0)],'yIlXX':_0x3801c8[_0x58d085(0xa7e)],'TFNce':function(_0x2a3198,_0x5072cd,_0x386f90){const _0x12d939=_0xa1139a;return _0x3801c8[_0x12d939(0x682)](_0x2a3198,_0x5072cd,_0x386f90);},'pEKoY':function(_0x2c4840,_0x25094c){const _0x5d5561=_0x436d33;return _0x3801c8[_0x5d5561(0x9a6)](_0x2c4840,_0x25094c);},'ncsID':_0x3801c8[_0x58d085(0xb40)],'Yjdqv':function(_0x242ced,_0x2a51d3){const _0x24fed3=_0x248f80;return _0x3801c8[_0x24fed3(0x2a6)](_0x242ced,_0x2a51d3);},'ZjvWa':_0x3801c8[_0x248f80(0x746)],'cBsiW':_0x3801c8[_0x58d085(0xb1a)]};if(_0x3801c8[_0xa1139a(0x874)](_0x3801c8[_0x58d085(0x338)],_0x3801c8[_0x492c95(0xcfa)])){if(_0x28db49)return;const _0x516a65=new TextDecoder(_0x3801c8[_0x436d33(0xc60)])[_0x248f80(0xd56)+'e'](_0x187dbb);return _0x516a65[_0x492c95(0x465)]()[_0x492c95(0x612)]('\x0a')[_0x436d33(0x941)+'ch'](function(_0x25edcf){const _0xe34718=_0x248f80,_0x24f73b=_0x58d085,_0x185f38=_0x248f80,_0x455c02=_0xa1139a,_0x155d19=_0x436d33,_0x43c5d9={'FpAQY':_0x2adad7[_0xe34718(0x52e)],'WPMxH':function(_0x2d29eb,_0x36d9bc){const _0x51e921=_0xe34718;return _0x2adad7[_0x51e921(0x2b8)](_0x2d29eb,_0x36d9bc);},'xywWK':_0x2adad7[_0x24f73b(0x357)],'KKIwH':_0x2adad7[_0xe34718(0x206)],'FdYpD':function(_0x125c19,_0x282e67){const _0x1fe3ec=_0x24f73b;return _0x2adad7[_0x1fe3ec(0xd2e)](_0x125c19,_0x282e67);},'RUcRb':function(_0x483601,_0x45d880){const _0x3ee071=_0x185f38;return _0x2adad7[_0x3ee071(0xae3)](_0x483601,_0x45d880);},'kNXyh':function(_0x15cae0,_0x49222e){const _0x25656a=_0x24f73b;return _0x2adad7[_0x25656a(0xae3)](_0x15cae0,_0x49222e);},'DMWNG':function(_0x18ed6e,_0x449896){const _0x4ed618=_0x24f73b;return _0x2adad7[_0x4ed618(0xae3)](_0x18ed6e,_0x449896);},'mZgER':_0x2adad7[_0x24f73b(0x8ee)]};if(_0x2adad7[_0x24f73b(0xcd4)](_0x2adad7[_0xe34718(0xb96)],_0x2adad7[_0x155d19(0xb96)])){try{if(_0x2adad7[_0x185f38(0xcd4)](_0x2adad7[_0x155d19(0x43e)],_0x2adad7[_0x155d19(0x43e)]))document[_0x455c02(0xac5)+_0xe34718(0x8b0)+_0x455c02(0x372)](_0x2adad7[_0x24f73b(0x808)])[_0x455c02(0x139)+_0x185f38(0x753)]=document[_0x155d19(0xac5)+_0xe34718(0x8b0)+_0xe34718(0x372)](_0x2adad7[_0x24f73b(0x808)])[_0x455c02(0x139)+_0xe34718(0x50d)+'ht'];else{if(_0x2794a4){const _0x28d57e=_0x32fe3e[_0x185f38(0x78d)](_0x2c44b1,arguments);return _0x1f9734=null,_0x28d57e;}}}catch(_0x5dbf5e){}_0x1e06cb='';if(_0x2adad7[_0x185f38(0x2cf)](_0x25edcf[_0x455c02(0x1d9)+'h'],0x2*0x1105+-0x11*0x6b+-0x1ae9))_0x1e06cb=_0x25edcf[_0x24f73b(0x8c3)](-0xb*0x31c+0x15ff+-0x65*-0x1f);if(_0x2adad7[_0x455c02(0x383)](_0x1e06cb,_0x2adad7[_0x185f38(0x94b)])){if(_0x2adad7[_0xe34718(0x5f2)](_0x2adad7[_0x24f73b(0x143)],_0x2adad7[_0x24f73b(0xbf9)])){const _0x4c1898=_0x2adad7[_0x155d19(0x6de)][_0x185f38(0x612)]('|');let _0x4a2237=-0x983*-0x3+0x24b1+0x2f7*-0x16;while(!![]){switch(_0x4c1898[_0x4a2237++]){case'0':const _0x394e8f={};_0x394e8f[_0xe34718(0x56a)]=_0x2adad7[_0x155d19(0xa77)],_0x394e8f[_0x155d19(0x47f)+'nt']=_0x26e89f,word_last[_0x155d19(0x35e)](_0x394e8f);continue;case'1':document[_0x455c02(0xac5)+_0x155d19(0x8b0)+_0x24f73b(0x372)](_0x2adad7[_0xe34718(0x429)])[_0xe34718(0x4b1)]='';continue;case'2':lock_chat=-0x3d*-0x17+0x18a5+0x1*-0x1e20;continue;case'3':return;case'4':const _0x5f312c={};_0x5f312c[_0x455c02(0x56a)]=_0x2adad7[_0x455c02(0x34e)],_0x5f312c[_0x24f73b(0x47f)+'nt']=chatTemp,word_last[_0x155d19(0x35e)](_0x5f312c);continue;}break;}}else{const _0xa1717={'opeFF':function(_0x2ae2ad,_0x57ce2d){const _0x46a91b=_0x185f38;return _0x2adad7[_0x46a91b(0xa21)](_0x2ae2ad,_0x57ce2d);},'WAecM':function(_0x335341,_0x1b7251){const _0x1b1a82=_0x24f73b;return _0x2adad7[_0x1b1a82(0x2b8)](_0x335341,_0x1b7251);},'JzyGZ':_0x2adad7[_0x185f38(0x3d8)],'xaJpy':function(_0x15baa9,_0x10847a){const _0x4e47f1=_0x185f38;return _0x2adad7[_0x4e47f1(0xaff)](_0x15baa9,_0x10847a);},'gSeNY':function(_0xf569a1,_0x1aa5a6){const _0x3702d1=_0x185f38;return _0x2adad7[_0x3702d1(0xaff)](_0xf569a1,_0x1aa5a6);},'eRdDA':_0x2adad7[_0x185f38(0xd39)],'OLCTs':function(_0x271981,_0xf9005a){const _0x5af656=_0x185f38;return _0x2adad7[_0x5af656(0x2b8)](_0x271981,_0xf9005a);},'VvBYn':_0x2adad7[_0x155d19(0xc1d)]};_0xb111db[_0xe34718(0x90c)](_0x421f59[_0x155d19(0x952)+'es'][0x135e+-0x22*-0xd3+-0x2f64][_0xe34718(0x969)+'ge'][_0xe34718(0x47f)+'nt'][_0x155d19(0xc0e)+_0x24f73b(0x426)]('\x0a',''))[_0xe34718(0x941)+'ch'](_0x268e78=>{const _0x1b1c4c=_0xe34718,_0x539d0e=_0x455c02,_0x18390d=_0x24f73b,_0x1ff653=_0x24f73b,_0x132a9f=_0x455c02;if(_0xa1717[_0x1b1c4c(0x550)](_0xa1717[_0x1b1c4c(0x4b5)](_0x4c2cf9,_0x268e78)[_0x18390d(0x1d9)+'h'],0x1a10+0xbcf*0x3+-0x8c8*0x7))_0x312fa3[_0x539d0e(0xac5)+_0x132a9f(0x8b0)+_0x1b1c4c(0x372)](_0xa1717[_0x539d0e(0x66e)])[_0x18390d(0xc4b)+_0x132a9f(0x858)]+=_0xa1717[_0x1b1c4c(0x2ac)](_0xa1717[_0x1ff653(0x669)](_0xa1717[_0x1b1c4c(0x34f)],_0xa1717[_0x1b1c4c(0x99c)](_0x1b6aa2,_0x268e78)),_0xa1717[_0x132a9f(0xac7)]);});}}let _0x3243d0;try{if(_0x2adad7[_0xe34718(0x9b3)](_0x2adad7[_0x155d19(0x233)],_0x2adad7[_0x155d19(0x586)]))try{if(_0x2adad7[_0x185f38(0x3e8)](_0x2adad7[_0xe34718(0x4c3)],_0x2adad7[_0x24f73b(0x5e3)])){const _0x1b5475={'GZFYu':_0x43c5d9[_0x155d19(0x502)],'hIkKl':function(_0xc742a0,_0x2fcbc4){const _0x337072=_0xe34718;return _0x43c5d9[_0x337072(0x6e0)](_0xc742a0,_0x2fcbc4);},'lBHDZ':_0x43c5d9[_0x455c02(0xcf7)],'joiSt':_0x43c5d9[_0x185f38(0x33f)]};_0x30568d[_0x455c02(0x47f)+_0x185f38(0x41f)+_0x24f73b(0x76a)][_0xe34718(0xb79)+_0xe34718(0x78a)+_0x185f38(0x6d9)+_0x155d19(0xba6)][_0x185f38(0xbed)+_0x24f73b(0x520)+_0xe34718(0x734)+_0x455c02(0x47a)][_0x24f73b(0xae6)](function(){const _0xfc172f=_0x24f73b,_0x38fe5b=_0x455c02,_0x459f12=_0x24f73b,_0x348d59=_0x24f73b,_0x1b2a5f=_0x24f73b;_0x585d43[_0xfc172f(0x47f)+_0xfc172f(0x41f)+_0x459f12(0x76a)][_0x38fe5b(0xb79)+_0x348d59(0x78a)+_0x459f12(0x6d9)+_0x348d59(0xba6)][_0x459f12(0x97d)+_0x459f12(0xc31)]['on'](_0x1b5475[_0x1b2a5f(0x2b1)],function(_0xdce22c){const _0x30aa7f=_0xfc172f,_0x285607=_0xfc172f,_0x303dbf=_0x38fe5b,_0x273ad2=_0xfc172f;_0x49ba9c[_0x30aa7f(0x7c3)](_0x1b5475[_0x30aa7f(0x7e4)]),_0x1b5475[_0x285607(0x8b8)](_0x205b63,_0x1b5475[_0x30aa7f(0x519)]);});});}else _0x3243d0=JSON[_0x24f73b(0x90c)](_0x2adad7[_0x155d19(0xae3)](_0x134461,_0x1e06cb))[_0x2adad7[_0x24f73b(0x8ee)]],_0x134461='';}catch(_0x1aff84){if(_0x2adad7[_0x185f38(0x3e8)](_0x2adad7[_0x24f73b(0x221)],_0x2adad7[_0x155d19(0x71e)])){if(_0x43c5d9[_0xe34718(0xafd)](_0x43c5d9[_0x155d19(0xcdb)](_0x43c5d9[_0x155d19(0xcdb)](_0x1e9d36,_0x5d4433[_0x1ec3c7]),'\x0a')[_0x455c02(0x1d9)+'h'],-0xb*-0x199+-0x9d*-0x3b+-0x476*0xb))_0x360a26=_0x43c5d9[_0xe34718(0xcdb)](_0x43c5d9[_0x455c02(0xd6e)](_0x15f15d,_0x367c59[_0x34ede6]),'\x0a');_0x12b43a=_0x43c5d9[_0x24f73b(0xcdb)](_0x1bcdff,-0x1*-0x49d+0x1*-0x176e+-0x3*-0x646);}else _0x3243d0=JSON[_0x455c02(0x90c)](_0x1e06cb)[_0x2adad7[_0x155d19(0x8ee)]],_0x134461='';}else _0x4dc5c0=_0x321363[_0x455c02(0x90c)](_0x43c5d9[_0x185f38(0x41b)](_0x2114e8,_0x4e33a8))[_0x43c5d9[_0x185f38(0x17e)]],_0x40a417='';}catch(_0x386f02){if(_0x2adad7[_0x155d19(0x302)](_0x2adad7[_0x455c02(0x953)],_0x2adad7[_0x155d19(0x45e)]))return-(0x466*-0x2+-0x29*0x4f+0x1574);else _0x134461+=_0x1e06cb;}_0x3243d0&&_0x2adad7[_0x24f73b(0xc90)](_0x3243d0[_0x185f38(0x1d9)+'h'],-0x1378+-0x265f+0x39d7)&&_0x3243d0[0x1*-0x7f+-0x745+0x8e*0xe][_0x455c02(0xcb8)][_0x185f38(0x47f)+'nt']&&(_0x2adad7[_0x155d19(0x608)](_0x2adad7[_0x24f73b(0xc89)],_0x2adad7[_0x155d19(0xc89)])?(_0x38e8cc=_0x413b85[_0x185f38(0x90c)](_0xdd89d1)[_0x43c5d9[_0x24f73b(0x17e)]],_0xbe70cc=''):chatTemp+=_0x3243d0[-0x319+-0x1*0xce0+0xff9][_0x155d19(0xcb8)][_0xe34718(0x47f)+'nt']),chatTemp=chatTemp[_0x455c02(0xc0e)+_0x455c02(0x426)]('\x0a\x0a','\x0a')[_0xe34718(0xc0e)+_0x455c02(0x426)]('\x0a\x0a','\x0a'),document[_0xe34718(0xac5)+_0x185f38(0x8b0)+_0xe34718(0x372)](_0x2adad7[_0x185f38(0x406)])[_0x24f73b(0xc4b)+_0x24f73b(0x858)]='',_0x2adad7[_0xe34718(0x3f4)](markdownToHtml,_0x2adad7[_0x455c02(0x96f)](beautify,chatTemp),document[_0x24f73b(0xac5)+_0xe34718(0x8b0)+_0x155d19(0x372)](_0x2adad7[_0x455c02(0x406)])),document[_0x185f38(0xd72)+_0x155d19(0xd11)+_0x455c02(0x7c5)](_0x2adad7[_0x455c02(0x189)])[_0x455c02(0xc4b)+_0x155d19(0x858)]=_0x2adad7[_0xe34718(0xaff)](_0x2adad7[_0xe34718(0xaff)](_0x2adad7[_0x185f38(0x2e5)](prev_chat,_0x2adad7[_0xe34718(0x851)]),document[_0x24f73b(0xac5)+_0xe34718(0x8b0)+_0xe34718(0x372)](_0x2adad7[_0xe34718(0x406)])[_0x155d19(0xc4b)+_0x155d19(0x858)]),_0x2adad7[_0x455c02(0xcbd)]);}else return _0x1842a1&&_0x4fdf7f[_0x455c02(0x465)]();}),_0x37c25e[_0x248f80(0x40a)]()[_0x436d33(0xae6)](_0x53e21e);}else _0x5c57cb=_0x45876e;});}})[_0x34d383(0xd38)](_0x5852b1=>{const _0x557898=_0xf0622f,_0xc49347=_0x341e9a,_0xfe94ed=_0x4d5192,_0xdd9b8d=_0xf0622f,_0x361186=_0x341e9a,_0xb75ad0={'GLbeB':function(_0x469b39,_0x422b0e){const _0xa12b26=_0x1a0d;return _0x3801c8[_0xa12b26(0x651)](_0x469b39,_0x422b0e);},'TdoiN':_0x3801c8[_0x557898(0x497)]};if(_0x3801c8[_0xc49347(0x1c4)](_0x3801c8[_0xc49347(0x54c)],_0x3801c8[_0xfe94ed(0x8d5)])){_0xb75ad0[_0xdd9b8d(0xbde)](_0x2cc5dd,_0xb75ad0[_0x557898(0x25d)]);return;}else console[_0x557898(0x7cb)](_0x3801c8[_0xdd9b8d(0xc87)],_0x5852b1);});}function _0x572a(){const _0x208f46=['UDtEn','siFhM','mYFjF','dMnyW','heigh','title','oxrZg','aoFpP','ReUxx','HJEUb','WEpjt','IBHPm','pQHmO','qLmjB','YVGTL','uERrs','join','trmqG','qBqLD','MDZcF','CJkZb','EPBsY','_page','Yzgkj','fAzRd','vqvwM','nlDTA','VetNJ','fMcUw','VzBNl','btRCE','pzNJy','jwBCB','SvCUJ','QEpMl','NoofZ','IhvEZ','deiSH','ErDWp','azwKR','llJRO','huCeV','atOpQ','vwMkx','|14|3','a-zA-','AfzbC','DiZyH','ass=\x22','OTGoH','NNWlq','EQTzo','WkQrA','ader','OYIso','DLsnj','Zgxg4','delta','info','重复上文','dydat','UivTA','cBsiW','FWbaY','dSQNx','yrLUR','UGCzO','xnTfo','HpQIh','OmYoU','t=jso','VNzBp','CyCXI','chat_','VvQmc','KVMxZ','BGzjm','XXClL','_rs_w','_more','toStr','ToBph','|23|2','YkaQR','vhZxg','Bechd','WjeGO','rLODm','ut-co','VsMkl','skvNX','ton>','RUcRb','RKGDf','vPvEZ','RKBQs','getCo','mpute','fzITD','VwYXx','WLKAf','azLgp','gTMGD','jgHzg','{}.co','cNEhY','items','FnMAK','prNgN','wfSIF','pGpIg','nOvSE','StfAL','lASsk','dNfPA','pyLgz','ZTgOi','UlALh','pMzsS','hZSGG','xywWK','view','addEv','HWkEm','(网址ht','wUojU','vaCLZ','JAoxK','XSsEq','CVRYf','ImCal','WyRPX','oaded','kIQfp','IImnq','OAPka','diFFl','2RHU6','LGakj','UaEbk','iWyKK','oyimm','(((.+','apper','RgRsD','vcUvV','ement','SUAMh','WIpRh','GivKa','xvnsc','qvtnS','zcBoS','appli','GUvWe','xqzSk','JutCD','ThdNp','OyrOF','gxPle','yhKft','down\x20','UGwGx','OEfYV','lNScE','AylxB','zjrJV','QioSx','fwIDA','dTsgn','oFtJZ','dQuYl','fkiyS','bekiD','UIDDU','qijRx','59tVf','o9qQ4','EWKaY','EvbCD','LaOyB','stMqB','rVyvJ','ote\x22>','CbhDI','catch','uMnod','DHiYc','Ntuqn','UWobE','hLJOD','iaFID','svZim','qkSoW','uoRBH','KHvYm','preve','IfxQg','OTCLQ','tEJpd','oDUyc','vZQAN','eRyEb','ore\x22\x20','inue','LYlZe','MSiVH','#ifra','duMNn','PoExu','OayUR','0|2|3','kYCvj','mJtpC','DjlTl','decod','号Char','jOXmc','vimHZ','yLysK','HkObt','OwNpk','GGCPb','nrNXK','RqtRd','ojyHr','JKKvh','FnYfB','TKwtq','txRqG','ywPIs','ORtYA','ZJWYk','YGCnA','WfDnn','”的网络知','eAttr','PCrOm','qShml','kNXyh',')+)+)','VdrZi','REvmD','getEl','EKAOr','encry','LxvFw','dAtOP','YLmcp','UbbyE','nlgjK','MAsRA','wUQOp','ZeRhv','Hatce','E_RIG','JqSmu','LDRPv','NFtYU','iIhbc','_rang','scrol','BiNmG','Mfyjq','ZjFdD','E_LEF','PCqkO','4|6|7','HwQnm','NKmFJ','GDzvJ','QgUyn','\x22retu','3DGOX','\x20(tru','gowDN','twGoV','gTyyS','iUQGP','olQAK','*(?:[','GIcxh','des','QDJtL','Ocqed','AxcrY','ocavz','bZavV','dEemK','oVmvb','yoaty','hsWwv','#ff00','getAt','UVLFs','hBKaI','pVzzh','index','sPvGe','PbYUQ','dtOJG','VymTh','uCiwr','RpeBd','joohW','decry','YCfcI','nt-Ty','dGZXX','wJ8BS','zUvhp','qYcZU','MYjBz','LbmfT','q1\x22,\x22','trace','bkDJM','jHSvH','tivMC','getRe','rPwSi','OOVne','cQwpe','XXUEv','18eLN','yxsBQ','pnAnJ','\x5c+\x5c+\x20','xtlIl','3|3|1','mZgER','TXALm','EZJOw','iLpXZ','mhjhR','state','IXVCG','rTtLd','ttDFe','NjHAg','ratur','ncsID','click','LuFfk','MmENQ','terva','WPcMf','fuQIn','JrKUg','VfGae','CFkcH','UwFKR','JEdGK','vqqFO','MiYBE','GUDMy','gOizj','osJAG','VqENR','q3\x22,\x22','ccNHr','KBwTk','qLyvc','PAhQl','sAjex','XgoJL','BhBYt','TwqDE','eRFXx','YgSF4','cDaSs','uYteC','FYIjP','fromC','fJyhE','ruSlr','6f2AV','VrTaG','uRelY','JaXhc','n/jso','eNqhF','iTHEJ','dismi','count','qpFwv','xbeJD','EnqMy','eyfCT','PclUm','RLNta','tkNMF','”的搜索结','ehhFq','vSWvO','MfyKo','mUGXo','MYSOd','QFiwm','UDjqp','dSlOQ','Buvha','gOTOD','UpUST','LpRBW','ymLTf','pvOYa','QbsrS','tagNa','pSeLK','yKiGp','Puwle','息。不要假','Mktiy','oLPdI','GCWct','dEQkN','quBRD','jTiSU','GQndW','lhQWR','lengt','rXHqe','FWSfB','XKDZu','UWLhP','jYMsv','OnvoE','JZwmp','kkVyw','Cbjqt','fzTXq','xudUG','PDF内容','oIgLF','getPa','Uwify','DRtie','pmjBn','mkPVx','GKujr','EidUj','pudwd','FJFLa','xOMjk','add','tQbNP','hiNOx','RE0jW','zaMVg','scale','ufEkP','JhzSH','lSexC','POST','wGWAG','oRjMS','KfVYc','0|16|','veocm','kkQIy','lFZJs','DpprW','catio','XFPgv','CdOGL','nKGHN','-----','BylXO','sFhTv','CENTE','mdnAJ','wYxzl','ctTBS','succe','gOiXO','Xohnx','JcSwM','tTUHf','sFxYp','ftJGA','_inpu','lhXNu','UxWlR','lLWqD','DOfCq','quRTq','tnLHW','odqzj','NlvBN','EGjsd','kjEIl','eZErR','msEuC','XuKbg','iJian','crluq','maYaY','VmqYz','vHgpe','最后,不得','(来源:h','omolE','Charl','vErMm','WEgWQ','xhewV','JEGOu','upAvb','jUPxX','emoji','agHkA','MINyA','METbA','xPZXA','你是一个叫','mTewC','KWUHQ','tivLI','mJWZs','CnhIZ','IymSb','BvZIH','iViAv','gTOsl','GXvHT','EXObs','ntDoc','JVEqu','XXRvn','BHNln','dxJdu','zyWps','mNRla','ypXoq','byteL','SBpQf','sWGAx','elKIa','ZUDFu','务,如果使','dewyL','dfun4','rNfYU','yTwmk','hnKqj','HPCGO','vNyju','SWnTO','ZwTfG','raws','ZRTwC','ZAHmO','TdoiN','NJlbF','3|0|4','DVaEz','OEdZu','data','XLeiN','gwfup','cYOrB','mfJrp','xWpTP','3|2|0','ibute','conca','TnldO','mYPiz','gSHOp','M_LEF','iqrXL','oAmaQ','Heigh','CRMUI','iPUog','vSWMm','qqpnp','label','xcweI','DF文档','MoThf','WzNRD','style','JRWYO','HMxtA','pWWJw','vosBZ','lDhhc','QpUof','wBxhu','WmHmo','spki','HBhVP','IzjQR','WkrWK','oSkMv','wfvse','QjQAm','OFFrp','bxyPh','lntHk','识,删除无','gkksg','jgUhc','EZavt','okXpJ','infob','DLAMi','pelTS','gkqhk','lTplV','UJryt','MbOMv','zDPSN','(链接ur','GVnVs','</but','DAXCm','actio','查一下','cLDKQ','PlTdi','szXzN','应内容来源','JTeJw','srhbz','intro','KOkmJ','GcZiV','NehYN','grTVr','xaJpy','Ybzzl','KQKht','oqvGm','emes/','joiSt','AsQhJ','bmSKz','RdOOk','MJRXe','BUcvy','href','KklhF','ructo','tmyNS','22|9','t_ans','GRJrn','oHaiO','AKzks','qRRhF','zdrWe','KlqFn','BksGL','FzdKd','ntDef','hMPqX','FjXqI','t_que','(链接ht','UreNd','nue','conti','57ZXD','TXyUo','rdmqA','GyrEj','iFNBi','Kjm9F','qXLyi','JljwQ','JwyQU','PXkEA','EEXCq','sEXPA','GrlDa','BcHMU','容,发表带','JvtJf','yAHdI','hZiep','YVyyC','Wrtzp','RuAVw','能帮忙','pdExN','QiTEO','Yjdqv','qqLGa','NRNoj','写一个','iG9w0','ioxvb','iPMUb','eKmrp','hjLec','fMobW','FKnGj','CsuBO','nKwzp','hEven','ApRVA','CQeWX','aRoOw','cNgoL','CAQEA','pre','HFbps','WdKRh','kaifr','MyIGA','Gtrov','OXUmj','WQhim','vRviu','GqURY','JvuDI','rch=0','5|18|','x+el7','EmgYV','gmWHP','://ur','eSlBk','OnWDF','okbxp','q2\x22,\x22','zGubd','VMgJr','vRHlc','kryDt','YuNDw','stene','KEEWq','wer\x22>','ollHy','kIHAs','JPgLg','nrGlG','1|0|3','yYwgT','IhABM','toLow','&lang','AabVY','LAGLd','wgXnL','PtCQn','xphTr','KJZzp','pdfjs','CgHAR','EeIfh','OVCby',':http','(来源ur','aTCfr','uLWgh','TLFfG','vAksL','chat','ZQLvy','tUyal','pexxP','PAqCP','NINNb','searc','VTnxB','pdf\x20l','yzjfL','cjKvG','fyqAL','TEORB','user','HVysM','AEP','cFqGJ','KKIwH','AgoAf','ZQZTf','\x5c(\x20*\x5c','ZWUqB','NYVgv','secTr','AXOmi','prese','gIUbC','VDopW','hepHR','(网址','ydkUy','aKwhY','lvTap','eRdDA','sHbhr','dKtlJ','EUCvq','20|15','YhvPH','JznDu','setIn','ivDkJ','charC','PDF','ztPer','UkRgn','请推荐','QpnsW','push','vQYMV','eDBJE','yTJIi','BEGIN','jqPmR','QAB--','oWvON','ksGoT','Iiczv','VBmrR','uVzxf','Jqvar','wyTKj','from','<div\x20','upKhf','jXIHa','Eeekd','pmMGP','tor','ShrsT','ozByB','LFszy','eslgl','ourKc','IqEiw','nJqsS','|1|3','BDOZC','Szjff','onten','&q=','ARIeq','Cwhdi','CVSOt','UqQfT','iTZuD','osDnx','|0|9|','hilFG','ornHP','vVUGv','CIpFF','ygwUu','jNXIs','hQZpf','”有关的信','iEBsT','RKLNL','CykFy','OPhCX','75uOe','SFXXT','vgzQd','HUWwO','POmDA','SXJpt','WLBzo','jROQK','归纳发表评','0|0|2','YCjhu','attac','fJyqF','oxes','pxgtN','MKUZN','textC','PnCeI','cXsGZ','vote','sYyZg','mlvnh','VcEyo','EMmLb','网页布局:','entLi','PtnLO','sort','mvlOC','uaMuq','NhdBf','vxuGx','ZckSL','BOetr','ZEWvy','BLyDK','qSbJC','hwWkx','PyteP','strin','gSHZW','DtFae','ocwrK','dJTam','MjyKa','LPjmL','10|16','12GaMvJr','wSRYX','xbVph','BQOyx','SqImn','FOoVF','FbxsM','qSzFB','HKZzP','koQHw','DXRTN','sfRrf','GCNao','JgvaV','90ceN','hipYN','XLApJ','znOVk','BHhqG','MAsnO','zzhQp','fuNZe','ent=g','ZpoVw','ILbFS','talk','qmrZg','(来源链接','undin','HhyWD','ThgKl','gWEsW','ihNYb','const','FBvIU','cMEfJ','MIDDL','uXUuV','rJCRd','BmtKW','BAQEF','jKQqD','vfQJa','pdxPM','TngYz','WcGHL','xcuzj','wGvts','DcYOb','uICdD','xcBIr','TFNce','THDFK','给出和上文','fuiDY','22|24','bjwhF','nadfM','eci','ions','okGmv','中文完成任','NoefU','OhStD','cAKFy','RfmAb','syste','lIPlL','CEnyD','yIlXX','要上网搜索','kgIyy','getBo','read','sxXlL','hTwNo','yPGfg','HMflm','PuRKx','zosze','|21|1','bQQui','ZiMud','VmQAr','jKKAc','EmYmu','rJVgq','接不要放在','htgGp','WptnA','DMWNG','DLE','pygKj','UfnFE','ntWin','eBwIr','vzejo','FNXtW','Tltdi','ck=\x22s','_talk','ceAll','pyyZD','bmckK','ZLUqS','JDEEh','koVkj','roxy','PLzhN','brUhd','yimap','lyppx','glRNH','fxhZh','XZxTe','JHewe','uCcpW','Maqoc','GMiJS','FrVHg','PZlbH','IlXvf','__pro','LQczr','UdHri','DBHZG','上一个会话','iUuAB','BujVp','oTuVE','LgMVt','kycst','RGHfO','aria-','Og4N1','XxoYe','vihiN','te_a/','AZcaK','qLloa','sFtik','ZkcRs','eHoMU','ZokVs','ges','pPmNt','XHz/b','raoiD','wRroP','Conte','的评论','IcKXK','uyFUr','YqsXD','dStyl','tRqht','dWuKS','lTYaB','=\x22cha','hwvgO','josxI','THWjO','Gqvaw','torAl','trim','xlfXf','PjxNp','Ga7JP','KWnHY','bvmtg','ALmvP','ixBEZ','eLyRx','bCgeU','gfKdk','ZPyqP','oIqXm','CxtZX','hgBvR','wlnQa','OjISV','ClCcx','vTilB','8&sl=','NljPt','ise','mvyfW','ikFZy','RgRHE','aeNvm','conte','eriHP','zuPrZ','LnDwo','ASzmv','Elepi','CuEWL','GsVKp','TZKFy','cqqsX','RDPXr','url','pZLzN','IDvFG','min','BRvTC','nwzIZ','iMdBz','Ljnlb','CIBgz','sHRAV','oXGYz','lXnZl','XBIdQ','kUikd','getTe','sjMed','jVkXB','复上文。结','xfZPl','cyeNp','AlcdY','Tajkd','q4\x22]','sTUSL','zZjyx','CJGwG','odeAt','yWJnX','OFHTp','zJDHa','IC\x20KE','lawED','wLlgG','OPLLO','NEeAo','YBVyW','qPzzm','键词“','你是内部代','value','dUwrZ','ovJWI','boWmd','WAecM','HGfTY','LIRII','mFcpu','jEoGn','HUHby','CEbbN','IxlRY','/url','remov','zkgKW','tion','PKwjK','SCzbH','LlNjh','wWLDD','kXTjs','哪一些','aTWgl','定搜索结果','iLQJK','JjJYk','iPByI','FiVjt','cJZpu','haZjS','|1|4','dcGHr','\x20PRIV','AlzlV','vlQzO','VRMTF','int','nYvft','QPPXa','nces','EFaBK','IFNUU','lnmxX','LIcPC','cwaTO','has','l-inp','sQhjv','MgcIv','eIMrA','/inde','RPNQC','Glcug','JuUiQ','pginF','JdciE','ynGtH','form','subtl','YxVbk','ivheJ','dPWVG','pFZDA','FDDid','的知识总结','kbXrT','mJZMo','ufgws','YDZYx','9|22|','gYDAr','LuiyA','zLycL','IzzLJ','rame','arch.','uUiFR','TyIgo','numPa','5|5|0','img','FpAQY','FpheH','vhbxp','EPOop','ewerl','jzqkt','oqstE','alt','jSukH','gIpMf','TECAA','lHeig','ZAEBm','xYCGx','OJtWL','Nazyv','CDfti','bXTMp','gClie','EqtqR','vrLTJ','Agvgj','vHPCr','lBHDZ','aPvub','yCbfw','PDF标题','5Aqvo','json','wIraH','alize','shnmH','cfcqJ','LNXTU','OXXRp','20170eiyPCJ','TqNgQ','ffzhW','GMHlI','XcgrZ','width','pdCHE','TOdXV','ooYaf','sVtwe','aGDbc','fXHrt','AFKnD','aQLar','jlley','cydvR','ZAkJH','mmwha','QRxph','DCMPv','LobrZ','Zgjgf','zfaYl','fFniJ','test','rZlMs','Jsibo','air','tTwRP','OiCPI','qfpKh','qjIEy','qXULX','PdmDk','EMHTg','ring','gorie','fAbKh','|17|2','SZAtL','(来源:u','#00ff','AsTJr','opeFF','的是“','容:\x0a','SwIPv','XvhoS','YvyIq','aUQUn','RgrAD','gXUmG','GaHlv','ljAKn','floor','WRmwE','GFdvX','rRIkS','emJEI','论,可以用','WxZzh','gify','TCEpk','NfOaW','NIPVp','ywKuL','ZXRqq','md+az','ltmkC','role','me-wr','lEWzN','mplet','的,不含代','tGnDx','xgyAf','BwpKs','utf-8','fesea','rPJTh','UIgss','GRJyN','kg/co','lXksj','LSdJu','eJANC','lQIkH','amDSL','YLcrF','mUMQc','f\x5c:','oPNpg','----','KYfrE','不带序号的','wtCBh','RSA-O','vMTvt','总结网页内','cfBYQ','txBTG','jNmhE','XyYcY','KdinZ','o7j8Q','qrYSK','=1&ie','texta','DvuJT','识。用简体','VEdhC','xtbdC','yCwAN','JrTAH','uKBcD','oGyDw','yRQpD','pZlLJ','XQgUw','PxnZc','hcLhb','bBgRy','D33//','lnFOh','FkTOK','match','ewpor','IaSpJ','displ','PYmyx','ZaVJq','vJACZ','vkeuo','EGkTT','VRAcl','pAmmY','TPHtN','i的引入语','zJkwT','nyXkO','caqnW','什么是','input','zsflh','UOFiH','PXaGs','_cont','tKyZq','ndDfl','Epfob','的回答','GuwGz','iCsqp','dWsDF','BcSym','NKecO','lEPqP','jrsrd','fzrpz','SgsNd','PgtlA','PnvIZ','nVaok','nUefl','wTpLf','dAvSa','sMrSO','JSXbD','forma','Objec','qIMiP','dChil','OUTVO','TOP_M','链接,链接','code','zA-Z_','SIriP','#prom','SnuJB','IDDLE','weMfO','VGEVc','JauBs','JnkoF','PlGoW','fWrzz','RApbn','\x0a以上是“','bdmPh','Zvxpr','aoRfZ','icZDu','sbUSI','Mtdkf','YNzzC','pAFoX','zrAkY','打开链接','BNSjE','UaXTI','LsYcT','RIVAT','end_w','QqMTJ','PboHD','IBCgK','lUpfB','VCKBG','CuCbQ','fFypN','MWIDH','QaQqJ','qludd','|9|12','zWFuh','RQNOz','fHBhu','e?cli','tx&dt','D\x20PUB','rWKkZ','MqHEu','vtuCe','gName','ument','nPSrq','DteWc','ZsOMl','Hxqhi','sHqND','qZoMD','0,\x200,','Netih','#chat','obFwr','Oqlyz','split','fHqrb','LymzV','zFe7i','hcrLD','oLAAL','BinTF','PySZp','IgETl','DFTKl','Ypyds','EnLgx','CdgbW','tLDTI','ECQTH','MCqck','oqZuD','GoBYK','JhzJF','IhNNO','#fnre','UJGTQ','XJHSB','Mmpee','edvYB','yBvVZ','rhFfp','uyvmK','VMjfW','jryCY','yMrih','XYepS','qzAhw','eXyiG','erCas','WPvpD','WFmLA','ozjcf','pdf','sDzNN','QSPMn','iYzIB','g9vMj','cWusF','retur','qJJlQ','PJYPD','n()\x20','xApaF','xgMsD','BfgHt','ByCff','IzpSh','nRoNU','aMgcc','#read','AlOXR','ogfeB','color','entlo','yVmET','|18|4','rea','Rsahg','CPsFx','ic/th','hvAqJ','rElmn','BxemG','left','找一个','XVhyp','jieba','FZpme','Ljxik','255','(url','JGtlj','PTzkN','PBemw','doOVX','fNobW','TfBGx','YTaBc','vcYOq','cRowk','wcsBH','gSeNY','VPbQL','Orq2W','UiBIY','ljWxJ','JzyGZ','DliZd','AHDsi','nstru','kGOtk','dZmMT','mQpqu','vrMee','gjZke','JkyxW','yKnYE','ywqLl','lGiID','WGjzP','fRFcS','IWiNv','pUXyT','uuFPg','tiGXi','OedRO','oWCHB',',颜色:','proto','SXuPR','RjGef','KQPgh','fXfcO','IGHT','CbuAq','XXTYw','UWBTN','VVcMC','RMAGS','bbaMf','cSRhd','lbJuI','dosXW','tLmwT','</div','71184pjHZhz','nunGs','$]*)','x.htm','AGOFh','\x0a以上是关','vzKVL','quOwN','TqwfN','eydWA','rwCKY','avata','cumen','snoCC','|19|4','hesSb','zppfS','body','5|14|','iZQzS','sAVOC','site','zAJFK','eOQMu','hVnkT','vHaFv','Wxisz','UnzDA','5U9h1','NvIDR','xPBmt','LCTMC','OJzBb','xjmlL','sHeMs','onloa','ITljR','完成任务“','npm\x20v','eOoNy','vAfgQ','gVuTi','”,结合你','文中用(链','appen','rcMjb','KJmXL','FnVuc','znPzh','\x20>\x20if','|7|4|','QnQZU','fahyy','(来源ht','这是一个P','TiUii','smYpV','rnfzo','wHlZX','jlqoB','kCReC','EdYTn','wWglc','size','YAIRQ','XWYAa','adTdP','l?fil','pplic','gYrtQ','MVYBt','UVVbN','EulTj','SfLld','RtrdX','WPMxH','7gDAyNj','PayTh','LIC\x20K','YPzeL','AUAea','VPROG','PYKOU','YQuRN','vKqPa','525108unbsSX','TzZxn','eQvrV','mcFPl','xPbWl','up\x20vo','WpuHF','-MIIB','ThXHw','asm.j','QmRga','zOHjw','JndwL','(链接:u','URL','TXfnV','kYNQH','nqcdO','NGEcT','eTcfl','XMbRp','DQEYG','eral&','bgpQX','FjzUo','oEMPi','gZDEU','u9MCf','yeDTi','tent','rfHey','mLsek','lrYgA','noHPK','Cmode','rABlR','bawmy','PnIsE','jUXic','tRbUj','qWBRj','mNGYV','VXyvV','axmqo','RZuMB','LKqNs','src','ZeEEn','nydTB','IwqGZ','yFoPs','kFfnG','AJeri','NkqcL','efRlT','uUeJN','jqbTz','KsJkU','IKvyV','oivUS','Ntwed','FkcAO','zZmMI','EMErp','clxwM','---EN','wqCAa','vxyWn','psVdy','btn_m','IWCpG','mJjdK','iDKra','fExeH','dProm','KIQzX','Lzkom','hEcdP','UWtlI','SisWr','QQIpG','selec','fPglY','DgdOX','cqUZf','okrgI','Updum','组格式[\x22','dKObE','sgQNS','BxPRU','SprcM','pCkMd','ISTBf','XzQUx','qeaQA','UEWuF','spQAv','kTEyR','QCqpM','singl','Z_$][','上设定保密','FsQxM','VKUnf','lTop','wnqhh','dTaTX','CYKAH','BPJBN','SfIKM','ogmkg','gOXMk','gENFL','LoldV','Error','tant','vMEfW','HGEVX','CcmYg','PlPqQ','2434690LQdmqO','tChiC','CmKNl','GdcLi','cIksY','ueAWR','ODqQg','dow','MpCas','VprVM','pnoan','以上是“','RMBrv','qqaON','NGNNz','g0KQO','GWxqM','toKIc','\x0a给出带有','nxlNw','ltwxL','lock_','oWEaA','KHBkO','tqhTq','gQVAz','vABFu','qdggh','uPFUC','IeNaQ',',位于','ESHaB','UVfFZ','glDDU','vcADo','ILNbH','<a\x20cl','Kqcvy','Fahqu','ewerA','WAsKe','pTEKU','apply','vimPu','23|13','nce_p','KobBD','zYZmo','0|1|2','fPJNh','zRutB','BbXpL','jEJTV','name','YHsiY','|1|10','YBprU','sFTZl','|2|6|','wyKmt','ksihV','DvTEG','nsfKo','mKftK','YzvID','EY---','不要放在最','kgQfQ','shift','bXeeX','ulspT','ybSVa','OKQWV','jiTok','frLoC','LFmeT','cyHQs','vGFIK','bEFok','qsDTT','ritFR','backg','sJtkM','LEniV','AZuGK','znudC','cwzbH','dsZNX','UBLIC','LULYf','url_p','xXWNm','obcsJ','BKkRx','QkKoR','lfEtp','log','t(thi','ById','dzGih','kihzZ','pxsPN','XAhSj','kepEk','error','fZKwq','关内容,在','rSRPg','s://u','&cate','iCjgI','PvpvR','offse','sLTzD','mmDvV','knpyD','kalNJ','MVjeg','sePTk','LsqUt','mjsEw','WzqVo','nLJZM','//url','iFRBm','WLrQf','b\x20lic','kqaiT',',不得重复','GZFYu','(网址ur','GBhry','jANWv','REnOg','kg/tr','rBVRv','oFxLy','YtGtJ','ESazm','KInvt','tqVLN','何人。如果','githu','wGGgi','kzYWz','vSFBp','conso','OXMBd','Zxphu','hXlfe','cDakV','请耐心等待','hPnof','puWoz','BRtng','TqnwQ','bind','ghMjv','FBkBf','Yjspx','MLQUB','ewvve','WXqHw','EYlBP','GWRaQ','HlnDG','RuyEl','wiMaq','UqgQq','nOMCu','dvamn','ViCUY','jZhvt','KnmSA','yEQMT','caeHJ','ersio','YsgnZ','IcoZk','hpYPi','(http','gIkpW','sJeab','kVcWl','abili','jpvQm','gger','CFhGX','es的搜索','UZaTd','clpJi','什么样','518lxyrzL','nqOhp','glHVk','SNWnY','#0000','RApKA','0|4|2','Ozyzp','词的完整独','warn','WanYr','WxAIt','mdFeW','EZmbc','aPQRK','xErtT','JPYYT','keHPZ','HcYHV','TfOFs','nEznx','EGVpG','mEkur','vTafB','wgjVV','gRvum','mDqIg','HdgzR','QtVyW','tQVEP','xLQIv','hOJfI','MLjaa','|4|3','dtGmJ','lyVPE','CNQty','BhGtb','ciGZs','vgqNo','arybt','PwvgF','PBMsI','ty-re','UAiYh','esTWH','ZjvWa','mrYCl','tCatD','UYUUm','<butt','ifCRM','\x0a以上是任','HTML','FmNNL','tjXvm','krxKy','|17|1','MlPfL','FLhix','PUgYt','jVCUK','XPFWc','jrLYp','PGoZB','ApMfJ','16|11','gnNSP','nrmKQ','MRLLh','hiUgo','delet','tOIAu','ebcha','CvFWf','nMBFE','EyhhM','JgyKf','wlbOX','UVAis','DVMnJ','iHnRD','VQNmg','JrjPF','VyvQj','getVi','PishR','jPivN','bgLOd','VrUoS','zomzq','guMNq','LsmBz','OYJEb','xIVxs','OKrPr','ntRec','BkpDM','=UTF-','TOP_L','OoqTD','(网址:u','PDfQn','kdcZb','UKTxk','heGMJ','LhPYU','为什么','mWnIG','YfioX','EnaUo','bTWlO','JTZWM','gaJIF','GdMOj','uage=','IBVlO','OzHSs','b8kQG','VrfWU','NdVAd','EZtMg','Bsfsj','kJAQH','kVFzT','wyDQp','GGvdJ','BXiuJ','raLZI','uaBRx','HkgOv','loade','vqvTl','fixUU','ZHPyp','KoeLK','KsEAx','SHA-2','icomn','zGLHI','xHCeL','Selec','wtXek','hncxB','8|12','AxavZ','OrvTR','xgWeM','cfNio','hIkKl','264AQdETE','BtYMV','nzpum','lBJUk','GnzGy','nTvtI','atdME','|18|1','rZmtA','krQfU','slice','SYkuf','NUzWf','jtieq','rPLLi','VmGcg','vqQTD','more','ClxXH','mzRzT','helIc','GPyZZ','oCjKh','tmRUR','Hijfi','Nqwnq','BpcrJ','网络知识:','KdoIY','qjKxW','sente','PCcqu','JawAM','Bjxun','PXWHF','pxTku','相关的,需','vxtUT','UkGBa','mOEoT','gbqEY','kwXvA','Color','NArGb','VkJXr','SsjyH','TOP_R','lsVkL','EgRNC','PEdsu','lnsuj','zEqlP','TZxfm','LneSX','[DONE','MkLzc','EQNdM','eDnrC','yBMzW','unshi','XjsTa','NuMzz','ATE\x20K','dOrsb','biBfn','npHOh','yjQxh','Width','fcKSb','aurYj','sqrt','map','nvMOZ','lliyY','BHNmw','WcYyy','tl=en','hAJCr','ZpMpT','UmFyX','AUmpi','WRsnZ','wYjzY','parse','PPMgA','uteDR','MRaIL','Tatdr','zGLeo','QqWxE','ZExox','Kvvcy','CZOTM','LAACS','DNVbJ','pSoYX','ijFgK','LXbYS','VhZbJ','网页内容:','XTZmy','HHoGT','。用户搜索','kywVZ','eutJK',']:\x20','qPeLj','pwPTV','QRMfM','VhFYE','sByTa','DnTii','FfoOm','pToJC','KoROD','enalt','WpDuP','oexaS','arch?','OZHHH','kwePA','Wxjtd','OlXhX','cBtpo','MDyWY','fXstl','fUfPP','ffIYi','JdQGS','DbcVs','cut','TxRRr','cgreD','init','ecwbk','bMEfO','forEa','ETQNF','isQpd','WqscE','yrTtC','aQraB','phoTY','NssMf','clone','fWZTL','gvzbB','围绕关键词','pePpn','zIwHF','OGYkl','IZGPp','Hzigs','choic','dQrzj','hgKAv','181245Qkfzsk','ltbqd','EmFVJ','qBJHK','sIQoA','dHpwU','gUSzU','YIYNP','yZVaC','czeGA','hZbgU','SxdCf','xwrBB','TkWgG','pFFfj','TNQCw','IklNH','rGJQw','21|24','hYGiA','messa','elVEl','dbhcA','Oawxj','noatK','GSBAh','pEKoY','幽默的、含','dTHsm','boefB','tXfxn','HOeug','PUKpg','eOtBY','iZGvC','ywZPv','debu','jvaBk','lxqFo','KiefN','event','rVRND','zHJbg','eDzME','FReYt','lJWmf','cDCFU','ZxxJd','CDYpb','dsuWV','KgnQG','SNYAL','kg/se','PEsJg','NRryG','LNsBs','FUZVX','AKpRB','bVISE','XApIk','jizQL','xJOuF','s=gen','nhAcm','to__','hf6oa','9kXxJ','MkozO','Kzchx','MEqGX','assis','OLCTs','tgwrT','r8Ljj','qfMoh','rmEbh','SDgBj','sqVYZ','stion','MYqkK','5eepH','HWxmo','hSWto','rXQiv','nLdbU','11|21','cPGry','ZaLUI','pwnxn','UHeiV','zh-CN','Hddgn','YYWev','JCzBx','DwmQz','|6|12','ytext','xjojH','subst','qgZbo','|24|1','XSEcR','Vncpk','Pmefo','在文中用(','POxWG','FlYRJ','BdSAV','GUJjK','kpPEM','s)\x22>','|2|4','无关内容,','TOpzO','BOTTO','YqlBy','UcRpe','qJHas','INXCm','mbpDW','hnacz','RCOJe','qAGwm','OkDJh','sBoqu','yKXSD','VZeYg','Node','rIQhh','zksqQ','KUSmk','pkcs8','gMjSp','eDSkH','CFdcc','mGbBo','cFnfa','|8|7','USHxj','ense','qBvoT','dezGH','yBrjm','Lcqhp','kg/ke','ebJnS','LnfMt','WKwQf','kn688','ekbnv','OnfqH','ncGjr','abhKV','YDHQK','ibind','cdxfa','IFhXi','VOhkz','eYHOK','WYXix','lyGLk','qlImw','xOJKp','dzGIs','jsgBN','DMQNw','aZqPM','BfeYP','JoEva','nTlZC','JLiJE','dKnZA','koOGT','fyClW','filte','IYuCe','QyXGD','gORGX','PqBmy','ri5nt','uAolA','XoNbq','ETHHp','qMrBa','dcqWD','GFCJl','(来源','SomgP','输入框','zNnQi','nctio','bNhYf','后,不得重','webvi','EYPVO','magi/','JGiMZ','nOwbS','写一句语言','lczuD','Ydqyi','isMAc','vQQkZ','DGNIL','JLKgm','GUFpn','ddffv','FIlsc','UaFJx','ZQGee','acgfq','FKrwc','AGXqv','aMJye','34Odt','QmWEC','nfLOE','xCrkq','wNSwg','AOCYu','|2|3','OuxcQ','YeEVr','yquSp','AAVJm','xKQXP','cCmHL','is\x22)(','OlzbC','rn\x20th','nvAGr','PhqzQ','tEFuu','AMBBi','vWpKu','9VXPa','SIyLk','e=&sa','LxUvo','footn','PLUrV','yHBUv','1|4|0','OhIvs','SZaVg','SbOdR','KMKcz','aded','XSYfW','YUwyb','JwOdw','QtHny','z8ufS','FdFSQ','ZJGbp','Nmowr','RWbWn','JUUrs','kjLPQ','HOAgX','booIc','PlTLn','接)标注对','HgdLU','tlRHk','qChXK','sknOn','ESLzb','jqQvz','syDNH','rHEch','sZHno','hWWfE','ZtXow','impor','tJrNG','odePo','anTfk','知识,删除','DMQXV','(网址:h','rrQry','\x20KEY-','funct','|3|19','://se','PguYB','jbKPz','工智能。以','zIUcQ','naryc','SflPf','EHtBM','vAYqb','RYQhe','KpruR','介绍一下','dfvhT','PgDDK','sRDlt','立问题,以','lSkfA','tHeig','tgBeC','&time','zLlSn','andkx','GYJtZ','_titl','BfWIz','dcTLr','ZXMnu','lJREg','all','KErvO','lMmed','rqTLa','DDkSu','ulUNf','EdvxD','xaiwg','tribu','xDRsx','FIuFv','OMQQT','代码块','opAxR','BKjfY','2561868SYyfCj','n\x20(fu','使用了网络','AeNQE','sIXoS','JIqFh','xbhpl','ACYQe','cQhGd','tTVeJ','round','zfnTN','lvHLF','EYECT','qbhZi','dxxUs','oncli','2|4|0','reNLO','kpBBS','Pbdtm','NNEUw','xRsCa','有emoj',',不告诉任','OjAsa','ToOXj','CetUP','block','on\x20cl','JgEaI','KLqaS','XnkdN','oMQCe','lQtPC','ipHip','EHzdi','cgEWT','UvpaE','QXHOo','query','ing','VvBYn','vnfuR','CZhJu','EZCPn','SZCbi','UpvFH','1|13|','OOiIA','call','TDJLm','MJlRr','table','vZNhe','kxKmh','Rcezj','fy7vC','NgtsL','kPITe','gMjQg','chNBk','EXWlo','eZyqb','GYXHT','cusnQ','qRUYI','ntent','VLNZZ','NwsBy','BWLdC','RQfSt','7ERH2','then','bNdDx','circl','xnDgg','wzGah','aXPtz','asqbu','sQdZI','VhCOJ','RoWwd','OhqnB','qhUZy','fUyvT','e)\x20{}','dKQNU','BgJnr','yuStG','EGIIf','rdric','IeIIp','xrqjB','mOsrt','VwcWQ','FdYpD','icRyv','zVZkU','CnqMc','有什么','auto&','MFyKM','QswWw','lYpRU','Index','TYKTK','xHxrr','eMKNv','UlffM','page\x20','MONAl','BkUsg','18416FkGiJO','TKlEG','hijuQ','eOjjD','class','jfHIq','ZaBXu','kkCrL','AAOCA','mGlPZ','yQudf','WGWxG','tCIrr','PajQT','#ffff','M_MID','sOVEL','exec','wIrRR','rQOwI','NuFvS','ansla','YCpDj','Qmosz',':url','</a>','KBQhc','ihFCI','fBymL','提问:','myBET','oZQvS','bsyun','WutWj','inclu','GGrPW','xEEEH','HSzhy','提及已有内','pJtVh','Y----','TPImZ','ctor(','|11|8','LGfYn','WqQgf','YtdCd','MMwzv','LlFiT','SfpJw','DQLFr','DuToS','NjUGL','aStgc','yEVKc','wfymJ','next','xtCon','255,\x20','cjHpb','引擎机器人','|2|1','nAmpC','mkyUM','uSfqD','rHlAY','M0iHK','owMWt','type','zAKri','jNTFg','源链接,链','wqTMk','dPNYR','qAMiu','nOEMq','KuLSs','=t&dj','chXjW','网址)标注','0-9a-','lQuuP','tWidt','KzlPL','tJOoA','ZvgtI','QCPTi','https','rxypX','JeUAR','DaKPc','MylRW','fDTfX','网页标题:','写一段','Xzyuo','vnhtN','while','aEQfH','gtTDM','dEOGk','WGHpu','EFT','KnUpM','TUYjO','oJqeC','VwhkQ','PDFVi','OhAzA','CymwM','rStcu','MFecE','curpa','vWKmG','ttps:','THArG','top','EbNXt','OHWcy','dObnp','fPcfi','WuVjt','sLtqK','BnEft','UZkHW','kAFJM','STlyH','aklyx','#moda','ZqRXB','KHAeb','qOphu','OYWsk','IAmZU','Bilnt','Hirgb','uSnIN','essrB','tps:/','yzYkp','/stat','wlyoY','eFZuE','kfTaT','IjANB','用简体中文','MTSKG','lxhzq','rBUzK','ODQsd','wseSl','OwRRM','ation','GXRqw','kgnLF','11dYQzWw','IdaaO','gUAGR','les的人','LoLpi','IdFgt','CLdhF','END\x20P','GUmTx','KGnUu','JDFvg','RUCOl','pQEig','wzugQ','ssteB','avCvN','ZKawN','cUHcj','BwpUx','ion\x20*','rZiTm','mhiKC','xWTmc','nYaNr','sjRHu','E\x20KEY','nOTKI','JNbqt','zyJNd','QSahg','dykzH','LGKKu','ength','zIIic','AGUfp','gLCnw','ent','Q8AMI','ralUH','MsTNO','aihER','Gfaib','NpszN','glgOv','用了网络知','znuex','zShdb','dLrBU','wRpvJ','AqWwF','PqBbA','\x20的网络知','ZZvme','GLbeB','chain','yWseg','eRWFc','eJbhm','jcaLL','DueBP','RtdOC','iThwt','ZieYP','pZaIP','hYoDS','Waler','SQAhq','hQNcj','initi','yBTmw','ywlNI','YehZn','HyOcf','Arjcy','cTOvE','WWYwL','JNDuh','2A/dY','iRXmV','告诉我','ePiUT','nXYhA','JEUUQ','tKey','LjwzS','CHuJF','bbMuh','hDgxM','eDJwz','(链接:h','WHIKJ','untJS','zUakB','PbMms','vZQRf','CZUTm','tempe','HJXit','pdfDo','Vvuwy','YyFDK','repla','NfQTp','nKllY','哪一个','0|5|1','GSOUk','(链接','搜索框','LgOSx','Otuyo','WhsAm','rAdJZ','ofxUv','bwDzz','Ufqim','sxVJL','vlrao','Vvuim','ySARh','ciiJf','WbPxo','OfQoD','bffVx','str','XpMrL','BvrVN','mWGwJ','QEuHz','cJYxk','\x20PUBL','gLDXh','qgUFT','uivQr','gAwrp','PNOiV','Bus','M_RIG','NyRur','excep','ZIZHk','OfdoX','TISfv','QaRMA','noWGy','keys','FLHYX','CIWNq','QCneM','poZmA','EvkoS','drUln','VcvXh','JKCMJ','CHNcm','UUqLD','HuEew','DYctF','Skgsp','XNKYg','FiWEL','byoFF','inner','MPisf','FgdvS','jEYcA','wMBjX','NHKfC','VcWJg','dCCet','KgaFJ','PuGym','eEcFm','nauML','BdcTc','myIVM','docum','pOJSt','kJvcX','CxvJI','yXNlA','qtTcM','oCUjV','VJFjT','sypkW','bccop','Qkark','IUclY','对应内容来','YDNUq','trans','gLiyc','vdBpS','pqCjF','TROCE','qqbQr','PNIsh','AgKvf','aauGh','Oefya','yQJvG','nbLKp','butto','BNcgn','hIUVn','FffAg','OUuUo','SKPQa','qxUsJ','LApCS','tAAjd','FpZsQ','json数','ault'];_0x572a=function(){return _0x208f46;};return _0x572a();}function replaceUrlWithFootnote(_0x4b7e1e){const _0x2e1db5=_0xf9acf4,_0x2988f3=_0xf9acf4,_0x56fd63=_0x42e93c,_0x23d8f8=_0xf9acf4,_0xdc7d11=_0x135ea1,_0x3d3862={};_0x3d3862[_0x2e1db5(0x9fd)]=_0x2e1db5(0xb6f)+_0x56fd63(0x146)+_0x2e1db5(0xaf3),_0x3d3862[_0x56fd63(0x95a)]=_0x56fd63(0x1b4)+'er',_0x3d3862[_0x56fd63(0x57d)]=function(_0x4ba6f9,_0x2948ac){return _0x4ba6f9!==_0x2948ac;},_0x3d3862[_0x2e1db5(0x3b3)]=_0x2988f3(0x534),_0x3d3862[_0x2988f3(0x386)]=_0x2e1db5(0x833),_0x3d3862[_0x2988f3(0x5b4)]=_0x2e1db5(0x54a),_0x3d3862[_0x2e1db5(0x390)]=_0x2e1db5(0x19d),_0x3d3862[_0x2988f3(0x968)]=function(_0x57b266,_0x5249fd){return _0x57b266+_0x5249fd;},_0x3d3862[_0x56fd63(0x380)]=function(_0x27c1b4,_0x458b55){return _0x27c1b4-_0x458b55;},_0x3d3862[_0x2988f3(0xaab)]=function(_0x4481d6,_0x262d6a){return _0x4481d6<=_0x262d6a;},_0x3d3862[_0x56fd63(0x310)]=function(_0x311292,_0x2f803e){return _0x311292+_0x2f803e;},_0x3d3862[_0xdc7d11(0x154)]=function(_0x274926,_0xca6665){return _0x274926>_0xca6665;},_0x3d3862[_0x2e1db5(0x4c9)]=function(_0x4c219d,_0x3fe15a){return _0x4c219d-_0x3fe15a;},_0x3d3862[_0x23d8f8(0xd1e)]=function(_0x3549be,_0x2eeb8b){return _0x3549be!==_0x2eeb8b;},_0x3d3862[_0x56fd63(0x6d7)]=_0x56fd63(0x67f),_0x3d3862[_0x2988f3(0x685)]=_0x56fd63(0xbc8);const _0x2bb21e=_0x3d3862,_0x2e8092=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x907c8d=new Set(),_0x5462ea=(_0x54047b,_0x4f7aa1)=>{const _0x120947=_0xdc7d11,_0x28d35d=_0x2988f3,_0x41f7f4=_0x2e1db5,_0x7ba5a7=_0x2988f3,_0x26804d=_0x2988f3,_0x2063e1={};_0x2063e1[_0x120947(0x8de)]=_0x2bb21e[_0x120947(0x9fd)],_0x2063e1[_0x28d35d(0x2a3)]=_0x2bb21e[_0x7ba5a7(0x95a)];const _0x19de38=_0x2063e1;if(_0x2bb21e[_0x120947(0x57d)](_0x2bb21e[_0x41f7f4(0x3b3)],_0x2bb21e[_0x120947(0x386)])){if(_0x907c8d[_0x28d35d(0x4de)](_0x4f7aa1))return _0x2bb21e[_0x26804d(0x57d)](_0x2bb21e[_0x41f7f4(0x5b4)],_0x2bb21e[_0x28d35d(0x390)])?_0x54047b:function(_0x486abe){}[_0x28d35d(0x3e2)+_0x7ba5a7(0x2b9)+'r'](depKvJ[_0x26804d(0x8de)])[_0x26804d(0x78d)](depKvJ[_0x41f7f4(0x2a3)]);const _0x53090c=_0x4f7aa1[_0x120947(0x612)](/[;,;、,]/),_0x44c5ef=_0x53090c[_0x28d35d(0x900)](_0x442bfb=>'['+_0x442bfb+']')[_0x26804d(0xc8f)]('\x20'),_0x4d0fe7=_0x53090c[_0x28d35d(0x900)](_0x53bd36=>'['+_0x53bd36+']')[_0x28d35d(0xc8f)]('\x0a');_0x53090c[_0x41f7f4(0x941)+'ch'](_0x4c1747=>_0x907c8d[_0x7ba5a7(0x1f1)](_0x4c1747)),res='\x20';for(var _0x341d07=_0x2bb21e[_0x41f7f4(0x968)](_0x2bb21e[_0x41f7f4(0x380)](_0x907c8d[_0x7ba5a7(0x6d4)],_0x53090c[_0x28d35d(0x1d9)+'h']),-0x1*-0x1e84+0x2404+-0x4287);_0x2bb21e[_0x28d35d(0xaab)](_0x341d07,_0x907c8d[_0x120947(0x6d4)]);++_0x341d07)res+='[^'+_0x341d07+']\x20';return res;}else _0x29ea56=null;};let _0x19d5d8=0x23d8+0x1e9*-0x1+-0x21ee,_0x15ef84=_0x4b7e1e[_0x56fd63(0xc0e)+'ce'](_0x2e8092,_0x5462ea);while(_0x2bb21e[_0x23d8f8(0x154)](_0x907c8d[_0x56fd63(0x6d4)],-0x11b3+-0x8c8+0x1a7b)){if(_0x2bb21e[_0xdc7d11(0xd1e)](_0x2bb21e[_0x2e1db5(0x6d7)],_0x2bb21e[_0x23d8f8(0x685)])){const _0x45005f='['+_0x19d5d8++ +_0x23d8f8(0x922)+_0x907c8d[_0x23d8f8(0x4b1)+'s']()[_0x2e1db5(0xb46)]()[_0x2e1db5(0x4b1)],_0x5981a4='[^'+_0x2bb21e[_0x2e1db5(0x380)](_0x19d5d8,-0x202b+0x1*0x12a9+0xd83)+_0x2e1db5(0x922)+_0x907c8d[_0x23d8f8(0x4b1)+'s']()[_0xdc7d11(0xb46)]()[_0xdc7d11(0x4b1)];_0x15ef84=_0x15ef84+'\x0a\x0a'+_0x5981a4,_0x907c8d[_0x23d8f8(0x86a)+'e'](_0x907c8d[_0x23d8f8(0x4b1)+'s']()[_0x2e1db5(0xb46)]()[_0x2e1db5(0x4b1)]);}else{const _0x12b4b7={'oHaiO':function(_0x3ca26b,_0x3adabb){const _0x590a2d=_0x2988f3;return _0x2bb21e[_0x590a2d(0x310)](_0x3ca26b,_0x3adabb);},'tChiC':function(_0x25467c,_0x5f2ea5){const _0x103dca=_0x2988f3;return _0x2bb21e[_0x103dca(0x380)](_0x25467c,_0x5f2ea5);},'yZVaC':function(_0x51ced6,_0x43d45e){const _0x53aad3=_0x2988f3;return _0x2bb21e[_0x53aad3(0xaab)](_0x51ced6,_0x43d45e);}},_0x297ed8=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x48008c=new _0x56d3f5(),_0x4cd0be=(_0x2a5b61,_0x2066b8)=>{const _0x49f1f6=_0xdc7d11,_0x2bf7ad=_0x23d8f8,_0x3af2c0=_0xdc7d11,_0x2b1290=_0xdc7d11,_0x5b190b=_0xdc7d11;if(_0x48008c[_0x49f1f6(0x4de)](_0x2066b8))return _0x2a5b61;const _0x576d39=_0x2066b8[_0x2bf7ad(0x612)](/[;,;、,]/),_0x265fa9=_0x576d39[_0x49f1f6(0x900)](_0x42229b=>'['+_0x42229b+']')[_0x2bf7ad(0xc8f)]('\x20'),_0x47e723=_0x576d39[_0x2bf7ad(0x900)](_0x33200d=>'['+_0x33200d+']')[_0x2b1290(0xc8f)]('\x0a');_0x576d39[_0x3af2c0(0x941)+'ch'](_0x4939e4=>_0x48008c[_0x49f1f6(0x1f1)](_0x4939e4)),_0x42e9c3='\x20';for(var _0x4e98a4=_0x12b4b7[_0x49f1f6(0x2be)](_0x12b4b7[_0x2bf7ad(0x764)](_0x48008c[_0x2bf7ad(0x6d4)],_0x576d39[_0x49f1f6(0x1d9)+'h']),-0x9f2+-0x11f2+-0x1be5*-0x1);_0x12b4b7[_0x49f1f6(0x95d)](_0x4e98a4,_0x48008c[_0x49f1f6(0x6d4)]);++_0x4e98a4)_0x2be605+='[^'+_0x4e98a4+']\x20';return _0x245adb;};let _0x383e9a=-0x10be+0xeae*0x1+-0x211*-0x1,_0x38242a=_0x590702[_0x56fd63(0xc0e)+'ce'](_0x297ed8,_0x4cd0be);while(_0x2bb21e[_0x23d8f8(0x154)](_0x48008c[_0x56fd63(0x6d4)],0x1*0x22c1+0xfd*0x10+0x1*-0x3291)){const _0x53d1c7='['+_0x383e9a++ +_0x2e1db5(0x922)+_0x48008c[_0x23d8f8(0x4b1)+'s']()[_0x2988f3(0xb46)]()[_0x23d8f8(0x4b1)],_0x22f1a5='[^'+_0x2bb21e[_0x56fd63(0x4c9)](_0x383e9a,0x1*0x3e5+-0x2315+0x63d*0x5)+_0x2e1db5(0x922)+_0x48008c[_0x23d8f8(0x4b1)+'s']()[_0x2988f3(0xb46)]()[_0x23d8f8(0x4b1)];_0x38242a=_0x38242a+'\x0a\x0a'+_0x22f1a5,_0x48008c[_0xdc7d11(0x86a)+'e'](_0x48008c[_0x2e1db5(0x4b1)+'s']()[_0x2988f3(0xb46)]()[_0xdc7d11(0x4b1)]);}return _0x38242a;}}return _0x15ef84;}function beautify(_0xa0d4da){const _0x20402b=_0xf9acf4,_0x3bc109=_0x42e93c,_0x495f27=_0x135ea1,_0x50915d=_0x42e93c,_0x3226ac=_0x42e93c,_0xfdaf7a={'joohW':function(_0x2097b8,_0x15607a){return _0x2097b8(_0x15607a);},'ncGjr':function(_0x12cc6c,_0x25ba22,_0x26a50e){return _0x12cc6c(_0x25ba22,_0x26a50e);},'TPImZ':_0x20402b(0x8d7)+_0x3bc109(0x4d8),'oWvON':_0x20402b(0xc67),'NkqcL':function(_0x3b1078,_0x5c36b9){return _0x3b1078(_0x5c36b9);},'yQJvG':function(_0x36f323,_0x385b9f){return _0x36f323+_0x385b9f;},'WqscE':_0x3bc109(0xb65)+_0x50915d(0xa72)+_0x50915d(0x4fc)+_0x3bc109(0x7e9)+_0x3bc109(0xb23)+_0x20402b(0x44a)+_0x20402b(0x74e)+_0x50915d(0x5ff)+_0x3bc109(0x3d7)+_0x20402b(0x600)+_0x3bc109(0xb5b)+_0x3bc109(0x58f)+_0x495f27(0x885)+_0x3bc109(0x478)+_0x495f27(0xb02)+_0x495f27(0x905)+_0x3bc109(0x37e),'puWoz':function(_0xc20f7a,_0x3bbdc6){return _0xc20f7a>=_0x3bbdc6;},'tmyNS':function(_0x32bbc3,_0x12bc58){return _0x32bbc3===_0x12bc58;},'secTr':_0x50915d(0xc9c),'aXPtz':_0x495f27(0x353)+_0x3226ac(0x9b9)+_0x3226ac(0xc12)+_0x3226ac(0x13f)+_0x50915d(0x411)+_0x3bc109(0x85c)+_0x50915d(0x17d)+_0x3226ac(0x4f6)+_0x495f27(0x865)+_0x20402b(0xcd1)+_0x3226ac(0x64f)+_0x50915d(0x385)+_0x3bc109(0x8b3),'zDPSN':_0x495f27(0x3dc),'ToBph':function(_0x506dbc,_0x5a8db8){return _0x506dbc(_0x5a8db8);},'BujVp':_0x495f27(0x817)+_0x495f27(0x7cf)+'rl','GivKa':function(_0x3b2c0b,_0x1ad829){return _0x3b2c0b(_0x1ad829);},'icZDu':_0x3bc109(0x34b),'QyXGD':function(_0x1f5e0a,_0x1595ad){return _0x1f5e0a+_0x1595ad;},'eOoNy':function(_0x1f3125,_0x268a5f){return _0x1f3125+_0x268a5f;},'LaOyB':_0x3bc109(0xa0f),'LuiyA':function(_0x45e61a,_0x250d71){return _0x45e61a(_0x250d71);},'hTwNo':_0x3226ac(0x3dc)+_0x3bc109(0xb65)+_0x3226ac(0x308)+'l','RpeBd':function(_0x2f728a,_0x42f15a){return _0x2f728a+_0x42f15a;},'EmYmu':function(_0x251042,_0x46950f){return _0x251042(_0x46950f);},'LApCS':_0x495f27(0x6f7)+'rl','cWusF':_0x20402b(0xc14),'oqstE':function(_0x42199,_0x2a93fd){return _0x42199(_0x2a93fd);},'LGfYn':function(_0x2d6528,_0x441dad){return _0x2d6528+_0x441dad;},'eTcfl':function(_0x2001bb,_0x3f0b98){return _0x2001bb(_0x3f0b98);},'pyyZD':_0x3226ac(0x888)+'rl','qShml':function(_0x20f120,_0x352848){return _0x20f120+_0x352848;},'gMjSp':_0x3226ac(0x3dc)+_0x3bc109(0x328)+_0x495f27(0x7cf)+'rl','cPGry':function(_0x54bd73,_0x4a814f){return _0x54bd73+_0x4a814f;},'WdKRh':function(_0x22c171,_0x24f2d2){return _0x22c171(_0x24f2d2);},'MqHEu':_0x20402b(0x3dc)+_0x495f27(0xb26),'NgtsL':function(_0x40b586,_0x473b2e){return _0x40b586(_0x473b2e);},'qdggh':function(_0x164fb5,_0x4a5e0b){return _0x164fb5+_0x4a5e0b;},'hPnof':function(_0x2c155e,_0x3aad6a){return _0x2c155e+_0x3aad6a;},'UpUST':_0x50915d(0x7e5)+'l','gnNSP':function(_0x123c0b,_0x220b48){return _0x123c0b+_0x220b48;},'KHAeb':function(_0x332e34,_0x3c7173){return _0x332e34(_0x3c7173);},'iUQGP':function(_0x384fb8,_0x3182d8){return _0x384fb8+_0x3182d8;},'Hddgn':_0x3bc109(0x3dc)+':','MSiVH':function(_0x2e289f,_0x10e64f){return _0x2e289f(_0x10e64f);},'vSFBp':function(_0x431470,_0x55246f){return _0x431470+_0x55246f;},'kaifr':_0x495f27(0x6ca)+_0x495f27(0xb98)+_0x50915d(0x4bd),'vrLTJ':function(_0x46d909,_0x41fe4c){return _0x46d909(_0x41fe4c);},'huCeV':function(_0x23fe72,_0x319971){return _0x23fe72+_0x319971;},'HhyWD':_0x20402b(0xc02)+_0x3226ac(0xb80)+_0x495f27(0x7de),'FzdKd':function(_0x3099cc,_0x316613){return _0x3099cc+_0x316613;},'vKqPa':function(_0x2e4abf,_0x5771d9){return _0x2e4abf(_0x5771d9);},'vzejo':_0x3bc109(0x54d)+'rl','VLNZZ':function(_0x34efb1,_0x403cff){return _0x34efb1+_0x403cff;},'rmEbh':function(_0x807644,_0x3efcc6){return _0x807644(_0x3efcc6);},'QtHny':function(_0x296ca8,_0x131a19){return _0x296ca8+_0x131a19;},'KInvt':function(_0x5ea588,_0x442ddc){return _0x5ea588+_0x442ddc;},'Wxisz':function(_0xfb5831,_0x1d5a72){return _0xfb5831(_0x1d5a72);},'YvyIq':_0x3bc109(0x329)+'l','aGDbc':function(_0x27edaa,_0x2a00a3){return _0x27edaa+_0x2a00a3;},'BQOyx':_0x3bc109(0x3dc)+_0x3226ac(0x48a),'WutWj':function(_0x522c21,_0x5e340f){return _0x522c21+_0x5e340f;},'MylRW':function(_0x5eee26,_0x7b72f4){return _0x5eee26(_0x7b72f4);},'JEdGK':function(_0x31daf2,_0x1ad233){return _0x31daf2+_0x1ad233;},'FkTOK':_0x3226ac(0x29b)+'l','DAXCm':function(_0x4e7d67,_0x26590f){return _0x4e7d67(_0x26590f);},'FOoVF':_0x3226ac(0x65e),'brUhd':function(_0x54eb39,_0x459241){return _0x54eb39+_0x459241;},'AsTJr':function(_0x4f62be,_0x407614){return _0x4f62be(_0x407614);},'rAdJZ':function(_0x686c6e,_0xb6db41){return _0x686c6e+_0xb6db41;},'BhBYt':_0x50915d(0xa6d)+_0x495f27(0xb80)+_0x495f27(0x7de),'LNXTU':function(_0x27a8d2,_0x7d539e){return _0x27a8d2+_0x7d539e;},'JljwQ':_0x495f27(0x2c9)+_0x3226ac(0xb98)+_0x3226ac(0x4bd),'bffVx':function(_0x2b32c8,_0x1205de){return _0x2b32c8+_0x1205de;},'FWbaY':function(_0x201aef,_0x5d3f27){return _0x201aef(_0x5d3f27);},'isQpd':function(_0x31468b,_0x326f11){return _0x31468b+_0x326f11;},'kwePA':_0x495f27(0xcfb)+_0x50915d(0xb98)+_0x50915d(0x4bd),'ZaBXu':function(_0x11f096,_0xb2e320){return _0x11f096(_0xb2e320);},'VMgJr':_0x50915d(0x229)+_0x3226ac(0xb80)+_0x50915d(0x7de),'NpszN':function(_0x22c084,_0x2b86de){return _0x22c084+_0x2b86de;},'qXLyi':function(_0x2fc94d,_0x2aac82){return _0x2fc94d!==_0x2aac82;},'ETHHp':_0x50915d(0xb0c),'wlyoY':_0x20402b(0xb65)+_0x3bc109(0x308)+'l','jHSvH':function(_0x2f8b18,_0x52d741){return _0x2f8b18+_0x52d741;},'tgwrT':_0x20402b(0xb65)+_0x495f27(0x48a),'dTsgn':function(_0x5c1e1d,_0x447110){return _0x5c1e1d(_0x447110);},'FYIjP':function(_0xd4c438,_0x3b91de){return _0xd4c438+_0x3b91de;},'XXTYw':_0x3bc109(0x48a)};new_text=_0xa0d4da[_0x50915d(0xc0e)+_0x3226ac(0x426)]('(','(')[_0x20402b(0xc0e)+_0x20402b(0x426)](')',')')[_0x20402b(0xc0e)+_0x3bc109(0x426)](':\x20',':')[_0x20402b(0xc0e)+_0x20402b(0x426)](':',':')[_0x50915d(0xc0e)+_0x495f27(0x426)](',\x20',',')[_0x20402b(0xc0e)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x55c462=prompt[_0x20402b(0x7bd)+_0x20402b(0x540)][_0x3226ac(0x1d9)+'h'];_0xfdaf7a[_0x3226ac(0x7fc)](_0x55c462,0xd85*-0x1+-0xfc5+0x1d4a);--_0x55c462){if(_0xfdaf7a[_0x3226ac(0x2ba)](_0xfdaf7a[_0x495f27(0x345)],_0xfdaf7a[_0x3bc109(0x345)])){const _0x5b7b86=_0xfdaf7a[_0x495f27(0xaeb)][_0x3bc109(0x612)]('|');let _0x1101d2=0x19fd+-0x1*-0x1+-0x19fe;while(!![]){switch(_0x5b7b86[_0x1101d2++]){case'0':new_text=new_text[_0x20402b(0xc0e)+_0x495f27(0x426)](_0xfdaf7a[_0x20402b(0xc71)](_0xfdaf7a[_0x50915d(0x29a)],_0xfdaf7a[_0x20402b(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0xc71)](_0xfdaf7a[_0x3226ac(0x441)],_0xfdaf7a[_0x20402b(0xd14)](String,_0x55c462)));continue;case'1':new_text=new_text[_0x50915d(0xc0e)+_0x495f27(0x426)](_0xfdaf7a[_0x3bc109(0xc71)](_0xfdaf7a[_0x495f27(0x5e5)],_0xfdaf7a[_0x3226ac(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x50915d(0xa05)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x20402b(0x71f)](String,_0x55c462)));continue;case'2':new_text=new_text[_0x3226ac(0xc0e)+_0x3226ac(0x426)](_0xfdaf7a[_0x50915d(0xa05)](_0xfdaf7a[_0x495f27(0x5e5)],_0xfdaf7a[_0x3226ac(0x71f)](String,_0x55c462)),_0xfdaf7a[_0x3226ac(0x6bc)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x495f27(0xcd0)](String,_0x55c462)));continue;case'3':new_text=new_text[_0x50915d(0xc0e)+_0x3226ac(0x426)](_0xfdaf7a[_0x3226ac(0xc71)](_0xfdaf7a[_0x495f27(0xd33)],_0xfdaf7a[_0x3bc109(0x4f8)](String,_0x55c462)),_0xfdaf7a[_0x20402b(0x6bc)](_0xfdaf7a[_0x3226ac(0x441)],_0xfdaf7a[_0x3226ac(0x4f8)](String,_0x55c462)));continue;case'4':new_text=new_text[_0x50915d(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x50915d(0x6bc)](_0xfdaf7a[_0x20402b(0x40c)],_0xfdaf7a[_0x50915d(0xd14)](String,_0x55c462)),_0xfdaf7a[_0x20402b(0x163)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x20402b(0x416)](String,_0x55c462)));continue;case'5':new_text=new_text[_0x20402b(0xc0e)+_0x50915d(0x426)](_0xfdaf7a[_0x3bc109(0xc71)](_0xfdaf7a[_0x3bc109(0xc7a)],_0xfdaf7a[_0x495f27(0xd14)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0x163)](_0xfdaf7a[_0x20402b(0x441)],_0xfdaf7a[_0x20402b(0xcd0)](String,_0x55c462)));continue;case'6':new_text=new_text[_0x3bc109(0xc0e)+_0x495f27(0x426)](_0xfdaf7a[_0x3bc109(0x163)](_0xfdaf7a[_0x20402b(0x63d)],_0xfdaf7a[_0x50915d(0x508)](String,_0x55c462)),_0xfdaf7a[_0x3bc109(0xb3a)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x20402b(0x6fd)](String,_0x55c462)));continue;case'7':new_text=new_text[_0x3226ac(0xc0e)+_0x50915d(0x426)](_0xfdaf7a[_0x495f27(0xb3a)](_0xfdaf7a[_0x20402b(0x427)],_0xfdaf7a[_0x20402b(0x164)](String,_0x55c462)),_0xfdaf7a[_0x3226ac(0xd6d)](_0xfdaf7a[_0x3226ac(0x441)],_0xfdaf7a[_0x495f27(0x4f8)](String,_0x55c462)));continue;case'8':new_text=new_text[_0x50915d(0xc0e)+_0x3226ac(0x426)](_0xfdaf7a[_0x50915d(0xa05)](_0xfdaf7a[_0x20402b(0x9d9)],_0xfdaf7a[_0x3bc109(0x164)](String,_0x55c462)),_0xfdaf7a[_0x3226ac(0x9ab)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x495f27(0x2fa)](String,_0x55c462)));continue;case'9':new_text=new_text[_0x50915d(0xc0e)+_0x495f27(0x426)](_0xfdaf7a[_0x3bc109(0x163)](_0xfdaf7a[_0x3226ac(0x603)],_0xfdaf7a[_0x20402b(0xad7)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0x77e)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x50915d(0x2fa)](String,_0x55c462)));continue;case'10':new_text=new_text[_0x20402b(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x3226ac(0x7fb)](_0xfdaf7a[_0x20402b(0xd33)],_0xfdaf7a[_0x495f27(0xd14)](String,_0x55c462)),_0xfdaf7a[_0x3226ac(0xb3a)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x20402b(0x164)](String,_0x55c462)));continue;case'11':new_text=new_text[_0x20402b(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x495f27(0xc71)](_0xfdaf7a[_0x495f27(0x1c7)],_0xfdaf7a[_0x495f27(0x71f)](String,_0x55c462)),_0xfdaf7a[_0x50915d(0x866)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x3bc109(0xb90)](String,_0x55c462)));continue;case'12':new_text=new_text[_0x495f27(0xc0e)+_0x50915d(0x426)](_0xfdaf7a[_0x3bc109(0x14a)](_0xfdaf7a[_0x50915d(0x9b0)],_0xfdaf7a[_0x495f27(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x3bc109(0x866)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x3bc109(0xd4d)](String,_0x55c462)));continue;case'13':new_text=new_text[_0x20402b(0xc0e)+_0x20402b(0x426)](_0xfdaf7a[_0x20402b(0x7f4)](_0xfdaf7a[_0x50915d(0x2fb)],_0xfdaf7a[_0x3226ac(0x516)](String,_0x55c462)),_0xfdaf7a[_0x3bc109(0xca8)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x50915d(0x2fa)](String,_0x55c462)));continue;case'14':new_text=new_text[_0x3bc109(0xc0e)+_0x50915d(0x426)](_0xfdaf7a[_0x3bc109(0x77e)](_0xfdaf7a[_0x3bc109(0x3de)],_0xfdaf7a[_0x50915d(0x164)](String,_0x55c462)),_0xfdaf7a[_0x20402b(0x2c4)](_0xfdaf7a[_0x3226ac(0x441)],_0xfdaf7a[_0x50915d(0x6e9)](String,_0x55c462)));continue;case'15':new_text=new_text[_0x3bc109(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x3226ac(0x14a)](_0xfdaf7a[_0x20402b(0x421)],_0xfdaf7a[_0x20402b(0x2fa)](String,_0x55c462)),_0xfdaf7a[_0x20402b(0xae1)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x50915d(0x9a0)](String,_0x55c462)));continue;case'16':new_text=new_text[_0x3bc109(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x3bc109(0xa50)](_0xfdaf7a[_0x50915d(0x63d)],_0xfdaf7a[_0x3226ac(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0x7ee)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x50915d(0x6af)](String,_0x55c462)));continue;case'17':new_text=new_text[_0x20402b(0xc0e)+_0x20402b(0x426)](_0xfdaf7a[_0x3226ac(0x77e)](_0xfdaf7a[_0x20402b(0x555)],_0xfdaf7a[_0x20402b(0x508)](String,_0x55c462)),_0xfdaf7a[_0x50915d(0x52f)](_0xfdaf7a[_0x495f27(0x441)],_0xfdaf7a[_0x495f27(0x9a0)](String,_0x55c462)));continue;case'18':new_text=new_text[_0x3bc109(0xc0e)+_0x3226ac(0x426)](_0xfdaf7a[_0x3226ac(0xc71)](_0xfdaf7a[_0x20402b(0x3c4)],_0xfdaf7a[_0x3226ac(0xad7)](String,_0x55c462)),_0xfdaf7a[_0x3226ac(0xb2f)](_0xfdaf7a[_0x495f27(0x441)],_0xfdaf7a[_0x3226ac(0xb69)](String,_0x55c462)));continue;case'19':new_text=new_text[_0x50915d(0xc0e)+_0x3226ac(0x426)](_0xfdaf7a[_0x50915d(0x194)](_0xfdaf7a[_0x495f27(0x5a1)],_0xfdaf7a[_0x3bc109(0x29e)](String,_0x55c462)),_0xfdaf7a[_0x20402b(0x52f)](_0xfdaf7a[_0x20402b(0x441)],_0xfdaf7a[_0x495f27(0xd4d)](String,_0x55c462)));continue;case'20':new_text=new_text[_0x3226ac(0xc0e)+_0x20402b(0x426)](_0xfdaf7a[_0x495f27(0x14a)](_0xfdaf7a[_0x50915d(0x3c6)],_0xfdaf7a[_0x20402b(0x516)](String,_0x55c462)),_0xfdaf7a[_0x3bc109(0x42e)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x20402b(0x54f)](String,_0x55c462)));continue;case'21':new_text=new_text[_0x50915d(0xc0e)+_0x20402b(0x426)](_0xfdaf7a[_0x3bc109(0xc19)](_0xfdaf7a[_0x3226ac(0x1a2)],_0xfdaf7a[_0x495f27(0x6af)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0x523)](_0xfdaf7a[_0x50915d(0x441)],_0xfdaf7a[_0x495f27(0x516)](String,_0x55c462)));continue;case'22':new_text=new_text[_0x495f27(0xc0e)+_0x50915d(0x426)](_0xfdaf7a[_0x3bc109(0x6bc)](_0xfdaf7a[_0x3bc109(0x2d4)],_0xfdaf7a[_0x3226ac(0x416)](String,_0x55c462)),_0xfdaf7a[_0x495f27(0xc24)](_0xfdaf7a[_0x3bc109(0x441)],_0xfdaf7a[_0x50915d(0xcbe)](String,_0x55c462)));continue;case'23':new_text=new_text[_0x3bc109(0xc0e)+_0x20402b(0x426)](_0xfdaf7a[_0x495f27(0x943)](_0xfdaf7a[_0x3bc109(0x931)],_0xfdaf7a[_0x495f27(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x50915d(0x7fb)](_0xfdaf7a[_0x495f27(0x441)],_0xfdaf7a[_0x3bc109(0xb14)](String,_0x55c462)));continue;case'24':new_text=new_text[_0x20402b(0xc0e)+_0x3bc109(0x426)](_0xfdaf7a[_0x50915d(0x52f)](_0xfdaf7a[_0x50915d(0x30e)],_0xfdaf7a[_0x50915d(0xcd0)](String,_0x55c462)),_0xfdaf7a[_0x3bc109(0xbd3)](_0xfdaf7a[_0x20402b(0x441)],_0xfdaf7a[_0x20402b(0xd14)](String,_0x55c462)));continue;}break;}}else qcxZqu[_0x495f27(0x164)](_0x140cba,0x12de+-0x1c1*-0x14+0x1af9*-0x2);}new_text=_0xfdaf7a[_0x3226ac(0xb90)](replaceUrlWithFootnote,new_text);for(let _0x4d410c=prompt[_0x20402b(0x7bd)+_0x495f27(0x540)][_0x495f27(0x1d9)+'h'];_0xfdaf7a[_0x3226ac(0x7fc)](_0x4d410c,-0x3a3*0x7+-0x1*-0x1dbc+-0xf*0x49);--_0x4d410c){if(_0xfdaf7a[_0x20402b(0x2d3)](_0xfdaf7a[_0x3226ac(0xa0b)],_0xfdaf7a[_0x3bc109(0xa0b)])){let _0x287798;_0xfdaf7a[_0x495f27(0x71f)](_0x1ce658,_0xfdaf7a[_0x3226ac(0xc71)](_0xfdaf7a[_0x3226ac(0x944)],_0x2cc658))[_0x3bc109(0xae6)](_0x1cea43=>_0x1cea43[_0x3bc109(0x51e)]())[_0x50915d(0xae6)](_0x1ac10d=>{const _0x50b533=_0x3226ac,_0x6785f6=_0x495f27,_0x365c51=_0x20402b;_0xfdaf7a[_0x50b533(0x9ec)](_0x154beb,_0x4603f1,_0x1ac10d[_0xfdaf7a[_0x50b533(0xb37)]][-0x522*-0x4+-0x38a+-0x10fe][_0xfdaf7a[_0x50b533(0x365)]]);});return;}else new_text=new_text[_0x50915d(0xc0e)+'ce'](_0xfdaf7a[_0x3bc109(0x2c4)](_0xfdaf7a[_0x20402b(0xb9b)],_0xfdaf7a[_0x495f27(0xb69)](String,_0x4d410c)),prompt[_0x20402b(0x7bd)+_0x3226ac(0x540)][_0x4d410c]),new_text=new_text[_0x3226ac(0xc0e)+'ce'](_0xfdaf7a[_0x50915d(0x171)](_0xfdaf7a[_0x50915d(0x99d)],_0xfdaf7a[_0x20402b(0xd28)](String,_0x4d410c)),prompt[_0x3bc109(0x7bd)+_0x20402b(0x540)][_0x4d410c]),new_text=new_text[_0x3bc109(0xc0e)+'ce'](_0xfdaf7a[_0x50915d(0x1a8)](_0xfdaf7a[_0x3226ac(0x68b)],_0xfdaf7a[_0x3226ac(0xcbe)](String,_0x4d410c)),prompt[_0x20402b(0x7bd)+_0x50915d(0x540)][_0x4d410c]);}return new_text=new_text[_0x3bc109(0xc0e)+_0x3226ac(0x426)]('[]',''),new_text=new_text[_0x3226ac(0xc0e)+_0x50915d(0x426)]('((','('),new_text=new_text[_0x495f27(0xc0e)+_0x3bc109(0x426)]('))',')'),new_text=new_text[_0x3226ac(0xc0e)+_0x20402b(0x426)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x1c414d=_0x5aec22,_0x442436=_0x42e93c,_0x2d1089=_0x42e93c,_0xd7701f=_0x42e93c,_0x35df8b=_0x5aec22,_0x776035={'UnzDA':function(_0x5af0f0,_0x4b91ab){return _0x5af0f0===_0x4b91ab;},'PEdsu':_0x1c414d(0xb70),'oqvGm':_0x442436(0xc81),'gjZke':function(_0x300dd9,_0x1567c2){return _0x300dd9>_0x1567c2;},'LuFfk':function(_0x1bd579,_0x24481f){return _0x1bd579(_0x24481f);},'KHvYm':_0x1c414d(0x60f)+_0x2d1089(0xcce),'UfnFE':function(_0x3c4ded,_0x15efc3){return _0x3c4ded+_0x15efc3;},'ViCUY':_0x442436(0x855)+_0x35df8b(0xaba)+_0x442436(0xcaf)+_0x1c414d(0x72f)+_0x2d1089(0xd4a)+_0x1c414d(0xaad)+_0x35df8b(0x424)+_0x2d1089(0x5f0)+_0xd7701f(0x86c)+_0x35df8b(0x7c4)+_0x442436(0x9c3),'zIIic':_0x1c414d(0x29d)+_0x35df8b(0xcda),'qeaQA':function(_0x28de52,_0x48c5e1){return _0x28de52!==_0x48c5e1;},'FrVHg':_0x442436(0x414),'BUcvy':_0xd7701f(0x1fa),'IeNaQ':_0x35df8b(0x33b),'HPCGO':function(_0x2bb74e,_0x1cb71f){return _0x2bb74e+_0x1cb71f;},'grTVr':_0x1c414d(0x60f),'fixUU':_0x442436(0x76e),'fJyqF':_0x442436(0xd6a)+'识','bMEfO':_0x1c414d(0x3f6)+_0x35df8b(0x8dd)+_0x442436(0x407)+_0xd7701f(0x56e)+_0x1c414d(0x82b)+_0x2d1089(0xa81)+_0xd7701f(0x583)+_0x1c414d(0xc7d)+_0x2d1089(0x741)+_0x35df8b(0x16e)+_0x35df8b(0x30c)+_0x442436(0x19b)+_0x35df8b(0x4a0),'okGmv':function(_0x49d417,_0x227fb0){return _0x49d417!=_0x227fb0;},'JEUUQ':function(_0x305abb,_0x5e606d,_0x316b88){return _0x305abb(_0x5e606d,_0x316b88);},'UYUUm':_0xd7701f(0xb65)+_0x2d1089(0xa72)+_0x35df8b(0x4fc)+_0x1c414d(0x577)+_0xd7701f(0x56d)+_0xd7701f(0x3fc),'NuMzz':function(_0x1bb489,_0x5a79aa){return _0x1bb489+_0x5a79aa;}},_0x43c5d4={'method':_0x776035[_0x2d1089(0x2b6)],'headers':headers,'body':_0x776035[_0x442436(0x18b)](b64EncodeUnicode,JSON[_0xd7701f(0x3b9)+_0x1c414d(0x562)]({'messages':[{'role':_0x776035[_0x1c414d(0x780)],'content':_0x776035[_0x442436(0x41e)](_0x776035[_0x2d1089(0x41e)](_0x776035[_0x2d1089(0x256)](_0x776035[_0x35df8b(0x41e)](document[_0xd7701f(0xac5)+_0x1c414d(0x8b0)+_0x442436(0x372)](_0x776035[_0x1c414d(0x2ab)])[_0x35df8b(0xc4b)+_0x442436(0x858)][_0x1c414d(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0xd7701f(0xc0e)+'ce'](/<hr.*/gs,'')[_0xd7701f(0xc0e)+'ce'](/<[^>]+>/g,'')[_0x1c414d(0xc0e)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x776035[_0x1c414d(0x8a8)]),original_search_query),_0x776035[_0x1c414d(0x39e)])},{'role':_0x776035[_0xd7701f(0x780)],'content':_0x776035[_0xd7701f(0x940)]}][_0x1c414d(0x26a)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x776035[_0x2d1089(0x3fd)](document[_0x1c414d(0xac5)+_0x1c414d(0x8b0)+_0x1c414d(0x372)](_0x776035[_0x442436(0xd42)])[_0x442436(0xc4b)+_0x442436(0x858)],''))return;_0x776035[_0xd7701f(0xbfb)](fetch,_0x776035[_0xd7701f(0x854)],_0x43c5d4)[_0xd7701f(0xae6)](_0x4e8dfd=>_0x4e8dfd[_0xd7701f(0x51e)]())[_0x1c414d(0xae6)](_0x4dd52c=>{const _0x2878ee=_0x442436,_0x1a1b84=_0x35df8b,_0x59ed6e=_0x442436,_0x3cf5c2=_0x2d1089,_0x2ef1b7=_0x442436,_0x477d63={'NuFvS':function(_0x20a1fd,_0x44c7b0){const _0x1bdcf6=_0x1a0d;return _0x776035[_0x1bdcf6(0x6b0)](_0x20a1fd,_0x44c7b0);},'xApaF':_0x776035[_0x2878ee(0x8ea)],'CEnyD':_0x776035[_0x1a1b84(0x2af)],'iYzIB':function(_0x3113a5,_0x58aff6){const _0xfdd582=_0x1a1b84;return _0x776035[_0xfdd582(0x676)](_0x3113a5,_0x58aff6);},'jNmhE':function(_0x190add,_0x220132){const _0x42f8cf=_0x2878ee;return _0x776035[_0x42f8cf(0x18b)](_0x190add,_0x220132);},'fzTXq':_0x776035[_0x59ed6e(0xd42)],'PPMgA':function(_0xa6c63c,_0x2b6173){const _0xb3e73e=_0x59ed6e;return _0x776035[_0xb3e73e(0x41e)](_0xa6c63c,_0x2b6173);},'sknOn':_0x776035[_0x1a1b84(0x80e)],'vimHZ':_0x776035[_0x3cf5c2(0xbca)]};_0x776035[_0x3cf5c2(0x749)](_0x776035[_0x1a1b84(0x438)],_0x776035[_0x3cf5c2(0x438)])?(_0xe49c30[_0x1a1b84(0x35e)]([_0x38ff99[_0x59ed6e(0xb7e)+'ge'],_0x546c32,_0x11f7ef,_0x1bd87f]),_0xc43454='',_0x549b87=''):JSON[_0x1a1b84(0x90c)](_0x4dd52c[_0x2878ee(0x952)+'es'][0x1bda+0x1c94+-0x386e][_0x59ed6e(0x969)+'ge'][_0x2ef1b7(0x47f)+'nt'][_0x2878ee(0xc0e)+_0x2878ee(0x426)]('\x0a',''))[_0x3cf5c2(0x941)+'ch'](_0x59e63d=>{const _0x3718c0=_0x2ef1b7,_0x17ae28=_0x59ed6e,_0x180981=_0x59ed6e,_0x25f2ce=_0x1a1b84,_0x46ffd8=_0x2878ee;if(_0x477d63[_0x3718c0(0xb22)](_0x477d63[_0x3718c0(0x642)],_0x477d63[_0x3718c0(0x405)]))_0x4adf8d+=_0x544e6f;else{if(_0x477d63[_0x25f2ce(0x63b)](_0x477d63[_0x180981(0x58a)](String,_0x59e63d)[_0x180981(0x1d9)+'h'],0xd0+-0x1e8a+0x5*0x5f3))document[_0x17ae28(0xac5)+_0x46ffd8(0x8b0)+_0x180981(0x372)](_0x477d63[_0x17ae28(0x1e3)])[_0x3718c0(0xc4b)+_0x3718c0(0x858)]+=_0x477d63[_0x3718c0(0x90d)](_0x477d63[_0x3718c0(0x90d)](_0x477d63[_0x3718c0(0xa5f)],_0x477d63[_0x25f2ce(0x58a)](String,_0x59e63d)),_0x477d63[_0x25f2ce(0xd59)]);}});})[_0xd7701f(0xd38)](_0x1cd431=>console[_0xd7701f(0x7cb)](_0x1cd431)),chatTextRawPlusComment=_0x776035[_0x35df8b(0x8f6)](chatTextRaw,'\x0a\x0a'),text_offset=-(-0xb83+0x1*0x1126+-0x5a2);}let chatTextRaw='',text_offset=-(0x1a1*0x1+0x268e+0x4a*-0x8b);const _0x2713ff={};_0x2713ff[_0x5aec22(0x456)+_0x5aec22(0x167)+'pe']=_0xf9acf4(0xd18)+_0x135ea1(0x203)+_0x51c145(0x1b0)+'n';const headers=_0x2713ff;let prompt=JSON[_0x42e93c(0x90c)](atob(document[_0xf9acf4(0xac5)+_0x5aec22(0x8b0)+_0x42e93c(0x372)](_0x5aec22(0x5d7)+'pt')[_0xf9acf4(0x3a2)+_0x135ea1(0x37d)+'t']));chatTextRawIntro='',text_offset=-(-0x1*-0x2c2+-0xd2a*-0x2+-0x1d15);const _0x522f6={};_0x522f6[_0x135ea1(0x56a)]=_0x51c145(0x403)+'m',_0x522f6[_0x51c145(0x47f)+'nt']=_0x135ea1(0x237)+_0x135ea1(0x22b)+_0x42e93c(0x81f)+_0x135ea1(0xb4a)+_0xf9acf4(0x91f)+_0x51c145(0x551)+original_search_query+(_0x42e93c(0x38d)+_0x135ea1(0x1d0)+_0x42e93c(0x4c8)+'。');const _0x4c69fa={};_0x4c69fa[_0x42e93c(0x56a)]=_0x135ea1(0x33b),_0x4c69fa[_0x135ea1(0x47f)+'nt']=_0xf9acf4(0xb9f)+_0x5aec22(0xa1b)+_0x5aec22(0x970)+_0x51c145(0xab4)+_0xf9acf4(0x5ae)+'。';const optionsIntro={'method':_0x135ea1(0x1fa),'headers':headers,'body':b64EncodeUnicode(JSON[_0x135ea1(0x3b9)+_0xf9acf4(0x562)]({'messages':[_0x522f6,_0x4c69fa][_0x135ea1(0x26a)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x5aec22(0xb65)+_0x42e93c(0xa72)+_0x51c145(0x4fc)+_0x42e93c(0x577)+_0x51c145(0x56d)+_0x42e93c(0x3fc),optionsIntro)[_0x135ea1(0xae6)](_0x566ef4=>{const _0x39fa33=_0x42e93c,_0x153240=_0x42e93c,_0x243f62=_0x42e93c,_0x577b8b=_0x5aec22,_0x121591=_0xf9acf4,_0x2eeb56={'ZWUqB':function(_0x2aa300,_0x98dfa9){return _0x2aa300>_0x98dfa9;},'BLyDK':function(_0x8e1cdd,_0x218d63){return _0x8e1cdd==_0x218d63;},'AfzbC':_0x39fa33(0x8ef)+']','PuGym':_0x153240(0x60f)+_0x39fa33(0xcce),'AlOXR':function(_0x2a75a8){return _0x2a75a8();},'QEpMl':_0x153240(0x1fa),'YyFDK':function(_0x2615f5,_0x2bba4f){return _0x2615f5(_0x2bba4f);},'qBvoT':_0x577b8b(0x99b)+_0x243f62(0x75e),'oyimm':function(_0x3258c9,_0x390ad8){return _0x3258c9+_0x390ad8;},'hEcdP':_0x243f62(0x60f),'DDkSu':_0x121591(0x33b),'aeNvm':_0x39fa33(0x94c)+'“','LEniV':_0x243f62(0x6bf)+_0x39fa33(0x4f1)+_0x153240(0x39a)+_0x153240(0x560)+_0x577b8b(0x232)+_0x243f62(0x7e3)+_0x39fa33(0xb34)+_0x121591(0x552),'ywqLl':function(_0x22b202,_0x3192fb,_0x200e86){return _0x22b202(_0x3192fb,_0x200e86);},'OrvTR':_0x243f62(0xb65)+_0x577b8b(0xa72)+_0x577b8b(0x4fc)+_0x243f62(0x577)+_0x121591(0x56d)+_0x243f62(0x3fc),'IqEiw':_0x153240(0x952)+'es','VprVM':_0x153240(0x32e),'BGzjm':function(_0x58fe46,_0x256c77){return _0x58fe46<_0x256c77;},'RKBQs':function(_0x563a6a,_0x509a35){return _0x563a6a===_0x509a35;},'KoROD':_0x121591(0x958),'eLyRx':_0x577b8b(0xb32),'WzNRD':_0x577b8b(0x793)+_0x153240(0x844),'HdgzR':_0x243f62(0xcc8)+_0x153240(0x2cc)+_0x153240(0x2cb),'SsjyH':_0x243f62(0xcc8)+_0x39fa33(0x8ca),'OUuUo':_0x121591(0x5e0),'LNsBs':_0x121591(0xc3b),'NGNNz':_0x153240(0xb03),'icRyv':_0x577b8b(0x57a),'XLApJ':_0x577b8b(0x572),'FUZVX':_0x121591(0x75d)+':','JAoxK':function(_0xea1a91,_0x5aa078){return _0xea1a91==_0x5aa078;},'STlyH':function(_0xe15612,_0x59a800){return _0xe15612(_0x59a800);},'WanYr':_0x121591(0xcc8)+_0x243f62(0x2a7)},_0x30ad36=_0x566ef4[_0x243f62(0x6a6)][_0x153240(0x173)+_0x39fa33(0xcb4)]();let _0x2df88e='',_0x461735='';_0x30ad36[_0x121591(0x40a)]()[_0x121591(0xae6)](function _0x5e5c6b({done:_0x38d423,value:_0x5df09c}){const _0x500850=_0x577b8b,_0x51e6e3=_0x153240,_0x5c82a2=_0x121591,_0x177e4d=_0x39fa33,_0x5eeab1=_0x121591,_0x6220fc={'lEPqP':function(_0x1a30de,_0x46a50b){const _0x43d073=_0x1a0d;return _0x2eeb56[_0x43d073(0x343)](_0x1a30de,_0x46a50b);},'YCfcI':function(_0x170e59,_0xb7a37b){const _0x51528c=_0x1a0d;return _0x2eeb56[_0x51528c(0x3b5)](_0x170e59,_0xb7a37b);},'RDPXr':_0x2eeb56[_0x500850(0xcad)],'josxI':_0x2eeb56[_0x500850(0xc54)],'uAolA':function(_0x1fdbcf){const _0x2b1553=_0x51e6e3;return _0x2eeb56[_0x2b1553(0x64a)](_0x1fdbcf);},'NljPt':_0x2eeb56[_0x500850(0xca1)],'heGMJ':function(_0x1e3f8c,_0x133d9e){const _0x50858b=_0x500850;return _0x2eeb56[_0x50858b(0xc0d)](_0x1e3f8c,_0x133d9e);},'PlTLn':_0x2eeb56[_0x177e4d(0x9e1)],'bmSKz':function(_0xc9c8d9,_0x1d774e){const _0x356dd7=_0x51e6e3;return _0x2eeb56[_0x356dd7(0xd0c)](_0xc9c8d9,_0x1d774e);},'hwvgO':_0x2eeb56[_0x51e6e3(0x737)],'vHaFv':_0x2eeb56[_0x500850(0xa92)],'CgHAR':_0x2eeb56[_0x177e4d(0x47e)],'HgdLU':_0x2eeb56[_0x5eeab1(0x7b6)],'jzqkt':function(_0x36481,_0x31541c,_0x59b761){const _0x48cf42=_0x5c82a2;return _0x2eeb56[_0x48cf42(0x679)](_0x36481,_0x31541c,_0x59b761);},'skvNX':_0x2eeb56[_0x177e4d(0x8b5)],'LKqNs':_0x2eeb56[_0x177e4d(0x378)],'ZPyqP':_0x2eeb56[_0x5c82a2(0x76c)],'DjlTl':function(_0x31274f,_0xa4737f){const _0x417736=_0x5eeab1;return _0x2eeb56[_0x417736(0xccb)](_0x31274f,_0xa4737f);},'lQtPC':function(_0x4c633a,_0x5d1160){const _0x80e345=_0x5c82a2;return _0x2eeb56[_0x80e345(0xcde)](_0x4c633a,_0x5d1160);},'dydat':_0x2eeb56[_0x5eeab1(0x92b)],'xvnsc':_0x2eeb56[_0x177e4d(0x46d)],'xRsCa':_0x2eeb56[_0x500850(0x27a)],'GVnVs':_0x2eeb56[_0x500850(0x83e)],'VyvQj':_0x2eeb56[_0x5c82a2(0x8e6)],'DOfCq':function(_0x40db31){const _0x44a353=_0x177e4d;return _0x2eeb56[_0x44a353(0x64a)](_0x40db31);},'fPJNh':_0x2eeb56[_0x5c82a2(0xc77)],'iZGvC':_0x2eeb56[_0x5eeab1(0x98c)],'HJEUb':_0x2eeb56[_0x51e6e3(0x771)],'vfQJa':_0x2eeb56[_0x500850(0xafe)],'atdME':function(_0x3bcdce,_0x3867c0){const _0x11a5b6=_0x500850;return _0x2eeb56[_0x11a5b6(0xc0d)](_0x3bcdce,_0x3867c0);},'WptnA':_0x2eeb56[_0x51e6e3(0x3d1)],'LnfMt':_0x2eeb56[_0x51e6e3(0x98d)],'FBkBf':function(_0x24fb10,_0xd1c4d2){const _0x45c7f3=_0x51e6e3;return _0x2eeb56[_0x45c7f3(0xcfe)](_0x24fb10,_0xd1c4d2);},'xgWeM':function(_0x34e237,_0x44c3fb){const _0x20946d=_0x51e6e3;return _0x2eeb56[_0x20946d(0xb8c)](_0x34e237,_0x44c3fb);},'QRxph':function(_0x326406,_0x3975bf){const _0x5a1a28=_0x177e4d;return _0x2eeb56[_0x5a1a28(0xd0c)](_0x326406,_0x3975bf);},'vErMm':function(_0x162ce8,_0xa54348){const _0x2019a1=_0x177e4d;return _0x2eeb56[_0x2019a1(0xb8c)](_0x162ce8,_0xa54348);},'nVaok':_0x2eeb56[_0x5eeab1(0x82d)]};if(_0x38d423)return;const _0x450516=new TextDecoder(_0x2eeb56[_0x5eeab1(0x3d1)])[_0x5c82a2(0xd56)+'e'](_0x5df09c);return _0x450516[_0x5eeab1(0x465)]()[_0x500850(0x612)]('\x0a')[_0x51e6e3(0x941)+'ch'](function(_0x29e0bb){const _0x403a72=_0x51e6e3,_0x151c50=_0x500850,_0xb6b138=_0x500850,_0x59c2e6=_0x5eeab1,_0x235ce3=_0x5eeab1;_0x2df88e='';if(_0x6220fc[_0x403a72(0x5c1)](_0x29e0bb[_0x151c50(0x1d9)+'h'],0x1*0x136b+-0x25e4+-0x5*-0x3b3))_0x2df88e=_0x29e0bb[_0x151c50(0x8c3)](-0xd*0x255+0x1b84+-0xf1*-0x3);if(_0x6220fc[_0x403a72(0x801)](_0x2df88e,_0x6220fc[_0x59c2e6(0x489)])){text_offset=-(-0x21ec+0xf*0x14c+0xe79);const _0x53688f={'method':_0x6220fc[_0x235ce3(0x479)],'headers':headers,'body':_0x6220fc[_0x235ce3(0x8b6)](b64EncodeUnicode,JSON[_0x403a72(0x3b9)+_0x59c2e6(0x562)](prompt[_0x59c2e6(0x262)]))};_0x6220fc[_0x403a72(0x507)](fetch,_0x6220fc[_0x151c50(0xcd9)],_0x53688f)[_0x151c50(0xae6)](_0x419355=>{const _0x230aa0=_0x403a72,_0x18d657=_0x403a72,_0x5b2594=_0x59c2e6,_0x1e4dd4=_0x151c50,_0x4daadd=_0x235ce3,_0x3b98de={'wGWAG':function(_0x2ab6c9,_0x349608){const _0xa56f7b=_0x1a0d;return _0x6220fc[_0xa56f7b(0x5c1)](_0x2ab6c9,_0x349608);},'tTwRP':function(_0x488342,_0x21d5d0){const _0x37ed16=_0x1a0d;return _0x6220fc[_0x37ed16(0x166)](_0x488342,_0x21d5d0);},'yEVKc':_0x6220fc[_0x230aa0(0x489)],'BinTF':_0x6220fc[_0x230aa0(0x461)],'PXkEA':function(_0x4c9733){const _0x3beedf=_0x230aa0;return _0x6220fc[_0x3beedf(0xa09)](_0x4c9733);},'FBvIU':_0x6220fc[_0x18d657(0x479)],'KUSmk':function(_0x477c75,_0x518aac){const _0x2373b9=_0x5b2594;return _0x6220fc[_0x2373b9(0x88c)](_0x477c75,_0x518aac);},'vxyWn':_0x6220fc[_0x5b2594(0xa5a)],'jiTok':function(_0x4da764,_0x5c46f3){const _0x19052c=_0x5b2594;return _0x6220fc[_0x19052c(0x2b3)](_0x4da764,_0x5c46f3);},'txBTG':_0x6220fc[_0x230aa0(0x460)],'YqlBy':_0x6220fc[_0x5b2594(0x6ae)],'aMJye':function(_0x37000b,_0x49bdac){const _0xc2bcde=_0x18d657;return _0x6220fc[_0xc2bcde(0x2b3)](_0x37000b,_0x49bdac);},'Ydqyi':_0x6220fc[_0x230aa0(0x325)],'lSexC':_0x6220fc[_0x230aa0(0xa5c)],'qAGwm':function(_0xbeab0e,_0x23fbd5,_0x1a6d30){const _0x13356d=_0x230aa0;return _0x6220fc[_0x13356d(0x507)](_0xbeab0e,_0x23fbd5,_0x1a6d30);},'wfSIF':_0x6220fc[_0x1e4dd4(0xcd9)],'zIwHF':function(_0x1d14c3,_0x47f5cd){const _0x19dcc7=_0x4daadd;return _0x6220fc[_0x19dcc7(0x2b3)](_0x1d14c3,_0x47f5cd);},'GGCPb':_0x6220fc[_0x1e4dd4(0x717)],'UJryt':_0x6220fc[_0x5b2594(0x470)],'Jsibo':function(_0x1b8c2d,_0x540777){const _0x3f8d6e=_0x1e4dd4;return _0x6220fc[_0x3f8d6e(0xd55)](_0x1b8c2d,_0x540777);},'MkLzc':function(_0x45bee6,_0x2ca055){const _0x2ac343=_0x5b2594;return _0x6220fc[_0x2ac343(0xabf)](_0x45bee6,_0x2ca055);},'oMQCe':_0x6220fc[_0x1e4dd4(0xcbb)],'xOJKp':_0x6220fc[_0x1e4dd4(0xd15)],'YVyyC':_0x6220fc[_0x4daadd(0xab3)],'MLjaa':_0x6220fc[_0x5b2594(0x29c)],'gIUbC':_0x6220fc[_0x4daadd(0x877)],'NNEUw':function(_0x4c58c5){const _0x58b0ae=_0x1e4dd4;return _0x6220fc[_0x58b0ae(0x219)](_0x4c58c5);},'jvaBk':_0x6220fc[_0x4daadd(0x794)],'bEFok':_0x6220fc[_0x18d657(0x977)],'fUfPP':_0x6220fc[_0x1e4dd4(0xc88)],'oWEaA':_0x6220fc[_0x230aa0(0x3eb)],'twGoV':function(_0x3f505b,_0x515403){const _0x1fd22e=_0x230aa0;return _0x6220fc[_0x1fd22e(0x5c1)](_0x3f505b,_0x515403);},'kgIyy':function(_0x29e113,_0x26e0c8){const _0x5a8e8c=_0x230aa0;return _0x6220fc[_0x5a8e8c(0x8bf)](_0x29e113,_0x26e0c8);},'QswWw':_0x6220fc[_0x1e4dd4(0x41a)],'ZsOMl':_0x6220fc[_0x18d657(0x9e7)]},_0x558263=_0x419355[_0x230aa0(0x6a6)][_0x4daadd(0x173)+_0x5b2594(0xcb4)]();let _0x413f05='',_0x18060c='';_0x558263[_0x18d657(0x40a)]()[_0x4daadd(0xae6)](function _0x5713d8({done:_0x20225c,value:_0x275319}){const _0xd19d2a=_0x230aa0,_0x14c8b0=_0x4daadd,_0x41d4a9=_0x18d657,_0x54986b=_0x18d657,_0x29bc17=_0x1e4dd4,_0x3568b9={'PdmDk':function(_0x460cca,_0x31c9b3){const _0x4b6e91=_0x1a0d;return _0x3b98de[_0x4b6e91(0x94e)](_0x460cca,_0x31c9b3);},'wzugQ':_0x3b98de[_0xd19d2a(0xd5d)],'dTaTX':function(_0x370912,_0x30c898){const _0x160c9d=_0xd19d2a;return _0x3b98de[_0x160c9d(0x53f)](_0x370912,_0x30c898);},'GPyZZ':function(_0x13b9d7,_0x112f9c,_0xb97255){const _0x3e98fe=_0xd19d2a;return _0x3b98de[_0x3e98fe(0x9cf)](_0x13b9d7,_0x112f9c,_0xb97255);},'yoaty':function(_0x43ef30,_0x3ba394){const _0x426ebc=_0xd19d2a;return _0x3b98de[_0x426ebc(0x1fb)](_0x43ef30,_0x3ba394);},'BKjfY':function(_0x59c41e,_0x33ada1){const _0x2a87d5=_0xd19d2a;return _0x3b98de[_0x2a87d5(0x541)](_0x59c41e,_0x33ada1);},'DaKPc':_0x3b98de[_0xd19d2a(0xb44)],'XyYcY':function(_0x2119f2,_0x3f3f26){const _0x29271a=_0x14c8b0;return _0x3b98de[_0x29271a(0x8f0)](_0x2119f2,_0x3f3f26);},'RZuMB':_0x3b98de[_0x41d4a9(0xabe)],'tlRHk':_0x3b98de[_0x41d4a9(0x9f7)],'CyCXI':_0x3b98de[_0xd19d2a(0x2df)],'KQPgh':_0x3b98de[_0x54986b(0x843)],'fFniJ':_0x3b98de[_0x41d4a9(0x348)],'MmENQ':function(_0x58be9b){const _0x2c0a52=_0x29bc17;return _0x3b98de[_0x2c0a52(0xab2)](_0x58be9b);},'vimPu':_0x3b98de[_0x29bc17(0x97a)],'koVkj':_0x3b98de[_0x14c8b0(0x7b1)],'ZUDFu':_0x3b98de[_0x29bc17(0x937)],'qLmjB':_0x3b98de[_0x54986b(0x779)],'edvYB':function(_0x17da59,_0x24be08){const _0xdf830d=_0x41d4a9;return _0x3b98de[_0xdf830d(0x148)](_0x17da59,_0x24be08);},'ciGZs':function(_0x31f633,_0x4d4132){const _0x44a0aa=_0x54986b;return _0x3b98de[_0x44a0aa(0x408)](_0x31f633,_0x4d4132);},'RPNQC':_0x3b98de[_0x41d4a9(0x298)],'czeGA':_0x3b98de[_0x41d4a9(0xb04)],'DuToS':_0x3b98de[_0x14c8b0(0x609)]};if(_0x20225c)return;const _0x2a1c21=new TextDecoder(_0x3b98de[_0x14c8b0(0xb04)])[_0x41d4a9(0xd56)+'e'](_0x275319);return _0x2a1c21[_0x41d4a9(0x465)]()[_0x14c8b0(0x612)]('\x0a')[_0xd19d2a(0x941)+'ch'](function(_0x2f6ebb){const _0x36413f=_0xd19d2a,_0x28f494=_0x54986b,_0x2f800a=_0x54986b,_0x5d6ba7=_0xd19d2a,_0x45a638=_0x14c8b0;_0x413f05='';if(_0x3b98de[_0x36413f(0x1fb)](_0x2f6ebb[_0x28f494(0x1d9)+'h'],-0x138f+-0x3c0+-0x3*-0x7c7))_0x413f05=_0x2f6ebb[_0x2f800a(0x8c3)](0x24f7+-0x24c9+0x4*-0xa);if(_0x3b98de[_0x2f800a(0x541)](_0x413f05,_0x3b98de[_0x5d6ba7(0xb44)])){document[_0x36413f(0xac5)+_0x45a638(0x8b0)+_0x5d6ba7(0x372)](_0x3b98de[_0x45a638(0x618)])[_0x45a638(0xc4b)+_0x5d6ba7(0x858)]='',_0x3b98de[_0x5d6ba7(0x2d6)](chatmore);const _0x24b6f6={'method':_0x3b98de[_0x36413f(0x3e3)],'headers':headers,'body':_0x3b98de[_0x28f494(0x9d7)](b64EncodeUnicode,JSON[_0x45a638(0x3b9)+_0x36413f(0x562)]({'messages':[{'role':_0x3b98de[_0x28f494(0x72d)],'content':_0x3b98de[_0x2f800a(0x7ac)](document[_0x5d6ba7(0xac5)+_0x2f800a(0x8b0)+_0x5d6ba7(0x372)](_0x3b98de[_0x5d6ba7(0x589)])[_0x5d6ba7(0xc4b)+_0x45a638(0x858)][_0x45a638(0xc0e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x28f494(0xc0e)+'ce'](/<hr.*/gs,'')[_0x2f800a(0xc0e)+'ce'](/<[^>]+>/g,'')[_0x5d6ba7(0xc0e)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x3b98de[_0x36413f(0x9c8)],'content':_0x3b98de[_0x2f800a(0xa2a)](_0x3b98de[_0x36413f(0x7ac)](_0x3b98de[_0x28f494(0xa1d)],original_search_query),_0x3b98de[_0x36413f(0x1f9)])}][_0x2f800a(0x26a)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x3b98de[_0x36413f(0x9cf)](fetch,_0x3b98de[_0x36413f(0xcec)],_0x24b6f6)[_0x2f800a(0xae6)](_0x2ea8a4=>{const _0x21bcff=_0x2f800a,_0xfb2d91=_0x45a638,_0x5ac00c=_0x36413f,_0x1922c2=_0x28f494,_0x2e3695=_0x36413f,_0x2828f7={'tGnDx':function(_0x39f3f1,_0x172b4f){const _0x51a773=_0x1a0d;return _0x3568b9[_0x51a773(0x546)](_0x39f3f1,_0x172b4f);},'qqLGa':_0x3568b9[_0x21bcff(0xbb6)],'OnWDF':function(_0x5cabb2,_0x470fff){const _0x51bc58=_0x21bcff;return _0x3568b9[_0x51bc58(0x755)](_0x5cabb2,_0x470fff);},'GRJrn':function(_0x159b57,_0xac22da,_0x4055f5){const _0xa6f7=_0x21bcff;return _0x3568b9[_0xa6f7(0x8ce)](_0x159b57,_0xac22da,_0x4055f5);},'qjKxW':function(_0x2a9b59,_0x46cd00){const _0x2837e3=_0x21bcff;return _0x3568b9[_0x2837e3(0x156)](_0x2a9b59,_0x46cd00);},'vlQzO':function(_0x6f254,_0x5c2616){const _0x3c00f7=_0x21bcff;return _0x3568b9[_0x3c00f7(0xa9c)](_0x6f254,_0x5c2616);},'XQgUw':_0x3568b9[_0xfb2d91(0xb68)],'tUyal':function(_0x1d17d5,_0x3eeb91){const _0x56ccee=_0x21bcff;return _0x3568b9[_0x56ccee(0x58b)](_0x1d17d5,_0x3eeb91);},'VOhkz':_0x3568b9[_0xfb2d91(0x716)],'PtnLO':_0x3568b9[_0x5ac00c(0xa5d)],'GKujr':_0x3568b9[_0x21bcff(0xcc7)],'VsMkl':_0x3568b9[_0x21bcff(0x687)],'rhFfp':_0x3568b9[_0xfb2d91(0x53c)],'xqzSk':function(_0x4380d9){const _0x3f2b0c=_0x21bcff;return _0x3568b9[_0x3f2b0c(0x18c)](_0x4380d9);},'wnqhh':_0x3568b9[_0x2e3695(0x78e)],'QaRMA':_0x3568b9[_0x2e3695(0x42b)],'sJeab':_0x3568b9[_0xfb2d91(0x24f)],'jgUhc':_0x3568b9[_0x2e3695(0xc8c)],'YtdCd':function(_0x5975cb,_0x1a1551){const _0x7038dd=_0x5ac00c;return _0x3568b9[_0x7038dd(0x62a)](_0x5975cb,_0x1a1551);},'eSlBk':function(_0x5801bf,_0x3e96f6){const _0x3a142a=_0x5ac00c;return _0x3568b9[_0x3a142a(0x849)](_0x5801bf,_0x3e96f6);},'UaXTI':_0x3568b9[_0x1922c2(0x4e4)],'EPOop':_0x3568b9[_0x21bcff(0x95e)]},_0x5a3e86=_0x2ea8a4[_0x21bcff(0x6a6)][_0x1922c2(0x173)+_0xfb2d91(0xcb4)]();let _0x50cd9e='',_0xf99914='';_0x5a3e86[_0xfb2d91(0x40a)]()[_0x2e3695(0xae6)](function _0xe49ab7({done:_0x3bf59f,value:_0x1acc82}){const _0x2fbed6=_0x21bcff,_0x5b9b78=_0x1922c2,_0x187087=_0x5ac00c,_0x1f22e3=_0x21bcff,_0x39f499=_0x21bcff,_0x255a96={'YfioX':function(_0xa334bb,_0x309dc4){const _0x11b531=_0x1a0d;return _0x2828f7[_0x11b531(0x56f)](_0xa334bb,_0x309dc4);},'GBhry':_0x2828f7[_0x2fbed6(0x2e6)],'Maqoc':function(_0x45e8cb,_0x2c2189){const _0x151019=_0x2fbed6;return _0x2828f7[_0x151019(0x30a)](_0x45e8cb,_0x2c2189);},'IcoZk':function(_0x31b490,_0x50dc96,_0x25da5f){const _0x4eabd6=_0x2fbed6;return _0x2828f7[_0x4eabd6(0x2bd)](_0x31b490,_0x50dc96,_0x25da5f);},'fJyhE':function(_0x5c37a4,_0x4a6f21){const _0x2f733a=_0x2fbed6;return _0x2828f7[_0x2f733a(0x8d6)](_0x5c37a4,_0x4a6f21);},'bgLOd':function(_0x3a48df,_0x39ca4a){const _0x3181ff=_0x2fbed6;return _0x2828f7[_0x3181ff(0x4d3)](_0x3a48df,_0x39ca4a);},'VhZbJ':_0x2828f7[_0x5b9b78(0x59b)],'ZiMud':function(_0x16764c,_0x412f5f){const _0xbcd5c9=_0x5b9b78;return _0x2828f7[_0xbcd5c9(0x330)](_0x16764c,_0x412f5f);},'pwnxn':_0x2828f7[_0x2fbed6(0x9f2)],'vTafB':_0x2828f7[_0x187087(0x3ac)],'atOpQ':_0x2828f7[_0x2fbed6(0x1ec)],'WyRPX':_0x2828f7[_0x1f22e3(0xcd8)],'PnIsE':_0x2828f7[_0x5b9b78(0x62c)],'UGwGx':function(_0x564c89){const _0x1a52d6=_0x2fbed6;return _0x2828f7[_0x1a52d6(0xd1a)](_0x564c89);},'wseSl':_0x2828f7[_0x1f22e3(0x754)],'YuNDw':_0x2828f7[_0x5b9b78(0xc38)],'JCzBx':_0x2828f7[_0x187087(0x819)],'aurYj':_0x2828f7[_0x2fbed6(0x290)],'WLrQf':function(_0x2e6713,_0x47234b){const _0xbb0b9a=_0x39f499;return _0x2828f7[_0xbb0b9a(0xb3c)](_0x2e6713,_0x47234b);},'RgRHE':function(_0x2c3608,_0x3f2582,_0x2a1573){const _0x4052bf=_0x1f22e3;return _0x2828f7[_0x4052bf(0x2bd)](_0x2c3608,_0x3f2582,_0x2a1573);},'YAIRQ':function(_0x14a739,_0x6e3b38){const _0x2859ff=_0x187087;return _0x2828f7[_0x2859ff(0x309)](_0x14a739,_0x6e3b38);},'JZwmp':_0x2828f7[_0x2fbed6(0x5ed)]};if(_0x3bf59f)return;const _0x2da178=new TextDecoder(_0x2828f7[_0x187087(0x505)])[_0x5b9b78(0xd56)+'e'](_0x1acc82);return _0x2da178[_0x1f22e3(0x465)]()[_0x187087(0x612)]('\x0a')[_0x187087(0x941)+'ch'](function(_0x257fc4){const _0x5ab902=_0x1f22e3,_0x27774a=_0x187087,_0x8ff8d8=_0x39f499,_0x333f6c=_0x39f499,_0x523b35=_0x1f22e3,_0x5b97cb={'PuRKx':function(_0x1f2fb7,_0x49c5e1){const _0x1c16fe=_0x1a0d;return _0x255a96[_0x1c16fe(0x436)](_0x1f2fb7,_0x49c5e1);},'xgyAf':function(_0x12d3be,_0x5d3366){const _0x4f0dcc=_0x1a0d;return _0x255a96[_0x4f0dcc(0x890)](_0x12d3be,_0x5d3366);},'JndwL':function(_0xcad3e8,_0x187cb5){const _0x444523=_0x1a0d;return _0x255a96[_0x444523(0x890)](_0xcad3e8,_0x187cb5);},'BDOZC':function(_0x11c3d6,_0x58fd5e,_0x5a5019){const _0x10f372=_0x1a0d;return _0x255a96[_0x10f372(0x815)](_0x11c3d6,_0x58fd5e,_0x5a5019);}};_0x50cd9e='';if(_0x255a96[_0x5ab902(0x1aa)](_0x257fc4[_0x27774a(0x1d9)+'h'],-0x1c03+0x61*-0x4f+-0x7*-0x848))_0x50cd9e=_0x257fc4[_0x8ff8d8(0x8c3)](0x59*-0x2c+0x1448*-0x1+0x239a);if(_0x255a96[_0x333f6c(0x87b)](_0x50cd9e,_0x255a96[_0x5ab902(0x91b)])){if(_0x255a96[_0x333f6c(0x413)](_0x255a96[_0x8ff8d8(0x9ad)],_0x255a96[_0x27774a(0x83a)]))_0x5352f9[_0x8ff8d8(0x7c3)](_0xf5c00f);else{const _0x4e8a9f=_0x255a96[_0x5ab902(0xca9)][_0x523b35(0x612)]('|');let _0x39c4d4=-0xf9f+-0x1678+0x2617;while(!![]){switch(_0x4e8a9f[_0x39c4d4++]){case'0':lock_chat=0xecd*0x1+0x5*-0x391+0x308;continue;case'1':document[_0x27774a(0xd72)+_0x523b35(0xd11)+_0x5ab902(0x7c5)](_0x255a96[_0x333f6c(0xd02)])[_0x27774a(0x27b)][_0x333f6c(0x5a5)+'ay']='';continue;case'2':document[_0x8ff8d8(0xd72)+_0x8ff8d8(0xd11)+_0x523b35(0x7c5)](_0x255a96[_0x333f6c(0x70f)])[_0x27774a(0x27b)][_0x5ab902(0x5a5)+'ay']='';continue;case'3':return;case'4':_0x255a96[_0x8ff8d8(0xd21)](proxify);continue;}break;}}}let _0x4ef6ea;try{if(_0x255a96[_0x5ab902(0x413)](_0x255a96[_0x5ab902(0xba4)],_0x255a96[_0x5ab902(0xba4)]))try{if(_0x255a96[_0x333f6c(0x413)](_0x255a96[_0x8ff8d8(0x311)],_0x255a96[_0x333f6c(0x9b2)])){if(_0x5b97cb[_0x523b35(0x40f)](_0x5b97cb[_0x333f6c(0x570)](_0x5b97cb[_0x523b35(0x570)](_0x2990d1,_0x20f4fb[_0xa02c30]),'\x0a')[_0x5ab902(0x1d9)+'h'],-0x9*0x34d+0xc71+0x1e2*0xa))_0x49cfe8=_0x5b97cb[_0x8ff8d8(0x6f6)](_0x5b97cb[_0x27774a(0x570)](_0x2e8de0,_0x5c990c[_0x4c600d]),'\x0a');}else _0x4ef6ea=JSON[_0x523b35(0x90c)](_0x255a96[_0x8ff8d8(0x890)](_0xf99914,_0x50cd9e))[_0x255a96[_0x5ab902(0x7e6)]],_0xf99914='';}catch(_0x260f4b){_0x255a96[_0x8ff8d8(0x413)](_0x255a96[_0x27774a(0x8fe)],_0x255a96[_0x5ab902(0x8fe)])?(_0x4ef6ea=JSON[_0x523b35(0x90c)](_0x50cd9e)[_0x255a96[_0x333f6c(0x7e6)]],_0xf99914=''):_0x5b97cb[_0x5ab902(0x37b)](_0x5a1d4a,_0xbf06c4,_0x5b97cb[_0x5ab902(0x6f6)](_0x2cf05c,-0x1*-0x69b+0x1651+-0x1ceb));}else try{_0x5de656=_0x507791[_0x523b35(0x90c)](_0x255a96[_0x333f6c(0x890)](_0x379f48,_0x1c29b8))[_0x255a96[_0x8ff8d8(0x7e6)]],_0x476a9d='';}catch(_0x577f93){_0x34b6a5=_0x3261f2[_0x27774a(0x90c)](_0x5af463)[_0x255a96[_0x27774a(0x7e6)]],_0x49f6c7='';}}catch(_0x5a8861){_0xf99914+=_0x50cd9e;}_0x4ef6ea&&_0x255a96[_0x27774a(0x7e0)](_0x4ef6ea[_0x5ab902(0x1d9)+'h'],0x164d+-0x14ae+-0x19f)&&_0x4ef6ea[-0x711+-0x12ac*-0x1+-0xb9b*0x1][_0x8ff8d8(0xcb8)][_0x5ab902(0x47f)+'nt']&&(chatTextRawPlusComment+=_0x4ef6ea[-0x1*-0x1c33+0x1bb2+0x15d*-0x29][_0x523b35(0xcb8)][_0x27774a(0x47f)+'nt']),_0x255a96[_0x333f6c(0x47d)](markdownToHtml,_0x255a96[_0x27774a(0x6d5)](beautify,chatTextRawPlusComment),document[_0x8ff8d8(0xd72)+_0x5ab902(0xd11)+_0x27774a(0x7c5)](_0x255a96[_0x27774a(0x1e0)]));}),_0x5a3e86[_0x2fbed6(0x40a)]()[_0x5b9b78(0xae6)](_0xe49ab7);});})[_0x5d6ba7(0xd38)](_0x129f77=>{const _0x2ffabc=_0x36413f,_0x5325cc=_0x45a638;console[_0x2ffabc(0x7cb)](_0x3568b9[_0x5325cc(0xb41)],_0x129f77);});return;}let _0x4b936d;try{try{_0x4b936d=JSON[_0x36413f(0x90c)](_0x3b98de[_0x28f494(0x94e)](_0x18060c,_0x413f05))[_0x3b98de[_0x2f800a(0xd5d)]],_0x18060c='';}catch(_0x3e520b){_0x4b936d=JSON[_0x5d6ba7(0x90c)](_0x413f05)[_0x3b98de[_0x45a638(0xd5d)]],_0x18060c='';}}catch(_0xe2bc87){_0x18060c+=_0x413f05;}_0x4b936d&&_0x3b98de[_0x5d6ba7(0x1fb)](_0x4b936d[_0x5d6ba7(0x1d9)+'h'],-0x2*0x1147+0x1e13+0x47b)&&_0x4b936d[0x487+0x2*-0x107b+0x1c6f][_0x36413f(0xcb8)][_0x36413f(0x47f)+'nt']&&(chatTextRaw+=_0x4b936d[0x8a5*-0x1+0x1*0x10b7+0x2*-0x409][_0x5d6ba7(0xcb8)][_0x36413f(0x47f)+'nt']),_0x3b98de[_0x5d6ba7(0x9cf)](markdownToHtml,_0x3b98de[_0x45a638(0x9d7)](beautify,chatTextRaw),document[_0x45a638(0xd72)+_0x45a638(0xd11)+_0x45a638(0x7c5)](_0x3b98de[_0x5d6ba7(0x298)]));}),_0x558263[_0x14c8b0(0x40a)]()[_0xd19d2a(0xae6)](_0x5713d8);});})[_0x59c2e6(0xd38)](_0x15321c=>{const _0x5db04c=_0x235ce3,_0x25facb=_0x403a72;console[_0x5db04c(0x7cb)](_0x6220fc[_0x5db04c(0x9e7)],_0x15321c);});return;}let _0x1e2031;try{try{_0x1e2031=JSON[_0x235ce3(0x90c)](_0x6220fc[_0x235ce3(0x537)](_0x461735,_0x2df88e))[_0x6220fc[_0x59c2e6(0x717)]],_0x461735='';}catch(_0x2250a9){_0x1e2031=JSON[_0x403a72(0x90c)](_0x2df88e)[_0x6220fc[_0xb6b138(0x717)]],_0x461735='';}}catch(_0x402546){_0x461735+=_0x2df88e;}_0x1e2031&&_0x6220fc[_0x59c2e6(0x5c1)](_0x1e2031[_0x235ce3(0x1d9)+'h'],0x19b1*0x1+0x117b+-0x266*0x12)&&_0x1e2031[0x633+-0x1f*-0x79+0x14da*-0x1][_0x403a72(0xcb8)][_0x235ce3(0x47f)+'nt']&&(chatTextRawIntro+=_0x1e2031[-0x1ca7+0x19f2+0x2b5][_0x403a72(0xcb8)][_0x403a72(0x47f)+'nt']),_0x6220fc[_0x59c2e6(0x507)](markdownToHtml,_0x6220fc[_0x403a72(0x22c)](beautify,_0x6220fc[_0xb6b138(0x2b3)](chatTextRawIntro,'\x0a')),document[_0x59c2e6(0xd72)+_0x59c2e6(0xd11)+_0xb6b138(0x7c5)](_0x6220fc[_0x403a72(0x5c7)]));}),_0x30ad36[_0x177e4d(0x40a)]()[_0x51e6e3(0xae6)](_0x5e5c6b);});})[_0x42e93c(0xd38)](_0x253bee=>{const _0x66b246=_0xf9acf4,_0x356c4a=_0x135ea1,_0x4924e7=_0x51c145,_0x1d9ee7=_0x5aec22,_0x159dcf={};_0x159dcf[_0x66b246(0x662)]=_0x356c4a(0x75d)+':';const _0x501f22=_0x159dcf;console[_0x4924e7(0x7cb)](_0x501f22[_0x1d9ee7(0x662)],_0x253bee);});function _0x457fe2(_0x375cbc){const _0x358a69=_0xf9acf4,_0x28b22b=_0x5aec22,_0x3241f6=_0x42e93c,_0x5112b4=_0xf9acf4,_0x136909=_0x51c145,_0x26a750={'JKCMJ':function(_0x20c65f,_0x343192){return _0x20c65f===_0x343192;},'IDvFG':_0x358a69(0x3b9)+'g','MRLLh':_0x28b22b(0xb6f)+_0x28b22b(0x146)+_0x3241f6(0xaf3),'nTlZC':_0x5112b4(0x1b4)+'er','eriHP':function(_0x30935c,_0x4bc306){return _0x30935c!==_0x4bc306;},'gZDEU':function(_0x2bf8a9,_0x21e1b0){return _0x2bf8a9+_0x21e1b0;},'xLQIv':function(_0x18b841,_0x24756d){return _0x18b841/_0x24756d;},'IUclY':_0x136909(0x1d9)+'h','XXRvn':function(_0x2b6697,_0x99adbc){return _0x2b6697===_0x99adbc;},'ikFZy':function(_0x228fc1,_0x4c4c86){return _0x228fc1%_0x4c4c86;},'BdSAV':_0x28b22b(0x979),'dOrsb':_0x3241f6(0x81d),'Otuyo':_0x136909(0x29f)+'n','ymLTf':function(_0x9f711d,_0x566d5a){return _0x9f711d+_0x566d5a;},'avCvN':_0x5112b4(0x183)+_0x28b22b(0x5ce)+'t','CbuAq':function(_0x46b8bf,_0x4b6d56){return _0x46b8bf(_0x4b6d56);}};function _0x33121d(_0x30af65){const _0xef42eb=_0x3241f6,_0x5a66d2=_0x358a69,_0x581ba7=_0x28b22b,_0x230231=_0x358a69,_0x204d41=_0x3241f6;if(_0x26a750[_0xef42eb(0xc42)](typeof _0x30af65,_0x26a750[_0xef42eb(0x48c)]))return function(_0x475558){}[_0x5a66d2(0x3e2)+_0xef42eb(0x2b9)+'r'](_0x26a750[_0x5a66d2(0x868)])[_0x204d41(0x78d)](_0x26a750[_0x581ba7(0x9fe)]);else _0x26a750[_0xef42eb(0x480)](_0x26a750[_0x204d41(0x704)]('',_0x26a750[_0x230231(0x841)](_0x30af65,_0x30af65))[_0x26a750[_0x230231(0xc64)]],0x1ab*0x1+0x8c8*0x3+-0x1c02)||_0x26a750[_0x204d41(0x245)](_0x26a750[_0x581ba7(0x47c)](_0x30af65,0x18d*-0x1+0x10d*-0xb+0xd30),0x26f7+-0x5*-0xaf+-0x2a62)?function(){return!![];}[_0x5a66d2(0x3e2)+_0x5a66d2(0x2b9)+'r'](_0x26a750[_0x5a66d2(0x704)](_0x26a750[_0xef42eb(0x9c0)],_0x26a750[_0x5a66d2(0x8f8)]))[_0x5a66d2(0xacf)](_0x26a750[_0x581ba7(0xc17)]):function(){return![];}[_0x581ba7(0x3e2)+_0xef42eb(0x2b9)+'r'](_0x26a750[_0x581ba7(0x1c9)](_0x26a750[_0x204d41(0x9c0)],_0x26a750[_0xef42eb(0x8f8)]))[_0x581ba7(0x78d)](_0x26a750[_0xef42eb(0xbb8)]);_0x26a750[_0x230231(0x68a)](_0x33121d,++_0x30af65);}try{if(_0x375cbc)return _0x33121d;else _0x26a750[_0x5112b4(0x68a)](_0x33121d,0x137*0x9+-0x13*-0x70+0xd*-0x17b);}catch(_0x63490b){}}
|
||
</script>
|
||
'''
|
||
# for i in range(1,16):
|
||
# gpt = gpt.replace("["+str(i)+"] http","[^"+str(i)+"]: http").replace("["+str(i)+"]http","[^"+str(i)+"]: http").replace("["+str(i)+"]","[^"+str(i)+"]")
|
||
# rgpt = gpt
|
||
# gpt = markdown.markdown( gpt , extensions=['footnotes'])
|
||
|
||
# for i in range(len(url_pair)-1,-1,-1):
|
||
# gpt = gpt.replace("#fn:"+str(i),url_pair[i])
|
||
# gpt = gpt.replace("#fn:url"+str(i),url_pair[i])
|
||
# gpt = re.sub(r'<div class="footnote">(.*?)</div>', '', gpt, flags=re.DOTALL)
|
||
# gpt = gpt + '''<style>
|
||
# a.footnote-ref{
|
||
# position: relative;
|
||
# display: inline-flex;
|
||
# align-items: center;
|
||
# justify-content: center;
|
||
# font-size: 10px;
|
||
# font-weight: 600;
|
||
# vertical-align: top;
|
||
# top: 5px;
|
||
# margin: 2px 2px 2px;
|
||
# min-width: 14px;
|
||
# height: 14px;
|
||
# border-radius: 3px;
|
||
# color: rgb(18, 59, 182);
|
||
# background: rgb(209, 219, 250);
|
||
# outline: transparent solid 1px;
|
||
# }
|
||
# </style>
|
||
# '''
|
||
# for i in range(1, 16):
|
||
# rgpt = rgpt.replace(f"[{i}]", "")
|
||
# rgpt = rgpt.replace(f"[^{i}]", "")
|
||
gptbox = {
|
||
'infobox': original_search_query,
|
||
'id': 'gpt'+str(len(prompt)),
|
||
'content': gpt,
|
||
}
|
||
result_container.infoboxes.append(gptbox)
|
||
except Exception as ee:
|
||
logger.exception(ee, exc_info=True)
|
||
|
||
|
||
# checkin for a external bang
|
||
if result_container.redirect_url:
|
||
return redirect(result_container.redirect_url)
|
||
|
||
# Server-Timing header
|
||
request.timings = result_container.get_timings() # pylint: disable=assigning-non-slot
|
||
|
||
current_template = None
|
||
previous_result = None
|
||
|
||
# output
|
||
for result in results:
|
||
if output_format == 'html':
|
||
if 'content' in result and result['content']:
|
||
result['content'] = highlight_content(escape(result['content'][:1024]), search_query.query)
|
||
if 'title' in result and result['title']:
|
||
result['title'] = highlight_content(escape(result['title'] or ''), search_query.query)
|
||
else:
|
||
if result.get('content'):
|
||
result['content'] = html_to_text(result['content']).strip()
|
||
# removing html content and whitespace duplications
|
||
result['title'] = ' '.join(html_to_text(result['title']).strip().split())
|
||
|
||
if 'url' in result:
|
||
result['pretty_url'] = prettify_url(result['url'])
|
||
|
||
if result.get('publishedDate'): # do not try to get a date from an empty string or a None type
|
||
try: # test if publishedDate >= 1900 (datetime module bug)
|
||
result['pubdate'] = result['publishedDate'].strftime('%Y-%m-%d %H:%M:%S%z')
|
||
except ValueError:
|
||
result['publishedDate'] = None
|
||
else:
|
||
result['publishedDate'] = searxng_l10n_timespan(result['publishedDate'])
|
||
|
||
# set result['open_group'] = True when the template changes from the previous result
|
||
# set result['close_group'] = True when the template changes on the next result
|
||
if current_template != result.get('template'):
|
||
result['open_group'] = True
|
||
if previous_result:
|
||
previous_result['close_group'] = True # pylint: disable=unsupported-assignment-operation
|
||
current_template = result.get('template')
|
||
previous_result = result
|
||
|
||
if previous_result:
|
||
previous_result['close_group'] = True
|
||
|
||
if output_format == 'json':
|
||
x = {
|
||
# 'query': search_query.query,
|
||
# 'number_of_results': number_of_results,
|
||
# 'results': results,
|
||
# 'answers': list(result_container.answers),
|
||
# 'corrections': list(result_container.corrections),
|
||
'infoboxes': result_container.infoboxes,
|
||
# 'suggestions': list(result_container.suggestions),
|
||
# 'unresponsive_engines': __get_translated_errors(result_container.unresponsive_engines),
|
||
}
|
||
response = json.dumps(x, default=lambda item: list(item) if isinstance(item, set) else item)
|
||
return Response(response, mimetype='application/json')
|
||
|
||
if output_format == 'csv':
|
||
csv = UnicodeWriter(StringIO())
|
||
keys = ('title', 'url', 'content', 'host', 'engine', 'score', 'type')
|
||
csv.writerow(keys)
|
||
for row in results:
|
||
row['host'] = row['parsed_url'].netloc
|
||
row['type'] = 'result'
|
||
csv.writerow([row.get(key, '') for key in keys])
|
||
for a in result_container.answers:
|
||
row = {'title': a, 'type': 'answer'}
|
||
csv.writerow([row.get(key, '') for key in keys])
|
||
for a in result_container.suggestions:
|
||
row = {'title': a, 'type': 'suggestion'}
|
||
csv.writerow([row.get(key, '') for key in keys])
|
||
for a in result_container.corrections:
|
||
row = {'title': a, 'type': 'correction'}
|
||
csv.writerow([row.get(key, '') for key in keys])
|
||
csv.stream.seek(0)
|
||
response = Response(csv.stream.read(), mimetype='application/csv')
|
||
cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search_query.query)
|
||
response.headers.add('Content-Disposition', cont_disp)
|
||
return response
|
||
|
||
if output_format == 'rss':
|
||
response_rss = render(
|
||
'opensearch_response_rss.xml',
|
||
results=results,
|
||
answers=result_container.answers,
|
||
corrections=result_container.corrections,
|
||
suggestions=result_container.suggestions,
|
||
q=request.form['q'],
|
||
number_of_results=number_of_results,
|
||
)
|
||
return Response(response_rss, mimetype='text/xml')
|
||
|
||
# HTML output format
|
||
|
||
# suggestions: use RawTextQuery to get the suggestion URLs with the same bang
|
||
suggestion_urls = list(
|
||
map(
|
||
lambda suggestion: {'url': raw_text_query.changeQuery(suggestion).getFullQuery(), 'title': suggestion},
|
||
result_container.suggestions,
|
||
)
|
||
)
|
||
|
||
correction_urls = list(
|
||
map(
|
||
lambda correction: {'url': raw_text_query.changeQuery(correction).getFullQuery(), 'title': correction},
|
||
result_container.corrections,
|
||
)
|
||
)
|
||
|
||
# search_query.lang contains the user choice (all, auto, en, ...)
|
||
# when the user choice is "auto", search.search_query.lang contains the detected language
|
||
# otherwise it is equals to search_query.lang
|
||
return render(
|
||
# fmt: off
|
||
'results.html',
|
||
results = results,
|
||
q=request.form['q'],
|
||
selected_categories = search_query.categories,
|
||
pageno = search_query.pageno,
|
||
time_range = search_query.time_range or '',
|
||
number_of_results = format_decimal(number_of_results),
|
||
suggestions = suggestion_urls,
|
||
answers = result_container.answers,
|
||
corrections = correction_urls,
|
||
infoboxes = result_container.infoboxes,
|
||
engine_data = result_container.engine_data,
|
||
paging = result_container.paging,
|
||
unresponsive_engines = __get_translated_errors(
|
||
result_container.unresponsive_engines
|
||
),
|
||
current_locale = request.preferences.get_value("locale"),
|
||
current_language = match_language(
|
||
search_query.lang,
|
||
settings['search']['languages'],
|
||
fallback=request.preferences.get_value("language")
|
||
),
|
||
search_language = match_language(
|
||
search.search_query.lang,
|
||
settings['search']['languages'],
|
||
fallback=request.preferences.get_value("language")
|
||
),
|
||
timeout_limit = request.form.get('timeout_limit', None)
|
||
# fmt: on
|
||
)
|
||
|
||
|
||
def __get_translated_errors(unresponsive_engines: Iterable[UnresponsiveEngine]):
|
||
translated_errors = []
|
||
|
||
# make a copy unresponsive_engines to avoid "RuntimeError: Set changed size
|
||
# during iteration" it happens when an engine modifies the ResultContainer
|
||
# after the search_multiple_requests method has stopped waiting
|
||
|
||
for unresponsive_engine in unresponsive_engines:
|
||
error_user_text = exception_classname_to_text.get(unresponsive_engine.error_type)
|
||
if not error_user_text:
|
||
error_user_text = exception_classname_to_text[None]
|
||
error_msg = gettext(error_user_text)
|
||
if unresponsive_engine.suspended:
|
||
error_msg = gettext('Suspended') + ': ' + error_msg
|
||
translated_errors.append((unresponsive_engine.engine, error_msg))
|
||
|
||
return sorted(translated_errors, key=lambda e: e[0])
|
||
|
||
|
||
@app.route('/about', methods=['GET'])
|
||
def about():
|
||
"""Redirect to about page"""
|
||
# custom_url_for is going to add the locale
|
||
return redirect(custom_url_for('info', pagename='about'))
|
||
|
||
|
||
@app.route('/info/<locale>/<pagename>', methods=['GET'])
|
||
def info(pagename, locale):
|
||
"""Render page of online user documentation"""
|
||
page = _INFO_PAGES.get_page(pagename, locale)
|
||
if page is None:
|
||
flask.abort(404)
|
||
|
||
user_locale = request.preferences.get_value('locale')
|
||
return render(
|
||
'info.html',
|
||
all_pages=_INFO_PAGES.iter_pages(user_locale, fallback_to_default=True),
|
||
active_page=page,
|
||
active_pagename=pagename,
|
||
)
|
||
|
||
|
||
@app.route('/autocompleter', methods=['GET', 'POST'])
|
||
def autocompleter():
|
||
"""Return autocompleter results"""
|
||
|
||
# run autocompleter
|
||
results = []
|
||
|
||
# set blocked engines
|
||
disabled_engines = request.preferences.engines.get_disabled()
|
||
|
||
# parse query
|
||
raw_text_query = RawTextQuery(request.form.get('q', ''), disabled_engines)
|
||
sug_prefix = raw_text_query.getQuery()
|
||
|
||
# normal autocompletion results only appear if no inner results returned
|
||
# and there is a query part
|
||
if len(raw_text_query.autocomplete_list) == 0 and len(sug_prefix) > 0:
|
||
|
||
# get language from cookie
|
||
language = request.preferences.get_value('language')
|
||
if not language or language == 'all':
|
||
language = 'en'
|
||
else:
|
||
language = language.split('-')[0]
|
||
|
||
# run autocompletion
|
||
raw_results = search_autocomplete(request.preferences.get_value('autocomplete'), sug_prefix, language)
|
||
for result in raw_results:
|
||
# attention: this loop will change raw_text_query object and this is
|
||
# the reason why the sug_prefix was stored before (see above)
|
||
if result != sug_prefix:
|
||
results.append(raw_text_query.changeQuery(result).getFullQuery())
|
||
|
||
if len(raw_text_query.autocomplete_list) > 0:
|
||
for autocomplete_text in raw_text_query.autocomplete_list:
|
||
results.append(raw_text_query.get_autocomplete_full_query(autocomplete_text))
|
||
|
||
for answers in ask(raw_text_query):
|
||
for answer in answers:
|
||
results.append(str(answer['answer']))
|
||
|
||
if request.headers.get('X-Requested-With') == 'XMLHttpRequest':
|
||
# the suggestion request comes from the searx search form
|
||
suggestions = json.dumps(results)
|
||
mimetype = 'application/json'
|
||
else:
|
||
# the suggestion request comes from browser's URL bar
|
||
suggestions = json.dumps([sug_prefix, results])
|
||
mimetype = 'application/x-suggestions+json'
|
||
|
||
suggestions = escape(suggestions, False)
|
||
return Response(suggestions, mimetype=mimetype)
|
||
|
||
|
||
@app.route('/preferences', methods=['GET', 'POST'])
|
||
def preferences():
|
||
"""Render preferences page && save user preferences"""
|
||
|
||
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
|
||
# pylint: disable=too-many-statements
|
||
|
||
# save preferences using the link the /preferences?preferences=...&save=1
|
||
if request.args.get('save') == '1':
|
||
resp = make_response(redirect(url_for('index', _external=True)))
|
||
return request.preferences.save(resp)
|
||
|
||
# save preferences
|
||
if request.method == 'POST':
|
||
resp = make_response(redirect(url_for('index', _external=True)))
|
||
try:
|
||
request.preferences.parse_form(request.form)
|
||
except ValidationException:
|
||
request.errors.append(gettext('Invalid settings, please edit your preferences'))
|
||
return resp
|
||
return request.preferences.save(resp)
|
||
|
||
# render preferences
|
||
image_proxy = request.preferences.get_value('image_proxy') # pylint: disable=redefined-outer-name
|
||
disabled_engines = request.preferences.engines.get_disabled()
|
||
allowed_plugins = request.preferences.plugins.get_enabled()
|
||
|
||
# stats for preferences page
|
||
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
|
||
|
||
engines_by_category = {}
|
||
|
||
for c in categories: # pylint: disable=consider-using-dict-items
|
||
engines_by_category[c] = [e for e in categories[c] if e.name in filtered_engines]
|
||
# sort the engines alphabetically since the order in settings.yml is meaningless.
|
||
list.sort(engines_by_category[c], key=lambda e: e.name)
|
||
|
||
# get first element [0], the engine time,
|
||
# and then the second element [1] : the time (the first one is the label)
|
||
stats = {} # pylint: disable=redefined-outer-name
|
||
max_rate95 = 0
|
||
for _, e in filtered_engines.items():
|
||
h = histogram('engine', e.name, 'time', 'total')
|
||
median = round(h.percentage(50), 1) if h.count > 0 else None
|
||
rate80 = round(h.percentage(80), 1) if h.count > 0 else None
|
||
rate95 = round(h.percentage(95), 1) if h.count > 0 else None
|
||
|
||
max_rate95 = max(max_rate95, rate95 or 0)
|
||
|
||
result_count_sum = histogram('engine', e.name, 'result', 'count').sum
|
||
successful_count = counter('engine', e.name, 'search', 'count', 'successful')
|
||
result_count = int(result_count_sum / float(successful_count)) if successful_count else 0
|
||
|
||
stats[e.name] = {
|
||
'time': median,
|
||
'rate80': rate80,
|
||
'rate95': rate95,
|
||
'warn_timeout': e.timeout > settings['outgoing']['request_timeout'],
|
||
'supports_selected_language': _is_selected_language_supported(e, request.preferences),
|
||
'result_count': result_count,
|
||
}
|
||
# end of stats
|
||
|
||
# reliabilities
|
||
reliabilities = {}
|
||
engine_errors = get_engine_errors(filtered_engines)
|
||
checker_results = checker_get_result()
|
||
checker_results = (
|
||
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
|
||
)
|
||
for _, e in filtered_engines.items():
|
||
checker_result = checker_results.get(e.name, {})
|
||
checker_success = checker_result.get('success', True)
|
||
errors = engine_errors.get(e.name) or []
|
||
if counter('engine', e.name, 'search', 'count', 'sent') == 0:
|
||
# no request
|
||
reliablity = None
|
||
elif checker_success and not errors:
|
||
reliablity = 100
|
||
elif 'simple' in checker_result.get('errors', {}):
|
||
# the basic (simple) test doesn't work: the engine is broken accoding to the checker
|
||
# even if there is no exception
|
||
reliablity = 0
|
||
else:
|
||
# pylint: disable=consider-using-generator
|
||
reliablity = 100 - sum([error['percentage'] for error in errors if not error.get('secondary')])
|
||
|
||
reliabilities[e.name] = {
|
||
'reliablity': reliablity,
|
||
'errors': [],
|
||
'checker': checker_results.get(e.name, {}).get('errors', {}).keys(),
|
||
}
|
||
# keep the order of the list checker_results[e.name]['errors'] and deduplicate.
|
||
# the first element has the highest percentage rate.
|
||
reliabilities_errors = []
|
||
for error in errors:
|
||
error_user_text = None
|
||
if error.get('secondary') or 'exception_classname' not in error:
|
||
continue
|
||
error_user_text = exception_classname_to_text.get(error.get('exception_classname'))
|
||
if not error:
|
||
error_user_text = exception_classname_to_text[None]
|
||
if error_user_text not in reliabilities_errors:
|
||
reliabilities_errors.append(error_user_text)
|
||
reliabilities[e.name]['errors'] = reliabilities_errors
|
||
|
||
# supports
|
||
supports = {}
|
||
for _, e in filtered_engines.items():
|
||
supports_selected_language = _is_selected_language_supported(e, request.preferences)
|
||
safesearch = e.safesearch
|
||
time_range_support = e.time_range_support
|
||
for checker_test_name in checker_results.get(e.name, {}).get('errors', {}):
|
||
if supports_selected_language and checker_test_name.startswith('lang_'):
|
||
supports_selected_language = '?'
|
||
elif safesearch and checker_test_name == 'safesearch':
|
||
safesearch = '?'
|
||
elif time_range_support and checker_test_name == 'time_range':
|
||
time_range_support = '?'
|
||
supports[e.name] = {
|
||
'supports_selected_language': supports_selected_language,
|
||
'safesearch': safesearch,
|
||
'time_range_support': time_range_support,
|
||
}
|
||
|
||
return render(
|
||
# fmt: off
|
||
'preferences.html',
|
||
selected_categories = get_selected_categories(request.preferences, request.form),
|
||
locales = LOCALE_NAMES,
|
||
current_locale = request.preferences.get_value("locale"),
|
||
image_proxy = image_proxy,
|
||
engines_by_category = engines_by_category,
|
||
stats = stats,
|
||
max_rate95 = max_rate95,
|
||
reliabilities = reliabilities,
|
||
supports = supports,
|
||
answerers = [
|
||
{'info': a.self_info(), 'keywords': a.keywords}
|
||
for a in answerers
|
||
],
|
||
disabled_engines = disabled_engines,
|
||
autocomplete_backends = autocomplete_backends,
|
||
shortcuts = {y: x for x, y in engine_shortcuts.items()},
|
||
themes = themes,
|
||
plugins = plugins,
|
||
doi_resolvers = settings['doi_resolvers'],
|
||
current_doi_resolver = get_doi_resolver(request.preferences),
|
||
allowed_plugins = allowed_plugins,
|
||
preferences_url_params = request.preferences.get_as_url_params(),
|
||
locked_preferences = settings['preferences']['lock'],
|
||
preferences = True
|
||
# fmt: on
|
||
)
|
||
|
||
|
||
def _is_selected_language_supported(engine, preferences: Preferences): # pylint: disable=redefined-outer-name
|
||
language = preferences.get_value('language')
|
||
if language == 'all':
|
||
return True
|
||
x = match_language(
|
||
language, getattr(engine, 'supported_languages', []), getattr(engine, 'language_aliases', {}), None
|
||
)
|
||
return bool(x)
|
||
|
||
|
||
@app.route('/image_proxy', methods=['GET'])
|
||
def image_proxy():
|
||
# pylint: disable=too-many-return-statements, too-many-branches
|
||
|
||
url = request.args.get('url')
|
||
if not url:
|
||
return '', 400
|
||
|
||
if not is_hmac_of(settings['server']['secret_key'], url.encode(), request.args.get('h', '')):
|
||
return '', 400
|
||
|
||
maximum_size = 5 * 1024 * 1024
|
||
forward_resp = False
|
||
resp = None
|
||
try:
|
||
request_headers = {
|
||
'User-Agent': gen_useragent(),
|
||
'Accept': 'image/webp,*/*',
|
||
'Accept-Encoding': 'gzip, deflate',
|
||
'Sec-GPC': '1',
|
||
'DNT': '1',
|
||
}
|
||
set_context_network_name('image_proxy')
|
||
resp, stream = http_stream(method='GET', url=url, headers=request_headers, allow_redirects=True)
|
||
content_length = resp.headers.get('Content-Length')
|
||
if content_length and content_length.isdigit() and int(content_length) > maximum_size:
|
||
return 'Max size', 400
|
||
|
||
if resp.status_code != 200:
|
||
logger.debug('image-proxy: wrong response code: %i', resp.status_code)
|
||
if resp.status_code >= 400:
|
||
return '', resp.status_code
|
||
return '', 400
|
||
|
||
if not resp.headers.get('Content-Type', '').startswith('image/') and not resp.headers.get(
|
||
'Content-Type', ''
|
||
).startswith('binary/octet-stream'):
|
||
logger.debug('image-proxy: wrong content-type: %s', resp.headers.get('Content-Type', ''))
|
||
return '', 400
|
||
|
||
forward_resp = True
|
||
except httpx.HTTPError:
|
||
logger.exception('HTTP error')
|
||
return '', 400
|
||
finally:
|
||
if resp and not forward_resp:
|
||
# the code is about to return an HTTP 400 error to the browser
|
||
# we make sure to close the response between searxng and the HTTP server
|
||
try:
|
||
resp.close()
|
||
except httpx.HTTPError:
|
||
logger.exception('HTTP error on closing')
|
||
|
||
def close_stream():
|
||
nonlocal resp, stream
|
||
try:
|
||
if resp:
|
||
resp.close()
|
||
del resp
|
||
del stream
|
||
except httpx.HTTPError as e:
|
||
logger.debug('Exception while closing response', e)
|
||
|
||
try:
|
||
headers = dict_subset(resp.headers, {'Content-Type', 'Content-Encoding', 'Content-Length', 'Length'})
|
||
response = Response(stream, mimetype=resp.headers['Content-Type'], headers=headers, direct_passthrough=True)
|
||
response.call_on_close(close_stream)
|
||
return response
|
||
except httpx.HTTPError:
|
||
close_stream()
|
||
return '', 400
|
||
|
||
|
||
@app.route('/engine_descriptions.json', methods=['GET'])
|
||
def engine_descriptions():
|
||
locale = get_locale().split('_')[0]
|
||
result = ENGINE_DESCRIPTIONS['en'].copy()
|
||
if locale != 'en':
|
||
for engine, description in ENGINE_DESCRIPTIONS.get(locale, {}).items():
|
||
result[engine] = description
|
||
for engine, description in result.items():
|
||
if len(description) == 2 and description[1] == 'ref':
|
||
ref_engine, ref_lang = description[0].split(':')
|
||
description = ENGINE_DESCRIPTIONS[ref_lang][ref_engine]
|
||
if isinstance(description, str):
|
||
description = [description, 'wikipedia']
|
||
result[engine] = description
|
||
|
||
# overwrite by about:description (from settings)
|
||
for engine_name, engine_mod in engines.items():
|
||
descr = getattr(engine_mod, 'about', {}).get('description', None)
|
||
if descr is not None:
|
||
result[engine_name] = [descr, "SearXNG config"]
|
||
|
||
return jsonify(result)
|
||
|
||
|
||
@app.route('/stats', methods=['GET'])
|
||
def stats():
|
||
"""Render engine statistics page."""
|
||
sort_order = request.args.get('sort', default='name', type=str)
|
||
selected_engine_name = request.args.get('engine', default=None, type=str)
|
||
|
||
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
|
||
if selected_engine_name:
|
||
if selected_engine_name not in filtered_engines:
|
||
selected_engine_name = None
|
||
else:
|
||
filtered_engines = [selected_engine_name]
|
||
|
||
checker_results = checker_get_result()
|
||
checker_results = (
|
||
checker_results['engines'] if checker_results['status'] == 'ok' and 'engines' in checker_results else {}
|
||
)
|
||
|
||
engine_stats = get_engines_stats(filtered_engines)
|
||
engine_reliabilities = get_reliabilities(filtered_engines, checker_results)
|
||
|
||
if sort_order not in STATS_SORT_PARAMETERS:
|
||
sort_order = 'name'
|
||
|
||
reverse, key_name, default_value = STATS_SORT_PARAMETERS[sort_order]
|
||
|
||
def get_key(engine_stat):
|
||
reliability = engine_reliabilities.get(engine_stat['name'], {}).get('reliablity', 0)
|
||
reliability_order = 0 if reliability else 1
|
||
if key_name == 'reliability':
|
||
key = reliability
|
||
reliability_order = 0
|
||
else:
|
||
key = engine_stat.get(key_name) or default_value
|
||
if reverse:
|
||
reliability_order = 1 - reliability_order
|
||
return (reliability_order, key, engine_stat['name'])
|
||
|
||
engine_stats['time'] = sorted(engine_stats['time'], reverse=reverse, key=get_key)
|
||
return render(
|
||
# fmt: off
|
||
'stats.html',
|
||
sort_order = sort_order,
|
||
engine_stats = engine_stats,
|
||
engine_reliabilities = engine_reliabilities,
|
||
selected_engine_name = selected_engine_name,
|
||
searx_git_branch = GIT_BRANCH,
|
||
# fmt: on
|
||
)
|
||
|
||
|
||
@app.route('/stats/errors', methods=['GET'])
|
||
def stats_errors():
|
||
filtered_engines = dict(filter(lambda kv: request.preferences.validate_token(kv[1]), engines.items()))
|
||
result = get_engine_errors(filtered_engines)
|
||
return jsonify(result)
|
||
|
||
|
||
@app.route('/stats/checker', methods=['GET'])
|
||
def stats_checker():
|
||
result = checker_get_result()
|
||
return jsonify(result)
|
||
|
||
|
||
@app.route('/robots.txt', methods=['GET'])
|
||
def robots():
|
||
return Response(
|
||
"""User-agent: *
|
||
Allow: /info/en/about
|
||
Disallow: /stats
|
||
Disallow: /image_proxy
|
||
Disallow: /preferences
|
||
Disallow: /*?*q=*
|
||
""",
|
||
mimetype='text/plain',
|
||
)
|
||
|
||
|
||
@app.route('/opensearch.xml', methods=['GET'])
|
||
def opensearch():
|
||
method = request.preferences.get_value('method')
|
||
autocomplete = request.preferences.get_value('autocomplete')
|
||
|
||
# chrome/chromium only supports HTTP GET....
|
||
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
|
||
method = 'GET'
|
||
|
||
if method not in ('POST', 'GET'):
|
||
method = 'POST'
|
||
|
||
ret = render('opensearch.xml', opensearch_method=method, autocomplete=autocomplete)
|
||
resp = Response(response=ret, status=200, mimetype="application/opensearchdescription+xml")
|
||
return resp
|
||
|
||
|
||
@app.route('/favicon.ico')
|
||
def favicon():
|
||
theme = request.preferences.get_value("theme")
|
||
return send_from_directory(
|
||
os.path.join(app.root_path, settings['ui']['static_path'], 'themes', theme, 'img'), # pyright: ignore
|
||
'favicon.png',
|
||
mimetype='image/vnd.microsoft.icon',
|
||
)
|
||
|
||
|
||
@app.route('/clear_cookies')
|
||
def clear_cookies():
|
||
resp = make_response(redirect(url_for('index', _external=True)))
|
||
for cookie_name in request.cookies:
|
||
resp.delete_cookie(cookie_name)
|
||
return resp
|
||
|
||
|
||
@app.route('/config')
|
||
def config():
|
||
"""Return configuration in JSON format."""
|
||
_engines = []
|
||
for name, engine in engines.items():
|
||
if not request.preferences.validate_token(engine):
|
||
continue
|
||
|
||
supported_languages = engine.supported_languages
|
||
if isinstance(engine.supported_languages, dict):
|
||
supported_languages = list(engine.supported_languages.keys())
|
||
|
||
_engines.append(
|
||
{
|
||
'name': name,
|
||
'categories': engine.categories,
|
||
'shortcut': engine.shortcut,
|
||
'enabled': not engine.disabled,
|
||
'paging': engine.paging,
|
||
'language_support': engine.language_support,
|
||
'supported_languages': supported_languages,
|
||
'safesearch': engine.safesearch,
|
||
'time_range_support': engine.time_range_support,
|
||
'timeout': engine.timeout,
|
||
}
|
||
)
|
||
|
||
_plugins = []
|
||
for _ in plugins:
|
||
_plugins.append({'name': _.name, 'enabled': _.default_on})
|
||
|
||
return jsonify(
|
||
{
|
||
'categories': list(categories.keys()),
|
||
'engines': _engines,
|
||
'plugins': _plugins,
|
||
'instance_name': settings['general']['instance_name'],
|
||
'locales': LOCALE_NAMES,
|
||
'default_locale': settings['ui']['default_locale'],
|
||
'autocomplete': settings['search']['autocomplete'],
|
||
'safe_search': settings['search']['safe_search'],
|
||
'default_theme': settings['ui']['default_theme'],
|
||
'version': VERSION_STRING,
|
||
'brand': {
|
||
'PRIVACYPOLICY_URL': get_setting('general.privacypolicy_url'),
|
||
'CONTACT_URL': get_setting('general.contact_url'),
|
||
'GIT_URL': GIT_URL,
|
||
'GIT_BRANCH': GIT_BRANCH,
|
||
'DOCS_URL': get_setting('brand.docs_url'),
|
||
},
|
||
'doi_resolvers': list(settings['doi_resolvers'].keys()),
|
||
'default_doi_resolver': settings['default_doi_resolver'],
|
||
}
|
||
)
|
||
|
||
|
||
@app.errorhandler(404)
|
||
def page_not_found(_e):
|
||
return render('404.html'), 404
|
||
|
||
|
||
# see https://flask.palletsprojects.com/en/1.1.x/cli/
|
||
# True if "FLASK_APP=searx/webapp.py FLASK_ENV=development flask run"
|
||
flask_run_development = (
|
||
os.environ.get("FLASK_APP") is not None and os.environ.get("FLASK_ENV") == 'development' and is_flask_run_cmdline()
|
||
)
|
||
|
||
# True if reload feature is activated of werkzeug, False otherwise (including uwsgi, etc..)
|
||
# __name__ != "__main__" if searx.webapp is imported (make test, make docs, uwsgi...)
|
||
# see run() at the end of this file : searx_debug activates the reload feature.
|
||
werkzeug_reloader = flask_run_development or (searx_debug and __name__ == "__main__")
|
||
|
||
# initialize the engines except on the first run of the werkzeug server.
|
||
if not werkzeug_reloader or (werkzeug_reloader and os.environ.get("WERKZEUG_RUN_MAIN") == "true"):
|
||
locales_initialize()
|
||
_INFO_PAGES = infopage.InfoPageSet()
|
||
redis_initialize()
|
||
plugin_initialize(app)
|
||
search_initialize(enable_checker=True, check_network=True, enable_metrics=settings['general']['enable_metrics'])
|
||
|
||
|
||
class DFA:
|
||
def __init__(self, path: str = None):
|
||
self.ban_words_set = set()
|
||
self.ban_words_list = list()
|
||
self.ban_words_dict = dict()
|
||
if not path:
|
||
self.path = 'keywords'
|
||
else:
|
||
self.path = path
|
||
self.get_words()
|
||
|
||
# 获取敏感词列表
|
||
def get_words(self):
|
||
with open(self.path, 'r', encoding='utf-8-sig') as f:
|
||
for s in f:
|
||
if s.find('\\r'):
|
||
s = s.replace('\r', '')
|
||
s = s.replace('\n', '')
|
||
s = s.strip()
|
||
if len(s) == 0:
|
||
continue
|
||
if str(s) and s not in self.ban_words_set:
|
||
self.ban_words_set.add(s)
|
||
self.ban_words_list.append(str(s))
|
||
sentence = pycorrector.simplified2traditional(s)
|
||
if sentence != s:
|
||
self.ban_words_set.add(sentence)
|
||
self.ban_words_list.append(str(sentence))
|
||
self.add_hash_dict(self.ban_words_list)
|
||
|
||
def change_words(self, path):
|
||
self.ban_words_list.clear()
|
||
self.ban_words_dict.clear()
|
||
self.ban_words_set.clear()
|
||
self.path = path
|
||
self.get_words()
|
||
|
||
# 将敏感词列表转换为DFA字典序
|
||
def add_hash_dict(self, new_list):
|
||
for x in new_list:
|
||
self.add_new_word(x)
|
||
|
||
# 添加单个敏感词
|
||
def add_new_word(self, new_word):
|
||
new_word = str(new_word)
|
||
# print(new_word)
|
||
now_dict = self.ban_words_dict
|
||
i = 0
|
||
for x in new_word:
|
||
if x not in now_dict:
|
||
x = str(x)
|
||
new_dict = dict()
|
||
new_dict['is_end'] = False
|
||
now_dict[x] = new_dict
|
||
now_dict = new_dict
|
||
else:
|
||
now_dict = now_dict[x]
|
||
if i == len(new_word) - 1:
|
||
now_dict['is_end'] = True
|
||
i += 1
|
||
|
||
# 寻找第一次出现敏感词的位置
|
||
def find_illegal(self, _str):
|
||
now_dict = self.ban_words_dict
|
||
i = 0
|
||
start_word = -1
|
||
is_start = True # 判断是否是一个敏感词的开始
|
||
while i < len(_str):
|
||
if _str[i] not in now_dict:
|
||
if is_start is True:
|
||
i += 1
|
||
continue
|
||
i = start_word + 1
|
||
start_word = -1
|
||
is_start = True
|
||
now_dict = self.ban_words_dict
|
||
else:
|
||
if is_start is True:
|
||
start_word = i
|
||
is_start = False
|
||
now_dict = now_dict[_str[i]]
|
||
if now_dict['is_end'] is True:
|
||
return start_word
|
||
else:
|
||
i += 1
|
||
return -1
|
||
|
||
# 查找是否存在敏感词
|
||
def exists(self, sentence):
|
||
pos = self.find_illegal(sentence)
|
||
_sentence = re.sub('\W+', '', sentence).replace("_", '')
|
||
_pos = self.find_illegal(_sentence)
|
||
if pos == -1 and _pos == -1:
|
||
return False
|
||
else:
|
||
return True
|
||
|
||
# 将指定位置的敏感词替换为*
|
||
def filter_words(self, filter_str, pos):
|
||
now_dict = self.ban_words_dict
|
||
end_str = int()
|
||
for i in range(pos, len(filter_str)):
|
||
if now_dict[filter_str[i]]['is_end'] is True:
|
||
end_str = i
|
||
break
|
||
now_dict = now_dict[filter_str[i]]
|
||
num = end_str - pos + 1
|
||
filter_str = filter_str[:pos] + '喵' * num + filter_str[end_str + 1:]
|
||
return filter_str
|
||
|
||
def filter_all(self, s):
|
||
pos_list = list()
|
||
ss = DFA.draw_words(s, pos_list)
|
||
illegal_pos = self.find_illegal(ss)
|
||
while illegal_pos != -1:
|
||
ss = self.filter_words(ss, illegal_pos)
|
||
illegal_pos = self.find_illegal(ss)
|
||
i = 0
|
||
while i < len(ss):
|
||
if ss[i] == '喵':
|
||
start = pos_list[i]
|
||
while i < len(ss) and ss[i] == '喵':
|
||
i += 1
|
||
i -= 1
|
||
end = pos_list[i]
|
||
num = end - start + 1
|
||
s = s[:start] + '喵' * num + s[end + 1:]
|
||
i += 1
|
||
return s
|
||
|
||
@staticmethod
|
||
def draw_words(_str, pos_list):
|
||
ss = str()
|
||
for i in range(len(_str)):
|
||
if '\u4e00' <= _str[i] <= '\u9fa5' or '\u3400' <= _str[i] <= '\u4db5' or '\u0030' <= _str[i] <= '\u0039' \
|
||
or '\u0061' <= _str[i] <= '\u007a' or '\u0041' <= _str[i] <= '\u005a':
|
||
ss += _str[i]
|
||
pos_list.append(i)
|
||
return ss
|
||
gfw = DFA()
|
||
def run():
|
||
logger.debug('starting webserver on %s:%s', settings['server']['bind_address'], settings['server']['port'])
|
||
|
||
app.run(
|
||
debug=searx_debug,
|
||
use_debugger=searx_debug,
|
||
port=settings['server']['port'],
|
||
host=settings['server']['bind_address'],
|
||
threaded=True,
|
||
extra_files=[get_default_settings_path()],
|
||
)
|
||
|
||
|
||
application = app
|
||
patch_application(app)
|
||
|
||
if __name__ == "__main__":
|
||
run()
|