mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
2102 lines
354 KiB
Python
Executable file
2102 lines
354 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
|
||
|
||
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_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')
|
||
|
||
@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
|
||
for res in results:
|
||
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'].replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")))
|
||
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.")
|
||
|
||
tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
|
||
raws.append(tmp_prompt)
|
||
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
|
||
prompt += tmp_prompt +'\n'
|
||
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
|
||
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>
|
||
|
||
function _0x348f(){const _0x3afb71=['dfdQK','kjamn','tDIXE','9kXxJ','JBwGI','rzLgQ','OUTFB','什么样','zNOcm','NhKGR','qkHwn','XGUgB','OTpzW','ZDgrI','qTpjr','hQZpf','CXInL','LMQLy','BaCFO','xuKRe','ldPZB','WZSnk','UpmSr','ZjRXj','AJWKJ','UcGmS','Vusoh','xHxrr','hHnxR','VOaew','VFQbO','SAyGN','QhhKn','thrwp','tQRUl','nuRXa','识。用简体','es的搜索','BAQEF','les的人','WFkoe','MLdwO','YlObH','Petnm','q3\x22,\x22','Artgu','PCNap','JTXvC','Yrazp','E\x20KEY','eplfl','eFeGL','WpsnR','kazfX','is\x22)(','BiCED','soMBU','iJbyi','UAaWW','NVtvH','lahns','容,发表带','16992640XygRNp','_cont','ty-re','zKcNM','eKeXr','PvcHa','kvvgh','提及已有内','BKDVh','ltjLD','KnBDR','HaMoj','UGCzO','JghBx','DnRjt','VBstJ','amCBm','fLglj','*(?:[','17|16','FzPbR','ions','img','KQzvu','terva','prsJb','LVVOp','XqHhD','jTMrm','DLE','使用了网络','ffdBI','HstUm','GFriT','\x5c+\x5c+\x20','lengt','RPGFV','AHSWJ','CpVOJ','vote','ZLzxG','fesea','rea','EgJxK','3|7|1','tgChM','Dohye','ChLUW','klBjN',':url','yojKb','zdZld','OEOHd','EcBVi','nGTNp','ljMTb','lufSs','cmYrv','_talk','bZgDd','15|12','cZICb','tToJw','zIvST','atIgK','setIn','jUbNT','rxJIx','LlGLC','JPJRI','baCmY','无关内容,','DcBHh','PPWNq','FbEEB','lBrmG','dLhEk','ZvbgN','Izyze','wOYCZ','fgGQJ','找一个','lgxHI','iIyOk','x+el7','AMIHq','FMnAb','funct','rEBoI','FKDZB','chat','xLnvw','EEgzV','JzqtT','whgRM','PqyZA','JBUUd','nEFvf','q2\x22,\x22','JoQDm','qgUFT','UOALG','yiBrz','完成任务“','amtPC','AynSI','ZZNAT','AKVWd','\x20PUBL','rlVue','UIvpQ','rQGXX','kfrCO','wBEbC','GLPvd','eSyri','value','kg/se','HZrmN','EZVLb','wsQbJ',':http','|19|2','vGfAi','LqXbq','YpNHq','oEBEE','BGOpp','GpUFT','用了网络知','yVuiJ','371lmOvrb','tVyjP','0|3|2','fTKNP','baejr','g0KQO','cEPff','XMeBO','wKZkb','不要放在最','NdrQd','otWzv','cEODH','BAfiT','SIApM','yPtzM','warn','jWTsL','QzVLl','conti','cYsXL','DifJk','Ajbbl','nUipt','mMkiF','PSlSK','YVRgW','eqYYl','eplPR','EiiBN','RyMWG','excep','xnWGt','PpqjZ','raws','MEPsJ','yusdH','sLQVz','uuGvr','YwzYc','__pro','3164832RWdPtn','RJFGT','rokqS','pVJhW','magi/','md+az','daETA','pSKaP','JMTif','DVkPK','FyRPX','KqIVZ','arch.','oboPF','LUJUB','avTVR','Node','tiDMp','uGkDT','ajTWg','TQdrS','eBBfH','QXibS','tHeig','dzvcZ','zXsdx','yypMc','tor','OqREk','lllct','bDtiU','baObz','PpAyW','tXTov','slice','plnaG','uECfC','(url','q4\x22]','gwrSK','KfdaV','color','RRNHg','zAuMD','dStyl','KPGfC','BUmHR','LTPCT','Sbxzz','MxzoO','BDiHW','GJapr','PBgUQ','HZZjw','TcaJr','Bsdpj','WXuJD','kNpKy','UWxqb','5|17|','NuPEa','jpimr','(来源:u','MIgWL','fahDm','wSeXQ','BWLfj','u9MCf','tagNa','YVvVi','mvsXe','YoQZW','fCSKH','oRVJO','vnFGe','哪一些','RAmVZ','gify','subtl','then','jbfXx','AEP','(来源ur','DThcX','eImTg','IOSCi','WivgJ','mFUTa','BOTTO','用简体中文','hBLjV','inclu','hcvst','SLoHy','wfDHM','xxSpC','rkWfa','garZa','OoDAG','EfrUx','repla','REUgp','jXlLJ','index','YBZJG','xhXkR','AXUrQ','D33//','ztfAu','hYoBa','3|4|1','iVMtv','cotwN','tRQFL','给出和上文','IPQzZ','swdtU','LSIzl','MkUyB','wAoVO','nQquf','kGjOs','kttNj','RyjXN','TBxIo','gbgwJ','waAAS','GCaqF','jNzad','|8|18','hRQnb','0-9a-','circl','IIzOn','SIjPy','DwGFT','JeOUL','UHJKg','jBIgr','gEngR','xBOmq','tyaRT','jREFs','rTOaZ','#moda','QZfEr','ruIYT','uXcMT','PMoaO','|6|4','rdFdw','#prom','zagYA','JaBXQ','IbiOl','SfLyY','chain','while','rjRcJ','qDkbU','THDFK','xXBIj','xbPyC','dyLvJ','CdMqX','name','zA-Z_','tion','\x0a给出带有','FbXYL','YFPbu','lgFkh','XEJbV','bUdQJ','NQZhx','HpkwE','/stat','jJPRJ','WnXVV','mOfMw','ut-co','zxXxZ','AzKXq','nue','SPnNO','SvGCw','ntwBh','messa','ote\x22>','Orq2W','xjEYJ','ZjwlQ','NdWNv','Q8AMI','CBfhj','tRLss','介绍一下','tGFZw','XjGAE','odeAt','rOGpK','LIC\x20K','3|19|','YjTec','JmDUq','RwjLp','yaeRM','a-zA-','PvNvZ','ixLNV','AeQMa','OmlTy','KDEIn','UzCEn','zkPHm','_rang','SRIlv','NsiwY','add','forEa','NoAVB','oxes','CAnUI','ZgSzH','3|12|','sHlaC','SUdFJ','QVHQO','TnBWQ','\x0a以上是关','Gmyoe','对应内容来','OLPnt','pplkk','nCWjQ','19|6|','BOtjd','wPNbS','eUSoS','DRHor','dxhFX','faAnq','Ifwee','FzzqM','EUlqU','qZsah','复上文。结','<a\x20cl','RsKvy','spki','VRuGK','ArjNl','yJeWG','aLKPj','cZkbn','fnGQB','UxsVb','CAQEA','FKcWE','huUwo','PSJpX','aqCDg','ebcha','XHnTR','elPyn','sort','wUUyS','中文完成任','Pagtm','searc','XHz/b','hTpaK','NWwVX','gger','fiQaQ','OJTxc','succe','知识,删除','rSfDi','QoYAy','OsaAi','jtaNQ','Iahlf','csGFI','gBmQS','HsrYk','vyVOv','ZASbI','OJHis','mOUcg','LWAgq','pJWeL','tSeNF','fXepk','aSXjf','wrLQp','IeSjv','left','displ','22|23','FmwSf','luqIN','HTnFE','0|4|1','xoMBP','Heigh','jzrhT','VDVPM','IWGYX','xSfPd','gaofW','STZQJ','HVKxg','Zknnc','\x20的网络知','YiODs','bShOV','qXcqh','t_que','QHrWy','TiXmy','fEJAy','ynGdP','leUqg','wHQqU','QBQRF','RglAt','pSCpO','heKKR','GGGOb','MMBDh','GEtmJ','ing','BoOXp','s=gen','zNuGT','wbdNi','ZTOwe','ExpDh','CaqHu','9|20|','FpZhp','tXbwq','moBhC','LLHDR','tCXcl','tOBxU','pglzJ','ZvzBe','TsWTV','butto','XbmBV','AAOCA','HTpNg','b8kQG','hUGFT','aJJSY','efSOL','uinFM','YFAjV','LhNXe','JAmyF','D\x20PUB','YniBZ','LuSPf','gClie','XzDkU','Kylrl','nUwTC','jbnsq','UjxFB','VpzHg','UMtiS','daxyn',')+)+)','KCapI','IoWDR','iKPCj','vXoaf','e=&sa','fvFOk','XQdxb','HteWl','59tVf','PWcgw','5Aqvo','CDymz','IzZXU','组格式[\x22','|0|4','搜索框','IVsXx','esZAo','ZdGVt','Qzedq','DvUFq','DnECZ','IRLYi','vFtvH','json数','(网址:u','rtwSs','MbRvQ','air','dnKeu','-MIIB','vobrg','FvlqG','KPOPy','bUbLR','inner','ByrBZ','GkUyT','fcMfM','定搜索结果','2A/dY','PZRlP','nICqj','255,\x20','edUtG','OvNOa','CzGaI','ikdrH','QxPnQ','eSZcv','wer\x22>','s://u','owYbi','QEetf','vpqaO','FAZSW','WpguY','EjnoL','输入框','RXein','MtVrc','NSEoS','ZUNDD','rRTYu','hGhFb','wCrYM','Nmafq','QUIiJ','xrPyd','bQBuc','DHzEn','wfAMY','YNyME','qTJlZ','工智能。以','KzHcD','mIern','uuBqx','iHHFD','|14|5','E_LEF','kJyNx','apply','UGQgo','QUTgL','CbsqN','NRbmq','torAl','sxkpt','EZiHj','QAB--','dHlCT','AroNL','hUHag','zlDHj','l-inp','sgywb','cprzJ','CZCUe','MEcuu','exec','告诉我','关内容,在','inue','JWCYQ','wFEXo','QydzM','KrMEU','BpoQu','kLieu','fuIKa','$]*)','3|7|0','kNsyk','NLTqg','SOOtq','ijMrs','zAPKx','NCVzU','on\x20cl','ength','CAMha','NbXDb','MSgUJ','nRQmi','jIgTp','aeRBa','EhoCZ','XWAZR','yXELD','UPMxE','ydyDJ','gCuaz','s)\x22>','GPpmk','GnzGy','lAfhH','VtYAZ','forma','GGgDe','DvWYe','Zgxg4','oIfNK','IrNsE','POSqS','OFxAj','Arjfl','dQKRu','charC','AcIZw','gYVmT','has','NyLla','vlUQv','JhBzW','style','oGpkx','OxzXK','KLMgv','5469738tNVGKK','zayUW','GBuPV','lujIw','KWMWC','zTLbr','oZZzK','bCPcw','KPlyU','hgKAv','nCGuM','href','OxHgq','parse','5U9h1','getBo','jbHiE','UpiBw','NdyUs','tWidt','pcEjI','iIkuo','depKV','Ewqig','OKLEE','WMXID','75uOe','GHWVx','sIPFo','nxYOm','0|10|','fgzNX','mHJrb','NWQNx','map','fromC','peypb','PHenN','rQpHh','lGkix','shift','Xfand','oOmdw','bFkGI','eEQOE','hjDcx','yPCSL','mJyai','DZvID','reYTj','rbVAr','kBmBa','CoDmX','vVSyR','HVBpb','GyojT','CpcCF','2lkNIJo','PNfZg','CeBOV','emoji','VPTCP','iCNsh','gjqfI','(网址','kg/ke','JgUdY','fKzTW','GeYVJ','guBnP','lCeww','yXSKK','EDWYg','ftRUG','kpGky','lykPv','pkcs8','call','IBeui','bCToM','ljaIA','mSsZv','hwcSH','GJwFX','dKnRn','rame','TGraU','ukskM','xnzKF','Pppwn','qyiQi','|0|2','Charl','wHvRe','from','mbqMY','oJqFn','zxXbS','VJJyl','围绕关键词','up\x20vo','remov','bind','arch?','pTLCn','哪一个','ZcdIV','Tagrn','DmovB','nPrPC','yUGym','data','wulxO','dOueR','4|0|1','heigh','dtoUi','EBpyS','GqVjv','AzlRY','GQTPP','NQfye','yDCic','XMtON','ZDKEv','pkONd','|2|3','TOP_R','MCuQa','引擎机器人','tZMee','QCiCn','文中用(链','YNKdg','ZhFFN','BAzNH','ItKhj','(来源','bECbc','XcDST','duRtB','erCas','RPBdB','ClqjY','oFkKb','prese','IJDxD','ZYTlg','zNRix','dYQHQ','HYgyU','GMHlI','UuNUE','KODqH','SwfXn','FLVLa','cCPCX','szBOc','EhaZi','SltYh','Hiamq','doEOB','DyPaL','des','MxYdQ','IGHT','VeHCy','CzKZK','AwOHG','qMnfV','dfun4','|10|1','为什么','xSURR','QlAup','kRlDM','//url','RJCdT','GmbTC','vEyjr','tEJLZ','getRe','https','ODQON','oMpNR','width','FYXak','AdLPR','Mvdxt','TcCxj','CNPIR','CwFmE','KXaZx','mpGjg','ibVdi','qkOlE','tyZrv','sRVrl','EnZzK','stsvK','INGes','ring','ndEnv','t=jso','YPAao','LYxXH','qhrhv','caSsf','rtVpE','WWspa','GKavh','nIiwx','sOaAv','pBUky','FmyAg','nzOBR','YEFlX','moXoG','sEAuf','LJKTt','gWyGy','FzXwa','size','WssPD','ZnLvA','wthXs','wCoiI','的评论','JrKUg','tribu','tgbWk','XTvpv','YZzjk','QDrPX','Vmvfy','eMGxc','ueowe','mHAbp','LVlse','wxnys','IIxJf','YRukU','(链接ur','hHilg','有emoj','FSRan','fkGdY','Oajqo','BdmkV','onloa','KWZbl','AMJIo','#00ff','bEtqb','QkXoP','Xkros','FiFQk','OrHRT','PGjqy','pSxSU','BRwDf','IWOkr','wQfVb','DqKGw','iawSq','BmSxt','网址)标注','test','encry','Bqrxf','BTEiY','NdNTH','vlcke','BGuiH','Wmnbd','TsjEc','vfUma','yfQpM','(链接:u','fTmVH','HzaLU','push','ttps:','DknVX','xlBHz','yTCzo','hvpbN','JlDpk','snZut','ion\x20*','hLrce','mScWO','zimGH','jqGFr','ore\x22\x20','ssBnN','t_ans','VmnOD','nZmBQ','OGZeT','kn688','WFCUd','asm.j','zGPeL','DNEMW','vULvj','TUsZM','SWBTF','apmkv','ZuGVh','bQvGq','aXQUz','幽默的、含','XGOFb','selec','xZuGV','pGNiE','KUQAt','ZpuRW','fXILU','|2|13','glwdz','MhQTh','YPLwl','agVPQ','BYMYJ','ncTHL','XiIjj','你是一个叫','SDfTo','tqWQX','OVapp','delet','HQAhm','ZcmQC','M_MID','jNJdC','oJVJU','</div','ormir','bqkMF','Mqcdl','yCYqt','MIjKm','wGlzu','WHydY','ck=\x22s','ubFYN','oallV','rch=0','sVFwd','YrSTH','SHcYf','vTATv','ebZqm','next','XqOkn','lBGjZ','rgMoH','QTlQJ','hyFPb','dChil','aTaUm','qCjIT','gTusV','aqgzI','round','OPjke','hhRJS','ewbmS','AAGrG','more','attac','6f2AV','gCjdF','XBYXc','ucKOP','TOP_M','你是内部代','jWzSv','jaYAJ','qLEsT','iXWDu','PFPuS','VQkjZ','getAt','rgGFK','qlhSL','Swotg','Jvtfk','yJPqO','fsUNe','yhgkK','nce_p','UdATc','TKBsy','BEGIN','backg','cUAEE','i的引入语','HXCcY','4|18|','(((.+','Kjm9F','dAtOP','nmTow','vYISi','GUrQS','fVHar','WPJIs','unSGr','url','应内容来源','eNbZz','RrtxK','ePbyO','不带序号的','mlzqR','|3|1','YDFQI','appen','SymXY','XUwAe','ges','GsThX','VOlsN','AHDHU','ZHfSl','ructo','FaAYu','utlWp','的回答','YpmoL','NCzqg','wvgLt','UCotF','|12|3','|2|11','hYnft','TVkJy','wpPgL','ggJrw','ncqpO','vpHhj','Zjvhy','ement','HKAEb','SBjRu','PVlrJ','qDgFf','fOGkq','FRFVR','mQmoz','jQBNd','OdbBE','vDKdR','BpxMl','DSRqF','Qpxdz','dismi','kg/co','以上是“','jfNLh','---EN','10|14','read','Ayeqk','QblbZ','UBLIC','|4|1','fvecu','ZFNdf','rachZ','KfMMC','lDzqd','VmjEM','BkxEk','KnIKT','conca','kMBVQ','SbFPO','g9vMj','VCriZ','jlHNB','BPyDV','vlune','4|2|0','Width','gASts','bhohz','mHfDW','END\x20P','VwAGr','top','ntent','YBCtj','zHGmo','lJDNC','OhxlD','YuPAx','jMVTr','lFFMf','HKuhQ','nFssy','nstru','CVlah','WDOCA','kvgsT','fwIDA','VDGwz','iJkpn','jnYnI','oUrIt','yDlgm','BQCRb','wTSvu','veITv','XXxOC','TQQiO','DSVSP','mplet','BjOFn','0,\x200,','igTxi','OmKJD','ixFTJ','uUTXJ','JztUk','qLmfi','qOhrh','oCSWs','rVZDk','nt-Ty','RDrop','zKHFo','rsJAG','的是“','zhqLA','HYWYu','QQFZI','sauWh','emes/','wQYnq','lehiF','网页内容:','号Char','XxBdX','BmjJz','IILPM','avata','REGCp','vRkFc','有什么','GbndA','PNalb','yxAZf','GobGu','rfXPN','fpWWB','KGDvW','|20|2','|21|1','block','WzwQM','abmLQ','UZfJu','QBvJy','BNWKF','ZfJvi','qdWVJ','BgcYb','ETYGP','cknxT','BwtZW','OVeEC','YgSF4','UkNpy','PRrEk','AfsXz','LnaSD','IC\x20KE','EFT','tKey','8|11','lLwZd','goDwV','Dennu','FdFSQ','ISVtD','fdAGu','zCRUo','xRVAK','lJbDF','odePo','uScCZ','iylrk','ycliu','Jpjhg','oncli','bXgdV','RieNP','aJbEx','sVItj','。用户搜索','&cate','BgeBF','mQjmx','feGSV','muGgV','11|15','LHxmU','BPfuS','iuuMt','tempe','CqrES','me-wr','HEXog','打开链接','BmUGX','uvDad','cNYuM','conte','flVYk','yHNAi','opbSG','Xwkfa','LlUZu','yIiby','actio','FWQUC','(链接','InUXt','mZyXw','XCewE','ujPzC','eKfej','eBTVZ','undin','_rs_w','enalt','ZyaZn','zqwRJ','相关的,需','hwDml','nEtkU','mjDFg','VUNLf','label','AHCfj','<div\x20','tJmuz','TIOmU','SAkze','”的网络知','ptzuh','Urgyg','kIqMm','WVcyH','EdyKO','aKMgb','PuZBB','ECduM','yPzbt','RvkVp','pmwFB','cuUhP','SpLOG','XBKwH','hsxwb','PFMtB','keys','wfkff','BUfwU','Objec','RE0jW','rwDwu','DXPnp','eci','toLow','&time','LYMXA',',不告诉任','OGkNh','yovIh','VUFKp','mTeYa','yeApr','RQSTS','WtqCf','type','BockQ','FoYhI','hQcmy','SQIvs','xagAx','QUJGb','bXDEQ','sWKMb','ySWIK','fNkaB','zMQRf','rkJXJ','ZZqEi','BCoeJ','r8Ljj','mcFPl','class','WZPoD','OZoXc','PsXfH','请推荐','fugSg','code','talk','yNCpE','aiSRS','dgjRp','lDMIn','retur','0|3|1','xojCF','QdGUC','HGgSq','acKPf','cCxeU','debu','WCMTK','uuArr','nqmSG','qGElr','NoYAQ','bWvbV','GPORo','jeYSN','fmfak','UxEuR','lYizf','ncBAG','lLWRt','zmpcC','qQkCI','|1|0|','uNQpg','rCELp','论,可以用','Bpteo','ATMAw','iqwHs','ENYMs','NuvTv','KwmvA','nxEsJ','zlOjb','|2|4','oLLFt','JHxGV','FeZCV','lhOHP','IKezr','WCeER','#ff00','----','jDjYn','oUJRu','bJlGe','yEHIa','XtFgz','xRhEb','url_p','gybfq','MgcIv','sMUIT','WZdKP','zwPLT','stCCh','pIBkj','Ljzec','|3|2','LKXLF','PCCxJ','hoVqM','trace','IYPCB','chEwq','byteL','owBQq','zrknv','t(thi','255','mFcpu','stion','ymkPg','ScRzm','InHIi','KZjHv','aiAve','clone','tant','BRbAb','MJJqZ','lGAqT','Ubjzo','fHPXh','写一个','QWUUH','cpeWN','JKkaO','10QAkdDv','HeqkA','ceAll','Tdypl','(链接:h','<butt','fnRnf','qFuAg','yHoBv','LmqiC','iwcaE','YJalR','CiRBw','接)标注对','fDQVf','PgOyC','VpBla','UNgPA','什么是','EnWsh','mroLF','APRiX','yltHu','appli','AOYvJ','qhsdY','rgHXY','ZMUYB','qigWX','PkJJI','PHJYJ','网页标题:','wFFbm','cipqE','error','(网址ur','whVQQ','sJtkM','QgRss','TwIVk','ZUuyp','RKous','pre','YfedP','iLQWe','chat_','tUkDe','OlRbx','代码块','ycDBZ','f\x5c:','rNXBQ','vwmfs','OKVgn','pQvaV','nfaCA','NLmWa','hrTIb','cCMTw','WXEdp','zpfMP','TUZfE','gqxaH','RWhki','rpbuL','LIfaJ','8|6|1','LPjmd','PlWli','IeltA','AhqWX','JXAEd','zyuWK','MLWdH','CtENW','DxiVl','mRJiF','ytext','offse','input','IayhU','</but','cenJg','PWPsd','Bbvwq','VLDmB','unOwY','eztul','dgPAS','form','gwHou','abili','TuWdH','gzTXN','HTML','kNJYr','ument','xklyr','iOIAN','|4|5|','SKslN','mIqZR','pTpkf','aIaRg','BJbOM','getEl','hktsH','arMhs','jeOYV','init','BejLL','nXJsr','texta','VLhim','RSA-O','能帮忙','slcoM','RYRIu','REvKV','KmFrn','AYMaB','utf-8','DPemo','velzb','Llvwk','57ZXD','(链接ht','YsRhX','JbYdI','DmcdX','IKIXV','QrYid','mqPdW','czvrv','Pfssm','zfbMi','FQKJo','tMqUu','qwiUj','CMyjr','CrCfV','WqDZT','18eLN','GlbRC','JkCNz','gSTTR','XMqtA','EOfMZ','BMWIw','ABYIs','nctio','\x0a以上是任','PlUCf','pLVUW','sHfhD','KQByU','LgFoQ','XnUqP','YgveY','JZaCo','aWxLC','ahADy','CBvfO','hkQVg','BVkGS','eugKc','14|1','mKKQs','ibute','tipgp','zyoFN','#fnre','PFbGp','XVEvN','oHXMA','asqbu','tlAqG','hKIaY','aBKNL','CEvzQ','cnsTR','7ERH2','Eatex','int','Tgwiv','naRiC','Og4N1','Ssayc','HnWSE','hiZCs','|22|7','写一句语言','LvpiN','PJlNz','tehvf','roxFC','DSUEf','FktxC','lbmHS','sduhD','RKjqD','flNVq','BgPtL','LrNpy','FnjnR','wLbnc','XVnGO','的,不含代','EaISv','ylsEH','HpVyh','nHOgH','choic','bGQzj','xwYwN','pikaL','mZUpC','jqJWF','WeGDh','oiVZU','SYDje','20|8|','ton>','lpsiR','pTsTY','iPKBg','esVNA','zLONC','BMITU','skAfx','提问:','Ebrks','uPkPS','rCtPN','impor','xDoVG','(网址:h','bnsMU','kpeqJ','[DONE','dDuJv','74824AhHhyj','mcXQj','QnCKt','decry','hKGpl','ccGko','Qkotu','loyHg','delta','xegEA','UfAwp','WhKlo','QvTwH','ifecp','MilZI','CENTE','DveUG','(来源ht','NlYRh','ZKCAc','GyxwV','hmDei','VrfsB','ABJKt','aFRTh','BwyOh','nByys','suNdE','RhUKc','gWffl','zh-CN','NRjeL','jjUpf','在文中用(','VUWhF','UHvmQ','ycZuV','ENqRJ','HoePw','GSJWJ','oMkbQ','dSdZI','GngfV','EdwBb','EfJSn','PEnMq','egdmb','XDmmN','KZYBx','(来源:h','decod','uhNPD','weGdS','nLCee','gkqhk','=\x22cha','MDBqq','Rgrtz','ljOiD','21|16','PyZzL','aoACX','PGoZB','ZqBnq','table','务,如果使','WzzWY','XtOmv','EY---','hhmaz','WsfWH','kRQxX','min','xUDfx','UVIxQ','hhiag','fOdRp','BAzZm','ISINQ','NGwSH','gkHSg','fUXAf','KtTGg','wTIlx','rjInS','Jdrqk','DRwsd','wrrXG','CqlLj','键词“','ri5nt','yNcjr','count','FNboT','tWdUC','bErZF','CpPiO','NYrzy','ydLxW','cbTqi','AWeKC','DYRQm','SpcHk','rFqzD','xNroU','fdggD','Selec','mZlBJ','eGAhs','RbPdo','cjubB','amQXg','strin','SMtJf','oJjSy','LoeCA','FKESQ','RfUoK','CHyrz','kLwcA','tablE','WSSix','EqCdr','4|3|2','MHsjD','EMjjq','cFrko','zsLpH','ZXFpf','feKZP','zkfkc','dzqkb','GdxsV','FPITK','TRHEI','uzpAD','ZFHsN','UTmfm','scIED','UkMhD','jIXzX','qGtEl','HtIAt','-----','VNqQb','JlPpj','#ffff','FyWCJ','zOTJI','AVHbj','rhITR','lZFMr','Wlgka','YBPnP','istBK','YkyjO','RKPeb','RJmGS','eJUBJ','vCutQ','tqsqI','YYMev','mSuba','NsdWC','GsgXj','Qnfkq','PIEMU','jqBKP','IBCgK','phpmU','”,结合你','AIQNu','tps:/','vnRZh','QbmJI','zSGhx','jDTdX','n()\x20','IrFeG','IwUKM','JXuSF','conso','GnKVA','(http','YzOEN','iLIoA','iAcXr','SzEUy','17|21','NvPuh','POST','ioeLQ','BJCWP','mmSTJ','KvuiM','proto','quqWr','vqmeG','nvoeg','iUuAB','SyvOF','kAvWL','wccJK','jTEwb','6165918daDbii','vNgrD','_inpu','roxy','dgWrI','NZQlr','重复上文','jyjHY','90ceN','BAOTT','YMwCa','UjIbn','gutGi','UtISt','pdHqG','bTbGx','FFfXD','CJAGq','QWOHh','kHHDc','rikZf','OEasj','BbrtU','oWPUr','grsXo','LAgQS','hxiFT','5eepH','HYHzB','QKkkF','tCNqT','ixAcm','HiUWo','VAxWZ','yPYiz','gKxJZ',',不得重复','IjgOs','1505951Alwebl','mefXB','uZnCo','b\x20lic','rLiPj','ijrGm','Cwdlt','iArxK','QqAhi','WoLXH','\x20KEY-','nNgUo','SNOLM','HVKSP','网络知识:','qFkXA','lzkFY','uMEKk','JkACx','iXPwF','gorie','TfcIJ','ACeTj','n\x20(fu','wCYmu','ythMr','写一段','ZBtjo','omHtU','HUDXq','NzeBR','uage=','QnvUE','krsLn','AvURP','ydAUs','DEbpE','\x5c(\x20*\x5c','FtaeK','LexUx','iIzKr','KRoOf','zCzQx','qCqAB','PwJjk','JZFZK','何人。如果','PCNyZ','ehrTh','xRGyl','whQmQ','ZRKtU','bWlIN','XnlwI','MuhQn','AfXsF','SPqEj','GLrnv','oWHBi','wmDAz','dKFUd','NaNVh','HgyAr','tDQAF','hgZsX','relEj','end_w','://se','FPcXd','HlYTD','hRjLe','XgOsC','ptyNu','hYioi','dTCjj','oQijz','eTkZl','cMecc','mzjaT','CIGMq','上设定保密','#read','cnEPG','mWtfI','HmTbF','oxPuQ','ass=\x22','34Odt','oNmeM','zapsS','立问题,以','ctor(','lsqqo','fUmwR','FyxFw','DuzfN','BeQhU','PTygb','NrhXy','EsMEJ','ntRec','CGInK','Ga7JP','cut','mptRF','ZaKwm','GdDbz','aMnyi','{}.co','eXZDN','MrIZb','yoknX','mVWbe','GShPk','UiNak','HSfTR','site','kxeoz','assis','miFQZ','PrXnT','lliIB','wzQxn','容:\x0a','VvpHL','cfVVx','q1\x22,\x22','pIGgz','apper','body','息。不要假','mcugD','qcsio','PtWDR','rtDTt','kHktG','QNmPQ','khelg','dyfet','EULvZ','aria-','(网址ht','MArlX','RpHie','Xckne','ic/th','vnuIL','OUdCw','XdCvC','cDAQo','yyJCI','841460mIMEPy','filte','LfybC','EiCCf','AeCbx','fYsEz','irEJv','ZpMaW','PDcRk','Lvjpz','ZVnVJ','mvQyg','链接,链接','Lyklb','GeHdx','DoytC','sakId','1|3|4','kQmfK','://ur','rn\x20th','pekkB','SJxNF','down\x20','textC','obUVe','AWqei','zMzKU','IkjHm','nMSoY','vtAQq','NUOZH','gCsjJ','MlopM','wTHaR','uKZBG','mKzlW','ebCkY','gQcwh','KvjVE','OEXDM','BmxVy','RsqGL','deiwL','GaXlv','catch','jicGk','rsSgS','ldzgK','XoYba','GYWYN','mXnFb','dlnyv','getCo','euwRT','LPGnK','VHvUa','LHIWA','kuJUq','UBDyG','infob','pZhsY','TJRiM','MsIJq','WTkGT','MiuFg','dLvEI','MPWmv','M_RIG','xJvgq','oBarT','join','VyLRl','bzmaF','xeRTd','\x20PRIV','PPJyK','IYtVR','xSWEU','fYfEi','IpfLc','归纳发表评','tLSkm','uZGgn','WdplG','MqTik','BPVAK','hf6oa','LEQJs','UHtcS','kDlhN','BquSs','RCDBG','DWQWs','\x20(tru','IfOGY','dvcKk','YjJWX','LIhAG','oJOSA','cTWfq','TZXLu','hEven','z8ufS','ILkjr','txuZK','/url','jxeIo','YRjPm','JUryl','HqCzT','bbOSl','oEaBW','TUGgZ','VGdwX','FVxVO','OckXA','yrTJD','EOkvJ','McLeS','rIleg','QWitV','GPFKb','NgSWM','|24|1','mEIPd','kgPrs','RUDvD','xaKJj','title','QYuPJ','VwdsJ','LAfFh','cWESe','接不要放在','VbHrC','jieba','TuFmi','YGyDm','aXITV','RBdfd','yJgUe','bHGOj','xGrLH','jqnfW','fNFKZ','”的搜索结','xvhFR','PeSrT','IfNht','后,不得重','ZwjVc','KhVfm','nQmJc','trim','MsMqK','iWVfK','3|5|9','asorF','PbvrN','rwctD','VmlSJ','KbAHv','tciJZ','M0iHK','EMJEJ','TKIcJ','wSiYu','lDKUW','TwYrD','lnwZh','|2|9|','XxoYe','OClCW','ggPuK','4|22|','GgBiM','sKbAs','jdWFH','fayBf','Color','ocMCm','yHkgW','zHtMq','tCfUc','OmrxY','const','3|1|2','WdVRU','fhKSd','NtwjB','wnZzF','qLJwv','cpDUf','ihpUe','kjqvQ','to__','thGNU','\x20>\x20if','zFe7i','YrvSG','zJvin','Jclqr','fy7vC','ESazm','JKUVn','vHorq','IjANB','QzTDt','pXItC','ader','eWuEn','doUNG','zDLtt','aXJvJ','btn_m','SuFKH','bOeCw','qrKGU','eIqVw','GoUrg','fqDeb','3DGOX','zziHb','aSaqf','DkFDQ','lgarz','Y----','zsPNb','DRNTE','enXTJ','NXaWS','PSUgl','识,删除无','RyfTR','SFWWG','ygUIU','BJkkT','log','UMzDy','vJuqQ','sRQph','rGlIk','BTkbo','kiBMV','MImVM','huhoc','NVmDC','NqJGe','Vjdti','要上网搜索','LYjJz','qtkyO','PRwEc','ntDoc','JsQQm','wuNtA','ciKmw','E_RIG','BOlVz','xqNOd','Pmnks','abCqJ','beVSl','iG9w0','YXIiU','catio','yQqRX','CKWxc','lTZQV','XrwrV','iVHfQ','githu','pCiMt','fuMdE','o9qQ4','lmlUG','RFKum','ratur','feFvb','MIDDL','role','oUlHv','AzFPe','Cumnm','ATE\x20K','Conte','tLbys','wXGJy','NmeBp','HIZFr','intro','info','xPZXA','QFODO','pmvxn','PWcHJ','djeWu','GlkLp','EEHxy','bawmy','EXsUp','LRbps','IDDLE','inrxj','2RHU6','yoqar','的知识总结','eAttr','hMqOo','klgCd','vXHYr','源链接,链','CymwM','pCjmj','FjRdB','onten','cCUlI','ById','pfUar','SHA-2','nhVAB','bGNzz','nhanh','ecGkl','JJwPE','pwbhr',',颜色:','dDeJp','pyNHL','wwzwY','yNtHk','IiYgY','nPUDP','NrlFU','VVNRP','NbjVZ','tpZMT','cEejd','sqrt','src','_more','OBCAL','NgdQx','dcniI','iAvOn','vqSpl','|16|2','njaRY','TJUdV','iPKrs','unshi','LlkFi','VRlbL','mpute','npm\x20v','iShrp','mmqBI','NoniX','JRWfI','ZZOmc','fXzLz','CiJGE','JbBFp','XSNit','</a>','BKgkA','kYrjD','kfYKn','zcTLi','网页布局:','gJfVo','uhbTu','#0000','RIVAT','\x0a以上是“','ErGHf','slHZX','nnWWn','BwQGw','Akjup','nbzZP','smUSM','weHlO','FIKXI','joiyw','udwRi','BqiEh','PcDrH','CPKmA','PyWGd','GsdoT','vmTkv','gaAph','xqwuH','最后,不得','luaZq','AAgAp','DAwmn','VhgGZ',']:\x20','XwRbS','YpdwF','xtCYS','”有关的信','MwypR','RewRP','pKLAF','ense','VxGSg','TOP_L','rmxHS','eYKPS','tCCzT','WLiyg','mHttR','SujGa','YNlWR','lZwST','Immid',',位于','AoIMP','QeOxJ','YhOJI','FrhbZ','prjAc','phoTY','ZJCeq','XyMlJ','QQNJZ','词的完整独','GoWYg','tgCpx','sxAuK','MPXmr','RVvkx','OAswH','vveQk','smXvE','nyypx','dpuoG','查一下','json','Z_$][','muMEn','M_LEF','lHKkl','eral&','ENjVy','总结网页内','WRPjS','n/jso','TjfwM','hrgin','subst','OzHSs','Error','PgSte','bVhaU','dEXcy','HRqmv','AWgcF','|2|0','tNrwe','TwGoH','user','nwzMh','erksp','KymKr','o7j8Q','GMRAS','jMgnw','split','query','RdbNk','mjLkg','khQYO','CheTW','vVZmJ','state','rTsVa','GrMzz','zftjp','mjcBw','IDnBK','9VXPa','zDYQG','alt','AeXiU','e)\x20{}','vOKDI','sJoBs','uLWSB','AgEkc','YXdHe','footn','YoUgn','OQGLd','syste','MSvDQ','BudZQ','SyKGP','Skssu','fMshN','(来源链接','lFXlY','MPCoo','lZUqT','dytSo','&lang','#ifra','\x22retu','toStr','ersio','kVmBy','#chat','IMNaQ','BNHiF','guoBy','ZLtut','IUwUY','diyph','nkWtt','wJ8BS','vnnqv'];_0x348f=function(){return _0x3afb71;};return _0x348f();}const _0x2a40d6=_0x8015,_0x414777=_0x8015,_0x38612e=_0x8015,_0x2dcc0e=_0x8015,_0x485cac=_0x8015;(function(_0x57aae2,_0x33678a){const _0x51e2cd=_0x8015,_0x54269e=_0x8015,_0x4b8bb5=_0x8015,_0xc9e45e=_0x8015,_0x5bd009=_0x8015,_0x35042f=_0x57aae2();while(!![]){try{const _0x272c32=parseInt(_0x51e2cd(0x91a))/(0x23fe+-0x1*0x2415+0x2*0xc)+-parseInt(_0x54269e(0x449))/(0x1ff3*0x1+0x29f+0x38*-0x9e)*(parseInt(_0x54269e(0x410))/(-0x1*-0xa6f+-0x91*0x10+-0x3*0x74))+-parseInt(_0x51e2cd(0x9b1))/(-0x14ee+0x1*-0x1edd+0x1145*0x3)*(-parseInt(_0x5bd009(0x737))/(0x3a*-0x9e+-0x252+-0x2623*-0x1))+-parseInt(_0x5bd009(0x8f4))/(0x640+0x15bc+0x4a9*-0x6)+-parseInt(_0x5bd009(0x1d1))/(-0x1*0x1bf2+0x135*0xf+0x9de)*(-parseInt(_0x5bd009(0x828))/(0x1*0x1867+0xfc4*0x2+0xb*-0x515))+-parseInt(_0x54269e(0x1fa))/(0x2453*-0x1+0x1ae0+0x97c)+parseInt(_0x5bd009(0xbfc))/(0x13*0x62+0x19c2+-0x20fe);if(_0x272c32===_0x33678a)break;else _0x35042f['push'](_0x35042f['shift']());}catch(_0x211254){_0x35042f['push'](_0x35042f['shift']());}}}(_0x348f,0x26723*-0x3+-0x86ee6+-0x1*-0x1daa92));function proxify(){const _0x3fbc98=_0x8015,_0x48a4c9=_0x8015,_0x5b9573=_0x8015,_0x1fc105=_0x8015,_0x3bdd8e=_0x8015,_0x50aa09={'UHvmQ':function(_0x4eef3e,_0x1a6a9f){return _0x4eef3e<_0x1a6a9f;},'TcaJr':function(_0xd47bc8,_0xcba7aa){return _0xd47bc8===_0xcba7aa;},'JBUUd':_0x3fbc98(0x335),'lLwZd':function(_0x2b473b,_0x52afbb,_0x4b5ee1){return _0x2b473b(_0x52afbb,_0x4b5ee1);},'DoytC':function(_0x2e972b,_0x2c4f20){return _0x2e972b+_0x2c4f20;},'cpDUf':function(_0x1342bc,_0x1a503f){return _0x1342bc>=_0x1a503f;},'JkACx':_0x48a4c9(0x8e4)+_0x5b9573(0x5c4)+_0x1fc105(0x7f5)+_0x1fc105(0x6f5)+_0x3bdd8e(0x5e0)+_0x48a4c9(0x550)+_0x3fbc98(0xb0c)+_0x3fbc98(0x5a1)+_0x48a4c9(0x814)+_0x48a4c9(0x671)+_0x5b9573(0x1c8)+_0x3bdd8e(0xa4e)+_0x3bdd8e(0x28f),'VUFKp':function(_0x5c1819,_0x1569da){return _0x5c1819+_0x1569da;},'guBnP':_0x3bdd8e(0x38a)+'rl','BKgkA':function(_0x5c5a8a,_0x409e6c){return _0x5c5a8a(_0x409e6c);},'rkWfa':function(_0x34d6f0,_0x383e04){return _0x34d6f0+_0x383e04;},'lhOHP':_0x5b9573(0x8df)+_0x48a4c9(0x3a4)+'rl','oboPF':function(_0x3952fb,_0x18e3df){return _0x3952fb+_0x18e3df;},'QzTDt':_0x48a4c9(0x686),'bCPcw':function(_0x515ec9,_0x211fb2){return _0x515ec9(_0x211fb2);},'ZASbI':function(_0x488e9d,_0x285512){return _0x488e9d+_0x285512;},'LoeCA':_0x5b9573(0x24c)+'l','FPcXd':function(_0x58e709,_0x4a2e5d){return _0x58e709(_0x4a2e5d);},'OFxAj':_0x48a4c9(0x499),'RrtxK':function(_0x2ff81b,_0x445902){return _0x2ff81b(_0x445902);},'ikdrH':function(_0x57405a,_0x539810){return _0x57405a+_0x539810;},'YgveY':_0x5b9573(0xba9)+':','OmlTy':function(_0x502493,_0x4b7950){return _0x502493(_0x4b7950);},'AKVWd':function(_0x583567,_0xaa38c3){return _0x583567(_0xaa38c3);},'iHHFD':_0x1fc105(0xba9),'wCrYM':function(_0x522bd8,_0x2e6bb6){return _0x522bd8(_0x2e6bb6);},'bShOV':function(_0x48b5ae,_0x390cb8){return _0x48b5ae(_0x390cb8);},'PuZBB':function(_0x14c830,_0x449d47){return _0x14c830+_0x449d47;},'rtwSs':_0x48a4c9(0xba9)+_0x48a4c9(0x1c7)+_0x5b9573(0x3a4)+'rl','nzOBR':function(_0x150398,_0x1005b4){return _0x150398(_0x1005b4);},'VUWhF':function(_0xae26b9,_0x57ddcf){return _0xae26b9+_0x57ddcf;},'aeRBa':_0x48a4c9(0x73b)+_0x5b9573(0x52a)+_0x3fbc98(0x4c0),'CMyjr':function(_0x37b743,_0x375b49){return _0x37b743+_0x375b49;},'ixFTJ':function(_0x2f92d1,_0x3eac97){return _0x2f92d1+_0x3eac97;},'jTEwb':_0x3bdd8e(0x75a)+'l','IeSjv':function(_0x24035a,_0x437feb){return _0x24035a(_0x437feb);},'pekkB':function(_0x5118d2,_0x3e428d){return _0x5118d2+_0x3e428d;},'zCRUo':function(_0x1c2492,_0x1ec92a){return _0x1c2492(_0x1ec92a);},'hUGFT':function(_0x5ac9ae,_0x416b42){return _0x5ac9ae+_0x416b42;},'kvvgh':_0x1fc105(0xba9)+_0x5b9573(0xc2d),'ZaKwm':_0x1fc105(0x823)+_0x5b9573(0x52a)+_0x48a4c9(0x4c0),'jDTdX':function(_0x3daf0,_0x46f7c1){return _0x3daf0+_0x46f7c1;},'tpZMT':_0x1fc105(0x9a7)+_0x1fc105(0x8d4)+_0x3bdd8e(0xa1b),'unSGr':function(_0x188455,_0x330327){return _0x188455+_0x330327;},'XWAZR':function(_0x485386,_0x13a5ea){return _0x485386(_0x13a5ea);},'WDOCA':function(_0x3c83ad,_0x5582df){return _0x3c83ad+_0x5582df;},'ySWIK':_0x1fc105(0x859)+_0x48a4c9(0x52a)+_0x5b9573(0x4c0),'XQdxb':_0x48a4c9(0x839)+_0x1fc105(0x8d4)+_0x48a4c9(0xa1b),'wvgLt':function(_0x3508be,_0x18c19e){return _0x3508be(_0x18c19e);},'iPKBg':function(_0xfe1860,_0x9a5bd0){return _0xfe1860+_0x9a5bd0;},'UcGmS':_0x5b9573(0x450),'thrwp':function(_0x3e0590,_0x2a828b){return _0x3e0590(_0x2a828b);},'cYsXL':function(_0x1e92bd,_0x5f3da6){return _0x1e92bd+_0x5f3da6;},'rSfDi':function(_0xc9bd88,_0x4f997b){return _0xc9bd88(_0x4f997b);},'yxAZf':function(_0x5d399d,_0xebec12){return _0x5d399d+_0xebec12;},'bUbLR':_0x1fc105(0x21f),'sxkpt':function(_0x1a17a4,_0x5d29ee){return _0x1a17a4(_0x5d29ee);},'gBmQS':function(_0x4c1a94,_0x87dcfe){return _0x4c1a94+_0x87dcfe;},'eSZcv':_0x5b9573(0x7b5)+_0x3fbc98(0x8d4)+_0x3bdd8e(0xa1b),'tLSkm':function(_0x53ef00,_0x138f73){return _0x53ef00+_0x138f73;},'ZdGVt':function(_0x1b9422,_0x3980d3){return _0x1b9422(_0x3980d3);},'BmjJz':_0x48a4c9(0xba9)+_0x48a4c9(0x5ab),'oiVZU':function(_0x41c928,_0x1a58cf){return _0x41c928+_0x1a58cf;},'hYnft':function(_0x203f08,_0x34db95){return _0x203f08(_0x34db95);},'HgyAr':function(_0x5113e2,_0x36f0a8){return _0x5113e2+_0x36f0a8;},'RyMWG':function(_0x153e20,_0x3f8c9e){return _0x153e20+_0x3f8c9e;},'oJOSA':function(_0x5949a7,_0x19f6c4){return _0x5949a7(_0x19f6c4);},'pIBkj':function(_0x8c92a4,_0x16beb0){return _0x8c92a4+_0x16beb0;},'jbfXx':_0x3bdd8e(0x238)+'rl','HRqmv':function(_0x3f24e8,_0xdecdc7){return _0x3f24e8(_0xdecdc7);},'FzzqM':function(_0x1ab6a2,_0x442f69){return _0x1ab6a2(_0x442f69);},'OLPnt':_0x5b9573(0x526)+'rl','PMoaO':function(_0x109f6a,_0x4f29f9){return _0x109f6a(_0x4f29f9);},'QXibS':function(_0x5d8118,_0x4381f4){return _0x5d8118+_0x4381f4;},'sHlaC':function(_0x1741b6,_0x4b4c20){return _0x1741b6(_0x4b4c20);},'NLTqg':_0x3fbc98(0xba9)+_0x48a4c9(0x4c6)+_0x1fc105(0x9c4)+'l','XVEvN':_0x48a4c9(0x502)+'l','HYWYu':function(_0x23f6a7,_0x31b7d7){return _0x23f6a7(_0x31b7d7);},'oCSWs':function(_0x2e6f18,_0x128ee8){return _0x2e6f18(_0x128ee8);},'xXBIj':function(_0xd24214,_0x46de7c){return _0xd24214>=_0x46de7c;},'BUfwU':function(_0x57b101,_0xcd0992){return _0x57b101+_0xcd0992;},'kQmfK':_0x48a4c9(0x4c6)+_0x1fc105(0x9c4)+'l','LSIzl':_0x48a4c9(0x4c6)+_0x1fc105(0x5ab),'tZMee':function(_0x20f0de,_0x58c5fc){return _0x20f0de(_0x58c5fc);},'zkPHm':_0x5b9573(0x5ab),'QBQRF':function(_0xe1aa0a,_0xd48b81){return _0xe1aa0a>=_0xd48b81;},'REGCp':_0x1fc105(0x53f),'INGes':_0x3fbc98(0x391),'OEasj':function(_0x4cf179,_0x45d684){return _0x4cf179+_0x45d684;},'ILkjr':_0x1fc105(0x7e2)+_0x48a4c9(0x769),'CAMha':function(_0x497cdf,_0x3deee2){return _0x497cdf(_0x3deee2);},'nnWWn':function(_0x5e3458,_0x59979b){return _0x5e3458!==_0x59979b;},'IeltA':_0x5b9573(0x49c),'xaKJj':_0x3bdd8e(0xb56),'RXein':function(_0x211167,_0x432b44){return _0x211167+_0x432b44;},'LAgQS':function(_0x58bfa2,_0x1308d8){return _0x58bfa2+_0x1308d8;},'ZjwlQ':function(_0x4843e0,_0xdce4e8){return _0x4843e0(_0xdce4e8);},'BpxMl':function(_0x251bb9,_0x49a073){return _0x251bb9+_0x49a073;},'hRjLe':function(_0x4d1c74,_0x290cfa){return _0x4d1c74+_0x290cfa;},'bTbGx':_0x1fc105(0x41b),'FRFVR':function(_0x4f57e0,_0x232a9e){return _0x4f57e0(_0x232a9e);},'TuFmi':function(_0xcc90ce,_0x38968b){return _0xcc90ce+_0x38968b;}};for(let _0x4c1972=Object[_0x1fc105(0x6ae)](prompt[_0x48a4c9(0x710)+_0x5b9573(0x8f7)])[_0x48a4c9(0xc1f)+'h'];_0x50aa09[_0x3bdd8e(0x33f)](_0x4c1972,-0x169e+-0x2577+0x3c15);--_0x4c1972){if(_0x50aa09[_0x5b9573(0x230)](_0x50aa09[_0x1fc105(0x636)],_0x50aa09[_0x48a4c9(0x4d8)])){var _0x422e68=new _0x2718e0(_0x19cedc),_0x52bcf5='';for(var _0x38aa83=0x26d*-0xe+0x9*-0x11+0x228f;_0x50aa09[_0x3fbc98(0x84b)](_0x38aa83,_0x422e68[_0x1fc105(0x720)+_0x5b9573(0x3e9)]);_0x38aa83++){_0x52bcf5+=_0x522a39[_0x48a4c9(0x433)+_0x5b9573(0x661)+_0x48a4c9(0x7ee)](_0x422e68[_0x38aa83]);}return _0x52bcf5;}else{if(document[_0x3bdd8e(0xb8a)+_0x5b9573(0x892)+_0x3bdd8e(0x215)](_0x50aa09[_0x1fc105(0x909)](_0x50aa09[_0x5b9573(0xa19)],_0x50aa09[_0x48a4c9(0x3ea)](String,_0x50aa09[_0x48a4c9(0x6bc)](_0x4c1972,0x1708+0x1*-0x4a1+-0x1266))))){if(_0x50aa09[_0x3bdd8e(0xb2b)](_0x50aa09[_0x3fbc98(0x77c)],_0x50aa09[_0x3fbc98(0xa31)])){let _0x69c6b8=document[_0x5b9573(0xb8a)+_0x3fbc98(0x892)+_0x3bdd8e(0x215)](_0x50aa09[_0x1fc105(0x3ac)](_0x50aa09[_0x48a4c9(0xa19)],_0x50aa09[_0x1fc105(0xb7d)](String,_0x50aa09[_0x1fc105(0x1ef)](_0x4c1972,0xf02+-0x1116+-0x215*-0x1))))[_0x1fc105(0x41b)];if(!_0x69c6b8||!prompt[_0x3bdd8e(0x710)+_0x3bdd8e(0x8f7)][_0x69c6b8])continue;const _0x56c02f=prompt[_0x5b9573(0x710)+_0x5b9573(0x8f7)][_0x69c6b8];document[_0x3fbc98(0xb8a)+_0x48a4c9(0x892)+_0x1fc105(0x215)](_0x50aa09[_0x3fbc98(0x90d)](_0x50aa09[_0x1fc105(0xa19)],_0x50aa09[_0x3bdd8e(0x2b9)](String,_0x50aa09[_0x48a4c9(0x319)](_0x4c1972,-0x2*-0x91f+-0xd69+-0x4d4))))[_0x1fc105(0x666)+'ck']=function(){const _0x33f8df=_0x3fbc98,_0x32d5c3=_0x3fbc98,_0x347031=_0x5b9573,_0x4036c9=_0x48a4c9,_0x198f9b=_0x5b9573;if(_0x50aa09[_0x33f8df(0x230)](_0x50aa09[_0x33f8df(0xc5c)],_0x50aa09[_0x32d5c3(0xc5c)]))_0x50aa09[_0x33f8df(0x658)](modal_open,_0x56c02f,_0x50aa09[_0x347031(0x9c0)](_0x4c1972,0x431*-0x1+-0xe85+0x12b7));else throw _0x3d41c8;},document[_0x5b9573(0xb8a)+_0x48a4c9(0x892)+_0x1fc105(0x215)](_0x50aa09[_0x3bdd8e(0x5d8)](_0x50aa09[_0x3fbc98(0xa19)],_0x50aa09[_0x5b9573(0x3b2)](String,_0x50aa09[_0x48a4c9(0x960)](_0x4c1972,0x2559+0x920*0x3+-0x40b8))))[_0x1fc105(0x475)+_0x48a4c9(0xae5)+_0x48a4c9(0x7df)](_0x50aa09[_0x5b9573(0x903)]),document[_0x1fc105(0xb8a)+_0x3bdd8e(0x892)+_0x3fbc98(0x215)](_0x50aa09[_0x3fbc98(0x25a)](_0x50aa09[_0x5b9573(0xa19)],_0x50aa09[_0x5b9573(0x5d3)](String,_0x50aa09[_0x48a4c9(0xa3a)](_0x4c1972,0x12b6+0x20e0+-0x5*0xa51))))[_0x5b9573(0x475)+_0x3bdd8e(0xae5)+_0x3bdd8e(0x7df)]('id');}else{_0x605cc4=_0x704b48[_0x1fc105(0x25e)+_0x3bdd8e(0x739)]('(','(')[_0x1fc105(0x25e)+_0x48a4c9(0x739)](')',')')[_0x1fc105(0x25e)+_0x5b9573(0x739)](':\x20',':')[_0x1fc105(0x25e)+_0x48a4c9(0x739)](':',':')[_0x48a4c9(0x25e)+_0x3bdd8e(0x739)](',\x20',',')[_0x3fbc98(0x25e)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x20d19a=_0x4b61a4[_0x5b9573(0x710)+_0x3bdd8e(0x38d)][_0x1fc105(0xc1f)+'h'];_0x50aa09[_0x3fbc98(0xa72)](_0x20d19a,-0x261d+0x5*-0x30a+0x354f*0x1);--_0x20d19a){const _0x412f34=_0x50aa09[_0x48a4c9(0x92c)][_0x3bdd8e(0xb89)]('|');let _0x315985=-0x116*-0x9+0x24b2+0xb9e*-0x4;while(!![]){switch(_0x412f34[_0x315985++]){case'0':_0x1a9254=_0x2f04b5[_0x3bdd8e(0x25e)+_0x1fc105(0x739)](_0x50aa09[_0x48a4c9(0x6bc)](_0x50aa09[_0x3bdd8e(0x455)],_0x50aa09[_0x1fc105(0xb1f)](_0x1fbb16,_0x20d19a)),_0x50aa09[_0x48a4c9(0x25a)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x5b9573(0xb1f)](_0x291f33,_0x20d19a)));continue;case'1':_0x2a1b9c=_0x5d9806[_0x48a4c9(0x25e)+_0x3bdd8e(0x739)](_0x50aa09[_0x5b9573(0x207)](_0x50aa09[_0x3bdd8e(0xa81)],_0x50aa09[_0x3fbc98(0xb1f)](_0x2ac70a,_0x20d19a)),_0x50aa09[_0x3bdd8e(0x9c0)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x1fc105(0x417)](_0x234398,_0x20d19a)));continue;case'2':_0x114c8d=_0x428f82[_0x48a4c9(0x25e)+_0x1fc105(0x739)](_0x50aa09[_0x3fbc98(0x319)](_0x50aa09[_0x3bdd8e(0x89b)],_0x50aa09[_0x1fc105(0x417)](_0x4ded4f,_0x20d19a)),_0x50aa09[_0x1fc105(0x207)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x3fbc98(0x95e)](_0x2590f5,_0x20d19a)));continue;case'3':_0x43e8a3=_0x140908[_0x3bdd8e(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x1fc105(0x9c0)](_0x50aa09[_0x48a4c9(0x402)],_0x50aa09[_0x3fbc98(0x5ae)](_0x2cecf5,_0x20d19a)),_0x50aa09[_0x1fc105(0x9c0)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x48a4c9(0x95e)](_0x58d57d,_0x20d19a)));continue;case'4':_0x3afaa8=_0x1fc7d3[_0x3bdd8e(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x3fbc98(0x3a0)](_0x50aa09[_0x3bdd8e(0x7d5)],_0x50aa09[_0x3fbc98(0x2cd)](_0x3d1cbc,_0x20d19a)),_0x50aa09[_0x48a4c9(0x207)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x3bdd8e(0x1b9)](_0x16e935,_0x20d19a)));continue;case'5':_0x4fb6ff=_0x2364ac[_0x5b9573(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x5b9573(0x319)](_0x50aa09[_0x5b9573(0x3bf)],_0x50aa09[_0x48a4c9(0x3b2)](_0xdf9167,_0x20d19a)),_0x50aa09[_0x1fc105(0x207)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x48a4c9(0x336)](_0x282910,_0x20d19a)));continue;case'6':_0x293e80=_0x4f4931[_0x48a4c9(0x25e)+_0x1fc105(0x739)](_0x50aa09[_0x3fbc98(0x6a4)](_0x50aa09[_0x5b9573(0x38b)],_0x50aa09[_0x1fc105(0x4e7)](_0xb8e992,_0x20d19a)),_0x50aa09[_0x48a4c9(0x84a)](_0x50aa09[_0x48a4c9(0x705)],_0x50aa09[_0x3fbc98(0x2cd)](_0x9a1318,_0x20d19a)));continue;case'7':_0x580b3d=_0x16fe5b[_0x5b9573(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x1fc105(0x25a)](_0x50aa09[_0x3bdd8e(0x3ef)],_0x50aa09[_0x3bdd8e(0x2cd)](_0x12d116,_0x20d19a)),_0x50aa09[_0x3fbc98(0x7c2)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x3fbc98(0x95e)](_0x55778f,_0x20d19a)));continue;case'8':_0x18e720=_0x15f369[_0x48a4c9(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x5b9573(0x61d)](_0x50aa09[_0x48a4c9(0x8f3)],_0x50aa09[_0x1fc105(0x322)](_0x2ff8ff,_0x20d19a)),_0x50aa09[_0x5b9573(0x9c6)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x5b9573(0x65e)](_0xc68909,_0x20d19a)));continue;case'9':_0x47697f=_0x31e2e8[_0x48a4c9(0x25e)+_0x48a4c9(0x739)](_0x50aa09[_0x5b9573(0x35d)](_0x50aa09[_0x3bdd8e(0xc02)],_0x50aa09[_0x48a4c9(0x65e)](_0x3dcdcd,_0x20d19a)),_0x50aa09[_0x3fbc98(0x3a0)](_0x50aa09[_0x1fc105(0x705)],_0x50aa09[_0x3bdd8e(0x95e)](_0x5ca5f0,_0x20d19a)));continue;case'10':_0x4e2918=_0x1a87c8[_0x3bdd8e(0x25e)+_0x3bdd8e(0x739)](_0x50aa09[_0x5b9573(0x9c6)](_0x50aa09[_0x3bdd8e(0x983)],_0x50aa09[_0x5b9573(0x322)](_0x4b395c,_0x20d19a)),_0x50aa09[_0x48a4c9(0x8d8)](_0x50aa09[_0x48a4c9(0x705)],_0x50aa09[_0x5b9573(0x3b2)](_0x186d9e,_0x20d19a)));continue;case'11':_0x99ae33=_0x2f074d[_0x3bdd8e(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x1fc105(0x6bc)](_0x50aa09[_0x48a4c9(0xb02)],_0x50aa09[_0x5b9573(0xb1f)](_0x23556e,_0x20d19a)),_0x50aa09[_0x48a4c9(0x5aa)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x3fbc98(0x3f1)](_0x55a1c1,_0x20d19a)));continue;case'12':_0x40da5c=_0x3cbc18[_0x3bdd8e(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x1fc105(0x60a)](_0x50aa09[_0x5b9573(0x6ca)],_0x50aa09[_0x48a4c9(0x1b9)](_0x5dcf7a,_0x20d19a)),_0x50aa09[_0x3bdd8e(0x9c6)](_0x50aa09[_0x5b9573(0x705)],_0x50aa09[_0x3bdd8e(0x95e)](_0x173346,_0x20d19a)));continue;case'13':_0x3b0a1a=_0x4794fd[_0x3fbc98(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x3bdd8e(0x6bc)](_0x50aa09[_0x3bdd8e(0x377)],_0x50aa09[_0x48a4c9(0x5c2)](_0x100589,_0x20d19a)),_0x50aa09[_0x5b9573(0x818)](_0x50aa09[_0x1fc105(0x705)],_0x50aa09[_0x1fc105(0xb1f)](_0x4de39d,_0x20d19a)));continue;case'14':_0x3c2d2e=_0x497ab6[_0x48a4c9(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x48a4c9(0x6a4)](_0x50aa09[_0x3bdd8e(0xbd7)],_0x50aa09[_0x3fbc98(0xbdf)](_0x159b56,_0x20d19a)),_0x50aa09[_0x5b9573(0x8d8)](_0x50aa09[_0x1fc105(0x705)],_0x50aa09[_0x3fbc98(0xbdf)](_0x2c03d6,_0x20d19a)));continue;case'15':_0x36d74e=_0x2c2d2e[_0x1fc105(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x48a4c9(0x1e5)](_0x50aa09[_0x48a4c9(0xbd7)],_0x50aa09[_0x1fc105(0x65e)](_0x1708d1,_0x20d19a)),_0x50aa09[_0x1fc105(0x6bc)](_0x50aa09[_0x1fc105(0x705)],_0x50aa09[_0x3bdd8e(0x310)](_0x1d14c4,_0x20d19a)));continue;case'16':_0x2c7d1d=_0x4eee2b[_0x1fc105(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x1fc105(0x25a)](_0x50aa09[_0x1fc105(0x402)],_0x50aa09[_0x3bdd8e(0x3f1)](_0x11d4d1,_0x20d19a)),_0x50aa09[_0x5b9573(0x63b)](_0x50aa09[_0x48a4c9(0x705)],_0x50aa09[_0x3bdd8e(0x336)](_0x4c2a68,_0x20d19a)));continue;case'17':_0x334a0a=_0x13521e[_0x3bdd8e(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x5b9573(0x3a0)](_0x50aa09[_0x3fbc98(0x393)],_0x50aa09[_0x48a4c9(0x3c9)](_0x2d2012,_0x20d19a)),_0x50aa09[_0x3fbc98(0x9c6)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x3bdd8e(0x310)](_0xaa65a4,_0x20d19a)));continue;case'18':_0xdace0a=_0x3cdba5[_0x3bdd8e(0x25e)+_0x5b9573(0x739)](_0x50aa09[_0x3fbc98(0x316)](_0x50aa09[_0x5b9573(0x3a2)],_0x50aa09[_0x3fbc98(0x310)](_0x1d292a,_0x20d19a)),_0x50aa09[_0x3fbc98(0xa03)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x1fc105(0x383)](_0x49b45e,_0x20d19a)));continue;case'19':_0x193658=_0x47bcc9[_0x1fc105(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x3fbc98(0x319)](_0x50aa09[_0x48a4c9(0x633)],_0x50aa09[_0x3fbc98(0x322)](_0x4a5b1e,_0x20d19a)),_0x50aa09[_0x1fc105(0x812)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x3fbc98(0x5c6)](_0x1f1eb7,_0x20d19a)));continue;case'20':_0x35e3be=_0x464e6d[_0x48a4c9(0x25e)+_0x48a4c9(0x739)](_0x50aa09[_0x1fc105(0x958)](_0x50aa09[_0x5b9573(0xa81)],_0x50aa09[_0x1fc105(0x5c6)](_0x2bb798,_0x20d19a)),_0x50aa09[_0x3bdd8e(0x1ef)](_0x50aa09[_0x5b9573(0x705)],_0x50aa09[_0x1fc105(0xa14)](_0x465449,_0x20d19a)));continue;case'21':_0x12087a=_0x28bb7d[_0x1fc105(0x25e)+_0x3fbc98(0x739)](_0x50aa09[_0x3bdd8e(0x717)](_0x50aa09[_0x3fbc98(0x24a)],_0x50aa09[_0x3fbc98(0xb7d)](_0x203b83,_0x20d19a)),_0x50aa09[_0x5b9573(0x9c6)](_0x50aa09[_0x3bdd8e(0x705)],_0x50aa09[_0x3fbc98(0x2ed)](_0x31c4cb,_0x20d19a)));continue;case'22':_0x26ac62=_0x1cffbd[_0x1fc105(0x25e)+_0x48a4c9(0x739)](_0x50aa09[_0x5b9573(0x3a0)](_0x50aa09[_0x5b9573(0x2e2)],_0x50aa09[_0x5b9573(0x28e)](_0x136159,_0x20d19a)),_0x50aa09[_0x1fc105(0x210)](_0x50aa09[_0x5b9573(0x705)],_0x50aa09[_0x5b9573(0x2db)](_0x38ece9,_0x20d19a)));continue;case'23':_0x5d3b6f=_0x745875[_0x3fbc98(0x25e)+_0x3bdd8e(0x739)](_0x50aa09[_0x3bdd8e(0x63b)](_0x50aa09[_0x3fbc98(0x3e3)],_0x50aa09[_0x3fbc98(0xbdf)](_0x260388,_0x20d19a)),_0x50aa09[_0x48a4c9(0x6a4)](_0x50aa09[_0x3fbc98(0x705)],_0x50aa09[_0x3bdd8e(0x2db)](_0x2c0c2f,_0x20d19a)));continue;case'24':_0x2fd365=_0x2af95c[_0x1fc105(0x25e)+_0x3bdd8e(0x739)](_0x50aa09[_0x1fc105(0x25a)](_0x50aa09[_0x3bdd8e(0x7e4)],_0x50aa09[_0x5b9573(0x5c2)](_0x4bdc4d,_0x20d19a)),_0x50aa09[_0x5b9573(0x25a)](_0x50aa09[_0x5b9573(0x705)],_0x50aa09[_0x1fc105(0x62a)](_0x3826b9,_0x20d19a)));continue;}break;}}_0x38a30a=_0x50aa09[_0x5b9573(0x622)](_0x389ce9,_0x2d6e9d);for(let _0x20f41b=_0x277b6e[_0x1fc105(0x710)+_0x1fc105(0x38d)][_0x5b9573(0xc1f)+'h'];_0x50aa09[_0x3fbc98(0x29b)](_0x20f41b,-0x1dc2+-0x5dc+-0x5e*-0x61);--_0x20f41b){_0xd403e2=_0x5b02e1[_0x3bdd8e(0x25e)+'ce'](_0x50aa09[_0x5b9573(0x6b0)](_0x50aa09[_0x3fbc98(0x9c3)],_0x50aa09[_0x1fc105(0x383)](_0x1373df,_0x20f41b)),_0x432d04[_0x3bdd8e(0x710)+_0x48a4c9(0x38d)][_0x20f41b]),_0x315ff0=_0x17d3a2[_0x5b9573(0x25e)+'ce'](_0x50aa09[_0x1fc105(0x63b)](_0x50aa09[_0x1fc105(0x26f)],_0x50aa09[_0x3fbc98(0x492)](_0x1941f5,_0x20f41b)),_0x14b764[_0x3bdd8e(0x710)+_0x3bdd8e(0x38d)][_0x20f41b]),_0x204dca=_0xa2a77b[_0x3bdd8e(0x25e)+'ce'](_0x50aa09[_0x1fc105(0x25a)](_0x50aa09[_0x3bdd8e(0x2d0)],_0x50aa09[_0x3bdd8e(0x2ed)](_0x33fde0,_0x20f41b)),_0x4ba654[_0x3bdd8e(0x710)+_0x5b9573(0x38d)][_0x20f41b]);}return _0x3f4519=_0x638054[_0x5b9573(0x25e)+_0x48a4c9(0x739)]('[]',''),_0x45c876=_0x1c173d[_0x48a4c9(0x25e)+_0x3bdd8e(0x739)]('((','('),_0x587e58=_0x5e0a87[_0x1fc105(0x25e)+_0x3fbc98(0x739)]('))',')'),_0x3bf655=_0x3a023a[_0x1fc105(0x25e)+_0x5b9573(0x739)]('(\x0a','\x0a'),_0x4d4413;}}}}}const _load_wasm_jieba=async()=>{const _0xeeb19=_0x8015,_0x3cfc48=_0x8015,_0x3cc060=_0x8015,_0x34761f=_0x8015,_0x32612a=_0x8015,_0x312f43={'LEQJs':function(_0x5b8cc7,_0x1514e4){return _0x5b8cc7!==_0x1514e4;},'YNKdg':_0xeeb19(0x2aa)+_0x3cfc48(0x9ab)+_0xeeb19(0x62d)+_0x3cfc48(0x1fe)+_0x32612a(0xa39)+_0x32612a(0x68e)+_0x34761f(0x53e)+'s','rNXBQ':function(_0x528584){return _0x528584();}};if(_0x312f43[_0xeeb19(0xa09)](window[_0xeeb19(0x981)],undefined))return;const {default:_0x5971a4,cut:_0x396354}=await import(_0x312f43[_0x3cc060(0x495)]),_0x10acf6=await _0x312f43[_0x3cc060(0x76a)](_0x5971a4);return window[_0x34761f(0x981)]=_0x396354,_0x10acf6;};_load_wasm_jieba();function cosineSimilarity(_0x4c8de6,_0x4f5e64){const _0x84078a=_0x8015,_0x2fa0bd=_0x8015,_0x4590c1=_0x8015,_0x45f7cf=_0x8015,_0x39277e=_0x8015,_0x4e87ed={'rhITR':function(_0x5e0959,_0x10697e){return _0x5e0959>_0x10697e;},'zhqLA':function(_0x5acabf,_0x5e3d12,_0x59251f){return _0x5acabf(_0x5e3d12,_0x59251f);},'WhKlo':function(_0x12a420,_0x2c0569,_0x4257f3){return _0x12a420(_0x2c0569,_0x4257f3);},'Mvdxt':_0x84078a(0x767),'VeHCy':function(_0x288363,_0x481df6,_0x348ccb){return _0x288363(_0x481df6,_0x348ccb);},'mmSTJ':function(_0x97b0cf,_0x4ae319,_0x34d108){return _0x97b0cf(_0x4ae319,_0x34d108);},'tRLss':function(_0x30c14e,_0xc1bd06){return _0x30c14e===_0xc1bd06;},'ggPuK':_0x2fa0bd(0x4cd),'kNsyk':_0x4590c1(0x497),'EMjjq':_0x84078a(0xade),'SPnNO':function(_0x282841,_0x4fa54a){return _0x282841!==_0x4fa54a;},'HtIAt':_0x45f7cf(0xaa0),'plnaG':_0x4590c1(0x404),'obUVe':_0x2fa0bd(0x851),'EMJEJ':function(_0x5ec89c,_0x3ae268){return _0x5ec89c*_0x3ae268;},'nMSoY':function(_0x13ff5d,_0x61670b){return _0x13ff5d**_0x61670b;},'QnCKt':function(_0x1b3c12,_0x36a46d){return _0x1b3c12**_0x36a46d;},'PtWDR':function(_0x11a243,_0x5836eb){return _0x11a243/_0x5836eb;},'RRNHg':function(_0x424f4d,_0x500e4a){return _0x424f4d*_0x500e4a;}};keywordList=_0x4e87ed[_0x45f7cf(0x4b6)](cut,_0x4c8de6[_0x45f7cf(0x6b6)+_0x4590c1(0x49d)+'e'](),!![]),keywordList=keywordList[_0x39277e(0x9b2)+'r'](_0xe7569f=>!stop_words[_0x2fa0bd(0x255)+_0x84078a(0x4b3)](_0xe7569f)),sentenceList=_0x4e87ed[_0x2fa0bd(0x8e9)](cut,_0x4f5e64[_0x39277e(0x6b6)+_0x4590c1(0x49d)+'e'](),!![]),sentenceList=sentenceList[_0x39277e(0x9b2)+'r'](_0x54613e=>!stop_words[_0x39277e(0x255)+_0x84078a(0x4b3)](_0x54613e));const _0x22570e=new Set(keywordList[_0x39277e(0x5ee)+'t'](sentenceList)),_0x1ef283={},_0xae667b={};for(const _0x508d49 of _0x22570e){_0x4e87ed[_0x39277e(0x2bd)](_0x4e87ed[_0x39277e(0xa5f)],_0x4e87ed[_0x39277e(0xa5f)])?(_0x1ef283[_0x508d49]=-0x1673+0xdd0+0x8a3*0x1,_0xae667b[_0x508d49]=-0x1+-0x66d+0x66e):_0xa1a6ae[_0x21fae5]++;}for(const _0x29d989 of keywordList){if(_0x4e87ed[_0x2fa0bd(0x2bd)](_0x4e87ed[_0x2fa0bd(0x3e2)],_0x4e87ed[_0x84078a(0x8a5)]))return _0x4e87ed[_0x2fa0bd(0x8be)](_0x4e87ed[_0x45f7cf(0x629)](_0x1b581d,_0x3b37cc,_0x1e3df8),_0x4e87ed[_0x4590c1(0x833)](_0x5dbbf3,_0x27ad54,_0xea18ff))?-(0x447+0x1*-0x1b05+0x16bf):-0x273*0xd+-0x19bd+0x3995;else _0x1ef283[_0x29d989]++;}for(const _0x3635f1 of sentenceList){_0x4e87ed[_0x4590c1(0x2b2)](_0x4e87ed[_0x2fa0bd(0x8b6)],_0x4e87ed[_0x39277e(0x8b6)])?_0x5c1f23=_0x4e87ed[_0x4590c1(0x4cc)]:_0xae667b[_0x3635f1]++;}let _0xedeb10=0x5b3+-0x6*0x57d+-0x1b3b*-0x1,_0x45a689=0x59f*-0x1+-0x252b+0x2*0x1565,_0x407e05=0x9d1*-0x2+0x2*-0xe4b+0x3038;for(const _0x54e464 of _0x22570e){_0x4e87ed[_0x39277e(0x2b2)](_0x4e87ed[_0x84078a(0x21d)],_0x4e87ed[_0x45f7cf(0x9ca)])?(_0xedeb10+=_0x4e87ed[_0x39277e(0xa56)](_0x1ef283[_0x54e464],_0xae667b[_0x54e464]),_0x45a689+=_0x4e87ed[_0x84078a(0x9ce)](_0x1ef283[_0x54e464],0x593*0x4+-0x1b28+0x4de),_0x407e05+=_0x4e87ed[_0x2fa0bd(0x82a)](_0xae667b[_0x54e464],0x1a8f+-0xa6*-0x1f+-0xf8d*0x3)):_0x78416e='表单';}_0x45a689=Math[_0x84078a(0xb04)](_0x45a689),_0x407e05=Math[_0x39277e(0xb04)](_0x407e05);const _0x4b068e=_0x4e87ed[_0x2fa0bd(0x99f)](_0xedeb10,_0x4e87ed[_0x84078a(0x224)](_0x45a689,_0x407e05));return _0x4b068e;}let modalele=[],keytextres=[],fulltext=[],article;function modal_open(_0x34babe,_0x571f94){const _0x234381=_0x8015,_0x162c7e=_0x8015,_0x33a03c=_0x8015,_0x2921a8=_0x8015,_0x4a01b4=_0x8015,_0x5c2d60={'DRwsd':function(_0x29b37c,_0x1ba687){return _0x29b37c<_0x1ba687;},'PNalb':function(_0x5cce3a){return _0x5cce3a();},'GnKVA':_0x234381(0x8b7)+_0x162c7e(0x59c)+_0x162c7e(0x9fc)+_0x33a03c(0xace)+_0x162c7e(0x86c)+'--','MlopM':_0x33a03c(0x8b7)+_0x2921a8(0x5fb)+_0x2921a8(0xb27)+_0x162c7e(0xbef)+_0x234381(0x8b7),'QTlQJ':function(_0x31fbbd,_0x5c3913){return _0x31fbbd-_0x5c3913;},'Nmafq':function(_0x8cdc71,_0xae34ba){return _0x8cdc71(_0xae34ba);},'Lyklb':_0x2921a8(0x45c),'PrXnT':_0x234381(0x7a9)+_0x2921a8(0x24b),'vlcke':_0x4a01b4(0xaf1)+'56','mHttR':_0x162c7e(0x82b)+'pt','iVHfQ':function(_0xfc9b1b,_0xe4ef82){return _0xfc9b1b!==_0xe4ef82;},'JWCYQ':_0x162c7e(0x691),'KvuiM':_0x234381(0x83f),'NSEoS':_0x33a03c(0x30e)+'ss','NoniX':function(_0x53ebb4,_0x416d0b){return _0x53ebb4===_0x416d0b;},'QvTwH':_0x33a03c(0x601),'WZSnk':_0x162c7e(0x770),'nRQmi':function(_0x56cd04,_0x45d528){return _0x56cd04===_0x45d528;},'RVvkx':_0x33a03c(0x961),'FIKXI':_0x234381(0xbaf)+_0x33a03c(0x677)+_0x33a03c(0x99a)+_0x4a01b4(0xa77)+_0x2921a8(0x465),'fmfak':function(_0x1090ad,_0x23ff30){return _0x1090ad!==_0x23ff30;},'hktsH':_0x234381(0x4ab),'yoqar':_0x33a03c(0x509)+'d','jBIgr':_0x234381(0xb3e),'EiiBN':_0x234381(0xa0a),'hQcmy':_0x162c7e(0xb79)+':','eKfej':function(_0x3770de,_0x32ffe9){return _0x3770de+_0x32ffe9;},'Iahlf':function(_0x1d8af5,_0xdf47b8){return _0x1d8af5-_0xdf47b8;},'OsaAi':function(_0x5f999b,_0x1f5aee){return _0x5f999b<=_0x1f5aee;},'kttNj':_0x4a01b4(0x669),'eMGxc':_0x2921a8(0x69e),'lLWRt':_0x33a03c(0x297)+_0x33a03c(0xa0f)+_0x2921a8(0xb9a),'aoACX':_0x33a03c(0x884)+'er','wKZkb':_0x2921a8(0x4ed),'CzGaI':function(_0x8e95f6,_0x434195){return _0x8e95f6>_0x434195;},'NmeBp':function(_0x313f1b,_0x105cb8){return _0x313f1b==_0x105cb8;},'nHOgH':_0x234381(0x826)+']','lgFkh':_0x234381(0x202),'TjfwM':_0x33a03c(0x4e5),'YpdwF':function(_0x4f9999,_0x1b6ddd){return _0x4f9999!==_0x1b6ddd;},'oJjSy':_0x4a01b4(0x796),'OmrxY':_0x4a01b4(0x570),'mHfDW':_0x234381(0x80b)+'es','AwOHG':_0x4a01b4(0x4ac),'rQpHh':_0x33a03c(0xc4a),'lCeww':_0x162c7e(0x7f7),'iAcXr':_0x4a01b4(0x60d),'GShPk':_0x33a03c(0x291)+'pt','BgeBF':function(_0x30c7b7,_0x1e2be5,_0x440183){return _0x30c7b7(_0x1e2be5,_0x440183);},'YjTec':_0x4a01b4(0x764)+_0x2921a8(0x6d9),'jbnsq':_0x33a03c(0x699)+_0x2921a8(0x6d2)+_0x2921a8(0x85f)+_0x33a03c(0x538)+_0x234381(0x3a3),'BgcYb':_0x234381(0x562)+'>','dDeJp':_0x4a01b4(0x81f),'tablE':_0x162c7e(0x7b0),'OGkNh':_0x234381(0x704),'AXUrQ':function(_0x52ebcc,_0x32fc62){return _0x52ebcc!==_0x32fc62;},'mOUcg':_0x162c7e(0x7ae),'JPJRI':_0x234381(0x9b0),'LuSPf':function(_0x532097,_0x3a1932){return _0x532097===_0x3a1932;},'MSgUJ':_0x2921a8(0x8ca),'DSRqF':_0x162c7e(0x527),'ahADy':_0x162c7e(0x756),'qTJlZ':_0x4a01b4(0xb23)+'\x0a','vNgrD':_0x33a03c(0x3a9),'ynGdP':_0x33a03c(0x3f0),'TfcIJ':function(_0x5ad22d,_0x19f662){return _0x5ad22d<_0x19f662;},'lFXlY':_0x4a01b4(0x630)+'\x0a','bFkGI':_0x162c7e(0x938),'AfXsF':_0x234381(0x343),'SAkze':function(_0x900aaf,_0x226f62){return _0x900aaf+_0x226f62;},'baObz':function(_0x3129e6,_0x53ae96){return _0x3129e6+_0x53ae96;},'pJWeL':_0x234381(0xba3)+'m','OGZeT':_0x162c7e(0x58a)+_0x33a03c(0x631)+_0x33a03c(0xbe5)+_0x162c7e(0x3bb)+_0x2921a8(0x96a)+_0x234381(0x6b9)+'何人','ijrGm':_0x162c7e(0x990)+_0x33a03c(0x72d),'BqiEh':_0x162c7e(0xb82),'hvpbN':_0x162c7e(0xb72)+_0x162c7e(0xbfb)+_0x4a01b4(0x44c)+_0x2921a8(0x4f3),'mqPdW':_0x162c7e(0x8e6),'PDcRk':function(_0x3ee5ea,_0x2bc5c3,_0xe3f0c8){return _0x3ee5ea(_0x2bc5c3,_0xe3f0c8);},'cDAQo':_0x162c7e(0x4c6)+_0x162c7e(0x95d)+_0x234381(0x206)+_0x162c7e(0x5dc)+_0x162c7e(0x618)+_0x162c7e(0xc11),'CXInL':function(_0x1e7bce,_0x30e555){return _0x1e7bce!==_0x30e555;},'NoYAQ':_0x2921a8(0xba8),'HKuhQ':_0x162c7e(0x7a5),'EdyKO':_0x162c7e(0x28a)+_0x33a03c(0x3d0)+_0x234381(0x2ae)+_0x33a03c(0x5fe),'NZQlr':_0x4a01b4(0xbb4)+_0x2921a8(0xc36),'ScRzm':_0x234381(0xbb4)+_0x33a03c(0xbfd)+_0x33a03c(0x3d8),'sauWh':function(_0x49a5db,_0x5840b8){return _0x49a5db(_0x5840b8);},'DHzEn':function(_0x22472c,_0x333de9,_0xa24a3,_0x4b37ad){return _0x22472c(_0x333de9,_0xa24a3,_0x4b37ad);},'rGlIk':_0x234381(0x4c6)+_0x2921a8(0x95d)+_0x33a03c(0x206)+_0x33a03c(0x451)+_0x162c7e(0x784),'kJyNx':_0x4a01b4(0xa61),'jIXzX':function(_0x27da5b,_0x20708b){return _0x27da5b+_0x20708b;},'tMqUu':function(_0x9d8202,_0x1dbf35){return _0x9d8202+_0x1dbf35;},'NrhXy':_0x234381(0x699)+_0x4a01b4(0x6d2)+_0x33a03c(0x85f)+_0x2921a8(0x338)+_0x4a01b4(0x726)+'\x22>','uECfC':_0x234381(0x679),'KzHcD':_0x4a01b4(0x2f1)+_0x4a01b4(0x970)+_0x4a01b4(0xba0)+_0x162c7e(0x2b6),'JeOUL':function(_0x37dcd7,_0x4ff9c4){return _0x37dcd7(_0x4ff9c4);},'DEbpE':_0x162c7e(0xb1e),'nQmJc':_0x162c7e(0x642),'iXWDu':_0x4a01b4(0x96b)+_0x2921a8(0x792)+_0x162c7e(0xbfe)+_0x162c7e(0xa83)};if(_0x5c2d60[_0x33a03c(0xad2)](lock_chat,-0x127f+0x16e8+-0x3*0x178))return;prev_chat=document[_0x234381(0x7a0)+_0x4a01b4(0x5cd)+_0x234381(0xaef)](_0x5c2d60[_0x234381(0x2c5)])[_0x4a01b4(0x394)+_0x33a03c(0x795)],document[_0x2921a8(0x7a0)+_0x33a03c(0x5cd)+_0x33a03c(0xaef)](_0x5c2d60[_0x2921a8(0x2c5)])[_0x162c7e(0x394)+_0x162c7e(0x795)]=_0x5c2d60[_0x33a03c(0x219)](_0x5c2d60[_0x234381(0x68b)](_0x5c2d60[_0x162c7e(0x8b4)](_0x5c2d60[_0x2921a8(0x69c)](_0x5c2d60[_0x162c7e(0x219)](_0x5c2d60[_0x2921a8(0x7c0)](prev_chat,_0x5c2d60[_0x33a03c(0x97c)]),_0x5c2d60[_0x2921a8(0x21e)]),_0x5c2d60[_0x4a01b4(0x3bc)]),_0x5c2d60[_0x162c7e(0x282)](String,_0x571f94)),_0x5c2d60[_0x234381(0x93e)]),_0x5c2d60[_0x234381(0x64a)]),modal[_0x33a03c(0x40c)][_0x2921a8(0x324)+'ay']=_0x5c2d60[_0x2921a8(0xa4a)],document[_0x162c7e(0xb8a)+_0x234381(0x892)+_0x4a01b4(0x215)](_0x5c2d60[_0x2921a8(0x58e)])[_0x33a03c(0x394)+_0x2921a8(0x795)]='';var _0x2370df=new Promise((_0xbd2b69,_0x569d3c)=>{const _0x492562=_0x4a01b4,_0x2f8c25=_0x33a03c,_0x489bcd=_0x33a03c,_0xfab8b4=_0x4a01b4,_0x3492d5=_0x162c7e,_0x37c9a4={'naRiC':function(_0x34674c,_0x4b3a25){const _0x161516=_0x8015;return _0x5c2d60[_0x161516(0xb17)](_0x34674c,_0x4b3a25);},'WdplG':_0x5c2d60[_0x492562(0x834)],'abmLQ':_0x5c2d60[_0x2f8c25(0xbd3)],'glwdz':function(_0x3a1efc,_0x366030){const _0x750c07=_0x2f8c25;return _0x5c2d60[_0x750c07(0x3b3)](_0x3a1efc,_0x366030);},'jfNLh':_0x5c2d60[_0x492562(0x3ae)]};if(_0x5c2d60[_0x489bcd(0x3ed)](_0x5c2d60[_0x3492d5(0xb64)],_0x5c2d60[_0x3492d5(0xb64)])){var _0xee8216=document[_0x3492d5(0xb8a)+_0x489bcd(0x892)+_0x489bcd(0x215)](_0x5c2d60[_0x3492d5(0xb31)]);_0xee8216[_0x2f8c25(0xb05)]=_0x34babe;if(_0xee8216[_0x492562(0x584)+_0x3492d5(0xa17)+'t']){if(_0x5c2d60[_0x492562(0x6ee)](_0x5c2d60[_0x489bcd(0x7a1)],_0x5c2d60[_0xfab8b4(0x7a1)]))try{var _0x3ddbde=new _0x4ff07e(_0x4ae83b),_0x9afe23='';for(var _0x295037=-0x1346+0x709+0xf1*0xd;_0x5c2d60[_0xfab8b4(0x87e)](_0x295037,_0x3ddbde[_0x3492d5(0x720)+_0xfab8b4(0x3e9)]);_0x295037++){_0x9afe23+=_0x5e42f9[_0xfab8b4(0x433)+_0x492562(0x661)+_0x492562(0x7ee)](_0x3ddbde[_0x295037]);}return _0x9afe23;}catch(_0x41c0f8){}else _0xee8216[_0xfab8b4(0x584)+_0x492562(0xa17)+'t'](_0x5c2d60[_0x2f8c25(0xae3)],function(){const _0x393279=_0xfab8b4,_0x33a66f=_0x2f8c25,_0x1a178d=_0x2f8c25,_0x592d27=_0x2f8c25,_0x35d143=_0x3492d5;_0x37c9a4[_0x393279(0x7f0)](_0x37c9a4[_0x393279(0xa05)],_0x37c9a4[_0x33a66f(0x644)])?_0x1cf2a3+=_0x4e1d68[0x1*-0x1927+0x1*0xfd3+0x954][_0x393279(0x830)][_0x592d27(0x67d)+'nt']:_0x37c9a4[_0x33a66f(0x551)](_0xbd2b69,_0x37c9a4[_0x35d143(0x5de)]);});}else _0x5c2d60[_0x2f8c25(0x3ed)](_0x5c2d60[_0x492562(0x284)],_0x5c2d60[_0x492562(0x1ee)])?(_0xbe38ba=_0x131c39[_0x3492d5(0x9c9)+_0xfab8b4(0xaed)+'t'],_0x200ce8[_0x489bcd(0x475)+'e'](),_0x5c2d60[_0xfab8b4(0x63a)](_0x171ed5)):_0xee8216[_0x2f8c25(0x509)+'d']=function(){const _0xb2f2c1=_0x2f8c25,_0x1ee5f9=_0x3492d5,_0x257c98=_0x3492d5,_0x51eb88=_0xfab8b4,_0x40b80f=_0x489bcd,_0x2f3e38={'XGOFb':_0x5c2d60[_0xb2f2c1(0x8de)],'wQYnq':_0x5c2d60[_0xb2f2c1(0x9d2)],'lZwST':function(_0x1749b1,_0x28f036){const _0x3dea9a=_0xb2f2c1;return _0x5c2d60[_0x3dea9a(0x577)](_0x1749b1,_0x28f036);},'xqNOd':function(_0x3cd1c0,_0x2d8963){const _0x5eb045=_0xb2f2c1;return _0x5c2d60[_0x5eb045(0x3b3)](_0x3cd1c0,_0x2d8963);},'PBgUQ':function(_0x2a59e6,_0x15deaf){const _0x57674b=_0xb2f2c1;return _0x5c2d60[_0x57674b(0x3b3)](_0x2a59e6,_0x15deaf);},'fayBf':_0x5c2d60[_0x257c98(0x9be)],'uZGgn':_0x5c2d60[_0x1ee5f9(0x992)],'WeGDh':_0x5c2d60[_0x51eb88(0x520)],'GbndA':_0x5c2d60[_0xb2f2c1(0xb50)]};if(_0x5c2d60[_0x51eb88(0xac0)](_0x5c2d60[_0x1ee5f9(0x3d9)],_0x5c2d60[_0x1ee5f9(0x8ea)]))_0x5c2d60[_0x1ee5f9(0x3b3)](_0xbd2b69,_0x5c2d60[_0x1ee5f9(0x3ae)]);else{const _0x3c942a=_0x2f3e38[_0x257c98(0x549)],_0x485ff8=_0x2f3e38[_0x40b80f(0x62e)],_0x17cc3a=_0xd699e1[_0x257c98(0xb77)+_0xb2f2c1(0x4d9)](_0x3c942a[_0x51eb88(0xc1f)+'h'],_0x2f3e38[_0xb2f2c1(0xb53)](_0x379a19[_0x257c98(0xc1f)+'h'],_0x485ff8[_0x51eb88(0xc1f)+'h'])),_0x4caa05=_0x2f3e38[_0x51eb88(0xab5)](_0x5b91eb,_0x17cc3a),_0x5a5889=_0x2f3e38[_0x40b80f(0x22e)](_0x5c1623,_0x4caa05);return _0x23fa90[_0x1ee5f9(0x248)+'e'][_0x257c98(0x821)+_0x51eb88(0x656)](_0x2f3e38[_0x40b80f(0xa64)],_0x5a5889,{'name':_0x2f3e38[_0x1ee5f9(0xa04)],'hash':_0x2f3e38[_0x257c98(0x811)]},!![],[_0x2f3e38[_0x51eb88(0x639)]]);}};}else _0x5c2d60[_0x3492d5(0x3b3)](_0x42b290,_0x5c2d60[_0x492562(0x3ae)]);});keytextres=[],_0x2370df[_0x2921a8(0x249)](()=>{const _0x5d1f3b=_0x2921a8,_0x1f721f=_0x4a01b4,_0x31cbdb=_0x2921a8,_0x1cd30f=_0x2921a8,_0x486285=_0x2921a8,_0x30d6ef={'CVlah':function(_0x285090,_0x32766a){const _0xfdabdd=_0x8015;return _0x5c2d60[_0xfdabdd(0x68b)](_0x285090,_0x32766a);},'FKDZB':function(_0x16ef65,_0x30b6a1){const _0x114048=_0x8015;return _0x5c2d60[_0x114048(0x314)](_0x16ef65,_0x30b6a1);},'WMXID':function(_0x439664,_0x5a8fee){const _0x148e9d=_0x8015;return _0x5c2d60[_0x148e9d(0x312)](_0x439664,_0x5a8fee);},'qLEsT':function(_0x55f65f,_0x4bf509){const _0x3fd3b8=_0x8015;return _0x5c2d60[_0x3fd3b8(0x6ee)](_0x55f65f,_0x4bf509);},'jqJWF':_0x5c2d60[_0x5d1f3b(0x274)],'fdggD':function(_0xed1d40,_0x2ab843){const _0x54bb22=_0x5d1f3b;return _0x5c2d60[_0x54bb22(0xb17)](_0xed1d40,_0x2ab843);},'HpkwE':_0x5c2d60[_0x5d1f3b(0x4fb)],'IpfLc':_0x5c2d60[_0x1f721f(0x6f2)],'YYMev':_0x5c2d60[_0x5d1f3b(0x865)],'rfXPN':function(_0x5579b5,_0x384189){const _0x2b9ae9=_0x5d1f3b;return _0x5c2d60[_0x2b9ae9(0x3b3)](_0x5579b5,_0x384189);},'gjqfI':_0x5c2d60[_0x486285(0x1d9)],'qwiUj':function(_0x3888b5,_0x58d548){const _0x1e4b1b=_0x31cbdb;return _0x5c2d60[_0x1e4b1b(0x39f)](_0x3888b5,_0x58d548);},'mIern':function(_0x2b6ee1,_0x5d9a8c){const _0x52166f=_0x31cbdb;return _0x5c2d60[_0x52166f(0xad2)](_0x2b6ee1,_0x5d9a8c);},'YNyME':_0x5c2d60[_0x1f721f(0x80a)],'YFAjV':_0x5c2d60[_0x1cd30f(0x2a5)],'PPWNq':_0x5c2d60[_0x1cd30f(0xb75)],'pSKaP':function(_0x52b0bb,_0x3cc548){const _0x12a872=_0x486285;return _0x5c2d60[_0x12a872(0xb43)](_0x52b0bb,_0x3cc548);},'mEIPd':_0x5c2d60[_0x31cbdb(0x89a)],'eGAhs':function(_0x19ccf6,_0x413264){const _0x3a9f85=_0x486285;return _0x5c2d60[_0x3a9f85(0x3ed)](_0x19ccf6,_0x413264);},'jeOYV':_0x5c2d60[_0x5d1f3b(0xa6a)],'ewbmS':_0x5c2d60[_0x486285(0x5fa)],'DkFDQ':_0x5c2d60[_0x486285(0x4b8)],'xBOmq':_0x5c2d60[_0x1f721f(0x436)],'IYPCB':_0x5c2d60[_0x5d1f3b(0x456)],'qLmfi':_0x5c2d60[_0x31cbdb(0x8e2)],'nmTow':_0x5c2d60[_0x31cbdb(0x98b)],'XxBdX':function(_0x1d602b,_0x1479bb,_0x52aa50){const _0x48712c=_0x1f721f;return _0x5c2d60[_0x48712c(0x66d)](_0x1d602b,_0x1479bb,_0x52aa50);},'HIZFr':_0x5c2d60[_0x31cbdb(0x2c5)],'zimGH':function(_0x5ae498,_0x1f5d23){const _0x68b11f=_0x486285;return _0x5c2d60[_0x68b11f(0x68b)](_0x5ae498,_0x1f5d23);},'SJxNF':function(_0x530572,_0x1bd03f){const _0x418ce4=_0x5d1f3b;return _0x5c2d60[_0x418ce4(0x68b)](_0x530572,_0x1bd03f);},'vwmfs':_0x5c2d60[_0x5d1f3b(0x36b)],'KfMMC':_0x5c2d60[_0x5d1f3b(0x64a)],'WssPD':function(_0xe57ba2,_0x21d732){const _0x29c5ab=_0x5d1f3b;return _0x5c2d60[_0x29c5ab(0xb43)](_0xe57ba2,_0x21d732);},'relEj':_0x5c2d60[_0x5d1f3b(0xaf9)],'tiDMp':_0x5c2d60[_0x31cbdb(0x8a0)],'Dennu':function(_0x194a5b,_0x2e25ef){const _0x2ddc99=_0x486285;return _0x5c2d60[_0x2ddc99(0xb43)](_0x194a5b,_0x2e25ef);},'QCiCn':_0x5c2d60[_0x5d1f3b(0x6ba)],'dgjRp':function(_0xf509c4,_0x5ed90e){const _0x4ff805=_0x1cd30f;return _0x5c2d60[_0x4ff805(0x264)](_0xf509c4,_0x5ed90e);},'yCYqt':_0x5c2d60[_0x31cbdb(0x31b)],'HaMoj':_0x5c2d60[_0x31cbdb(0xc41)],'eTkZl':_0x5c2d60[_0x31cbdb(0x6c4)],'XCewE':function(_0x4b75f6,_0x27a4c5){const _0x47bad5=_0x5d1f3b;return _0x5c2d60[_0x47bad5(0x366)](_0x4b75f6,_0x27a4c5);},'BTkbo':_0x5c2d60[_0x31cbdb(0x3ec)],'Ljzec':_0x5c2d60[_0x31cbdb(0x5d9)],'LHIWA':function(_0x2a62f0,_0x33fca2){const _0x49c5d6=_0x31cbdb;return _0x5c2d60[_0x49c5d6(0x3b3)](_0x2a62f0,_0x33fca2);},'IfNht':function(_0x30dd00,_0x1634b0){const _0x51b5c4=_0x486285;return _0x5c2d60[_0x51b5c4(0x68b)](_0x30dd00,_0x1634b0);},'IIzOn':_0x5c2d60[_0x1cd30f(0x7d8)],'mQmoz':_0x5c2d60[_0x486285(0x3ba)],'HQAhm':_0x5c2d60[_0x5d1f3b(0x8f5)],'vfUma':_0x5c2d60[_0x1f721f(0x33c)],'PVlrJ':function(_0x1998ff,_0x164bd0){const _0x51836c=_0x1cd30f;return _0x5c2d60[_0x51836c(0x92f)](_0x1998ff,_0x164bd0);},'qDkbU':function(_0xcac567,_0x147731){const _0x28ddaf=_0x1cd30f;return _0x5c2d60[_0x28ddaf(0x68b)](_0xcac567,_0x147731);},'hwcSH':function(_0xcb216b,_0x49eea5){const _0x964be1=_0x486285;return _0x5c2d60[_0x964be1(0x68b)](_0xcb216b,_0x49eea5);},'lzkFY':function(_0x28e995,_0x38efa5){const _0x3f6999=_0x1cd30f;return _0x5c2d60[_0x3f6999(0x68b)](_0x28e995,_0x38efa5);},'bDtiU':_0x5c2d60[_0x5d1f3b(0xbaa)],'sVItj':function(_0x4f77d8,_0x3af9ed){const _0x18848f=_0x1f721f;return _0x5c2d60[_0x18848f(0x366)](_0x4f77d8,_0x3af9ed);},'GlbRC':_0x5c2d60[_0x1cd30f(0x43b)],'ZFNdf':_0x5c2d60[_0x31cbdb(0x951)],'FSRan':function(_0x3cc023,_0x9e2680){const _0x28cb74=_0x31cbdb;return _0x5c2d60[_0x28cb74(0x69c)](_0x3cc023,_0x9e2680);},'LVlse':function(_0x5a9799,_0x3c1931){const _0x599a27=_0x5d1f3b;return _0x5c2d60[_0x599a27(0x219)](_0x5a9799,_0x3c1931);},'ZLzxG':function(_0x1d9b55,_0x3386e5){const _0x464321=_0x1cd30f;return _0x5c2d60[_0x464321(0x68b)](_0x1d9b55,_0x3386e5);},'CAnUI':_0x5c2d60[_0x5d1f3b(0x31d)],'YXdHe':_0x5c2d60[_0x1cd30f(0x53b)],'ncqpO':_0x5c2d60[_0x31cbdb(0x91f)],'uuGvr':_0x5c2d60[_0x1f721f(0xb34)],'CJAGq':_0x5c2d60[_0x1f721f(0x52e)],'nEtkU':_0x5c2d60[_0x5d1f3b(0x7bb)],'jtaNQ':function(_0x1b24c9,_0xc36ca7,_0x596973){const _0x1660e6=_0x31cbdb;return _0x5c2d60[_0x1660e6(0x9b9)](_0x1b24c9,_0xc36ca7,_0x596973);},'szBOc':_0x5c2d60[_0x31cbdb(0x9af)]};if(_0x5c2d60[_0x486285(0xbce)](_0x5c2d60[_0x5d1f3b(0x6ea)],_0x5c2d60[_0x1f721f(0x606)])){document[_0x31cbdb(0xb8a)+_0x1cd30f(0x892)+_0x486285(0x215)](_0x5c2d60[_0x5d1f3b(0x6a2)])[_0x1cd30f(0x5b4)+_0x5d1f3b(0x579)+'d'](document[_0x1f721f(0xb8a)+_0x31cbdb(0x892)+_0x5d1f3b(0x215)](_0x5c2d60[_0x1f721f(0x8f9)])),document[_0x1f721f(0xb8a)+_0x31cbdb(0x892)+_0x31cbdb(0x215)](_0x5c2d60[_0x486285(0x6a2)])[_0x1f721f(0x5b4)+_0x31cbdb(0x579)+'d'](document[_0x5d1f3b(0xb8a)+_0x31cbdb(0x892)+_0x1f721f(0x215)](_0x5c2d60[_0x1f721f(0x728)]));var _0x338c80=document[_0x1f721f(0xb8a)+_0x1f721f(0x892)+_0x1cd30f(0x215)](_0x5c2d60[_0x5d1f3b(0xb31)]);modalele=_0x5c2d60[_0x31cbdb(0x62c)](eleparse,_0x338c80[_0x486285(0x67d)+_0x1f721f(0xaaf)+_0x486285(0x797)]),article=new Readability(_0x338c80[_0x5d1f3b(0x67d)+_0x1cd30f(0xaaf)+_0x31cbdb(0x797)][_0x1cd30f(0x72c)+_0x1f721f(0x20a)](!![]))[_0x1cd30f(0x41d)](),fulltext=article[_0x31cbdb(0x9c9)+_0x486285(0xaed)+'t'],fulltext=fulltext[_0x5d1f3b(0x25e)+_0x486285(0x739)]('\x0a\x0a','\x0a')[_0x1f721f(0x25e)+_0x486285(0x739)]('\x0a\x0a','\x0a');const _0x265fe8=/[?!;\?\n。;!………]/g;fulltext=fulltext[_0x1f721f(0xb89)](_0x265fe8),fulltext=fulltext[_0x486285(0x9b2)+'r'](_0x5e0adf=>{const _0x2075f3=_0x5d1f3b,_0x33a9db=_0x1f721f,_0x5df373=_0x1cd30f,_0x3deaaf=_0x5d1f3b,_0x11f8a8=_0x31cbdb,_0x33d7a4={'RvkVp':function(_0x177703,_0x52f191){const _0x3721d6=_0x8015;return _0x30d6ef[_0x3721d6(0x609)](_0x177703,_0x52f191);},'zziHb':function(_0x36f6b3,_0x1b91e6){const _0x4e4c9b=_0x8015;return _0x30d6ef[_0x4e4c9b(0xc55)](_0x36f6b3,_0x1b91e6);},'SujGa':function(_0x2294b9,_0x48b4e3){const _0x44e5bd=_0x8015;return _0x30d6ef[_0x44e5bd(0x429)](_0x2294b9,_0x48b4e3);}};if(_0x30d6ef[_0x2075f3(0x58d)](_0x30d6ef[_0x2075f3(0x810)],_0x30d6ef[_0x2075f3(0x810)])){if(_0x2c05b1[_0x3deaaf(0x408)](_0x468194))return _0x58929b;const _0x41ebf1=_0x2d5368[_0x2075f3(0xb89)](/[;,;、,]/),_0x810f1e=_0x41ebf1[_0x11f8a8(0x432)](_0x21cdf4=>'['+_0x21cdf4+']')[_0x11f8a8(0x9f8)]('\x20'),_0x791394=_0x41ebf1[_0x3deaaf(0x432)](_0x1f10a6=>'['+_0x1f10a6+']')[_0x3deaaf(0x9f8)]('\x0a');_0x41ebf1[_0x11f8a8(0x2d5)+'ch'](_0x384601=>_0x1e85d2[_0x33a9db(0x2d4)](_0x384601)),_0x134170='\x20';for(var _0xe9a523=_0x33d7a4[_0x2075f3(0x6a7)](_0x33d7a4[_0x5df373(0xa90)](_0x69a204[_0x2075f3(0x4ee)],_0x41ebf1[_0x5df373(0xc1f)+'h']),-0x6c5+-0x1f9e+0x2664);_0x33d7a4[_0x5df373(0xb51)](_0xe9a523,_0x145154[_0x3deaaf(0x4ee)]);++_0xe9a523)_0x5dca07+='[^'+_0xe9a523+']\x20';return _0x57dcd2;}else{const _0x148b03=/^[0-9,\s]+$/;return!_0x148b03[_0x3deaaf(0x51b)](_0x5e0adf);}}),fulltext=fulltext[_0x486285(0x9b2)+'r'](function(_0x5d7afb){const _0x15ab6d=_0x1f721f,_0xda1e73=_0x5d1f3b,_0x22fe07=_0x1cd30f,_0x4112cf=_0x5d1f3b,_0x324df9=_0x5d1f3b;if(_0x30d6ef[_0x15ab6d(0x891)](_0x30d6ef[_0xda1e73(0x2a9)],_0x30d6ef[_0xda1e73(0x2a9)]))return _0x5d7afb&&_0x5d7afb[_0x4112cf(0xa4b)]();else{if(_0x55919f){const _0x1340d5=_0x2ad6fc[_0x4112cf(0x3c3)](_0xa12f7a,arguments);return _0x135fd6=null,_0x1340d5;}}}),optkeytext={'method':_0x5c2d60[_0x31cbdb(0x7bb)],'headers':headers,'body':JSON[_0x31cbdb(0x898)+_0x1f721f(0x247)]({'text':fulltext[_0x5d1f3b(0x9f8)]('\x0a')})},console[_0x1f721f(0xa9f)](fulltext),_0x5c2d60[_0x486285(0x3b7)](fetchRetry,_0x5c2d60[_0x1cd30f(0xaa3)],0x8*-0x2dd+0xbf*-0xe+0x215d,optkeytext)[_0x1f721f(0x249)](_0x2c0783=>_0x2c0783[_0x1cd30f(0xb6b)]())[_0x31cbdb(0x249)](_0x3eb315=>{const _0x3ec1d6=_0x1cd30f,_0x47ca33=_0x5d1f3b,_0xca5f76=_0x486285,_0x4c8bf8=_0x31cbdb,_0x32ed73=_0x1f721f,_0x1349b9={'zMQRf':function(_0x1847c2,_0x3babd7){const _0x534037=_0x8015;return _0x30d6ef[_0x534037(0x6dc)](_0x1847c2,_0x3babd7);},'qFuAg':_0x30d6ef[_0x3ec1d6(0x566)],'elPyn':_0x30d6ef[_0x47ca33(0xc07)],'UZfJu':_0x30d6ef[_0x47ca33(0x966)]};if(_0x30d6ef[_0xca5f76(0x689)](_0x30d6ef[_0x47ca33(0xaa4)],_0x30d6ef[_0xca5f76(0x718)])){_0x117c7d=-0x1*0x200e+-0x343*0x5+0x305d;return;}else{keytextres=_0x30d6ef[_0xca5f76(0x9ea)](unique,_0x3eb315),promptWebpage=_0x30d6ef[_0x4c8bf8(0x534)](_0x30d6ef[_0x3ec1d6(0x534)](_0x30d6ef[_0xca5f76(0xa46)](_0x30d6ef[_0x3ec1d6(0x27f)],article[_0xca5f76(0xa32)]),'\x0a'),_0x30d6ef[_0xca5f76(0x5d4)]);for(el in modalele){if(_0x30d6ef[_0xca5f76(0x894)](_0x30d6ef[_0x47ca33(0x55d)],_0x30d6ef[_0x4c8bf8(0x524)]))_0x3b522+=_0x5ec44b;else{if(_0x30d6ef[_0x3ec1d6(0x5d0)](_0x30d6ef[_0x4c8bf8(0x299)](_0x30d6ef[_0x32ed73(0x609)](promptWebpage,modalele[el]),'\x0a')[_0x3ec1d6(0xc1f)+'h'],-0x3*-0x67+0xa9b+-0xa40))promptWebpage=_0x30d6ef[_0xca5f76(0x462)](_0x30d6ef[_0xca5f76(0x299)](promptWebpage,modalele[el]),'\x0a');}}promptWebpage=_0x30d6ef[_0x4c8bf8(0x92a)](promptWebpage,_0x30d6ef[_0x32ed73(0x218)]),keySentencesCount=-0x47*0x3b+0x12e*-0x13+-0x26c7*-0x1;for(st in keytextres){if(_0x30d6ef[_0x3ec1d6(0x66a)](_0x30d6ef[_0xca5f76(0x7c6)],_0x30d6ef[_0x4c8bf8(0x5e7)]))_0x15fad6+=_0x3e845f[0x1*-0x7e2+0xab3+-0x2d1][_0x32ed73(0x830)][_0xca5f76(0x67d)+'nt'];else{if(_0x30d6ef[_0xca5f76(0x5d0)](_0x30d6ef[_0x47ca33(0x505)](_0x30d6ef[_0x47ca33(0x462)](promptWebpage,keytextres[st]),'\x0a')[_0x3ec1d6(0xc1f)+'h'],-0x1*0x2502+-0x2f9*-0x7+0x14e3))promptWebpage=_0x30d6ef[_0x47ca33(0x4fe)](_0x30d6ef[_0xca5f76(0x609)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x30d6ef[_0xca5f76(0xc24)](keySentencesCount,0xd*-0xad+0x90+0x3*0x2be);}}const _0xa3608c={};_0xa3608c[_0x3ec1d6(0xaca)]=_0x30d6ef[_0x3ec1d6(0x2d8)],_0xa3608c[_0x47ca33(0x67d)+'nt']=_0x30d6ef[_0x3ec1d6(0xb9f)];const _0x52a636={};_0x52a636[_0x47ca33(0xaca)]=_0x30d6ef[_0xca5f76(0x5ca)],_0x52a636[_0xca5f76(0x67d)+'nt']=promptWebpage;const _0x548ad8={};_0x548ad8[_0x3ec1d6(0xaca)]=_0x30d6ef[_0x47ca33(0x1f7)],_0x548ad8[_0x4c8bf8(0x67d)+'nt']=_0x30d6ef[_0x32ed73(0x905)],promptWeb=[_0xa3608c,_0x52a636,_0x548ad8];const _0x1d183b={'method':_0x30d6ef[_0x47ca33(0x694)],'headers':headers,'body':_0x30d6ef[_0x4c8bf8(0x63d)](b64EncodeUnicode,JSON[_0x3ec1d6(0x898)+_0x3ec1d6(0x247)]({'messages':promptWeb[_0xca5f76(0x5ee)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0xac*-0x23+0x1feb+0x93d*-0x6),prev_chat=document[_0x4c8bf8(0x7a0)+_0x32ed73(0x5cd)+_0xca5f76(0xaef)](_0x30d6ef[_0x32ed73(0xad3)])[_0x4c8bf8(0x394)+_0x32ed73(0x795)],_0x30d6ef[_0x4c8bf8(0x313)](fetch,_0x30d6ef[_0x3ec1d6(0x4ad)],_0x1d183b)[_0x32ed73(0x249)](_0x33e106=>{const _0xb9aaf3=_0x4c8bf8,_0x3ad494=_0x32ed73,_0x2be50d=_0x47ca33,_0x30a970=_0x4c8bf8,_0x2e7acd=_0x32ed73,_0x3fc35d={'bGNzz':_0x30d6ef[_0xb9aaf3(0xa01)],'reYTj':_0x30d6ef[_0x3ad494(0x8c9)],'arMhs':function(_0x3805fe,_0x36fea8){const _0x4d9385=_0x3ad494;return _0x30d6ef[_0x4d9385(0x63d)](_0x3805fe,_0x36fea8);},'eBBfH':function(_0x39421c,_0x1d870c){const _0x5bfcf9=_0x3ad494;return _0x30d6ef[_0x5bfcf9(0x891)](_0x39421c,_0x1d870c);},'klgCd':_0x30d6ef[_0x2be50d(0x44f)],'ueowe':function(_0x27d830,_0x5c897d){const _0x460270=_0xb9aaf3;return _0x30d6ef[_0x460270(0x7c1)](_0x27d830,_0x5c897d);},'wulxO':function(_0x11aeed,_0x36022c){const _0x957d22=_0xb9aaf3;return _0x30d6ef[_0x957d22(0x3bd)](_0x11aeed,_0x36022c);},'ljMTb':_0x30d6ef[_0xb9aaf3(0x3b9)],'qCjIT':_0x30d6ef[_0x2be50d(0x361)],'XBYXc':_0x30d6ef[_0x2be50d(0xc45)],'nqmSG':function(_0x195e03,_0x15e52c){const _0x1efee4=_0x3ad494;return _0x30d6ef[_0x1efee4(0x201)](_0x195e03,_0x15e52c);},'aXQUz':_0x30d6ef[_0xb9aaf3(0xa2e)],'QYuPJ':function(_0x596470,_0x393aec){const _0x32b439=_0xb9aaf3;return _0x30d6ef[_0x32b439(0x894)](_0x596470,_0x393aec);},'ifecp':_0x30d6ef[_0xb9aaf3(0x7a3)],'IjgOs':function(_0x54c30e,_0x35acdf){const _0x2d104d=_0xb9aaf3;return _0x30d6ef[_0x2d104d(0x609)](_0x54c30e,_0x35acdf);},'PEnMq':_0x30d6ef[_0xb9aaf3(0x581)],'BPyDV':_0x30d6ef[_0x30a970(0xa92)],'FyWCJ':_0x30d6ef[_0x2be50d(0x286)],'FKESQ':_0x30d6ef[_0x2be50d(0x71e)],'HsrYk':_0x30d6ef[_0x2be50d(0x620)],'omHtU':_0x30d6ef[_0x2be50d(0x5a5)],'RAmVZ':function(_0xf73ac6,_0x3c4be8,_0x3ebfbc){const _0x157cbc=_0x2e7acd;return _0x30d6ef[_0x157cbc(0x632)](_0xf73ac6,_0x3c4be8,_0x3ebfbc);},'MqTik':_0x30d6ef[_0x2e7acd(0xad3)],'PSUgl':function(_0x4087e2,_0x25d17c){const _0x23efae=_0x3ad494;return _0x30d6ef[_0x23efae(0x534)](_0x4087e2,_0x25d17c);},'dnKeu':function(_0x36670e,_0x3002ae){const _0x404212=_0x2be50d;return _0x30d6ef[_0x404212(0x9c7)](_0x36670e,_0x3002ae);},'yaeRM':_0x30d6ef[_0x30a970(0x76b)],'aIaRg':_0x30d6ef[_0x2e7acd(0x5e9)],'fYfEi':function(_0x29f0d5,_0x4f2cd0){const _0x4f48ed=_0x30a970;return _0x30d6ef[_0x4f48ed(0x4ef)](_0x29f0d5,_0x4f2cd0);},'HSfTR':_0x30d6ef[_0x3ad494(0x95b)],'YkyjO':_0x30d6ef[_0x2be50d(0x20b)]};if(_0x30d6ef[_0x30a970(0x65a)](_0x30d6ef[_0x2be50d(0x493)],_0x30d6ef[_0x30a970(0x493)]))return!![];else{const _0x9470d6=_0x33e106[_0x30a970(0x99b)][_0x2be50d(0x4c5)+_0x2be50d(0xa83)]();let _0x4d2d14='',_0x34973b='';_0x9470d6[_0x3ad494(0x5e1)]()[_0xb9aaf3(0x249)](function _0x1b717e({done:_0x56f263,value:_0x2fa814}){const _0x521ec0=_0x2e7acd,_0x556c29=_0xb9aaf3,_0xabd56e=_0xb9aaf3,_0x3aefb1=_0xb9aaf3,_0x45aa38=_0x2e7acd,_0x128ca7={'pTsTY':_0x3fc35d[_0x521ec0(0xaf3)],'esZAo':_0x3fc35d[_0x556c29(0x441)],'baCmY':function(_0x502684,_0x2f3677){const _0x2104a4=_0x556c29;return _0x3fc35d[_0x2104a4(0x7a2)](_0x502684,_0x2f3677);},'HEXog':function(_0x2460d5,_0x6c36f1){const _0x131a68=_0x556c29;return _0x3fc35d[_0x131a68(0x7a2)](_0x2460d5,_0x6c36f1);},'GCaqF':function(_0x165926,_0x5ccaf7){const _0x2c23e7=_0x556c29;return _0x3fc35d[_0x2c23e7(0x20f)](_0x165926,_0x5ccaf7);},'LlkFi':_0x3fc35d[_0xabd56e(0xae7)],'scIED':function(_0x4c3bc5,_0x2bf620){const _0x44070f=_0x521ec0;return _0x3fc35d[_0x44070f(0x4fc)](_0x4c3bc5,_0x2bf620);},'rlVue':function(_0x5d43e2,_0x5786b9){const _0x21b1af=_0x556c29;return _0x3fc35d[_0x21b1af(0x480)](_0x5d43e2,_0x5786b9);},'UAaWW':_0x3fc35d[_0x3aefb1(0xc33)],'cuUhP':_0x3fc35d[_0x521ec0(0x57b)],'jqGFr':_0x3fc35d[_0x556c29(0x587)],'XXxOC':function(_0xa226e1,_0xe941db){const _0x28b7c9=_0x45aa38;return _0x3fc35d[_0x28b7c9(0x6e8)](_0xa226e1,_0xe941db);},'wPNbS':_0x3fc35d[_0x3aefb1(0x547)],'ErGHf':function(_0x3a981e,_0x5bdfd9){const _0x1cb169=_0x521ec0;return _0x3fc35d[_0x1cb169(0xa33)](_0x3a981e,_0x5bdfd9);},'hwDml':_0x3fc35d[_0x3aefb1(0x835)],'OhxlD':function(_0x1cb033,_0x35fddf){const _0x476d00=_0x521ec0;return _0x3fc35d[_0x476d00(0x919)](_0x1cb033,_0x35fddf);},'cFrko':_0x3fc35d[_0x521ec0(0x855)],'wXGJy':_0x3fc35d[_0x3aefb1(0x5f4)],'UzCEn':function(_0x3b658b,_0x489182){const _0x484a85=_0x3aefb1;return _0x3fc35d[_0x484a85(0x20f)](_0x3b658b,_0x489182);},'kNpKy':_0x3fc35d[_0x45aa38(0x8bb)],'EOfMZ':function(_0x259b7b,_0x15c614){const _0x14b8e4=_0xabd56e;return _0x3fc35d[_0x14b8e4(0x20f)](_0x259b7b,_0x15c614);},'EdwBb':_0x3fc35d[_0x556c29(0x89c)],'BgPtL':_0x3fc35d[_0xabd56e(0x317)],'jicGk':_0x3fc35d[_0xabd56e(0x936)],'huhoc':function(_0x524d0d,_0x3fb197,_0x4be958){const _0x97e283=_0x45aa38;return _0x3fc35d[_0x97e283(0x246)](_0x524d0d,_0x3fb197,_0x4be958);},'VUNLf':function(_0x6b67ec,_0x140dc7){const _0x250f3b=_0x45aa38;return _0x3fc35d[_0x250f3b(0x7a2)](_0x6b67ec,_0x140dc7);},'LexUx':_0x3fc35d[_0x521ec0(0xa06)],'AvURP':function(_0x32ccb4,_0x35701c){const _0x588f9d=_0x45aa38;return _0x3fc35d[_0x588f9d(0xa99)](_0x32ccb4,_0x35701c);},'HVKxg':function(_0x4fcdd2,_0x42d688){const _0x431f11=_0xabd56e;return _0x3fc35d[_0x431f11(0x38e)](_0x4fcdd2,_0x42d688);},'ltjLD':_0x3fc35d[_0x3aefb1(0x2c8)],'MhQTh':_0x3fc35d[_0x556c29(0x79e)]};if(_0x3fc35d[_0xabd56e(0xa00)](_0x3fc35d[_0x521ec0(0x98d)],_0x3fc35d[_0x3aefb1(0x98d)]))return function(_0x4e6142){}[_0xabd56e(0xa6b)+_0xabd56e(0x5bc)+'r'](OBpjiY[_0xabd56e(0x817)])[_0x521ec0(0x3c3)](OBpjiY[_0x556c29(0x382)]);else{if(_0x56f263)return;const _0x561891=new TextDecoder(_0x3fc35d[_0x3aefb1(0x8c3)])[_0x45aa38(0x85a)+'e'](_0x2fa814);return _0x561891[_0x3aefb1(0xa4b)]()[_0x45aa38(0xb89)]('\x0a')[_0x45aa38(0x2d5)+'ch'](function(_0x3c98ac){const _0x4a8037=_0x521ec0,_0x211bcb=_0x521ec0,_0x3fa9c8=_0xabd56e,_0x5b2dbb=_0x521ec0,_0x4c9ba1=_0x45aa38,_0x16bfc9={'FbXYL':function(_0x1c0207,_0x5738f7){const _0x2a4717=_0x8015;return _0x128ca7[_0x2a4717(0x678)](_0x1c0207,_0x5738f7);}};if(_0x128ca7[_0x4a8037(0x279)](_0x128ca7[_0x4a8037(0xb11)],_0x128ca7[_0x3fa9c8(0xb11)])){_0x4d2d14='';if(_0x128ca7[_0x5b2dbb(0x8b2)](_0x3c98ac[_0x3fa9c8(0xc1f)+'h'],0x1bfd+0x1*0x1903+0x1*-0x34fa))_0x4d2d14=_0x3c98ac[_0x3fa9c8(0x21c)](0xd36+-0x1342+0x612);if(_0x128ca7[_0x211bcb(0x1bb)](_0x4d2d14,_0x128ca7[_0x4a8037(0xbf8)])){if(_0x128ca7[_0x4c9ba1(0x279)](_0x128ca7[_0x211bcb(0x6a9)],_0x128ca7[_0x5b2dbb(0x535)]))return _0x3a7553;else{lock_chat=0xc80+0x1ba0+0x1410*-0x2;return;}}let _0x31df46;try{if(_0x128ca7[_0x211bcb(0x615)](_0x128ca7[_0x5b2dbb(0x2e7)],_0x128ca7[_0x211bcb(0x2e7)])){if(_0x528233)return _0x504240;else OBpjiY[_0x211bcb(0xc42)](_0x118308,0xa2e*0x1+-0x1c5*0x5+-0x1*0x155);}else try{if(_0x128ca7[_0x4c9ba1(0xb29)](_0x128ca7[_0x211bcb(0x693)],_0x128ca7[_0x5b2dbb(0x693)]))_0x31df46=JSON[_0x4a8037(0x41d)](_0x128ca7[_0x3fa9c8(0x602)](_0x34973b,_0x4d2d14))[_0x128ca7[_0x5b2dbb(0x8a6)]],_0x34973b='';else{if(_0x352f91){const _0x4f32c6=_0x4cc285[_0x4c9ba1(0x3c3)](_0x12a67f,arguments);return _0x32880b=null,_0x4f32c6;}}}catch(_0x5896ae){_0x128ca7[_0x4c9ba1(0x615)](_0x128ca7[_0x5b2dbb(0xad1)],_0x128ca7[_0x211bcb(0xad1)])?(_0x45abc6=_0x3536e6[_0x3fa9c8(0x9c9)+_0x4c9ba1(0xaed)+'t'],_0xdd97f8[_0x211bcb(0x475)+'e']()):(_0x31df46=JSON[_0x211bcb(0x41d)](_0x4d2d14)[_0x128ca7[_0x4c9ba1(0x8a6)]],_0x34973b='');}}catch(_0x3ec3dd){_0x128ca7[_0x5b2dbb(0x2cf)](_0x128ca7[_0x211bcb(0x233)],_0x128ca7[_0x5b2dbb(0x233)])?_0x34973b+=_0x4d2d14:_0x49fb0c='图片';}_0x31df46&&_0x128ca7[_0x4a8037(0x8b2)](_0x31df46[_0x4a8037(0xc1f)+'h'],-0x21+0x170e+0x1*-0x16ed)&&_0x31df46[0x1bb9+0x251+0x1*-0x1e0a][_0x4c9ba1(0x830)][_0x211bcb(0x67d)+'nt']&&(_0x128ca7[_0x4c9ba1(0x7ca)](_0x128ca7[_0x4c9ba1(0x853)],_0x128ca7[_0x4c9ba1(0x801)])?_0x31a6da+='左':chatTemp+=_0x31df46[-0xc44*-0x2+0x309+-0x1b91][_0x5b2dbb(0x830)][_0x211bcb(0x67d)+'nt']),chatTemp=chatTemp[_0x5b2dbb(0x25e)+_0x5b2dbb(0x739)]('\x0a\x0a','\x0a')[_0x5b2dbb(0x25e)+_0x4c9ba1(0x739)]('\x0a\x0a','\x0a'),document[_0x211bcb(0xb8a)+_0x5b2dbb(0x892)+_0x3fa9c8(0x215)](_0x128ca7[_0x3fa9c8(0x9df)])[_0x4c9ba1(0x394)+_0x4c9ba1(0x795)]='',_0x128ca7[_0x3fa9c8(0xaa7)](markdownToHtml,_0x128ca7[_0x4a8037(0x696)](beautify,chatTemp),document[_0x211bcb(0xb8a)+_0x4a8037(0x892)+_0x3fa9c8(0x215)](_0x128ca7[_0x4c9ba1(0x9df)])),document[_0x5b2dbb(0x7a0)+_0x4c9ba1(0x5cd)+_0x4a8037(0xaef)](_0x128ca7[_0x211bcb(0x941)])[_0x4c9ba1(0x394)+_0x5b2dbb(0x795)]=_0x128ca7[_0x3fa9c8(0x93c)](_0x128ca7[_0x5b2dbb(0x602)](_0x128ca7[_0x3fa9c8(0x332)](prev_chat,_0x128ca7[_0x3fa9c8(0xc05)]),document[_0x5b2dbb(0xb8a)+_0x211bcb(0x892)+_0x3fa9c8(0x215)](_0x128ca7[_0x3fa9c8(0x9df)])[_0x3fa9c8(0x394)+_0x3fa9c8(0x795)]),_0x128ca7[_0x5b2dbb(0x552)]);}else return _0x16bfc9[_0x4c9ba1(0x2a3)](_0x31530d,_0x356dd8);}),_0x9470d6[_0x556c29(0x5e1)]()[_0x45aa38(0x249)](_0x1b717e);}});}})[_0x47ca33(0x9de)](_0x6b2cc4=>{const _0x27729d=_0x3ec1d6,_0x191e95=_0x4c8bf8,_0x591d5c=_0x47ca33,_0x104b25=_0x47ca33,_0x10d374=_0x32ed73;_0x1349b9[_0x27729d(0x6cc)](_0x1349b9[_0x191e95(0x73e)],_0x1349b9[_0x591d5c(0x302)])?console[_0x104b25(0x759)](_0x1349b9[_0x591d5c(0x645)],_0x6b2cc4):_0x3f2d8e+='中';});}});}else _0x9faf53[_0x5d1f3b(0x759)](_0x5c2d60[_0x486285(0x6c4)],_0x181b09);},_0x54654c=>{const _0x49faef=_0x2921a8,_0x3ba41e=_0x4a01b4,_0x2c1b4e=_0x4a01b4,_0x1e8eeb=_0x2921a8;_0x5c2d60[_0x49faef(0x366)](_0x5c2d60[_0x49faef(0x3c2)],_0x5c2d60[_0x49faef(0x3c2)])?console[_0x3ba41e(0xa9f)](_0x54654c):_0x1ba85b+=_0x268dc4;});}function eleparse(_0x441e66){const _0x4408cb=_0x8015,_0x14501e=_0x8015,_0x470dcd=_0x8015,_0x3efed5=_0x8015,_0x16e51d=_0x8015,_0x122614={'muGgV':function(_0x43d366,_0x147e48){return _0x43d366-_0x147e48;},'JsQQm':function(_0x474953,_0x5545a7){return _0x474953(_0x5545a7);},'WZPoD':function(_0x5cf15c,_0x5ddf9){return _0x5cf15c+_0x5ddf9;},'wrLQp':_0x4408cb(0x80b)+'es','bXDEQ':function(_0x57273a,_0x31a4f9){return _0x57273a<_0x31a4f9;},'tyZrv':function(_0x4a0291,_0x113538){return _0x4a0291+_0x113538;},'tgChM':function(_0x4f0a25,_0x27621f){return _0x4f0a25+_0x27621f;},'BOlVz':_0x4408cb(0x7ce)+'务\x20','pplkk':_0x14501e(0x334)+_0x4408cb(0xbe2)+_0x4408cb(0x305)+_0x470dcd(0x869)+_0x14501e(0x1cf)+_0x4408cb(0xa9a)+_0x14501e(0x3d7)+_0x16e51d(0x494)+_0x470dcd(0x744)+_0x14501e(0x5ac)+_0x14501e(0x9bd)+_0x3efed5(0x1da)+_0x470dcd(0xa47)+_0x14501e(0x2f0)+'果:','eWuEn':function(_0x3f63f0,_0x1c05b1){return _0x3f63f0+_0x1c05b1;},'eKeXr':function(_0x4bfa5e,_0x60bf65){return _0x4bfa5e(_0x60bf65);},'Cumnm':function(_0x4bfd5b,_0x15a5f1){return _0x4bfd5b(_0x15a5f1);},'bbOSl':function(_0x5e98a8,_0x5afb21){return _0x5e98a8+_0x5afb21;},'fvFOk':function(_0x2d4cdb,_0x22d17d){return _0x2d4cdb+_0x22d17d;},'OoDAG':_0x4408cb(0x6de)+_0x16e51d(0x931)+_0x3efed5(0x7cd)+_0x470dcd(0x8d9),'yIiby':_0x3efed5(0x986)+_0x3efed5(0x608)+_0x4408cb(0x975)+_0x3efed5(0xbb0)+_0x14501e(0x9c5)+_0x16e51d(0xbf4)+'\x20)','YXIiU':_0x4408cb(0x474)+'te','XzDkU':_0x3efed5(0x9c8)+_0x4408cb(0xc23),'KUQAt':_0x16e51d(0x5db)+'ss','BGuiH':_0x3efed5(0xac1)+_0x470dcd(0x91d)+_0x3efed5(0xb49),'BudZQ':_0x14501e(0xb14)+_0x16e51d(0xbb2)+'n','lAfhH':_0x470dcd(0x27e)+_0x4408cb(0x6b5),'VwdsJ':_0x3efed5(0x98e),'Bqrxf':function(_0x33160c,_0x58900c){return _0x33160c===_0x58900c;},'CheTW':_0x4408cb(0x97a),'MIjKm':function(_0x3226e8,_0x249dab){return _0x3226e8>_0x249dab;},'gTusV':function(_0x24b9de,_0x3c38ee){return _0x24b9de>_0x3c38ee;},'TQQiO':function(_0x45d485,_0x1301cc){return _0x45d485!==_0x1301cc;},'JlDpk':_0x16e51d(0x34c),'FNboT':function(_0x2f0cb0,_0x299bb0){return _0x2f0cb0===_0x299bb0;},'qyiQi':_0x4408cb(0x786),'ydAUs':function(_0x5aee39,_0x3885f7){return _0x5aee39===_0x3885f7;},'esVNA':_0x14501e(0x307)+'h','GFriT':_0x470dcd(0x9a6)+_0x470dcd(0x697),'pGNiE':_0x16e51d(0x5c9),'Qpxdz':_0x4408cb(0x582),'JAmyF':_0x4408cb(0x380),'xDoVG':function(_0x2d9e52,_0x4ee294){return _0x2d9e52===_0x4ee294;},'Eatex':_0x14501e(0x54a)+'t','joiyw':_0x4408cb(0x7a7)+_0x4408cb(0xc26),'hhRJS':_0x4408cb(0x458),'OPjke':_0x16e51d(0x3ab),'uuArr':function(_0x5281b4,_0x12efd8){return _0x5281b4!==_0x12efd8;},'snZut':_0x4408cb(0x358)+'n','JRWfI':function(_0x41f8f3,_0x538081){return _0x41f8f3!==_0x538081;},'zCzQx':_0x470dcd(0xaad),'BAOTT':function(_0x595e5d,_0x4bd0c7){return _0x595e5d===_0x4bd0c7;},'InUXt':_0x4408cb(0xc12),'roxFC':function(_0x4afdb9,_0x7c5781){return _0x4afdb9!==_0x7c5781;},'HeqkA':_0x3efed5(0x86b),'IILPM':_0x3efed5(0x790),'RJCdT':function(_0x31415c,_0x2406ba){return _0x31415c!==_0x2406ba;},'bWlIN':_0x3efed5(0x5d2),'eqYYl':_0x4408cb(0x70c),'LHxmU':_0x14501e(0x761),'bhohz':function(_0xf0d587,_0x152393){return _0xf0d587===_0x152393;},'wQfVb':_0x16e51d(0x6d8),'zftjp':function(_0x2158cf,_0x1eef3b){return _0x2158cf===_0x1eef3b;},'hkQVg':_0x14501e(0x287),'weHlO':_0x14501e(0x767),'nyypx':function(_0x4afd80,_0x281e9e){return _0x4afd80!==_0x281e9e;},'wbdNi':_0x14501e(0x967),'CaqHu':function(_0x50904d,_0x5e5136){return _0x50904d==_0x5e5136;},'nhanh':function(_0x2d5f46,_0x55ab1a){return _0x2d5f46===_0x55ab1a;},'tRQFL':_0x14501e(0x874),'mjDFg':_0x14501e(0x860),'tLbys':_0x4408cb(0x864),'ycliu':function(_0x257d8e,_0x484bfc){return _0x257d8e!=_0x484bfc;},'QUJGb':_0x4408cb(0x635)+'r','QEetf':function(_0xe3138e,_0x2a3aa1){return _0xe3138e===_0x2a3aa1;},'oxPuQ':_0x4408cb(0x34b),'jzrhT':function(_0x5ad251,_0x24e5d0){return _0x5ad251==_0x24e5d0;},'ZKCAc':_0x14501e(0x39c)+_0x3efed5(0x39c)+_0x470dcd(0x724),'mKzlW':function(_0x86ffa0,_0x2b8f35){return _0x86ffa0==_0x2b8f35;},'yNtHk':_0x470dcd(0x61a)+'\x200','Pfssm':_0x4408cb(0x7f4),'zapsS':function(_0x562da0,_0x35baca){return _0x562da0(_0x35baca);},'cCMTw':function(_0x7ede9,_0x5d19ee){return _0x7ede9(_0x5d19ee);}},_0xae9966=_0x441e66[_0x3efed5(0xb8a)+_0x470dcd(0x892)+_0x4408cb(0x3c8)+'l']('*'),_0x4a59e1={};_0x4a59e1[_0x14501e(0xb4b)+_0x4408cb(0x655)]='左上',_0x4a59e1[_0x4408cb(0x589)+_0x16e51d(0xae0)]='上中',_0x4a59e1[_0x14501e(0x48f)+_0x16e51d(0x4b5)]='右上',_0x4a59e1[_0x3efed5(0xac9)+_0x14501e(0x3c1)+'T']='左中',_0x4a59e1[_0x16e51d(0x837)+'R']='中间',_0x4a59e1[_0x14501e(0xac9)+_0x3efed5(0xab3)+'HT']='右中',_0x4a59e1[_0x16e51d(0x252)+_0x470dcd(0xb6e)+'T']='左下',_0x4a59e1[_0x3efed5(0x252)+_0x14501e(0x55f)+_0x14501e(0xc19)]='下中',_0x4a59e1[_0x470dcd(0x252)+_0x16e51d(0x9f5)+'HT']='右下';const _0x4962eb=_0x4a59e1,_0x2a1ec1={};_0x2a1ec1[_0x14501e(0xb26)+'00']='黑色',_0x2a1ec1[_0x16e51d(0x8ba)+'ff']='白色',_0x2a1ec1[_0x470dcd(0x708)+'00']='红色',_0x2a1ec1[_0x470dcd(0x50c)+'00']='绿色',_0x2a1ec1[_0x14501e(0xb26)+'ff']='蓝色';const _0xcba745=_0x2a1ec1;let _0x1cccbb=[],_0x932cd3=[],_0x4bd686=[_0x122614[_0x16e51d(0xaba)],_0x122614[_0x16e51d(0x368)],_0x122614[_0x16e51d(0x54d)],_0x122614[_0x4408cb(0x521)],_0x122614[_0x16e51d(0xba5)],_0x122614[_0x14501e(0x3f9)],_0x122614[_0x16e51d(0xa34)]];for(let _0x4bd664=-0x4*0x855+0x68b+-0x1ac9*-0x1;_0x122614[_0x470dcd(0x6c8)](_0x4bd664,_0xae9966[_0x3efed5(0xc1f)+'h']);_0x4bd664++){if(_0x122614[_0x4408cb(0x51d)](_0x122614[_0x470dcd(0xb8e)],_0x122614[_0x4408cb(0xb8e)])){const _0x12cbe3=_0xae9966[_0x4bd664];let _0x425d08='';if(_0x122614[_0x14501e(0x567)](_0x12cbe3[_0x14501e(0x785)+_0x14501e(0x423)+'h'],0xa1+-0x20e8+-0x1*-0x2047)||_0x122614[_0x470dcd(0x57c)](_0x12cbe3[_0x14501e(0x785)+_0x14501e(0x211)+'ht'],0x1*0x1791+-0x3a7*-0x1+-0x86*0x34)){if(_0x122614[_0x3efed5(0x616)](_0x122614[_0x3efed5(0x52f)],_0x122614[_0x16e51d(0x52f)])){const _0x2e9abe=_0xa64c93[_0x3efed5(0xa6b)+_0x4408cb(0x5bc)+'r'][_0x4408cb(0x8eb)+_0x16e51d(0x6c1)][_0x470dcd(0x476)](_0x3b4c5b),_0x2e09c4=_0xe1438f[_0x3c467f],_0x5bae77=_0x4101cf[_0x2e09c4]||_0x2e9abe;_0x2e9abe[_0x14501e(0x1f9)+_0x4408cb(0xa75)]=_0x1b548f[_0x14501e(0x476)](_0x1b9df2),_0x2e9abe[_0x3efed5(0xbb1)+_0x16e51d(0x346)]=_0x5bae77[_0x14501e(0xbb1)+_0x4408cb(0x346)][_0x470dcd(0x476)](_0x5bae77),_0x998378[_0x2e09c4]=_0x2e9abe;}else{let _0x136ee4=_0x12cbe3[_0x16e51d(0x23e)+'me'][_0x4408cb(0x6b6)+_0x470dcd(0x49d)+'e']();if(_0x122614[_0x4408cb(0x885)](_0x136ee4,_0x122614[_0x470dcd(0x46a)])&&(_0x122614[_0x4408cb(0x93d)](_0x12cbe3[_0x14501e(0x6c1)],_0x122614[_0x16e51d(0x819)])||_0x12cbe3[_0x16e51d(0x591)+_0x14501e(0x4f5)+'te'](_0x122614[_0x4408cb(0xc1d)])&&_0x122614[_0x3efed5(0x616)](_0x12cbe3[_0x470dcd(0x591)+_0x14501e(0x4f5)+'te'](_0x122614[_0x3efed5(0xc1d)])[_0x16e51d(0x6b6)+_0x4408cb(0x49d)+'e']()[_0x470dcd(0x261)+'Of'](_0x122614[_0x470dcd(0x819)]),-(0xbc8+-0xe2a+0x263)))){if(_0x122614[_0x4408cb(0x885)](_0x122614[_0x470dcd(0x54c)],_0x122614[_0x3efed5(0x5da)])){const _0x128eff=_0x49694c[_0x470dcd(0x3c3)](_0x1cc6b8,arguments);return _0x479401=null,_0x128eff;}else _0x136ee4=_0x122614[_0x470dcd(0x363)];}else{if(_0x122614[_0x14501e(0x51d)](_0x136ee4,_0x122614[_0x3efed5(0x46a)])||_0x122614[_0x3efed5(0x822)](_0x136ee4,_0x122614[_0x470dcd(0x7ed)])||_0x122614[_0x4408cb(0x885)](_0x136ee4,_0x122614[_0x3efed5(0xb32)]))_0x122614[_0x14501e(0x93d)](_0x122614[_0x14501e(0x580)],_0x122614[_0x470dcd(0x580)])?_0x136ee4=_0x122614[_0x3efed5(0x57f)]:_0xf1fee5+=_0x225a55[-0x13db*0x1+-0x1*-0x1577+-0x19c][_0x4408cb(0x830)][_0x470dcd(0x67d)+'nt'];else{if(_0x122614[_0x4408cb(0x6e7)](_0x136ee4[_0x14501e(0x261)+'Of'](_0x122614[_0x4408cb(0x530)]),-(0x2*0x135+0x1ba6+-0x2d*0xab))||_0x122614[_0x14501e(0xb18)](_0x12cbe3['id'][_0x16e51d(0x261)+'Of'](_0x122614[_0x4408cb(0x530)]),-(0x1*-0x26cf+-0x1aa4+-0x76*-0x8e))){if(_0x122614[_0x14501e(0x6e7)](_0x122614[_0x16e51d(0x944)],_0x122614[_0x3efed5(0x944)])){_0x1a1086=_0x122614[_0x3efed5(0x670)](_0x5cc841,0x310*0x8+-0x43a+-0x1445);if(!_0x150ec6)throw _0x2c7894;return _0x122614[_0x3efed5(0xab0)](_0x57fe02,0x11e7+-0x906+0x6ed*-0x1)[_0x470dcd(0x249)](()=>_0x1a7867(_0x303fe7,_0x25748d,_0x7f8492));}else _0x136ee4='按钮';}else{if(_0x122614[_0x4408cb(0x8fd)](_0x136ee4,_0x122614[_0x470dcd(0x687)]))_0x122614[_0x470dcd(0x7fa)](_0x122614[_0x470dcd(0x738)],_0x122614[_0x16e51d(0x738)])?(_0x5af55c=_0x5cd9c8[_0x14501e(0x41d)](_0x122614[_0x3efed5(0x6d3)](_0x1470aa,_0x231356))[_0x122614[_0x4408cb(0x321)]],_0x9a3f68=''):_0x136ee4='图片';else{if(_0x122614[_0x4408cb(0x885)](_0x136ee4,_0x122614[_0x3efed5(0x634)])){if(_0x122614[_0x4408cb(0x4c1)](_0x122614[_0x4408cb(0x94e)],_0x122614[_0x470dcd(0x1ec)]))_0x136ee4='表单';else{if(_0x122614[_0x14501e(0x6c8)](_0x122614[_0x16e51d(0x6d3)](_0x122614[_0x4408cb(0x4d4)](_0x122614[_0x4408cb(0xc29)](_0x122614[_0x470dcd(0xc29)](_0x122614[_0x14501e(0x4d4)](_0x3fd890,_0x514bac[_0x14501e(0x1f3)][_0x1c2cb1]),'\x0a'),_0x122614[_0x14501e(0xab4)]),_0x571f4f),_0x122614[_0x14501e(0x2e3)])[_0x4408cb(0xc1f)+'h'],0x116c+0x1d*-0x10f+-0x661*-0x3))_0x288cdd+=_0x122614[_0x16e51d(0xa84)](_0x253f2c[_0x14501e(0x1f3)][_0x2a7ae9],'\x0a');}}else{if(_0x122614[_0x470dcd(0x8fd)](_0x136ee4,_0x122614[_0x470dcd(0x672)])||_0x122614[_0x3efed5(0x5f9)](_0x136ee4,_0x122614[_0x14501e(0x516)])){if(_0x122614[_0x3efed5(0xb93)](_0x122614[_0x4408cb(0x7da)],_0x122614[_0x4408cb(0x7da)]))_0x136ee4=_0x122614[_0x3efed5(0xb30)];else{const _0x2eb549=_0x2b2054?function(){const _0x56edef=_0x4408cb;if(_0x7eebd9){const _0x4d08dd=_0x5b43e6[_0x56edef(0x3c3)](_0x3fd240,arguments);return _0x3f8810=null,_0x4d08dd;}}:function(){};return _0x5ba392=![],_0x2eb549;}}else _0x122614[_0x14501e(0xb68)](_0x122614[_0x470dcd(0x34a)],_0x122614[_0x470dcd(0x34a)])?_0x3fdb90=_0x7116d0:_0x136ee4=null;}}}}}if(_0x136ee4&&(_0x122614[_0x4408cb(0x34d)](_0x136ee4,_0x122614[_0x4408cb(0xb30)])||_0x12cbe3[_0x14501e(0xa32)]||_0x12cbe3[_0x14501e(0xb98)]||_0x12cbe3[_0x470dcd(0x591)+_0x3efed5(0x4f5)+'te'](_0x122614[_0x470dcd(0xc1d)]))){if(_0x122614[_0x3efed5(0xaf4)](_0x122614[_0x3efed5(0x26b)],_0x122614[_0x16e51d(0x695)]))_0x33fde1+='下';else{_0x425d08+=_0x136ee4;if(_0x12cbe3[_0x14501e(0xa32)]){if(_0x122614[_0x470dcd(0x6e7)](_0x122614[_0x470dcd(0xad0)],_0x122614[_0x14501e(0xad0)]))RnzfaQ[_0x4408cb(0xc00)](_0x3f7956,'0');else{if(_0x122614[_0x14501e(0x664)](_0x12cbe3[_0x16e51d(0xa32)][_0x3efed5(0x261)+'Of'](_0x122614[_0x3efed5(0x6c7)]),-(0x43*0x34+0x1f8c+-0x2d27*0x1))||_0x4bd686[_0x4408cb(0x255)+_0x3efed5(0x4b3)](_0x12cbe3[_0x4408cb(0xa32)][_0x14501e(0x6b6)+_0x3efed5(0x49d)+'e']()))continue;_0x425d08+=':“'+_0x12cbe3[_0x14501e(0xa32)]+'”';}}else{if(_0x12cbe3[_0x3efed5(0xb98)]||_0x12cbe3[_0x3efed5(0x591)+_0x3efed5(0x4f5)+'te'](_0x122614[_0x470dcd(0xc1d)])){if(_0x122614[_0x14501e(0x3a6)](_0x122614[_0x4408cb(0x96f)],_0x122614[_0x16e51d(0x96f)])){if(_0x932cd3[_0x470dcd(0x255)+_0x470dcd(0x4b3)](_0x12cbe3[_0x470dcd(0xb98)]||_0x12cbe3[_0x470dcd(0x591)+_0x14501e(0x4f5)+'te'](_0x122614[_0x3efed5(0xc1d)])))continue;if((_0x12cbe3[_0x14501e(0xb98)]||_0x12cbe3[_0x4408cb(0x591)+_0x16e51d(0x4f5)+'te'](_0x122614[_0x470dcd(0xc1d)]))[_0x16e51d(0x255)+_0x14501e(0x4b3)](_0x122614[_0x470dcd(0x6c7)])||_0x4bd686[_0x3efed5(0x255)+_0x14501e(0x4b3)]((_0x12cbe3[_0x16e51d(0xb98)]||_0x12cbe3[_0x16e51d(0x591)+_0x3efed5(0x4f5)+'te'](_0x122614[_0x4408cb(0xc1d)]))[_0x3efed5(0x6b6)+_0x14501e(0x49d)+'e']()))continue;_0x425d08+=':“'+(_0x12cbe3[_0x3efed5(0xb98)]||_0x12cbe3[_0x16e51d(0x591)+_0x3efed5(0x4f5)+'te'](_0x122614[_0x16e51d(0xc1d)]))+'”',_0x932cd3[_0x470dcd(0x529)](_0x12cbe3[_0x3efed5(0xb98)]||_0x12cbe3[_0x16e51d(0x591)+_0x14501e(0x4f5)+'te'](_0x122614[_0x16e51d(0xc1d)]));}else _0x414420=_0x3462d1;}}if((_0x12cbe3[_0x4408cb(0x40c)][_0x470dcd(0x223)]||window[_0x470dcd(0x9e6)+_0x14501e(0xb13)+_0x16e51d(0x226)+'e'](_0x12cbe3)[_0x14501e(0x59d)+_0x470dcd(0x57e)+_0x470dcd(0xa65)]||window[_0x4408cb(0x9e6)+_0x3efed5(0xb13)+_0x3efed5(0x226)+'e'](_0x12cbe3)[_0x3efed5(0x223)])&&_0x122614[_0x4408cb(0x32c)]((''+(_0x12cbe3[_0x16e51d(0x40c)][_0x14501e(0x223)]||window[_0x470dcd(0x9e6)+_0x4408cb(0xb13)+_0x16e51d(0x226)+'e'](_0x12cbe3)[_0x3efed5(0x59d)+_0x470dcd(0x57e)+_0x3efed5(0xa65)]||window[_0x3efed5(0x9e6)+_0x4408cb(0xb13)+_0x16e51d(0x226)+'e'](_0x12cbe3)[_0x3efed5(0x223)]))[_0x470dcd(0x261)+'Of'](_0x122614[_0x4408cb(0x83b)]),-(-0x215f*-0x1+-0x174b+-0xa13))&&_0x122614[_0x14501e(0x9d5)]((''+(_0x12cbe3[_0x470dcd(0x40c)][_0x14501e(0x223)]||window[_0x3efed5(0x9e6)+_0x470dcd(0xb13)+_0x3efed5(0x226)+'e'](_0x12cbe3)[_0x470dcd(0x59d)+_0x3efed5(0x57e)+_0x16e51d(0xa65)]||window[_0x14501e(0x9e6)+_0x470dcd(0xb13)+_0x4408cb(0x226)+'e'](_0x12cbe3)[_0x3efed5(0x223)]))[_0x14501e(0x261)+'Of'](_0x122614[_0x3efed5(0xafc)]),-(0x23a+-0x87*0x25+0x114a))){if(_0x122614[_0x16e51d(0x8fd)](_0x122614[_0x14501e(0x7bd)],_0x122614[_0x16e51d(0x7bd)]))_0x425d08+=_0x3efed5(0xaf8)+(_0x12cbe3[_0x14501e(0x40c)][_0x14501e(0x223)]||window[_0x16e51d(0x9e6)+_0x3efed5(0xb13)+_0x3efed5(0x226)+'e'](_0x12cbe3)[_0x14501e(0x59d)+_0x14501e(0x57e)+_0x3efed5(0xa65)]||window[_0x16e51d(0x9e6)+_0x16e51d(0xb13)+_0x14501e(0x226)+'e'](_0x12cbe3)[_0x14501e(0x223)]);else{let _0x2cd8fd;try{_0x2cd8fd=RnzfaQ[_0x3efed5(0xacd)](_0x4fdfc2,RnzfaQ[_0x16e51d(0xa20)](RnzfaQ[_0x470dcd(0x376)](RnzfaQ[_0x3efed5(0x25c)],RnzfaQ[_0x4408cb(0x683)]),');'))();}catch(_0x5041c7){_0x2cd8fd=_0x1177a0;}return _0x2cd8fd;}}const _0x166d8c=_0x122614[_0x4408cb(0x973)](getElementPosition,_0x12cbe3);_0x425d08+=_0x16e51d(0xb55)+_0x166d8c;}}}}if(_0x425d08&&_0x122614[_0x4408cb(0x664)](_0x425d08,''))_0x1cccbb[_0x16e51d(0x529)](_0x425d08);}else _0x489654=_0x327121[_0x16e51d(0x41d)](_0x53947d)[_0x122614[_0x470dcd(0x321)]],_0xd74da7='';}return _0x122614[_0x470dcd(0x771)](unique,_0x1cccbb);}function unique(_0x41bf46){const _0x718fa3=_0x8015;return Array[_0x718fa3(0x46e)](new Set(_0x41bf46));}function getElementPosition(_0x472a03){const _0x5f06cf=_0x8015,_0x54d859=_0x8015,_0x346a41=_0x8015,_0x4fdc7a=_0x8015,_0xda980e=_0x8015,_0x4d4be5={};_0x4d4be5[_0x5f06cf(0x67f)]=function(_0x380c2e,_0x4ee4db){return _0x380c2e+_0x4ee4db;},_0x4d4be5[_0x54d859(0xb84)]=_0x5f06cf(0x6e5),_0x4d4be5[_0x4fdc7a(0xc0d)]=_0xda980e(0x30b),_0x4d4be5[_0x346a41(0x94a)]=_0x5f06cf(0x684)+'n',_0x4d4be5[_0x54d859(0x2af)]=function(_0x537526,_0x1677f6){return _0x537526+_0x1677f6;},_0x4d4be5[_0xda980e(0x40e)]=_0x54d859(0x80b)+'es',_0x4d4be5[_0x4fdc7a(0xa35)]=_0x4fdc7a(0xb79)+':',_0x4d4be5[_0xda980e(0xb19)]=function(_0x214f41,_0x45da34){return _0x214f41/_0x45da34;},_0x4d4be5[_0x4fdc7a(0x428)]=function(_0x33aa86,_0x1b6052){return _0x33aa86+_0x1b6052;},_0x4d4be5[_0x346a41(0x2ac)]=function(_0x2d8a44,_0xe09f79){return _0x2d8a44/_0xe09f79;},_0x4d4be5[_0x4fdc7a(0x972)]=function(_0x36530c,_0x2ce76b){return _0x36530c<_0x2ce76b;},_0x4d4be5[_0x346a41(0x3b4)]=function(_0x3cee82,_0x50e627){return _0x3cee82===_0x50e627;},_0x4d4be5[_0x54d859(0x91e)]=_0xda980e(0x964),_0x4d4be5[_0x5f06cf(0x2f5)]=_0x54d859(0xa87),_0x4d4be5[_0x54d859(0xbb7)]=function(_0x407fc4,_0x20b3e5){return _0x407fc4>_0x20b3e5;},_0x4d4be5[_0x346a41(0x7c3)]=function(_0xcb5278,_0x5e433f){return _0xcb5278/_0x5e433f;},_0x4d4be5[_0x346a41(0x857)]=function(_0x3b52ca,_0x3dfa58){return _0x3b52ca*_0x3dfa58;},_0x4d4be5[_0x54d859(0x2cb)]=_0x4fdc7a(0x703),_0x4d4be5[_0x346a41(0xb6f)]=_0xda980e(0x33b),_0x4d4be5[_0xda980e(0xaa9)]=function(_0x235055,_0x1b42af){return _0x235055!==_0x1b42af;},_0x4d4be5[_0x5f06cf(0x8ec)]=_0x4fdc7a(0xbb3),_0x4d4be5[_0x54d859(0x293)]=_0x5f06cf(0x872),_0x4d4be5[_0x54d859(0x775)]=function(_0x5055b2,_0x3fc24e){return _0x5055b2===_0x3fc24e;},_0x4d4be5[_0xda980e(0x5ba)]=_0x4fdc7a(0x832),_0x4d4be5[_0x346a41(0xbc9)]=_0x346a41(0xc48),_0x4d4be5[_0x54d859(0x586)]=function(_0x28e80a,_0x1071bd){return _0x28e80a>_0x1071bd;},_0x4d4be5[_0x5f06cf(0x21a)]=function(_0x1aaeb8,_0x2363a5){return _0x1aaeb8/_0x2363a5;},_0x4d4be5[_0x5f06cf(0x6e2)]=function(_0x28e86e,_0x134138){return _0x28e86e*_0x134138;},_0x4d4be5[_0x5f06cf(0x9e8)]=_0x346a41(0xa1f),_0x4d4be5[_0xda980e(0x9a3)]=_0x54d859(0x8a8),_0x4d4be5[_0x4fdc7a(0x30d)]=_0xda980e(0xbc2),_0x4d4be5[_0xda980e(0x60e)]=_0x4fdc7a(0x8c5);const _0x354f00=_0x4d4be5,_0x2f2851=_0x472a03[_0x54d859(0x41f)+_0xda980e(0x68d)+_0xda980e(0x367)+_0x4fdc7a(0x97e)+'t'](),_0x53d1c8=_0x354f00[_0x346a41(0x2af)](_0x2f2851[_0x346a41(0x323)],_0x354f00[_0x346a41(0xb19)](_0x2f2851[_0x54d859(0x4c9)],-0x2384*0x1+0x9*-0x145+0x2ef3)),_0x57ff95=_0x354f00[_0x54d859(0x428)](_0x2f2851[_0xda980e(0x5fd)],_0x354f00[_0x346a41(0x2ac)](_0x2f2851[_0x346a41(0x483)+'t'],-0x3b*0x40+0xa9d+0x425));let _0x3325b4='';if(_0x354f00[_0x5f06cf(0x972)](_0x53d1c8,_0x354f00[_0xda980e(0x2ac)](window[_0x4fdc7a(0x394)+_0x54d859(0x5f7)],0x3f6*-0x9+0x4d7+0x1ed2)))_0x354f00[_0x346a41(0x3b4)](_0x354f00[_0x346a41(0x91e)],_0x354f00[_0x4fdc7a(0x2f5)])?_0x117c37='按钮':_0x3325b4+='左';else _0x354f00[_0xda980e(0xbb7)](_0x53d1c8,_0x354f00[_0x5f06cf(0x7c3)](_0x354f00[_0x4fdc7a(0x857)](window[_0x5f06cf(0x394)+_0x4fdc7a(0x5f7)],0x2388+-0x2333+-0x53),0x332*-0x2+-0x4aa+0xb11))?_0x354f00[_0x4fdc7a(0x3b4)](_0x354f00[_0x4fdc7a(0x2cb)],_0x354f00[_0x346a41(0xb6f)])?_0x3b70b0+=_0x2f1d8c[-0x2f*0x40+0x2108+0x38c*-0x6][_0x4fdc7a(0x830)][_0x5f06cf(0x67d)+'nt']:_0x3325b4+='右':_0x354f00[_0xda980e(0xaa9)](_0x354f00[_0x5f06cf(0x8ec)],_0x354f00[_0x54d859(0x293)])?_0x3325b4+='中':function(){return!![];}[_0x346a41(0xa6b)+_0x346a41(0x5bc)+'r'](vEfGfo[_0x4fdc7a(0x67f)](vEfGfo[_0xda980e(0xb84)],vEfGfo[_0x4fdc7a(0xc0d)]))[_0x4fdc7a(0x45d)](vEfGfo[_0xda980e(0x94a)]);if(_0x354f00[_0x4fdc7a(0x972)](_0x57ff95,_0x354f00[_0x4fdc7a(0x2ac)](window[_0xda980e(0x394)+_0x346a41(0x32b)+'t'],0x13*0x15b+0x2*-0x1f7+-0x15d0))){if(_0x354f00[_0xda980e(0x775)](_0x354f00[_0x4fdc7a(0x5ba)],_0x354f00[_0x346a41(0xbc9)]))try{_0x3b6934=_0x3a0893[_0x346a41(0x41d)](_0x354f00[_0x54d859(0x2af)](_0x5adfc0,_0x525e88))[_0x354f00[_0xda980e(0x40e)]],_0x59fccf='';}catch(_0x1ee585){_0x4b4858=_0x26c78f[_0x54d859(0x41d)](_0x5630c5)[_0x354f00[_0x346a41(0x40e)]],_0x3b0824='';}else _0x3325b4+='上';}else _0x354f00[_0x346a41(0x586)](_0x57ff95,_0x354f00[_0xda980e(0x21a)](_0x354f00[_0x346a41(0x6e2)](window[_0x4fdc7a(0x394)+_0xda980e(0x32b)+'t'],0xc57+0xee8+-0x1b3d),0x1b*0x90+-0x6ab*0x2+-0x1d7))?_0x354f00[_0xda980e(0xaa9)](_0x354f00[_0x4fdc7a(0x9e8)],_0x354f00[_0x54d859(0x9a3)])?_0x3325b4+='下':(_0x69712a=_0x2cbefe[_0x4fdc7a(0x41d)](_0x354f00[_0x5f06cf(0x67f)](_0x6f6902,_0x2d3cd2))[_0x354f00[_0x54d859(0x40e)]],_0x46740b=''):_0x354f00[_0x54d859(0x3b4)](_0x354f00[_0x54d859(0x30d)],_0x354f00[_0xda980e(0x60e)])?_0x4a9704[_0x54d859(0x759)](_0x354f00[_0x346a41(0xa35)],_0x595eaa):_0x3325b4+='中';return _0x3325b4;}function _0x8015(_0x248776,_0x4e3248){const _0x586a20=_0x348f();return _0x8015=function(_0x441f4f,_0xce7ba6){_0x441f4f=_0x441f4f-(-0x8de*-0x4+0x1*-0x16f+-0x2051);let _0x3962ce=_0x586a20[_0x441f4f];return _0x3962ce;},_0x8015(_0x248776,_0x4e3248);}function stringToArrayBuffer(_0x1cdbb4){const _0x1268a4=_0x8015,_0x5da55e=_0x8015,_0x4d7de3=_0x8015,_0x4d856c=_0x8015,_0x5b09e5=_0x8015,_0x238d16={};_0x238d16[_0x1268a4(0x8c8)]=_0x5da55e(0x1d3)+_0x5da55e(0x5e5),_0x238d16[_0x5da55e(0x2d9)]=_0x4d7de3(0xb82),_0x238d16[_0x5da55e(0x690)]=_0x4d7de3(0x990)+_0x5b09e5(0x72d),_0x238d16[_0x1268a4(0x9a2)]=_0x1268a4(0xbb4)+_0x1268a4(0x8f6)+'t',_0x238d16[_0x4d7de3(0x8e8)]=function(_0x58fa3d,_0x11cc87){return _0x58fa3d===_0x11cc87;},_0x238d16[_0x5da55e(0x5ef)]=_0x5b09e5(0x3c7),_0x238d16[_0x1268a4(0x6da)]=function(_0x178669,_0x5bf612){return _0x178669<_0x5bf612;},_0x238d16[_0x5b09e5(0x875)]=_0x1268a4(0x7ea),_0x238d16[_0x4d7de3(0x270)]=_0x1268a4(0x799);const _0x9004c2=_0x238d16;if(!_0x1cdbb4)return;try{if(_0x9004c2[_0x1268a4(0x8e8)](_0x9004c2[_0x4d7de3(0x5ef)],_0x9004c2[_0x5b09e5(0x5ef)])){var _0x42ac44=new ArrayBuffer(_0x1cdbb4[_0x4d856c(0xc1f)+'h']),_0x39bac7=new Uint8Array(_0x42ac44);for(var _0x39dcc4=-0xb9d+0x1831+-0xc94,_0x40e50c=_0x1cdbb4[_0x1268a4(0xc1f)+'h'];_0x9004c2[_0x4d7de3(0x6da)](_0x39dcc4,_0x40e50c);_0x39dcc4++){if(_0x9004c2[_0x5b09e5(0x8e8)](_0x9004c2[_0x5da55e(0x875)],_0x9004c2[_0x4d7de3(0x270)])){if(_0x3013aa){const _0x48727c=_0x1e26f1[_0x5da55e(0x3c3)](_0x5d45b5,arguments);return _0x229d8f=null,_0x48727c;}}else _0x39bac7[_0x39dcc4]=_0x1cdbb4[_0x5b09e5(0x405)+_0x4d7de3(0x2c1)](_0x39dcc4);}return _0x42ac44;}else{const _0x402f6d=_0x9004c2[_0x4d856c(0x8c8)][_0x4d856c(0xb89)]('|');let _0x4dfcb4=0x1503+0x876+0xf*-0x1f7;while(!![]){switch(_0x402f6d[_0x4dfcb4++]){case'0':const _0xfe6180={};_0xfe6180[_0x4d7de3(0xaca)]=_0x9004c2[_0x4d856c(0x2d9)],_0xfe6180[_0x4d7de3(0x67d)+'nt']=_0x39cba7,_0x43b5f1[_0x5da55e(0x529)](_0xfe6180);continue;case'1':return;case'2':_0x5d3f3b=0x187*0x17+-0x1d96+-0x58b;continue;case'3':const _0x17fae9={};_0x17fae9[_0x4d856c(0xaca)]=_0x9004c2[_0x4d856c(0x690)],_0x17fae9[_0x4d7de3(0x67d)+'nt']=_0x5397a9,_0x5acffe[_0x5b09e5(0x529)](_0x17fae9);continue;case'4':_0x2b9c7b[_0x1268a4(0xb8a)+_0x5b09e5(0x892)+_0x1268a4(0x215)](_0x9004c2[_0x5b09e5(0x9a2)])[_0x5da55e(0x1c2)]='';continue;}break;}}}catch(_0x323483){}}function arrayBufferToString(_0x128462){const _0x5ad433=_0x8015,_0x24a397=_0x8015,_0x1d9971=_0x8015,_0x57ae1a=_0x8015,_0x207899=_0x8015,_0x39abe7={'RPGFV':function(_0x34b47e,_0x20bd8a){return _0x34b47e(_0x20bd8a);},'ldzgK':_0x5ad433(0x30e)+'ss','dgWrI':function(_0x12d5bc,_0x18af84){return _0x12d5bc+_0x18af84;},'aiSRS':_0x5ad433(0x80b)+'es','NbXDb':function(_0x32ffb2,_0x3ead41){return _0x32ffb2!==_0x3ead41;},'PlWli':_0x5ad433(0x2fc),'fHPXh':function(_0x3828e8,_0x5b021a){return _0x3828e8<_0x5b021a;},'IayhU':_0x57ae1a(0x9ee)};try{if(_0x39abe7[_0x1d9971(0x3eb)](_0x39abe7[_0x1d9971(0x77b)],_0x39abe7[_0x207899(0x77b)]))_0x39abe7[_0x57ae1a(0xc20)](_0x444eff,_0x39abe7[_0x57ae1a(0x9e1)]);else{var _0x1666b0=new Uint8Array(_0x128462),_0x360e90='';for(var _0x3d0e9b=0x3bf*0x7+-0x20d6+0x69d*0x1;_0x39abe7[_0x207899(0x732)](_0x3d0e9b,_0x1666b0[_0x1d9971(0x720)+_0x207899(0x3e9)]);_0x3d0e9b++){if(_0x39abe7[_0x5ad433(0x3eb)](_0x39abe7[_0x1d9971(0x787)],_0x39abe7[_0x207899(0x787)]))try{_0x352c6f=_0x353eea[_0x24a397(0x41d)](_0x39abe7[_0x207899(0x8f8)](_0x714f5f,_0xb8acea))[_0x39abe7[_0x57ae1a(0x6db)]],_0x3af010='';}catch(_0x58a48b){_0x4db00f=_0x4d7a18[_0x207899(0x41d)](_0x50e985)[_0x39abe7[_0x5ad433(0x6db)]],_0x5cb74a='';}else _0x360e90+=String[_0x1d9971(0x433)+_0x57ae1a(0x661)+_0x1d9971(0x7ee)](_0x1666b0[_0x3d0e9b]);}return _0x360e90;}}catch(_0x2a485d){}}function importPrivateKey(_0xd25cf4){const _0x44013d=_0x8015,_0x3665b2=_0x8015,_0x8bfcc1=_0x8015,_0x64814c=_0x8015,_0x20a572=_0x8015,_0x5caf6a={'vyVOv':_0x44013d(0x8b7)+_0x3665b2(0x59c)+_0x8bfcc1(0x9fc)+_0x8bfcc1(0xace)+_0x8bfcc1(0x86c)+'--','RKjqD':_0x64814c(0x8b7)+_0x64814c(0x5fb)+_0x44013d(0xb27)+_0x64814c(0xbef)+_0x20a572(0x8b7),'BQCRb':function(_0x486237,_0x189986){return _0x486237-_0x189986;},'prsJb':function(_0x10738e,_0x1ef0a9){return _0x10738e(_0x1ef0a9);},'fiQaQ':function(_0x380f23,_0xa54ad1){return _0x380f23(_0xa54ad1);},'sLQVz':_0x64814c(0x45c),'Ebrks':_0x20a572(0x7a9)+_0x3665b2(0x24b),'nPrPC':_0x44013d(0xaf1)+'56','XUwAe':_0x3665b2(0x82b)+'pt'},_0x137417=_0x5caf6a[_0x3665b2(0x318)],_0x250800=_0x5caf6a[_0x64814c(0x7ff)],_0x37e46b=_0xd25cf4[_0x3665b2(0xb77)+_0x20a572(0x4d9)](_0x137417[_0x44013d(0xc1f)+'h'],_0x5caf6a[_0x8bfcc1(0x612)](_0xd25cf4[_0x8bfcc1(0xc1f)+'h'],_0x250800[_0x44013d(0xc1f)+'h'])),_0x1698b1=_0x5caf6a[_0x20a572(0xc15)](atob,_0x37e46b),_0x3162e6=_0x5caf6a[_0x8bfcc1(0x30c)](stringToArrayBuffer,_0x1698b1);return crypto[_0x3665b2(0x248)+'e'][_0x8bfcc1(0x821)+_0x20a572(0x656)](_0x5caf6a[_0x64814c(0x1f6)],_0x3162e6,{'name':_0x5caf6a[_0x20a572(0x81e)],'hash':_0x5caf6a[_0x8bfcc1(0x47d)]},!![],[_0x5caf6a[_0x3665b2(0x5b6)]]);}function importPublicKey(_0x5a698b){const _0x208b99=_0x8015,_0x1f59fe=_0x8015,_0x304843=_0x8015,_0x15f35c=_0x8015,_0x1f522a=_0x8015,_0x255c96={'dytSo':function(_0x132e82,_0x2f5961){return _0x132e82!==_0x2f5961;},'JghBx':_0x208b99(0x927),'iKPCj':_0x1f59fe(0x5a2)+_0x1f59fe(0x370)+'+$','QBvJy':function(_0x4464a7,_0x19dff0){return _0x4464a7(_0x19dff0);},'UNgPA':_0x15f35c(0x7a9)+_0x304843(0x24b),'RBdfd':function(_0x86bdab,_0x45c92b){return _0x86bdab+_0x45c92b;},'AeQMa':_0x1f522a(0x6de)+_0x208b99(0x931)+_0x1f522a(0x7cd)+_0x1f59fe(0x8d9),'VhgGZ':_0x208b99(0x986)+_0x1f59fe(0x608)+_0x304843(0x975)+_0x208b99(0xbb0)+_0x304843(0x9c5)+_0x208b99(0xbf4)+'\x20)','bCToM':function(_0x289694){return _0x289694();},'XiIjj':_0x304843(0x6a6),'ACeTj':_0x304843(0x378),'QdGUC':function(_0x5e9d53,_0x53c1d2){return _0x5e9d53===_0x53c1d2;},'lDKUW':_0x304843(0x952),'NrlFU':function(_0x1f7c0,_0x18a0bd){return _0x1f7c0!==_0x18a0bd;},'Dohye':_0x208b99(0xa38),'qMnfV':_0x208b99(0x6d5),'fcMfM':function(_0x2bbaac,_0x38946e){return _0x2bbaac+_0x38946e;},'NsdWC':_0x304843(0x80b)+'es','QeOxJ':_0x208b99(0x94d),'waAAS':_0x15f35c(0x5cc),'kvgsT':_0x304843(0x4e8),'MImVM':_0x1f59fe(0x877),'ENYMs':_0x304843(0x4e6),'cbTqi':_0x1f522a(0x74b),'krsLn':function(_0xe99f1c,_0x323cea){return _0xe99f1c-_0x323cea;},'XnUqP':function(_0x39fbea,_0x1c3950){return _0x39fbea(_0x1c3950);},'PkJJI':function(_0x2602f4,_0x3ae1ce){return _0x2602f4(_0x3ae1ce);},'aKMgb':_0x304843(0xbdb),'YoUgn':_0x304843(0x40b),'IRLYi':_0x208b99(0xc53)+_0x304843(0x531)+_0x1f59fe(0x93f)+')','bHGOj':_0x304843(0xc1e)+_0x1f522a(0xc0e)+_0x15f35c(0x2c9)+_0x15f35c(0xb6c)+_0x1f522a(0x27d)+_0x1f522a(0x2a0)+_0x304843(0x3e0),'heKKR':_0x1f522a(0x7a4),'zmpcC':function(_0x1ccf56,_0x5f1176){return _0x1ccf56+_0x5f1176;},'aSaqf':_0x1f522a(0x296),'pwbhr':function(_0xdafb5f,_0x1bd6af){return _0xdafb5f+_0x1bd6af;},'NgdQx':_0x1f522a(0x786),'xbPyC':function(_0x13ec2c,_0x2ec49a){return _0x13ec2c!==_0x2ec49a;},'wFFbm':_0x15f35c(0x8ed),'XoYba':function(_0x3880ce,_0x4253ea){return _0x3880ce(_0x4253ea);},'EEgzV':_0x1f59fe(0x6f9),'OrHRT':function(_0x11477a){return _0x11477a();},'YZzjk':function(_0x5ee376,_0x3aac4a){return _0x5ee376===_0x3aac4a;},'kuJUq':_0x1f522a(0x753),'mScWO':function(_0x3b0c56,_0x56ddb8,_0x16120c){return _0x3b0c56(_0x56ddb8,_0x16120c);},'OqREk':function(_0x41d27b,_0x36e419){return _0x41d27b>_0x36e419;},'jMVTr':function(_0x28d9f8,_0x58d4a5){return _0x28d9f8(_0x58d4a5);},'DThcX':_0x304843(0xbb4)+_0x208b99(0xb06),'XbmBV':function(_0x10e70f,_0x24b50e){return _0x10e70f+_0x24b50e;},'doUNG':_0x1f522a(0x73c)+_0x15f35c(0x3e8)+_0x1f59fe(0x970)+_0x208b99(0xa88)+_0x1f59fe(0x536)+_0x15f35c(0x666)+_0x1f59fe(0x56a)+_0x15f35c(0x95c)+_0x1f522a(0x300)+_0x304843(0x723)+_0x1f59fe(0x3f6),'aTaUm':_0x1f522a(0x788)+_0x1f59fe(0x815),'HZZjw':function(_0x45fbdf,_0x34b4f5){return _0x45fbdf==_0x34b4f5;},'fNkaB':_0x1f59fe(0x3e1)+_0x1f522a(0x5c5)+_0x1f59fe(0x27b)+_0x304843(0x4bb)+_0x208b99(0x2da)+_0x208b99(0x325)+_0x1f59fe(0x79a)+_0x1f59fe(0x34e)+_0x15f35c(0x863)+_0x15f35c(0xa2d)+_0x15f35c(0x235)+_0x1f522a(0x2e5)+_0x208b99(0x7dd),'cNYuM':_0x1f59fe(0x859)+_0x304843(0x52a)+_0x15f35c(0x4c0),'EcBVi':function(_0x48f081,_0x5850ec){return _0x48f081(_0x5850ec);},'mOfMw':_0x1f59fe(0x8df)+_0x304843(0x3a4)+'rl','EqCdr':_0x15f35c(0xba9)+':','mQjmx':_0x1f522a(0x499),'xSfPd':function(_0x4b46d7,_0x49b0aa){return _0x4b46d7+_0x49b0aa;},'MiuFg':_0x15f35c(0x21f),'CGInK':function(_0x2b0490,_0x63f723){return _0x2b0490(_0x63f723);},'QoYAy':function(_0x37b76a,_0x2883fb){return _0x37b76a(_0x2883fb);},'yDlgm':_0x1f59fe(0x502)+'l','lFFMf':function(_0x6bbef2,_0x11476d){return _0x6bbef2(_0x11476d);},'qDgFf':_0x304843(0xba9)+_0x15f35c(0xc2d),'SBjRu':function(_0x4b0376,_0x2b9cb1){return _0x4b0376(_0x2b9cb1);},'mzjaT':_0x304843(0x238)+'rl','mjcBw':_0x1f59fe(0x73b)+_0x1f59fe(0x52a)+_0x1f59fe(0x4c0),'GUrQS':function(_0x3a74aa,_0x61912b){return _0x3a74aa+_0x61912b;},'AMIHq':_0x1f522a(0x7b5)+_0x1f59fe(0x8d4)+_0x1f59fe(0xa1b),'YlObH':function(_0x5edfe0,_0x1bca0c){return _0x5edfe0(_0x1bca0c);},'acKPf':_0x304843(0x38a)+'rl','sOaAv':_0x304843(0x526)+'rl','NdrQd':_0x208b99(0x450),'MtVrc':_0x304843(0x823)+_0x1f522a(0x52a)+_0x208b99(0x4c0),'XSNit':_0x304843(0xba9)+_0x1f522a(0x1c7)+_0x15f35c(0x3a4)+'rl','PPJyK':function(_0x4bb7ce,_0xd5d272){return _0x4bb7ce(_0xd5d272);},'UpiBw':_0x304843(0xba9)+_0x208b99(0x5ab),'EiCCf':_0x1f522a(0x9a7)+_0x15f35c(0x8d4)+_0x208b99(0xa1b),'uuBqx':function(_0x4d9bb8,_0x2ad5b5){return _0x4d9bb8+_0x2ad5b5;},'dKFUd':_0x304843(0xba9)+_0x1f522a(0x4c6)+_0x208b99(0x9c4)+'l','XMeBO':_0x1f522a(0x686),'rkJXJ':function(_0x3a7bf1,_0x47e412){return _0x3a7bf1+_0x47e412;},'XBKwH':_0x15f35c(0xba9),'gCsjJ':function(_0x1a78f9,_0x3669af){return _0x1a78f9(_0x3669af);},'SuFKH':_0x208b99(0x75a)+'l','RWhki':_0x208b99(0x24c)+'l','RsqGL':_0x1f59fe(0x839)+_0x1f522a(0x8d4)+_0x1f59fe(0xa1b),'EOkvJ':function(_0x3936ab,_0x16edcf){return _0x3936ab+_0x16edcf;},'mKKQs':_0x1f522a(0xb79)+':','EBpyS':function(_0x4006d7,_0x52231f){return _0x4006d7===_0x52231f;},'tUkDe':_0x1f522a(0x403),'REUgp':_0x1f59fe(0x74c),'WqDZT':function(_0xfab656,_0x3e1d0e){return _0xfab656!==_0x3e1d0e;},'yJPqO':_0x1f522a(0x42d),'IbiOl':_0x15f35c(0x1e8),'lllct':_0x208b99(0x773),'NlYRh':function(_0x102254,_0x335bca){return _0x102254===_0x335bca;},'QkXoP':_0x1f522a(0xb4e),'BAfiT':function(_0x376310,_0x39c66e){return _0x376310+_0x39c66e;},'MrIZb':_0x1f59fe(0x30e)+'ss','wnZzF':_0x208b99(0x203),'iJbyi':_0x304843(0xb21),'VAxWZ':function(_0x12332b,_0x524127){return _0x12332b!==_0x524127;},'zcTLi':_0x208b99(0x7c9),'hTpaK':function(_0x3b3dab,_0x32c1a7){return _0x3b3dab+_0x32c1a7;},'iShrp':function(_0x39e193,_0x59bca5){return _0x39e193===_0x59bca5;},'jpimr':_0x304843(0x341),'QUTgL':function(_0x22f649,_0x5cbd78){return _0x22f649>_0x5cbd78;},'UkMhD':function(_0x1a6f4c,_0x22ebf8){return _0x1a6f4c+_0x22ebf8;},'KQByU':function(_0x1bbb83,_0x1c5999){return _0x1bbb83(_0x1c5999);},'WoLXH':_0x15f35c(0x8e6),'QQFZI':_0x1f522a(0xb82),'DqKGw':function(_0x51bd36,_0x539652){return _0x51bd36+_0x539652;},'vHorq':_0x304843(0xbb4),'RieNP':_0x208b99(0x5dd),'uScCZ':_0x15f35c(0x69d)+'识','UxsVb':_0x15f35c(0x26c)+_0x1f59fe(0x692)+_0x15f35c(0xaab)+_0x15f35c(0x806)+_0x1f522a(0xb5f)+_0x208b99(0x974)+_0x1f59fe(0x5b0)+_0x1f522a(0x389)+_0x208b99(0x37e)+_0x1f59fe(0x998)+_0x304843(0xc5e)+_0x15f35c(0xbea)+_0x208b99(0x220),'feFvb':function(_0xb5a454,_0x1eb6e9){return _0xb5a454!=_0x1eb6e9;},'BmSxt':function(_0x504e61,_0x449747,_0x49a581){return _0x504e61(_0x449747,_0x49a581);},'yNcjr':_0x1f522a(0x4c6)+_0x208b99(0x95d)+_0x15f35c(0x206)+_0x1f522a(0x5dc)+_0x1f522a(0x618)+_0x1f59fe(0xc11),'qXcqh':_0x1f59fe(0x800),'fahDm':_0x304843(0xa9f),'WXuJD':_0x1f59fe(0x1e1),'oMpNR':_0x208b99(0xad5),'skAfx':_0x1f59fe(0x759),'yltHu':_0x1f59fe(0x1f0)+_0x1f59fe(0x2a1),'txuZK':_0x15f35c(0x868),'qhsdY':_0x1f59fe(0x71d),'xnzKF':function(_0xbf3c55,_0x4867d0){return _0xbf3c55<_0x4867d0;},'CtENW':_0x15f35c(0x949),'czvrv':function(_0xe347f9){return _0xe347f9();},'DmcdX':function(_0x393eca,_0x51a18e,_0x223591){return _0x393eca(_0x51a18e,_0x223591);},'vVZmJ':_0x304843(0x8b7)+_0x1f522a(0x59c)+_0x15f35c(0x1ba)+_0x15f35c(0x654)+_0x208b99(0xa94)+'-','McLeS':_0x304843(0x8b7)+_0x304843(0x5fb)+_0x1f522a(0x5e4)+_0x1f522a(0x924)+_0x208b99(0x709),'CZCUe':function(_0x535b47,_0x254ee8){return _0x535b47(_0x254ee8);},'sakId':_0x15f35c(0x2f3),'QWOHh':_0x304843(0xaf1)+'56','TZXLu':_0x304843(0x51c)+'pt'},_0x5abe8c=(function(){const _0x15502a=_0x208b99,_0x1c9ab7=_0x15f35c,_0x2d467c=_0x1f522a,_0x40ea8d=_0x15f35c,_0xe718ab=_0x208b99,_0x5231b3={'ATMAw':function(_0x2d9eab,_0x220c9d){const _0x239a5e=_0x8015;return _0x255c96[_0x239a5e(0x646)](_0x2d9eab,_0x220c9d);},'iXPwF':_0x255c96[_0x15502a(0x748)],'BmxVy':function(_0x383365,_0x1eb9a6){const _0x21184f=_0x15502a;return _0x255c96[_0x21184f(0xa3d)](_0x383365,_0x1eb9a6);},'ZZqEi':_0x255c96[_0x15502a(0x2cc)],'eSyri':_0x255c96[_0x2d467c(0xb40)],'rCtPN':function(_0xb7635c){const _0x12e751=_0x2d467c;return _0x255c96[_0x12e751(0x45f)](_0xb7635c);},'ZDgrI':function(_0x5cd7d7,_0x40bb80){const _0x19078d=_0x15502a;return _0x255c96[_0x19078d(0xbad)](_0x5cd7d7,_0x40bb80);},'KhVfm':_0x255c96[_0x1c9ab7(0x557)],'wsQbJ':_0x255c96[_0x1c9ab7(0x930)]};if(_0x255c96[_0x1c9ab7(0x6e1)](_0x255c96[_0x15502a(0xa59)],_0x255c96[_0x15502a(0xa59)])){let _0x2773cd=!![];return function(_0x1069a5,_0x53c8ed){const _0x39e876=_0x2d467c,_0x5f5c96=_0x1c9ab7,_0x45615c=_0x40ea8d,_0x43f2f8=_0x1c9ab7;if(_0x255c96[_0x39e876(0xbad)](_0x255c96[_0x39e876(0xc09)],_0x255c96[_0x5f5c96(0xc09)]))_0x21e77e[_0x39e876(0xa9f)](_0x1df9f9);else{const _0x32203c=_0x2773cd?function(){const _0x5744c9=_0x5f5c96,_0x314b24=_0x39e876,_0x7c2d74=_0x5f5c96,_0xeade98=_0x5f5c96,_0x451900=_0x39e876,_0x4d14c6={'qkOlE':function(_0x446beb,_0x108d5b){const _0x5e6f5d=_0x8015;return _0x5231b3[_0x5e6f5d(0x6fa)](_0x446beb,_0x108d5b);},'jNJdC':_0x5231b3[_0x5744c9(0x92d)],'PbvrN':function(_0x4d86ad,_0x724a5c){const _0xfc965c=_0x5744c9;return _0x5231b3[_0xfc965c(0x9da)](_0x4d86ad,_0x724a5c);},'Cwdlt':_0x5231b3[_0x5744c9(0x6ce)],'CeBOV':_0x5231b3[_0x314b24(0x1c1)],'flVYk':function(_0x5b4029){const _0x4f4830=_0x7c2d74;return _0x5231b3[_0x4f4830(0x820)](_0x5b4029);}};if(_0x5231b3[_0x314b24(0xbcb)](_0x5231b3[_0x314b24(0xa49)],_0x5231b3[_0x314b24(0xa49)]))try{_0xf977c6=_0x4d14c6[_0x451900(0x4d3)](_0x47dd09,_0x3d76cd);const _0x59d221={};return _0x59d221[_0x314b24(0x29f)]=_0x4d14c6[_0x451900(0x560)],_0xec9d7d[_0x7c2d74(0x248)+'e'][_0xeade98(0x51c)+'pt'](_0x59d221,_0x188afd,_0x2effc7);}catch(_0x468cba){}else{if(_0x53c8ed){if(_0x5231b3[_0x5744c9(0xbcb)](_0x5231b3[_0x451900(0x1c6)],_0x5231b3[_0xeade98(0x1c6)])){const _0x541a39={'rxJIx':function(_0x2c6e05,_0x5965b4){const _0x572a68=_0x7c2d74;return MMARCr[_0x572a68(0x4d3)](_0x2c6e05,_0x5965b4);},'AynSI':function(_0x3bcdcb,_0x370035){const _0x3b3ff0=_0x314b24;return MMARCr[_0x3b3ff0(0xa50)](_0x3bcdcb,_0x370035);},'pVJhW':MMARCr[_0x7c2d74(0x920)],'SQIvs':MMARCr[_0x5744c9(0x44b)]},_0x335c2c=function(){const _0x51281d=_0x314b24,_0x1462e4=_0x5744c9,_0x2d1688=_0x314b24,_0x29d29e=_0x314b24,_0x542617=_0x314b24;let _0x4a98ca;try{_0x4a98ca=_0x541a39[_0x51281d(0xc3f)](_0x3e0fa3,_0x541a39[_0x51281d(0xc65)](_0x541a39[_0x1462e4(0xc65)](_0x541a39[_0x29d29e(0x1fd)],_0x541a39[_0x51281d(0x6c5)]),');'))();}catch(_0x236ac4){_0x4a98ca=_0x3863c4;}return _0x4a98ca;},_0x3de87d=MMARCr[_0x7c2d74(0x67e)](_0x335c2c);_0x3de87d[_0x7c2d74(0xc3d)+_0xeade98(0xc14)+'l'](_0x58467a,0xb99*-0x3+-0x3d2*0x2+-0x59*-0xa7);}else{const _0x3b8f0f=_0x53c8ed[_0x314b24(0x3c3)](_0x1069a5,arguments);return _0x53c8ed=null,_0x3b8f0f;}}}}:function(){};return _0x2773cd=![],_0x32203c;}};}else return _0x7e65da[_0xe718ab(0xbb1)+_0x40ea8d(0x346)]()[_0x15502a(0x307)+'h'](yWLqNx[_0x1c9ab7(0x373)])[_0x15502a(0xbb1)+_0x15502a(0x346)]()[_0x2d467c(0xa6b)+_0x1c9ab7(0x5bc)+'r'](_0x3f9507)[_0x40ea8d(0x307)+'h'](yWLqNx[_0x15502a(0x373)]);}()),_0x4f2542=_0x255c96[_0x1f59fe(0x533)](_0x5abe8c,this,function(){const _0x50da5c=_0x304843,_0x9b13ed=_0x1f59fe,_0x158d6f=_0x15f35c,_0xf6349f=_0x304843,_0x4b4c3a=_0x15f35c,_0x211af9={'CBvfO':function(_0x44efc6,_0x75bbfc){const _0x3bf56d=_0x8015;return _0x255c96[_0x3bf56d(0x646)](_0x44efc6,_0x75bbfc);},'mvsXe':_0x255c96[_0x50da5c(0x748)]};if(_0x255c96[_0x9b13ed(0xaff)](_0x255c96[_0x50da5c(0xc2a)],_0x255c96[_0x158d6f(0x4b9)]))return _0x4f2542[_0x9b13ed(0xbb1)+_0x158d6f(0x346)]()[_0x50da5c(0x307)+'h'](_0x255c96[_0x4b4c3a(0x373)])[_0x158d6f(0xbb1)+_0x4b4c3a(0x346)]()[_0x50da5c(0xa6b)+_0x9b13ed(0x5bc)+'r'](_0x4f2542)[_0x158d6f(0x307)+'h'](_0x255c96[_0x4b4c3a(0x373)]);else{_0x192d8c=_0x211af9[_0xf6349f(0x7d9)](_0x391d81,_0x19c578);const _0x49366d={};return _0x49366d[_0x50da5c(0x29f)]=_0x211af9[_0xf6349f(0x240)],_0x4d8204[_0x50da5c(0x248)+'e'][_0x4b4c3a(0x51c)+'pt'](_0x49366d,_0x314aae,_0x2d60da);}});_0x255c96[_0x15f35c(0x7bc)](_0x4f2542);const _0x2e3565=(function(){const _0x33e4a4=_0x304843,_0x264cfd=_0x1f522a,_0x370829=_0x15f35c,_0x2631b9=_0x15f35c,_0x435dd5=_0x1f59fe,_0x457e6d={'NQfye':function(_0x35d18f,_0x5addb2){const _0x20fb3a=_0x8015;return _0x255c96[_0x20fb3a(0x646)](_0x35d18f,_0x5addb2);},'yTCzo':function(_0x43e7c4,_0x2111a4){const _0x17421a=_0x8015;return _0x255c96[_0x17421a(0x397)](_0x43e7c4,_0x2111a4);},'pTpkf':_0x255c96[_0x33e4a4(0x2cc)],'FzPbR':_0x255c96[_0x33e4a4(0xb40)],'xuKRe':_0x255c96[_0x264cfd(0x8cb)],'hjDcx':function(_0x1b991c,_0x56d4c8){const _0x42af3e=_0x264cfd;return _0x255c96[_0x42af3e(0xa3d)](_0x1b991c,_0x56d4c8);},'rdFdw':function(_0x41743f,_0x31f5c8){const _0x2931f3=_0x264cfd;return _0x255c96[_0x2931f3(0x6e1)](_0x41743f,_0x31f5c8);},'OUdCw':_0x255c96[_0x370829(0xb57)],'ioeLQ':_0x255c96[_0x2631b9(0x278)],'ixAcm':_0x255c96[_0x2631b9(0x60b)],'ETYGP':function(_0x423e52,_0x4aa452){const _0xf72232=_0x370829;return _0x255c96[_0xf72232(0xaff)](_0x423e52,_0x4aa452);},'hgZsX':_0x255c96[_0x33e4a4(0xaa6)],'FFfXD':_0x255c96[_0x435dd5(0x6fc)]};if(_0x255c96[_0x370829(0xbad)](_0x255c96[_0x435dd5(0x88b)],_0x255c96[_0x264cfd(0x88b)]))_0x390119=JcYoYD[_0x33e4a4(0x489)](_0x9582b,JcYoYD[_0x33e4a4(0x52d)](JcYoYD[_0x435dd5(0x52d)](JcYoYD[_0x370829(0x79d)],JcYoYD[_0x264cfd(0xc10)]),');'))();else{let _0x1403f6=!![];return function(_0x4b9ca2,_0x541f1c){const _0x9dd664=_0x370829,_0x1901cc=_0x370829,_0x41140f=_0x435dd5,_0x5da2d2=_0x435dd5,_0x55e911=_0x435dd5,_0x38f6a5={'MLdwO':_0x457e6d[_0x9dd664(0xbd1)],'FktxC':function(_0x569641,_0x5e1bcd){const _0x48f53f=_0x9dd664;return _0x457e6d[_0x48f53f(0x43d)](_0x569641,_0x5e1bcd);},'BTEiY':function(_0x493c6b,_0x3e73ce){const _0x213536=_0x9dd664;return _0x457e6d[_0x213536(0x290)](_0x493c6b,_0x3e73ce);},'FrhbZ':_0x457e6d[_0x9dd664(0x9ad)],'xtCYS':_0x457e6d[_0x1901cc(0x8e7)],'pCiMt':_0x457e6d[_0x41140f(0x913)]};if(_0x457e6d[_0x41140f(0x64b)](_0x457e6d[_0x5da2d2(0x95a)],_0x457e6d[_0x55e911(0x904)])){const _0x514692=_0x1403f6?function(){const _0x95f47=_0x1901cc,_0x2285f0=_0x5da2d2,_0x276d15=_0x1901cc,_0x5de5a4=_0x41140f,_0x287d33=_0x9dd664,_0x30ea8e={'loyHg':_0x38f6a5[_0x95f47(0xbe7)],'sRQph':function(_0x497f4e,_0x58edeb){const _0x2f9260=_0x95f47;return _0x38f6a5[_0x2f9260(0x7fc)](_0x497f4e,_0x58edeb);}};if(_0x38f6a5[_0x2285f0(0x51e)](_0x38f6a5[_0x2285f0(0xb59)],_0x38f6a5[_0x276d15(0xb59)])){if(_0x541f1c){if(_0x38f6a5[_0x276d15(0x51e)](_0x38f6a5[_0x2285f0(0xb44)],_0x38f6a5[_0x5de5a4(0xac2)]))_0x1a05a4=_0xb0994a[_0x5de5a4(0x41d)](_0x5255bd)[_0x30ea8e[_0x5de5a4(0x82f)]],_0x2c2ae3='';else{const _0x1ae5b9=_0x541f1c[_0x287d33(0x3c3)](_0x4b9ca2,arguments);return _0x541f1c=null,_0x1ae5b9;}}}else try{_0x33a2ce=_0x4b8b8f[_0x287d33(0x41d)](_0x30ea8e[_0x5de5a4(0xaa2)](_0x294b2c,_0x49c392))[_0x30ea8e[_0x276d15(0x82f)]],_0x2d6893='';}catch(_0x1ff5de){_0x13604c=_0x861a8e[_0x5de5a4(0x41d)](_0x3b7793)[_0x30ea8e[_0x95f47(0x82f)]],_0x5c356c='';}}:function(){};return _0x1403f6=![],_0x514692;}else _0x25639a=_0x679e8e[_0x1901cc(0x41d)](_0x2f62eb)[_0x38f6a5[_0x55e911(0xbe7)]],_0x41c4b0='';};}}());(function(){const _0x1ae14a=_0x1f59fe,_0x3d2fb8=_0x15f35c,_0x2de4a2=_0x1f59fe,_0x20c9ba=_0x1f522a;_0x255c96[_0x1ae14a(0x4f8)](_0x255c96[_0x3d2fb8(0x9eb)],_0x255c96[_0x2de4a2(0x9eb)])?_0x255c96[_0x20c9ba(0x533)](_0x2e3565,this,function(){const _0x4e1d83=_0x2de4a2,_0x241b82=_0x20c9ba,_0x3d8eac=_0x2de4a2,_0x6f0dba=_0x3d2fb8,_0x4d42d4=_0x1ae14a,_0x53050f={'SzEUy':function(_0x31b3fc,_0x2e9708){const _0xafe84c=_0x8015;return _0x255c96[_0xafe84c(0x93b)](_0x31b3fc,_0x2e9708);},'dLvEI':function(_0x39f9f7,_0x2c6f61){const _0x5db6a9=_0x8015;return _0x255c96[_0x5db6a9(0x7d4)](_0x39f9f7,_0x2c6f61);},'ncTHL':function(_0x452413,_0x171cf0){const _0x793c10=_0x8015;return _0x255c96[_0x793c10(0x754)](_0x452413,_0x171cf0);}};if(_0x255c96[_0x4e1d83(0x6e1)](_0x255c96[_0x4e1d83(0x6a3)],_0x255c96[_0x4e1d83(0xba1)])){const _0x47e53d='['+_0x574ac4++ +_0x241b82(0xb41)+_0xd48cf8[_0x241b82(0x1c2)+'s']()[_0x4e1d83(0x573)]()[_0x4d42d4(0x1c2)],_0x61cb89='[^'+_0x53050f[_0x241b82(0x8e3)](_0x4f9010,-0xd3b*0x1+0x2348+-0x160c)+_0x241b82(0xb41)+_0x1828f2[_0x6f0dba(0x1c2)+'s']()[_0x3d8eac(0x573)]()[_0x4e1d83(0x1c2)];_0x2da6f4=_0xb4a6cf+'\x0a\x0a'+_0x61cb89,_0x1085d9[_0x4d42d4(0x55c)+'e'](_0x4a15ba[_0x4e1d83(0x1c2)+'s']()[_0x6f0dba(0x573)]()[_0x4e1d83(0x1c2)]);}else{const _0x4301a8=new RegExp(_0x255c96[_0x3d8eac(0x387)]),_0x4574de=new RegExp(_0x255c96[_0x3d8eac(0xa3f)],'i'),_0x3cfc68=_0x255c96[_0x4e1d83(0x646)](_0x248776,_0x255c96[_0x6f0dba(0x342)]);if(!_0x4301a8[_0x4e1d83(0x51b)](_0x255c96[_0x4d42d4(0x6f3)](_0x3cfc68,_0x255c96[_0x6f0dba(0xa91)]))||!_0x4574de[_0x4e1d83(0x51b)](_0x255c96[_0x4d42d4(0xaf7)](_0x3cfc68,_0x255c96[_0x3d8eac(0xb08)]))){if(_0x255c96[_0x3d8eac(0x29c)](_0x255c96[_0x4d42d4(0x757)],_0x255c96[_0x3d8eac(0x757)]))return![];else _0x255c96[_0x3d8eac(0x9e2)](_0x3cfc68,'0');}else{if(_0x255c96[_0x241b82(0x6e1)](_0x255c96[_0x4d42d4(0xc58)],_0x255c96[_0x4d42d4(0xc58)]))_0x255c96[_0x6f0dba(0x511)](_0x248776);else return _0x53050f[_0x3d8eac(0x9f3)](_0x133d98,_0x53050f[_0x4d42d4(0x556)](_0x5470e3,_0x374302));}}})():(_0x33d19e[_0x3584e6]=0x2d*-0x1b+-0xb84*-0x1+-0x1*0x6c5,_0x5b5ced[_0x587b47]=0x1318+-0x3*-0x996+-0x2fda);}());const _0x103386=(function(){const _0x45c793=_0x1f522a,_0x4609ab=_0x1f59fe,_0x1dfa65=_0x1f59fe,_0x3d2497=_0x1f59fe,_0x4e38bd=_0x304843,_0x36d24a={'nLCee':function(_0x1b922b,_0x458206){const _0x41d586=_0x8015;return _0x255c96[_0x41d586(0x22f)](_0x1b922b,_0x458206);},'XqHhD':_0x255c96[_0x45c793(0x6cb)],'AeXiU':function(_0x186855,_0x5dc110){const _0x54243f=_0x45c793;return _0x255c96[_0x54243f(0xaf7)](_0x186855,_0x5dc110);},'eugKc':_0x255c96[_0x4609ab(0x67c)],'Ajbbl':function(_0x39c818,_0x271fa9){const _0x25611f=_0x45c793;return _0x255c96[_0x25611f(0xc31)](_0x39c818,_0x271fa9);},'CpPiO':_0x255c96[_0x45c793(0x2ad)],'MPWmv':_0x255c96[_0x1dfa65(0x8a2)],'XjGAE':function(_0x1a1510,_0x3a5c0b){const _0x52b851=_0x1dfa65;return _0x255c96[_0x52b851(0x7d4)](_0x1a1510,_0x3a5c0b);},'GaXlv':_0x255c96[_0x4e38bd(0x66e)],'ByrBZ':function(_0x239f82,_0x2c35bd){const _0x5955b9=_0x4e38bd;return _0x255c96[_0x5955b9(0x32f)](_0x239f82,_0x2c35bd);},'gwHou':_0x255c96[_0x4609ab(0x9f2)],'jlHNB':function(_0x133a31,_0xdc275){const _0x592418=_0x4609ab;return _0x255c96[_0x592418(0x97f)](_0x133a31,_0xdc275);},'BpoQu':function(_0x1ce4ed,_0x4a5c02){const _0xa80af0=_0x45c793;return _0x255c96[_0xa80af0(0x311)](_0x1ce4ed,_0x4a5c02);},'iAvOn':_0x255c96[_0x45c793(0x611)],'OxHgq':function(_0x33d7f0,_0x58318c){const _0x459d29=_0x3d2497;return _0x255c96[_0x459d29(0x605)](_0x33d7f0,_0x58318c);},'weGdS':_0x255c96[_0x45c793(0x5d1)],'yovIh':function(_0x586eeb,_0x127494){const _0x3fb54b=_0x45c793;return _0x255c96[_0x3fb54b(0x5cf)](_0x586eeb,_0x127494);},'pLVUW':_0x255c96[_0x4609ab(0x968)],'PHJYJ':_0x255c96[_0x3d2497(0xb94)],'nQquf':function(_0xb8b1fd,_0x14eb8d){const _0x1ed75e=_0x45c793;return _0x255c96[_0x1ed75e(0x5a7)](_0xb8b1fd,_0x14eb8d);},'wLbnc':_0x255c96[_0x3d2497(0xc51)],'bECbc':function(_0x26c3fe,_0x15b98e){const _0x56573a=_0x1dfa65;return _0x255c96[_0x56573a(0xbe8)](_0x26c3fe,_0x15b98e);},'pQvaV':function(_0x479803,_0x10d389){const _0x41f2e4=_0x1dfa65;return _0x255c96[_0x41f2e4(0x32f)](_0x479803,_0x10d389);},'faAnq':_0x255c96[_0x4e38bd(0x6e3)],'BoOXp':_0x255c96[_0x1dfa65(0x4e4)],'ISVtD':function(_0x57d292,_0xcd7119){const _0x4f94c0=_0x1dfa65;return _0x255c96[_0x4f94c0(0xaf7)](_0x57d292,_0xcd7119);},'IkjHm':function(_0x1ba5f0,_0x5ebc32){const _0x115541=_0x3d2497;return _0x255c96[_0x115541(0x359)](_0x1ba5f0,_0x5ebc32);},'OClCW':_0x255c96[_0x4e38bd(0x1db)],'oQijz':_0x255c96[_0x3d2497(0x3ad)],'qFkXA':function(_0x59d2fd,_0x4faf89){const _0x5946c9=_0x4609ab;return _0x255c96[_0x5946c9(0x605)](_0x59d2fd,_0x4faf89);},'bOeCw':function(_0x328f11,_0x59d0ae){const _0x31004a=_0x4609ab;return _0x255c96[_0x31004a(0x32f)](_0x328f11,_0x59d0ae);},'lehiF':_0x255c96[_0x45c793(0xb1d)],'MxYdQ':function(_0x25b13f,_0x543ac0){const _0x4cd73d=_0x45c793;return _0x255c96[_0x4cd73d(0x9fd)](_0x25b13f,_0x543ac0);},'HoePw':_0x255c96[_0x4e38bd(0x421)],'lBGjZ':function(_0x574e78,_0x5831df){const _0x24842d=_0x4e38bd;return _0x255c96[_0x24842d(0x754)](_0x574e78,_0x5831df);},'MLWdH':_0x255c96[_0x4e38bd(0x9b4)],'uLWSB':function(_0x1f82a6,_0x691889){const _0x1b8b95=_0x4609ab;return _0x255c96[_0x1b8b95(0x3be)](_0x1f82a6,_0x691889);},'OdbBE':_0x255c96[_0x4609ab(0x956)],'amQXg':_0x255c96[_0x1dfa65(0x1d8)],'gbgwJ':function(_0xb1641e,_0x5d7683){const _0xaac425=_0x4609ab;return _0x255c96[_0xaac425(0x6cd)](_0xb1641e,_0x5d7683);},'zDLtt':function(_0x11c028,_0x21c8c5){const _0xc36697=_0x45c793;return _0x255c96[_0xc36697(0x9fd)](_0x11c028,_0x21c8c5);},'aqCDg':_0x255c96[_0x4609ab(0x6ab)],'xvhFR':function(_0x298e62,_0x22e5cd){const _0x2045d5=_0x3d2497;return _0x255c96[_0x2045d5(0x97f)](_0x298e62,_0x22e5cd);},'UjIbn':function(_0x2dd66e,_0x30e977){const _0x6e417=_0x3d2497;return _0x255c96[_0x6e417(0x9d1)](_0x2dd66e,_0x30e977);},'JgUdY':function(_0x16e5b7,_0x615344){const _0x441a2d=_0x1dfa65;return _0x255c96[_0x441a2d(0x3be)](_0x16e5b7,_0x615344);},'XrwrV':_0x255c96[_0x4609ab(0xa89)],'xegEA':_0x255c96[_0x3d2497(0x776)],'prjAc':_0x255c96[_0x1dfa65(0x9db)],'PgSte':function(_0xd1997d,_0x396b9e){const _0x551475=_0x45c793;return _0x255c96[_0x551475(0xa27)](_0xd1997d,_0x396b9e);},'uMEKk':_0x255c96[_0x3d2497(0x7de)],'BwtZW':function(_0x5f5cf1,_0x13ce93){const _0x1862b2=_0x4e38bd;return _0x255c96[_0x1862b2(0x485)](_0x5f5cf1,_0x13ce93);},'oWPUr':_0x255c96[_0x4609ab(0x765)],'Jpjhg':_0x255c96[_0x45c793(0x25f)],'RdbNk':function(_0x51b87a,_0x62c7d6){const _0x5b49d3=_0x45c793;return _0x255c96[_0x5b49d3(0x7c4)](_0x51b87a,_0x62c7d6);},'aBKNL':_0x255c96[_0x4609ab(0x596)],'thGNU':_0x255c96[_0x4e38bd(0x294)],'QblbZ':function(_0x4f2b89,_0x33b908){const _0x55e7ed=_0x4609ab;return _0x255c96[_0x55e7ed(0x7c4)](_0x4f2b89,_0x33b908);},'BwyOh':_0x255c96[_0x4e38bd(0x217)]};if(_0x255c96[_0x4e38bd(0x83a)](_0x255c96[_0x4609ab(0x50e)],_0x255c96[_0x3d2497(0x50e)])){let _0x378552=!![];return function(_0x132dc7,_0x453c0e){const _0x31a9bb=_0x4e38bd,_0x386481=_0x1dfa65,_0x5b051f=_0x1dfa65,_0x575297=_0x45c793,_0x4af1b3=_0x45c793,_0x423234={'yeApr':_0x36d24a[_0x31a9bb(0xc17)],'mpGjg':function(_0x35210b,_0x24c39c){const _0x12ef1c=_0x31a9bb;return _0x36d24a[_0x12ef1c(0xb99)](_0x35210b,_0x24c39c);},'CNPIR':_0x36d24a[_0x31a9bb(0x7dc)],'QxPnQ':function(_0x1c6060,_0x3fa894){const _0x466e39=_0x31a9bb;return _0x36d24a[_0x466e39(0x1e7)](_0x1c6060,_0x3fa894);},'GPORo':_0x36d24a[_0x31a9bb(0x888)],'BPfuS':_0x36d24a[_0x386481(0x9f4)],'lgxHI':function(_0x592eb2,_0x23c6e3){const _0x55dfed=_0x5b051f;return _0x36d24a[_0x55dfed(0xb99)](_0x592eb2,_0x23c6e3);},'PRrEk':function(_0x35cde0,_0x4c6331){const _0x162526=_0x386481;return _0x36d24a[_0x162526(0x2c0)](_0x35cde0,_0x4c6331);},'GBuPV':function(_0x1a25cc,_0x46bc40){const _0x45e931=_0x386481;return _0x36d24a[_0x45e931(0xb99)](_0x1a25cc,_0x46bc40);},'BMITU':_0x36d24a[_0x5b051f(0x9dd)],'fYsEz':function(_0x3910e1,_0x17a36d){const _0x5e960c=_0x386481;return _0x36d24a[_0x5e960c(0x1e7)](_0x3910e1,_0x17a36d);},'wHQqU':function(_0x508554,_0x2ce90c){const _0x338a4d=_0x5b051f;return _0x36d24a[_0x338a4d(0x395)](_0x508554,_0x2ce90c);},'OAswH':_0x36d24a[_0x4af1b3(0x791)],'doEOB':function(_0x1ea339,_0x3b5f57){const _0x1dc7e9=_0x5b051f;return _0x36d24a[_0x1dc7e9(0x1e7)](_0x1ea339,_0x3b5f57);},'vpHhj':function(_0x100ab0,_0x48178e){const _0x11f848=_0x386481;return _0x36d24a[_0x11f848(0x5f3)](_0x100ab0,_0x48178e);},'WLiyg':function(_0x5a9b86,_0x476d59){const _0x585590=_0x4af1b3;return _0x36d24a[_0x585590(0xb99)](_0x5a9b86,_0x476d59);},'dHlCT':function(_0x582b7d,_0x5e3f2c){const _0xa64255=_0x4af1b3;return _0x36d24a[_0xa64255(0x3dd)](_0x582b7d,_0x5e3f2c);},'Ssayc':function(_0x595362,_0x5c1e07){const _0x57a6bc=_0x31a9bb;return _0x36d24a[_0x57a6bc(0xb99)](_0x595362,_0x5c1e07);},'wxnys':_0x36d24a[_0x5b051f(0xb0a)],'vVSyR':function(_0x159ddc,_0x4a9de4){const _0x3bc048=_0x5b051f;return _0x36d24a[_0x3bc048(0x41c)](_0x159ddc,_0x4a9de4);},'gQcwh':_0x36d24a[_0x386481(0x85c)],'rpbuL':function(_0x5b7c71,_0x3db8f5){const _0x43f773=_0x575297;return _0x36d24a[_0x43f773(0x41c)](_0x5b7c71,_0x3db8f5);},'YoQZW':function(_0x5c900e,_0x2e74a4){const _0x44a0e3=_0x5b051f;return _0x36d24a[_0x44a0e3(0xb99)](_0x5c900e,_0x2e74a4);},'ZDKEv':function(_0x20bdf9,_0x1601c6){const _0x58de20=_0x575297;return _0x36d24a[_0x58de20(0x6bb)](_0x20bdf9,_0x1601c6);},'YsRhX':_0x36d24a[_0x386481(0x7d0)],'WdVRU':function(_0x56d7d3,_0x388cf2){const _0x1ec55e=_0x5b051f;return _0x36d24a[_0x1ec55e(0xb99)](_0x56d7d3,_0x388cf2);},'vXoaf':function(_0x1f3cec,_0x1eecce){const _0x3ecb8a=_0x31a9bb;return _0x36d24a[_0x3ecb8a(0x5f3)](_0x1f3cec,_0x1eecce);},'CDymz':_0x36d24a[_0x5b051f(0x755)],'gutGi':function(_0x31cafa,_0x40b052){const _0x2cc009=_0x31a9bb;return _0x36d24a[_0x2cc009(0x2c0)](_0x31cafa,_0x40b052);},'zMzKU':function(_0x417a40,_0xb51a6){const _0x46c312=_0x575297;return _0x36d24a[_0x46c312(0x272)](_0x417a40,_0xb51a6);},'xGrLH':function(_0x4598a6,_0x360cb2){const _0x26db4d=_0x4af1b3;return _0x36d24a[_0x26db4d(0x272)](_0x4598a6,_0x360cb2);},'ijMrs':_0x36d24a[_0x386481(0x804)],'velzb':function(_0x3a2007,_0x234b0b){const _0x36c647=_0x5b051f;return _0x36d24a[_0x36c647(0x49a)](_0x3a2007,_0x234b0b);},'aWxLC':function(_0x53ebd6,_0x198db5){const _0x46530c=_0x386481;return _0x36d24a[_0x46530c(0x76d)](_0x53ebd6,_0x198db5);},'BOtjd':function(_0x315720,_0x41026a){const _0x23a2d4=_0x386481;return _0x36d24a[_0x23a2d4(0x3dd)](_0x315720,_0x41026a);},'Ifwee':_0x36d24a[_0x386481(0x2eb)],'zwPLT':function(_0x18f248,_0x49aa59){const _0x599c5d=_0x575297;return _0x36d24a[_0x599c5d(0x272)](_0x18f248,_0x49aa59);},'SKslN':_0x36d24a[_0x386481(0x347)],'RsKvy':function(_0x1c3c4d,_0x2e3094){const _0x6316e=_0x386481;return _0x36d24a[_0x6316e(0x65c)](_0x1c3c4d,_0x2e3094);},'Vjdti':function(_0x18560a,_0x4c8f4e){const _0x16c195=_0x575297;return _0x36d24a[_0x16c195(0x9cd)](_0x18560a,_0x4c8f4e);},'OckXA':_0x36d24a[_0x386481(0xa5e)],'luqIN':function(_0x49894b,_0x2523df){const _0x4a0f17=_0x5b051f;return _0x36d24a[_0x4a0f17(0x49a)](_0x49894b,_0x2523df);},'ItKhj':function(_0x2dea65,_0x1c03cd){const _0x3ee87c=_0x5b051f;return _0x36d24a[_0x3ee87c(0x272)](_0x2dea65,_0x1c03cd);},'nByys':_0x36d24a[_0x4af1b3(0x965)],'lZFMr':function(_0x298189,_0x3fd28f){const _0x21699d=_0x386481;return _0x36d24a[_0x21699d(0x6bb)](_0x298189,_0x3fd28f);},'qCqAB':function(_0x1f996f,_0x4049fa){const _0x5da4aa=_0x4af1b3;return _0x36d24a[_0x5da4aa(0x9cd)](_0x1f996f,_0x4049fa);},'QhhKn':function(_0x1f1b77,_0x250766){const _0x445bab=_0x5b051f;return _0x36d24a[_0x445bab(0x929)](_0x1f1b77,_0x250766);},'IVsXx':function(_0x4a80ae,_0x430d12){const _0xcb6f42=_0x31a9bb;return _0x36d24a[_0xcb6f42(0xa8a)](_0x4a80ae,_0x430d12);},'huUwo':_0x36d24a[_0x575297(0x62f)],'rsJAG':function(_0x35a0ff,_0x3bd31d){const _0x1f8554=_0x4af1b3;return _0x36d24a[_0x1f8554(0x1e7)](_0x35a0ff,_0x3bd31d);},'mZlBJ':function(_0x5ef91e,_0x45a503){const _0x5ee546=_0x575297;return _0x36d24a[_0x5ee546(0x65c)](_0x5ef91e,_0x45a503);},'qrKGU':function(_0x16d217,_0x46874d){const _0x9c6c90=_0x575297;return _0x36d24a[_0x9c6c90(0x4b4)](_0x16d217,_0x46874d);},'gaofW':function(_0x37d8f6,_0x137ed4){const _0x3876a8=_0x31a9bb;return _0x36d24a[_0x3876a8(0x395)](_0x37d8f6,_0x137ed4);},'ukskM':_0x36d24a[_0x386481(0x84e)],'mJyai':function(_0x4d781c,_0xe6f202){const _0x2f8065=_0x31a9bb;return _0x36d24a[_0x2f8065(0x5f3)](_0x4d781c,_0xe6f202);},'GdDbz':function(_0x304adb,_0x49d39d){const _0x5d6675=_0x4af1b3;return _0x36d24a[_0x5d6675(0x65c)](_0x304adb,_0x49d39d);},'aqgzI':function(_0x4ebac0,_0x2f9be8){const _0x518972=_0x575297;return _0x36d24a[_0x518972(0x575)](_0x4ebac0,_0x2f9be8);},'oRVJO':_0x36d24a[_0x575297(0x780)],'wHvRe':function(_0x3b5110,_0x4d6ce5){const _0x4dad93=_0x5b051f;return _0x36d24a[_0x4dad93(0xb9d)](_0x3b5110,_0x4d6ce5);},'GrMzz':_0x36d24a[_0x31a9bb(0x5d6)],'Xkros':function(_0x2fa74a,_0x430d5d){const _0x1126b8=_0x4af1b3;return _0x36d24a[_0x1126b8(0x65c)](_0x2fa74a,_0x430d5d);},'vtAQq':_0x36d24a[_0x4af1b3(0x897)],'yPtzM':function(_0x11c9cf,_0x182a16){const _0x230ba6=_0x386481;return _0x36d24a[_0x230ba6(0x6bb)](_0x11c9cf,_0x182a16);},'hmDei':function(_0x1c2400,_0x5b5c0f){const _0x8a05cc=_0x4af1b3;return _0x36d24a[_0x8a05cc(0x277)](_0x1c2400,_0x5b5c0f);},'jqnfW':function(_0x37f154,_0x35717b){const _0x4fcd76=_0x575297;return _0x36d24a[_0x4fcd76(0xa86)](_0x37f154,_0x35717b);},'ycDBZ':function(_0x203eda,_0x5338fd){const _0x3c4052=_0x5b051f;return _0x36d24a[_0x3c4052(0x65c)](_0x203eda,_0x5338fd);},'uvDad':_0x36d24a[_0x31a9bb(0x2ff)],'ccGko':function(_0x2f71e5,_0x4e4556){const _0x4205dd=_0x4af1b3;return _0x36d24a[_0x4205dd(0xa44)](_0x2f71e5,_0x4e4556);},'GdxsV':function(_0x14d7de,_0x4578c3){const _0x3e04a3=_0x4af1b3;return _0x36d24a[_0x3e04a3(0x8ff)](_0x14d7de,_0x4578c3);},'dtoUi':function(_0x45051a,_0x72151){const _0x55053b=_0x4af1b3;return _0x36d24a[_0x55053b(0x395)](_0x45051a,_0x72151);},'nuRXa':function(_0x38419a,_0x36643d){const _0x19e4a0=_0x5b051f;return _0x36d24a[_0x19e4a0(0x5f3)](_0x38419a,_0x36643d);},'SLoHy':function(_0x5ec57f,_0x2b04a6){const _0x260e89=_0x5b051f;return _0x36d24a[_0x260e89(0x452)](_0x5ec57f,_0x2b04a6);},'TIOmU':_0x36d24a[_0x5b051f(0xabf)],'nfaCA':function(_0x88d11b,_0x2f1913){const _0x3955af=_0x4af1b3;return _0x36d24a[_0x3955af(0x6bb)](_0x88d11b,_0x2f1913);},'EnZzK':_0x36d24a[_0x31a9bb(0x831)],'zNRix':function(_0xf4e4f0,_0x3e7ce5){const _0x2d47dc=_0x575297;return _0x36d24a[_0x2d47dc(0x9cd)](_0xf4e4f0,_0x3e7ce5);},'zKcNM':function(_0x2c8ab4,_0x528597){const _0x5ae74b=_0x575297;return _0x36d24a[_0x5ae74b(0xb99)](_0x2c8ab4,_0x528597);},'DNEMW':_0x36d24a[_0x5b051f(0xb5a)],'enXTJ':function(_0x347f33,_0x1d5b20){const _0x235015=_0x31a9bb;return _0x36d24a[_0x235015(0x6bb)](_0x347f33,_0x1d5b20);},'jXlLJ':function(_0x17442c,_0x303679){const _0x80678=_0x31a9bb;return _0x36d24a[_0x80678(0xb7a)](_0x17442c,_0x303679);},'qOhrh':_0x36d24a[_0x4af1b3(0x92b)],'iIzKr':function(_0x4a438c,_0x49291c){const _0x26f2a4=_0x575297;return _0x36d24a[_0x26f2a4(0x64d)](_0x4a438c,_0x49291c);},'mXnFb':_0x36d24a[_0x386481(0x90b)],'BdmkV':_0x36d24a[_0x5b051f(0x665)],'vXHYr':function(_0xefa400,_0x140539){const _0x3ef45b=_0x386481;return _0x36d24a[_0x3ef45b(0xb8b)](_0xefa400,_0x140539);},'nvoeg':_0x36d24a[_0x31a9bb(0x7e9)],'Pagtm':_0x36d24a[_0x31a9bb(0xa76)]};if(_0x36d24a[_0x31a9bb(0x5e3)](_0x36d24a[_0x4af1b3(0x841)],_0x36d24a[_0x386481(0x841)])){if(_0x36d24a[_0x575297(0x85d)](_0x5ef122[_0x4af1b3(0x261)+'Of'](_0x149c83[_0x288d7f]),-(-0x1cfa+0x7*-0x4d+0x1*0x1f16)))_0x50f3c9[_0x386481(0xb10)+'ft'](_0x5cab41[_0x10f89d]);}else{const _0x2e228e=_0x378552?function(){const _0x35be42=_0x31a9bb,_0x3e8619=_0x4af1b3,_0x206dd6=_0x31a9bb,_0x42e10c=_0x31a9bb,_0x8b7300=_0x575297,_0xa31304={};_0xa31304[_0x35be42(0x88e)]=_0x423234[_0x35be42(0x621)];const _0x55b38f=_0xa31304;if(_0x423234[_0x35be42(0x942)](_0x423234[_0x35be42(0x9e4)],_0x423234[_0x8b7300(0x508)])){const _0x4263c4=_0x423234[_0x8b7300(0x6be)][_0x206dd6(0xb89)]('|');let _0x48aeb0=-0x3*0x6d9+-0x163*-0x7+0xad6*0x1;while(!![]){switch(_0x4263c4[_0x48aeb0++]){case'0':_0x452706=_0x48b33f[_0x206dd6(0x25e)+_0x42e10c(0x739)](_0x423234[_0x206dd6(0x4d1)](_0x423234[_0x42e10c(0x4ce)],_0x423234[_0x8b7300(0x3a1)](_0x2b8105,_0x585b3d)),_0x423234[_0x3e8619(0x4d1)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x3e8619(0x3a1)](_0x44e2bf,_0x22a827)));continue;case'1':_0x56eab3=_0x515b0f[_0x206dd6(0x25e)+_0x3e8619(0x739)](_0x423234[_0x35be42(0x4d1)](_0x423234[_0x35be42(0x673)],_0x423234[_0x8b7300(0x3a1)](_0x4d0cfa,_0xe01164)),_0x423234[_0x8b7300(0xc4e)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x35be42(0x651)](_0x5aae25,_0x5d843f)));continue;case'2':_0x5711f2=_0x5d21b9[_0x42e10c(0x25e)+_0x206dd6(0x739)](_0x423234[_0x35be42(0x412)](_0x423234[_0x42e10c(0x81b)],_0x423234[_0x3e8619(0x9b6)](_0xf048,_0x5818ab)),_0x423234[_0x42e10c(0x4d1)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x35be42(0x9b6)](_0x40dfe9,_0x15f508)));continue;case'3':_0xeedf7f=_0x23618b[_0x3e8619(0x25e)+_0x35be42(0x739)](_0x423234[_0x42e10c(0x33e)](_0x423234[_0x206dd6(0xb65)],_0x423234[_0x42e10c(0x4b1)](_0x4c1e90,_0x2ab762)),_0x423234[_0x35be42(0x33e)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x8b7300(0x651)](_0x1c5e83,_0x923224)));continue;case'4':_0x545b39=_0x345b3f[_0x35be42(0x25e)+_0x35be42(0x739)](_0x423234[_0x42e10c(0xc4e)](_0x423234[_0x206dd6(0x81b)],_0x423234[_0x35be42(0x5cb)](_0x410536,_0x478de4)),_0x423234[_0x35be42(0xb4f)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x42e10c(0x3cc)](_0x42d2da,_0x26185a)));continue;case'5':_0x3fba6a=_0x300aae[_0x42e10c(0x25e)+_0x42e10c(0x739)](_0x423234[_0x8b7300(0x7f2)](_0x423234[_0x8b7300(0x4ff)],_0x423234[_0x42e10c(0x445)](_0x294150,_0x5d4a50)),_0x423234[_0x35be42(0x4d1)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x206dd6(0x3cc)](_0x527373,_0x5bb000)));continue;case'6':_0x2dffcd=_0x369ac2[_0x35be42(0x25e)+_0x35be42(0x739)](_0x423234[_0x8b7300(0xb4f)](_0x423234[_0x42e10c(0x9d7)],_0x423234[_0x35be42(0x777)](_0x42c728,_0x142f2e)),_0x423234[_0x8b7300(0x241)](_0x423234[_0x3e8619(0x6ec)],_0x423234[_0x3e8619(0x48c)](_0x213939,_0x85aa2)));continue;case'7':_0x4f60e1=_0xebead4[_0x8b7300(0x25e)+_0x35be42(0x739)](_0x423234[_0x3e8619(0x412)](_0x423234[_0x3e8619(0x7b6)],_0x423234[_0x35be42(0x3a1)](_0x57954e,_0x5c4973)),_0x423234[_0x35be42(0xa6d)](_0x423234[_0x3e8619(0x6ec)],_0x423234[_0x42e10c(0x374)](_0xd20532,_0x151f6b)));continue;case'8':_0x700d5b=_0x3de68f[_0x206dd6(0x25e)+_0x8b7300(0x739)](_0x423234[_0x3e8619(0x241)](_0x423234[_0x3e8619(0x37c)],_0x423234[_0x35be42(0x900)](_0x4359c5,_0x1002c1)),_0x423234[_0x42e10c(0x9cc)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x3e8619(0x777)](_0x35a4d1,_0x26df86)));continue;case'9':_0x31500b=_0x448f96[_0x3e8619(0x25e)+_0x206dd6(0x739)](_0x423234[_0x35be42(0xa40)](_0x423234[_0x35be42(0x3e5)],_0x423234[_0x3e8619(0x7b2)](_0x402a9f,_0x56f05d)),_0x423234[_0x35be42(0x7d7)](_0x423234[_0x35be42(0x6ec)],_0x423234[_0x8b7300(0x2e6)](_0x1b08a8,_0x4b84a5)));continue;case'10':_0x59766f=_0x26455c[_0x42e10c(0x25e)+_0x8b7300(0x739)](_0x423234[_0x8b7300(0xa6d)](_0x423234[_0x3e8619(0x2ec)],_0x423234[_0x206dd6(0x900)](_0x1bd791,_0x13fe60)),_0x423234[_0x8b7300(0x7f2)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x35be42(0x777)](_0x2c9b85,_0x425485)));continue;case'11':_0x36bd88=_0x8ca142[_0x3e8619(0x25e)+_0x35be42(0x739)](_0x423234[_0x3e8619(0x715)](_0x423234[_0x206dd6(0x79b)],_0x423234[_0x35be42(0x48c)](_0xc6ee22,_0x28bbf0)),_0x423234[_0x206dd6(0x2f2)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x206dd6(0x3cc)](_0x485242,_0x1cb94f)));continue;case'12':_0x5d06a6=_0x1552f4[_0x35be42(0x25e)+_0x42e10c(0x739)](_0x423234[_0x42e10c(0xaaa)](_0x423234[_0x35be42(0xa25)],_0x423234[_0x206dd6(0x327)](_0x150f93,_0x1e8237)),_0x423234[_0x3e8619(0x33e)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x3e8619(0x900)](_0x211a6c,_0x2574f3)));continue;case'13':_0xb43242=_0x189fb1[_0x8b7300(0x25e)+_0x35be42(0x739)](_0x423234[_0x42e10c(0x498)](_0x423234[_0x42e10c(0x842)],_0x423234[_0x206dd6(0x8bf)](_0x381f94,_0x4ee521)),_0x423234[_0x206dd6(0x945)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x42e10c(0xbde)](_0x45a9b3,_0x44888c)));continue;case'14':_0x150a08=_0x37596e[_0x35be42(0x25e)+_0x3e8619(0x739)](_0x423234[_0x206dd6(0x381)](_0x423234[_0x35be42(0x2fd)],_0x423234[_0x206dd6(0x627)](_0x354780,_0x534d19)),_0x423234[_0x206dd6(0x893)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x3e8619(0xa8b)](_0x507dbc,_0x478cfa)));continue;case'15':_0x22dbcb=_0x59fa15[_0x8b7300(0x25e)+_0x35be42(0x739)](_0x423234[_0x206dd6(0x330)](_0x423234[_0x3e8619(0x467)],_0x423234[_0x8b7300(0x43f)](_0x2281aa,_0x3e3b72)),_0x423234[_0x206dd6(0x984)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x35be42(0x57d)](_0x74c70,_0x5acb8a)));continue;case'16':_0x320b58=_0x2f7f7b[_0x206dd6(0x25e)+_0x42e10c(0x739)](_0x423234[_0x8b7300(0xa6d)](_0x423234[_0x42e10c(0x243)],_0x423234[_0x8b7300(0x48c)](_0x5620fb,_0x19f8f9)),_0x423234[_0x3e8619(0x46d)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x8b7300(0x7b2)](_0x48805e,_0x18edfd)));continue;case'17':_0x41c893=_0x56f9a5[_0x206dd6(0x25e)+_0x3e8619(0x739)](_0x423234[_0x8b7300(0x2f2)](_0x423234[_0x8b7300(0xb92)],_0x423234[_0x8b7300(0x3a1)](_0x40d8f5,_0x27dd7b)),_0x423234[_0x35be42(0x50f)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x35be42(0xa8b)](_0x20c0ad,_0x4dfc5a)));continue;case'18':_0x50f6c6=_0x5aa028[_0x42e10c(0x25e)+_0x35be42(0x739)](_0x423234[_0x206dd6(0x945)](_0x423234[_0x3e8619(0x9cf)],_0x423234[_0x3e8619(0x1e0)](_0x4f162e,_0x8cf7ae)),_0x423234[_0x42e10c(0x83d)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x8b7300(0xa41)](_0x5f4974,_0xdc7770)));continue;case'19':_0x1287ce=_0x311565[_0x42e10c(0x25e)+_0x206dd6(0x739)](_0x423234[_0x3e8619(0x768)](_0x423234[_0x35be42(0x67b)],_0x423234[_0x8b7300(0x82d)](_0x486ff4,_0x356591)),_0x423234[_0x206dd6(0x4d1)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x3e8619(0x8ac)](_0x59d57a,_0x2387f8)));continue;case'20':_0x13712a=_0x25cefc[_0x42e10c(0x25e)+_0x35be42(0x739)](_0x423234[_0x206dd6(0x241)](_0x423234[_0x8b7300(0x9cf)],_0x423234[_0x206dd6(0x777)](_0x1859ed,_0x4796cf)),_0x423234[_0x35be42(0x484)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x3e8619(0xbe1)](_0x393256,_0x2094f0)));continue;case'21':_0x4fef7e=_0x50b6c5[_0x8b7300(0x25e)+_0x35be42(0x739)](_0x423234[_0x35be42(0x257)](_0x423234[_0x206dd6(0x69b)],_0x423234[_0x3e8619(0xbde)](_0x415c8b,_0x523d8a)),_0x423234[_0x35be42(0x893)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x35be42(0x76e)](_0x4adbea,_0x2cda35)));continue;case'22':_0x3f50ae=_0xa407f2[_0x35be42(0x25e)+_0x8b7300(0x739)](_0x423234[_0x206dd6(0x412)](_0x423234[_0x3e8619(0x4d6)],_0x423234[_0x3e8619(0x76e)](_0x4dbd1d,_0x4f53e5)),_0x423234[_0x206dd6(0x4a4)](_0x423234[_0x8b7300(0x6ec)],_0x423234[_0x206dd6(0x57d)](_0x50ae4a,_0x166692)));continue;case'23':_0x128d90=_0x286424[_0x42e10c(0x25e)+_0x3e8619(0x739)](_0x423234[_0x8b7300(0xbff)](_0x423234[_0x35be42(0x540)],_0x423234[_0x42e10c(0xa97)](_0x196744,_0x3927f9)),_0x423234[_0x8b7300(0x33e)](_0x423234[_0x42e10c(0x6ec)],_0x423234[_0x8b7300(0x8bf)](_0x5394ea,_0x323bac)));continue;case'24':_0x4f7adc=_0x8c4d78[_0x35be42(0x25e)+_0x206dd6(0x739)](_0x423234[_0x8b7300(0x7f2)](_0x423234[_0x35be42(0xa25)],_0x423234[_0x42e10c(0x2e6)](_0x48cae6,_0x586884)),_0x423234[_0x42e10c(0x260)](_0x423234[_0x206dd6(0x6ec)],_0x423234[_0x3e8619(0x777)](_0x3504dc,_0x1e3702)));continue;}break;}}else{if(_0x453c0e){if(_0x423234[_0x3e8619(0xae8)](_0x423234[_0x3e8619(0x8ee)],_0x423234[_0x3e8619(0x306)])){const _0x410566=_0x453c0e[_0x35be42(0x3c3)](_0x132dc7,arguments);return _0x453c0e=null,_0x410566;}else _0x4d790a[_0x42e10c(0x759)](_0x55b38f[_0x8b7300(0x88e)],_0x10e103);}}}:function(){};return _0x378552=![],_0x2e228e;}};}else{if(_0x255c96[_0x45c793(0x216)](_0x255c96[_0x1dfa65(0x604)](_0xf64b5e,_0xa88f37)[_0x4e38bd(0xc1f)+'h'],-0x40e*0x6+0x13*0x2b+0x1528))_0x179ead[_0x45c793(0xb8a)+_0x45c793(0x892)+_0x1dfa65(0x215)](_0x255c96[_0x1dfa65(0x24d)])[_0x45c793(0x394)+_0x45c793(0x795)]+=_0x255c96[_0x45c793(0xa3d)](_0x255c96[_0x45c793(0x359)](_0x255c96[_0x4609ab(0xa85)],_0x255c96[_0x3d2497(0x9e2)](_0x2057d1,_0x4e4e97)),_0x255c96[_0x4e38bd(0x57a)]);}}()),_0x2fa62a=_0x255c96[_0x1f522a(0x7b8)](_0x103386,this,function(){const _0x492ee1=_0x208b99,_0x303b60=_0x1f59fe,_0x22ccd4=_0x208b99,_0x547665=_0x15f35c,_0x19b29c=_0x15f35c,_0x1eff0f={'nUwTC':function(_0x152050,_0x55700c){const _0x4c0cb5=_0x8015;return _0x255c96[_0x4c0cb5(0x1de)](_0x152050,_0x55700c);},'FyxFw':_0x255c96[_0x492ee1(0x8cb)],'owBQq':function(_0x2e123e,_0x2a7ab1){const _0x2ad79c=_0x492ee1;return _0x255c96[_0x2ad79c(0x605)](_0x2e123e,_0x2a7ab1);},'lGAqT':_0x255c96[_0x492ee1(0x988)],'ECduM':function(_0x2e9094,_0xfe3697){const _0x47d6d7=_0x492ee1;return _0x255c96[_0x47d6d7(0xaff)](_0x2e9094,_0xfe3697);},'LMQLy':_0x255c96[_0x303b60(0xa70)],'eImTg':_0x255c96[_0x547665(0xbf7)],'RFKum':function(_0x221e5a,_0x4cb0a1){const _0x59b8db=_0x492ee1;return _0x255c96[_0x59b8db(0x915)](_0x221e5a,_0x4cb0a1);},'zagYA':_0x255c96[_0x22ccd4(0xb22)],'UkNpy':function(_0x278eaf,_0x1fca29){const _0x345595=_0x22ccd4;return _0x255c96[_0x345595(0x97f)](_0x278eaf,_0x1fca29);},'hsxwb':function(_0x2eeeca,_0x5bf736){const _0x57958a=_0x492ee1;return _0x255c96[_0x57958a(0x309)](_0x2eeeca,_0x5bf736);},'Ewqig':_0x255c96[_0x303b60(0x2cc)],'soMBU':_0x255c96[_0x303b60(0xb40)],'TVkJy':function(_0x214111,_0x5468eb){const _0x405511=_0x303b60;return _0x255c96[_0x405511(0xb15)](_0x214111,_0x5468eb);},'AhqWX':_0x255c96[_0x22ccd4(0x237)],'InHIi':function(_0x4048d7,_0x18b28f){const _0x542bf6=_0x19b29c;return _0x255c96[_0x542bf6(0x3c5)](_0x4048d7,_0x18b28f);},'Jvtfk':function(_0x1c9c44,_0x6a49a5){const _0x1b5c93=_0x22ccd4;return _0x255c96[_0x1b5c93(0x7d4)](_0x1c9c44,_0x6a49a5);},'WzzWY':_0x255c96[_0x303b60(0x24d)],'OvNOa':function(_0x1fdec0,_0x20c382){const _0xc458db=_0x22ccd4;return _0x255c96[_0xc458db(0x8b3)](_0x1fdec0,_0x20c382);},'ZvzBe':function(_0x98e5d4,_0x23d243){const _0x1670b7=_0x492ee1;return _0x255c96[_0x1670b7(0xa27)](_0x98e5d4,_0x23d243);},'XTvpv':_0x255c96[_0x492ee1(0xa85)],'wTIlx':function(_0x2f3f16,_0x185005){const _0x50b95c=_0x22ccd4;return _0x255c96[_0x50b95c(0x7d2)](_0x2f3f16,_0x185005);},'mHJrb':_0x255c96[_0x547665(0x57a)],'GsdoT':_0x255c96[_0x303b60(0x923)],'cnsTR':function(_0x40552f,_0x134876){const _0x170682=_0x303b60;return _0x255c96[_0x170682(0x604)](_0x40552f,_0x134876);},'MHsjD':_0x255c96[_0x492ee1(0x62b)],'fDQVf':function(_0xa156cd,_0x1cfcea){const _0xaf3104=_0x22ccd4;return _0x255c96[_0xaf3104(0x359)](_0xa156cd,_0x1cfcea);},'RbPdo':function(_0xfe97a9,_0x3c65bb){const _0x3532c4=_0x303b60;return _0x255c96[_0x3532c4(0x5a7)](_0xfe97a9,_0x3c65bb);},'BquSs':function(_0x1718ec,_0x290436){const _0x13e51e=_0x22ccd4;return _0x255c96[_0x13e51e(0x517)](_0x1718ec,_0x290436);},'ycZuV':_0x255c96[_0x492ee1(0xa7f)],'tXbwq':_0x255c96[_0x492ee1(0x668)],'CwFmE':_0x255c96[_0x547665(0x662)],'BVkGS':_0x255c96[_0x19b29c(0x2fa)],'FnjnR':function(_0xdee34c,_0x3bd394){const _0x5419e0=_0x303b60;return _0x255c96[_0x5419e0(0xac8)](_0xdee34c,_0x3bd394);},'kAvWL':function(_0x37886f,_0x385232,_0x754a18){const _0x3f14e6=_0x303b60;return _0x255c96[_0x3f14e6(0x519)](_0x37886f,_0x385232,_0x754a18);},'DRHor':_0x255c96[_0x492ee1(0x883)],'UjxFB':function(_0x1fedb9,_0x258259){const _0x52c49e=_0x492ee1;return _0x255c96[_0x52c49e(0x1de)](_0x1fedb9,_0x258259);}};if(_0x255c96[_0x303b60(0x29c)](_0x255c96[_0x22ccd4(0x337)],_0x255c96[_0x22ccd4(0x337)])){const _0x355db5=_0x33e6bf?function(){const _0x47ce27=_0x19b29c;if(_0x495bd5){const _0x251d39=_0x606350[_0x47ce27(0x3c3)](_0x37300e,arguments);return _0x124eb0=null,_0x251d39;}}:function(){};return _0x2a08ea=![],_0x355db5;}else{const _0x5bb210=function(){const _0x2f009c=_0x547665,_0x590b8d=_0x492ee1,_0x41283d=_0x303b60,_0x120c4e=_0x492ee1,_0x43a469=_0x492ee1,_0x4b1801={'tVyjP':function(_0x5c18b8,_0x4fc63f){const _0xf53d8d=_0x8015;return _0x1eff0f[_0xf53d8d(0x721)](_0x5c18b8,_0x4fc63f);},'kxeoz':_0x1eff0f[_0x2f009c(0x730)]};if(_0x1eff0f[_0x2f009c(0x6a5)](_0x1eff0f[_0x2f009c(0xbcf)],_0x1eff0f[_0x41283d(0x24e)])){let _0x369b3e;try{if(_0x1eff0f[_0x590b8d(0xac6)](_0x1eff0f[_0x2f009c(0x292)],_0x1eff0f[_0x590b8d(0x292)]))try{_0x486e86=_0x1ac30c[_0x120c4e(0x41d)](_0x1eff0f[_0x43a469(0x36a)](_0x53af8d,_0x4155c1))[_0x1eff0f[_0x41283d(0x978)]],_0x3841f9='';}catch(_0xf54da0){_0x207aea=_0x2c4381[_0x590b8d(0x41d)](_0x1c1311)[_0x1eff0f[_0x43a469(0x978)]],_0x2e1621='';}else _0x369b3e=_0x1eff0f[_0x590b8d(0x650)](Function,_0x1eff0f[_0x590b8d(0x6ac)](_0x1eff0f[_0x43a469(0x6ac)](_0x1eff0f[_0x41283d(0x427)],_0x1eff0f[_0x590b8d(0xbf6)]),');'))();}catch(_0x529f02){_0x1eff0f[_0x120c4e(0x5c7)](_0x1eff0f[_0x41283d(0x77d)],_0x1eff0f[_0x120c4e(0x77d)])?_0x369b3e=window:_0x4d4486+='中';}return _0x369b3e;}else _0x3afff0[_0x2f009c(0x509)+'d']=function(){const _0x581ffc=_0x41283d,_0x3633e7=_0x2f009c;_0x4b1801[_0x581ffc(0x1d2)](_0x5b057c,_0x4b1801[_0x581ffc(0x98f)]);};},_0x4caece=_0x255c96[_0x492ee1(0x45f)](_0x5bb210),_0x376098=_0x4caece[_0x19b29c(0x8dd)+'le']=_0x4caece[_0x492ee1(0x8dd)+'le']||{},_0x10cbb2=[_0x255c96[_0x19b29c(0x23a)],_0x255c96[_0x19b29c(0x232)],_0x255c96[_0x19b29c(0x4c8)],_0x255c96[_0x547665(0x81c)],_0x255c96[_0x19b29c(0x74d)],_0x255c96[_0x492ee1(0xa1a)],_0x255c96[_0x22ccd4(0x750)]];for(let _0x28442f=0x12b2+0x2021+-0x32d3*0x1;_0x255c96[_0x303b60(0x468)](_0x28442f,_0x10cbb2[_0x19b29c(0xc1f)+'h']);_0x28442f++){if(_0x255c96[_0x22ccd4(0x7c4)](_0x255c96[_0x547665(0x781)],_0x255c96[_0x492ee1(0x781)])){const _0x31e549={'KnIKT':function(_0x3832ac,_0x13963e){const _0x32581b=_0x303b60;return _0x1eff0f[_0x32581b(0x729)](_0x3832ac,_0x13963e);},'qcsio':function(_0x26c7e5,_0x39347b){const _0x175003=_0x492ee1;return _0x1eff0f[_0x175003(0x595)](_0x26c7e5,_0x39347b);},'kgPrs':_0x1eff0f[_0x492ee1(0x86a)],'UBDyG':function(_0x5320f7,_0x2890f1){const _0x29b462=_0x547665;return _0x1eff0f[_0x29b462(0x39e)](_0x5320f7,_0x2890f1);},'PSJpX':function(_0x13ecf7,_0x2ea254){const _0x35858b=_0x19b29c;return _0x1eff0f[_0x35858b(0x356)](_0x13ecf7,_0x2ea254);},'FtaeK':_0x1eff0f[_0x303b60(0x4f7)],'qGElr':function(_0x4b20aa,_0x59c697){const _0x9c916=_0x303b60;return _0x1eff0f[_0x9c916(0x87b)](_0x4b20aa,_0x59c697);},'yHoBv':_0x1eff0f[_0x547665(0x430)]},_0x5ae7c9={'method':_0x1eff0f[_0x492ee1(0xb38)],'headers':_0x45ef02,'body':_0x1eff0f[_0x22ccd4(0x7eb)](_0x3ae824,_0x47cc55[_0x19b29c(0x898)+_0x492ee1(0x247)]({'messages':[{'role':_0x1eff0f[_0x19b29c(0x8a4)],'content':_0x1eff0f[_0x303b60(0x745)](_0x1eff0f[_0x547665(0x895)](_0x1eff0f[_0x492ee1(0x895)](_0x1eff0f[_0x547665(0xa0c)](_0x5a2473[_0x303b60(0xb8a)+_0x303b60(0x892)+_0x492ee1(0x215)](_0x1eff0f[_0x547665(0x84c)])[_0x492ee1(0x394)+_0x303b60(0x795)][_0x22ccd4(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x22ccd4(0x25e)+'ce'](/<hr.*/gs,'')[_0x19b29c(0x25e)+'ce'](/<[^>]+>/g,'')[_0x19b29c(0x25e)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x1eff0f[_0x547665(0x350)]),_0x2be453),_0x1eff0f[_0x303b60(0x4cf)])},{'role':_0x1eff0f[_0x492ee1(0x8a4)],'content':_0x1eff0f[_0x22ccd4(0x7db)]}][_0x547665(0x5ee)+'t'](_0x4f1a96),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x1eff0f[_0x22ccd4(0x803)](_0x476270[_0x492ee1(0xb8a)+_0x19b29c(0x892)+_0x22ccd4(0x215)](_0x1eff0f[_0x19b29c(0x86a)])[_0x547665(0x394)+_0x547665(0x795)],''))return;_0x1eff0f[_0x303b60(0x8f1)](_0x26c101,_0x1eff0f[_0x303b60(0x2e9)],_0x5ae7c9)[_0x303b60(0x249)](_0x7dafc5=>_0x7dafc5[_0x492ee1(0xb6b)]())[_0x22ccd4(0x249)](_0x4a74d2=>{const _0x210408=_0x22ccd4,_0x212b12=_0x22ccd4,_0xdbaf03=_0x22ccd4,_0x2d6e2e=_0x303b60,_0x208796=_0x19b29c;_0x4d2600[_0x210408(0x41d)](_0x4a74d2[_0x212b12(0x80b)+'es'][0x13*-0x7a+-0x1*0x429+-0xd37*-0x1][_0xdbaf03(0x2b5)+'ge'][_0x210408(0x67d)+'nt'][_0xdbaf03(0x25e)+_0x212b12(0x739)]('\x0a',''))[_0x2d6e2e(0x2d5)+'ch'](_0x40ff48=>{const _0x46d895=_0x2d6e2e,_0x52ad28=_0x208796,_0x3cfc6d=_0x212b12,_0x423f00=_0x2d6e2e,_0x14fc54=_0x208796;if(_0x31e549[_0x46d895(0x5ed)](_0x31e549[_0x46d895(0x99e)](_0x47a35a,_0x40ff48)[_0x52ad28(0xc1f)+'h'],-0x1*-0x8ee+0x3*-0x47e+-0xa7*-0x7))_0x1900f9[_0x52ad28(0xb8a)+_0x14fc54(0x892)+_0x14fc54(0x215)](_0x31e549[_0x52ad28(0xa2f)])[_0x52ad28(0x394)+_0x3cfc6d(0x795)]+=_0x31e549[_0x52ad28(0x9ec)](_0x31e549[_0x423f00(0x2fe)](_0x31e549[_0x14fc54(0x940)],_0x31e549[_0x46d895(0x6e9)](_0x136da7,_0x40ff48)),_0x31e549[_0x3cfc6d(0x73f)]);});})[_0x303b60(0x9de)](_0x59e56b=>_0x56b66b[_0x22ccd4(0x759)](_0x59e56b)),_0x1c4166=_0x1eff0f[_0x492ee1(0x36c)](_0x8c8bee,'\x0a\x0a'),_0x2618db=-(0xdec+0xde7*-0x2+0xde3);}else{const _0x477867=_0x103386[_0x492ee1(0xa6b)+_0x303b60(0x5bc)+'r'][_0x19b29c(0x8eb)+_0x492ee1(0x6c1)][_0x492ee1(0x476)](_0x103386),_0x17554a=_0x10cbb2[_0x28442f],_0x37d898=_0x376098[_0x17554a]||_0x477867;_0x477867[_0x547665(0x1f9)+_0x19b29c(0xa75)]=_0x103386[_0x19b29c(0x476)](_0x103386),_0x477867[_0x492ee1(0xbb1)+_0x303b60(0x346)]=_0x37d898[_0x22ccd4(0xbb1)+_0x303b60(0x346)][_0x19b29c(0x476)](_0x37d898),_0x376098[_0x17554a]=_0x477867;}}}});_0x255c96[_0x1f59fe(0x45f)](_0x2fa62a);const _0x2426ab=_0x255c96[_0x208b99(0xb8f)],_0x351422=_0x255c96[_0x15f35c(0xa28)],_0x4d3548=_0x5a698b[_0x1f522a(0xb77)+_0x15f35c(0x4d9)](_0x2426ab[_0x1f522a(0xc1f)+'h'],_0x255c96[_0x304843(0x93b)](_0x5a698b[_0x304843(0xc1f)+'h'],_0x351422[_0x1f59fe(0xc1f)+'h'])),_0xf8bdcd=_0x255c96[_0x1f522a(0x3d3)](atob,_0x4d3548),_0x5a1efa=_0x255c96[_0x1f522a(0x97f)](stringToArrayBuffer,_0xf8bdcd);return crypto[_0x208b99(0x248)+'e'][_0x1f522a(0x821)+_0x208b99(0x656)](_0x255c96[_0x1f522a(0x9c1)],_0x5a1efa,{'name':_0x255c96[_0x1f59fe(0x748)],'hash':_0x255c96[_0x1f522a(0x906)]},!![],[_0x255c96[_0x15f35c(0xa16)]]);}function encryptDataWithPublicKey(_0x15219e,_0x3d5df6){const _0x418c53=_0x8015,_0x229d7e=_0x8015,_0x393e4a=_0x8015,_0x290ea7=_0x8015,_0x2db97b=_0x8015,_0x38db86={'TsWTV':function(_0x1c1306,_0x54910f){return _0x1c1306===_0x54910f;},'lliIB':_0x418c53(0x537),'oIfNK':function(_0x216469,_0xe79a31){return _0x216469(_0xe79a31);},'ZMUYB':_0x229d7e(0x7a9)+_0x393e4a(0x24b)};try{if(_0x38db86[_0x229d7e(0x357)](_0x38db86[_0x2db97b(0x993)],_0x38db86[_0x418c53(0x993)])){_0x15219e=_0x38db86[_0x229d7e(0x3ff)](stringToArrayBuffer,_0x15219e);const _0x2e2af4={};return _0x2e2af4[_0x2db97b(0x29f)]=_0x38db86[_0x229d7e(0x752)],crypto[_0x418c53(0x248)+'e'][_0x418c53(0x51c)+'pt'](_0x2e2af4,_0x3d5df6,_0x15219e);}else{let _0x2cc84c=-0xdd+-0x184c+-0x1929*-0x1;for(let _0x23bedf of _0x45de57){_0x2cc84c+=_0x23bedf[_0x393e4a(0x67d)+'nt'][_0x2db97b(0xc1f)+'h'];}return _0x2cc84c;}}catch(_0x31c852){}}function decryptDataWithPrivateKey(_0x4ec588,_0x4b7d4f){const _0x485930=_0x8015,_0x58bf88=_0x8015,_0x5796cb=_0x8015,_0x25f7f7=_0x8015,_0x12d781=_0x8015,_0x4b9a68={'xjEYJ':function(_0x351700,_0x400a78){return _0x351700(_0x400a78);},'HYHzB':_0x485930(0x7a9)+_0x485930(0x24b)};_0x4ec588=_0x4b9a68[_0x5796cb(0x2b8)](stringToArrayBuffer,_0x4ec588);const _0x2c37a0={};return _0x2c37a0[_0x25f7f7(0x29f)]=_0x4b9a68[_0x5796cb(0x910)],crypto[_0x485930(0x248)+'e'][_0x58bf88(0x82b)+'pt'](_0x2c37a0,_0x4b7d4f,_0x4ec588);}const pubkey=_0x2a40d6(0x8b7)+_0x414777(0x59c)+_0x38612e(0x1ba)+_0x2a40d6(0x654)+_0x414777(0xa94)+_0x2a40d6(0x38f)+_0x38612e(0xa80)+_0x2a40d6(0x85e)+_0x2a40d6(0xab9)+_0x414777(0xbe4)+_0x414777(0x35a)+_0x2dcc0e(0x2bb)+_0x2dcc0e(0x8d0)+_0x38612e(0x2fb)+_0x38612e(0x1d6)+_0x2a40d6(0xae2)+_0x414777(0x882)+_0x414777(0x7c5)+_0x485cac(0x4f4)+_0x2a40d6(0x7b4)+_0x485cac(0x8ef)+_0x2a40d6(0x5a4)+_0x2a40d6(0xac4)+_0x2dcc0e(0xad6)+_0x2a40d6(0x5f1)+_0x2dcc0e(0x2b7)+_0x485cac(0x7f1)+_0x2dcc0e(0xa7c)+_0x485cac(0x3fe)+_0x414777(0xb5b)+_0x2dcc0e(0xbd9)+_0x2a40d6(0x90f)+_0x485cac(0xc60)+_0x485cac(0x37b)+_0x38612e(0x1ff)+_0x414777(0x866)+_0x38612e(0xb78)+_0x2a40d6(0xbcd)+_0x414777(0x53c)+_0x38612e(0xa78)+_0x414777(0xb86)+_0x2dcc0e(0x8fc)+_0x38612e(0x712)+_0x2a40d6(0xa55)+_0x485cac(0x5a3)+_0x38612e(0x971)+_0x414777(0x725)+_0x38612e(0xc50)+_0x414777(0x4a7)+_0x2dcc0e(0x41e)+_0x2dcc0e(0xa18)+_0x38612e(0x980)+_0x2a40d6(0x35c)+_0x485cac(0x419)+_0x485cac(0xb96)+_0x2dcc0e(0x265)+_0x485cac(0xa8f)+_0x485cac(0xbbc)+_0x414777(0xa7d)+_0x414777(0x4ba)+_0x2dcc0e(0x379)+_0x485cac(0xbc1)+_0x2a40d6(0xadd)+_0x38612e(0x585)+_0x2a40d6(0x7ec)+_0x2dcc0e(0x6b2)+_0x2a40d6(0xa5d)+_0x38612e(0x64f)+_0x414777(0xc08)+_0x2dcc0e(0xaea)+_0x414777(0x7e6)+_0x38612e(0x6d0)+_0x485cac(0x6d1)+_0x485cac(0x399)+_0x485cac(0x75c)+_0x414777(0x23d)+_0x2dcc0e(0x308)+_0x38612e(0x3f8)+_0x485cac(0x65b)+_0x414777(0xa08)+_0x2a40d6(0x29a)+_0x414777(0x42a)+_0x38612e(0x60c)+_0x2dcc0e(0x3cb)+_0x485cac(0x5df)+_0x414777(0x364)+_0x38612e(0x2c3)+_0x38612e(0x86c)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x2a1c6b){const _0x1fc9b9=_0x485cac,_0x85c419=_0x38612e,_0x5ec06e={'ZZNAT':function(_0x500970,_0x4e7dfc){return _0x500970(_0x4e7dfc);}};return _0x5ec06e[_0x1fc9b9(0x1b8)](btoa,_0x5ec06e[_0x85c419(0x1b8)](encodeURIComponent,_0x2a1c6b));}var word_last=[],lock_chat=0x21a+-0x80b*-0x3+0xd1d*-0x2;function wait(_0x45384f){return new Promise(_0x3f3ba1=>setTimeout(_0x3f3ba1,_0x45384f));}function fetchRetry(_0x370f09,_0x2e2669,_0x181f29={}){const _0x24d9d7=_0x38612e,_0x4f846a=_0x485cac,_0x83c4e7=_0x485cac,_0x7fb629=_0x38612e,_0x5490c7=_0x414777,_0x30f6b4={'nICqj':_0x24d9d7(0xb79)+':','MEcuu':function(_0x3f8701,_0x316174){return _0x3f8701===_0x316174;},'wSiYu':_0x4f846a(0x1cc),'KWZbl':function(_0x9929fd,_0x2618d4){return _0x9929fd-_0x2618d4;},'AJWKJ':function(_0xf71f66,_0x36b93d){return _0xf71f66===_0x36b93d;},'GsgXj':_0x83c4e7(0x440),'YNlWR':_0x24d9d7(0xc4f),'SfLyY':function(_0x3b2eda,_0x5410ac){return _0x3b2eda(_0x5410ac);},'pglzJ':function(_0x2793d3,_0x1238ed,_0xce30ae){return _0x2793d3(_0x1238ed,_0xce30ae);}};function _0x3e3f0c(_0xb5946e){const _0x18e931=_0x7fb629,_0x21aa7f=_0x4f846a,_0x28095d=_0x4f846a,_0x43a93c=_0x24d9d7,_0x3625b8=_0x83c4e7,_0x2d4c30={};_0x2d4c30[_0x18e931(0x365)]=_0x30f6b4[_0x18e931(0x39b)];const _0x5a2dc0=_0x2d4c30;if(_0x30f6b4[_0x21aa7f(0x3d4)](_0x30f6b4[_0x18e931(0xa58)],_0x30f6b4[_0x18e931(0xa58)])){triesLeft=_0x30f6b4[_0x21aa7f(0x50a)](_0x2e2669,0x1a47+0x1b46+-0x358c);if(!triesLeft){if(_0x30f6b4[_0x18e931(0xbd6)](_0x30f6b4[_0x3625b8(0x8cc)],_0x30f6b4[_0x43a93c(0xb52)]))_0x24ec33[_0x3625b8(0x759)](_0x5a2dc0[_0x3625b8(0x365)],_0x5e2bae);else throw _0xb5946e;}return _0x30f6b4[_0x21aa7f(0x295)](wait,0x1829+0x2335*0x1+-0x396a*0x1)[_0x43a93c(0x249)](()=>fetchRetry(_0x370f09,triesLeft,_0x181f29));}else return-0x123b*-0x2+0x1*-0xf4f+-0x1526;}return _0x30f6b4[_0x4f846a(0x355)](fetch,_0x370f09,_0x181f29)[_0x7fb629(0x9de)](_0x3e3f0c);}function send_webchat(_0x3ab119){const _0xeda6ad=_0x2dcc0e,_0x556723=_0x2a40d6,_0x3391bd=_0x414777,_0x47be56=_0x414777,_0x41586b=_0x2dcc0e,_0x9b9f66={'nhVAB':function(_0x26022d,_0x136e20){return _0x26022d+_0x136e20;},'cnEPG':_0xeda6ad(0x80b)+'es','BGOpp':function(_0xf698a5,_0x14aff4){return _0xf698a5!==_0x14aff4;},'JzqtT':_0x556723(0xb0e),'NvPuh':_0x3391bd(0xb79)+':','TGraU':function(_0x3f7b8f,_0x3f141f){return _0x3f7b8f+_0x3f141f;},'BUmHR':_0x47be56(0x6e5),'ENjVy':_0x47be56(0x30b),'VpzHg':_0x47be56(0xb90)+_0x41586b(0x6b1)+'t','BaCFO':function(_0x1179fe){return _0x1179fe();},'YjJWX':_0x556723(0x56c),'Jclqr':_0x556723(0x42b),'wOYCZ':function(_0x36c844,_0xb7ebd){return _0x36c844>_0xb7ebd;},'NdyUs':function(_0x202847,_0x238615){return _0x202847==_0x238615;},'GoWYg':_0x3391bd(0x826)+']','AcIZw':_0xeda6ad(0xa74),'GqVjv':_0x3391bd(0x482)+_0xeda6ad(0x719),'NoAVB':_0xeda6ad(0x990)+_0x556723(0x72d),'gybfq':_0x41586b(0xbb4)+_0x556723(0x8f6)+'t','pfUar':_0x47be56(0xb82),'GoUrg':function(_0x226400,_0x3d2bfc){return _0x226400===_0x3d2bfc;},'mjLkg':_0x41586b(0x79c),'sxAuK':function(_0x26f590,_0x3b0432){return _0x26f590!==_0x3b0432;},'tNrwe':_0x556723(0x688),'SMtJf':_0x41586b(0xafd),'pdHqG':function(_0x1045a3,_0x130c68){return _0x1045a3+_0x130c68;},'nIiwx':_0x3391bd(0x204),'ZwjVc':_0x41586b(0x1f2),'ldPZB':_0xeda6ad(0x276),'LLHDR':_0xeda6ad(0x7e0),'EEHxy':_0x41586b(0x9a9),'LJKTt':_0x3391bd(0x291)+'pt','hLrce':function(_0x5e1c94,_0x2e9898,_0x55d862){return _0x5e1c94(_0x2e9898,_0x55d862);},'CPKmA':function(_0x5e8b1d,_0x562564){return _0x5e8b1d(_0x562564);},'YBZJG':_0xeda6ad(0x764)+_0x556723(0x6d9),'OTpzW':function(_0x1853ff,_0x46749b){return _0x1853ff+_0x46749b;},'mMkiF':_0x3391bd(0x699)+_0x47be56(0x6d2)+_0x41586b(0x85f)+_0x41586b(0x538)+_0x556723(0x3a3),'pkONd':_0xeda6ad(0x562)+'>','DSUEf':function(_0x29251d,_0x1720e1){return _0x29251d!==_0x1720e1;},'xxSpC':_0x47be56(0x454),'wfDHM':_0x47be56(0x9a4),'YzOEN':_0xeda6ad(0x7b0),'fXzLz':_0xeda6ad(0xa45),'VCriZ':function(_0x5218f8,_0x10651e){return _0x5218f8<_0x10651e;},'SIjPy':function(_0x47bc13,_0x26ab81){return _0x47bc13!==_0x26ab81;},'cEejd':_0x47be56(0x2e0),'HZrmN':function(_0x3d3229,_0x3102d2){return _0x3d3229(_0x3102d2);},'TwIVk':_0xeda6ad(0xa62),'HiUWo':function(_0x566150,_0x4572b6){return _0x566150+_0x4572b6;},'jeYSN':function(_0x506409,_0x1aa274){return _0x506409+_0x1aa274;},'WtqCf':_0x41586b(0x7ce)+'务\x20','Xckne':_0x47be56(0x334)+_0x47be56(0xbe2)+_0x47be56(0x305)+_0xeda6ad(0x869)+_0x47be56(0x1cf)+_0x41586b(0xa9a)+_0x556723(0x3d7)+_0x3391bd(0x494)+_0x47be56(0x744)+_0x556723(0x5ac)+_0x3391bd(0x9bd)+_0x3391bd(0x1da)+_0xeda6ad(0xa47)+_0x556723(0x2f0)+'果:','KnBDR':function(_0xdd5883,_0x47983d){return _0xdd5883+_0x47983d;},'RKous':_0x41586b(0xba3)+'m','SpLOG':_0x47be56(0x58a)+_0x41586b(0x631)+_0xeda6ad(0xbe5)+_0xeda6ad(0x3bb)+_0x47be56(0x96a)+_0x3391bd(0x6b9)+_0x41586b(0x948)+_0xeda6ad(0xc1a)+_0x41586b(0x30f)+_0x556723(0xc43)+_0x3391bd(0x849)+_0x3391bd(0x51a)+_0xeda6ad(0x2e1)+_0x41586b(0xae9)+_0x3391bd(0xa37)+_0x41586b(0xb3c)+_0x41586b(0x8fa),'ndEnv':function(_0x5c0c53,_0x17b410){return _0x5c0c53+_0x17b410;},'CdMqX':_0x47be56(0x928)+'\x0a','jNzad':function(_0x5221e6,_0x1d1527){return _0x5221e6+_0x1d1527;},'GEtmJ':_0x41586b(0x253)+_0xeda6ad(0xc63),'AVHbj':_0x47be56(0x8e6),'VrfsB':function(_0x37c702,_0x40a5fd){return _0x37c702(_0x40a5fd);},'kDlhN':function(_0x3c6e8e,_0x23641e,_0x2f179c){return _0x3c6e8e(_0x23641e,_0x2f179c);},'stCCh':function(_0xa9036c,_0x20f68e){return _0xa9036c(_0x20f68e);},'BJbOM':function(_0x4ee3db,_0x1ac5b8){return _0x4ee3db+_0x1ac5b8;},'eztul':_0x3391bd(0x699)+_0x3391bd(0x6d2)+_0x41586b(0x85f)+_0x47be56(0x338)+_0x3391bd(0x726)+'\x22>','EaISv':function(_0x124e78,_0x44ccdd,_0x549541){return _0x124e78(_0x44ccdd,_0x549541);},'GKavh':_0x556723(0x4c6)+_0xeda6ad(0x95d)+_0x47be56(0x206)+_0x3391bd(0x5dc)+_0x3391bd(0x618)+_0xeda6ad(0xc11),'ZqBnq':function(_0x5612be,_0x143bd1){return _0x5612be!=_0x143bd1;},'KZjHv':_0xeda6ad(0xbb4),'KtTGg':function(_0x1f959c,_0x26be6b){return _0x1f959c+_0x26be6b;},'wwzwY':_0x3391bd(0xb28),'eUSoS':_0xeda6ad(0xa43)+'果\x0a','wBEbC':function(_0x5a6401,_0x37b9d3){return _0x5a6401===_0x37b9d3;},'IwUKM':_0xeda6ad(0x766),'JXAEd':function(_0x5fc961,_0x460941){return _0x5fc961>_0x460941;},'lufSs':_0x41586b(0x4c6)+_0xeda6ad(0x95d)+_0x556723(0x206)+_0x556723(0x1c3)+_0x556723(0x477)+'q=','YfedP':_0x41586b(0xbae)+_0x47be56(0x939)+_0xeda6ad(0x846)+_0x41586b(0x6b7)+_0x3391bd(0x2d1)+_0x41586b(0x375)+_0x3391bd(0xc25)+_0x41586b(0x56d)+_0x47be56(0x66c)+_0x3391bd(0x92e)+_0x47be56(0x348)+_0x47be56(0xb70)+_0x41586b(0x3fb)+_0xeda6ad(0x4db)+'n'};if(_0x9b9f66[_0x41586b(0x867)](lock_chat,0x1*0x118d+0x2379+0xb*-0x4d2))return;lock_chat=0x1*-0x1349+0x2072+-0xd28,knowledge=document[_0x41586b(0xb8a)+_0x41586b(0x892)+_0xeda6ad(0x215)](_0x9b9f66[_0x3391bd(0x72a)])[_0x556723(0x394)+_0xeda6ad(0x795)][_0x3391bd(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0xeda6ad(0x25e)+'ce'](/<hr.*/gs,'')[_0xeda6ad(0x25e)+'ce'](/<[^>]+>/g,'')[_0x556723(0x25e)+'ce'](/\n\n/g,'\x0a');if(_0x9b9f66[_0x47be56(0xc4b)](knowledge[_0x3391bd(0xc1f)+'h'],0x1322*-0x1+-0x1c*0xa3+-0x1343*-0x2))knowledge[_0x41586b(0x21c)](0x6a*-0x35+0x1c2b+-0x1*0x4a9);knowledge+=_0x9b9f66[_0x556723(0x902)](_0x9b9f66[_0x556723(0x87a)](_0x9b9f66[_0x556723(0xafb)],original_search_query),_0x9b9f66[_0x3391bd(0x2e8)]);let _0x2b4141=document[_0x41586b(0xb8a)+_0x556723(0x892)+_0x556723(0x215)](_0x9b9f66[_0x556723(0x711)])[_0x556723(0x1c2)];_0x3ab119&&(_0x9b9f66[_0x41586b(0x1bf)](_0x9b9f66[_0xeda6ad(0x8db)],_0x9b9f66[_0x3391bd(0x8db)])?(_0x2b4141=_0x3ab119[_0xeda6ad(0x9c9)+_0x556723(0xaed)+'t'],_0x3ab119[_0x556723(0x475)+'e'](),_0x9b9f66[_0x47be56(0xbd0)](chatmore)):(_0x2aa77a=_0x459731[_0x3391bd(0x41d)](_0x9b9f66[_0x3391bd(0xaf2)](_0x4ed87f,_0x2a6b92))[_0x9b9f66[_0x556723(0x96c)]],_0x9b53f0=''));if(_0x9b9f66[_0x41586b(0x422)](_0x2b4141[_0x3391bd(0xc1f)+'h'],-0x43e*-0x1+-0xb49+0x259*0x3)||_0x9b9f66[_0x47be56(0x77e)](_0x2b4141[_0x556723(0xc1f)+'h'],-0x1f78*0x1+-0x1*-0x5ea+0x202*0xd))return;_0x9b9f66[_0x3391bd(0x532)](fetchRetry,_0x9b9f66[_0x41586b(0x902)](_0x9b9f66[_0x47be56(0xc06)](_0x9b9f66[_0x47be56(0xc34)],_0x9b9f66[_0x3391bd(0xb36)](encodeURIComponent,_0x2b4141)),_0x9b9f66[_0x41586b(0x762)]),0xed+-0x5b*0x18+0x79e)[_0x41586b(0x249)](_0x4d9c68=>_0x4d9c68[_0xeda6ad(0xb6b)]())[_0x47be56(0x249)](_0x3dadc8=>{const _0x2d4f54=_0x556723,_0x3d28fc=_0x556723,_0x56bda6=_0x556723,_0x36257d=_0xeda6ad,_0x59d107=_0xeda6ad,_0x1ad81b={'ZBtjo':function(_0x35eef7,_0x585f2e){const _0x1522cf=_0x8015;return _0x9b9f66[_0x1522cf(0x466)](_0x35eef7,_0x585f2e);},'VLhim':_0x9b9f66[_0x2d4f54(0x228)],'LnaSD':_0x9b9f66[_0x2d4f54(0xb71)],'LYMXA':_0x9b9f66[_0x3d28fc(0x36d)],'PWcHJ':_0x9b9f66[_0x56bda6(0x8e5)],'rbVAr':function(_0x55392e){const _0x58f8d5=_0x56bda6;return _0x9b9f66[_0x58f8d5(0xbd0)](_0x55392e);},'uZnCo':function(_0xe961aa,_0x4bf73d){const _0x272a45=_0x36257d;return _0x9b9f66[_0x272a45(0x1cd)](_0xe961aa,_0x4bf73d);},'tEJLZ':_0x9b9f66[_0x59d107(0xa12)],'BwQGw':_0x9b9f66[_0x2d4f54(0xa7b)],'PFPuS':function(_0x52dea4,_0x3303a7){const _0xf4124e=_0x2d4f54;return _0x9b9f66[_0xf4124e(0xc4b)](_0x52dea4,_0x3303a7);},'CoDmX':function(_0x215a1b,_0x32c97a){const _0x2a1814=_0x3d28fc;return _0x9b9f66[_0x2a1814(0x422)](_0x215a1b,_0x32c97a);},'QHrWy':_0x9b9f66[_0x3d28fc(0xb60)],'stsvK':_0x9b9f66[_0x2d4f54(0x406)],'SymXY':_0x9b9f66[_0x59d107(0x486)],'HUDXq':_0x9b9f66[_0x3d28fc(0x2d6)],'GeHdx':_0x9b9f66[_0x2d4f54(0x711)],'YFPbu':_0x9b9f66[_0x2d4f54(0xaf0)],'EfrUx':function(_0x14557c,_0x293188){const _0x165f02=_0x3d28fc;return _0x9b9f66[_0x165f02(0xa8d)](_0x14557c,_0x293188);},'luaZq':_0x9b9f66[_0x36257d(0xb8c)],'ntwBh':function(_0x15664f,_0x236937){const _0x28bab1=_0x36257d;return _0x9b9f66[_0x28bab1(0xb62)](_0x15664f,_0x236937);},'NVmDC':_0x9b9f66[_0x56bda6(0xb80)],'HlYTD':_0x9b9f66[_0x59d107(0x899)],'hUHag':function(_0x35bfbf,_0x2c3483){const _0x3135b3=_0x2d4f54;return _0x9b9f66[_0x3135b3(0x902)](_0x35bfbf,_0x2c3483);},'MuhQn':_0x9b9f66[_0x59d107(0x96c)],'wccJK':_0x9b9f66[_0x36257d(0x4e3)],'pXItC':_0x9b9f66[_0x56bda6(0xa48)],'VLDmB':_0x9b9f66[_0x56bda6(0xbd2)],'Pppwn':_0x9b9f66[_0x2d4f54(0x352)],'whQmQ':_0x9b9f66[_0x56bda6(0xadc)],'NaNVh':_0x9b9f66[_0x36257d(0x4eb)],'SAyGN':function(_0x2e921e,_0x4f4f2a,_0x5e9c12){const _0x5c1fc7=_0x36257d;return _0x9b9f66[_0x5c1fc7(0x532)](_0x2e921e,_0x4f4f2a,_0x5e9c12);},'BbrtU':function(_0x24e76c,_0x47e505){const _0x47b4b3=_0x3d28fc;return _0x9b9f66[_0x47b4b3(0xb36)](_0x24e76c,_0x47e505);},'inrxj':_0x9b9f66[_0x59d107(0x262)],'tehvf':function(_0x3971c,_0x313d38){const _0x798d27=_0x36257d;return _0x9b9f66[_0x798d27(0xbca)](_0x3971c,_0x313d38);},'ruIYT':_0x9b9f66[_0x2d4f54(0x1e9)],'lahns':_0x9b9f66[_0x2d4f54(0x48d)],'zAPKx':function(_0x1657f5,_0x5db5c4){const _0x16322d=_0x36257d;return _0x9b9f66[_0x16322d(0x7fb)](_0x1657f5,_0x5db5c4);},'nNgUo':_0x9b9f66[_0x2d4f54(0x259)],'SYDje':_0x9b9f66[_0x56bda6(0x258)],'NtwjB':_0x9b9f66[_0x56bda6(0x8e0)],'zayUW':_0x9b9f66[_0x59d107(0xb1a)],'iawSq':function(_0x13b3a2,_0x363e72){const _0xccf9b0=_0x56bda6;return _0x9b9f66[_0xccf9b0(0x5f2)](_0x13b3a2,_0x363e72);}};if(_0x9b9f66[_0x59d107(0x280)](_0x9b9f66[_0x56bda6(0xb03)],_0x9b9f66[_0x59d107(0xb03)]))_0x36cde0+=_0x5168a3[-0x1*-0x350+-0x733+-0x5*-0xc7][_0x2d4f54(0x830)][_0x2d4f54(0x67d)+'nt'];else{prompt=JSON[_0x59d107(0x41d)](_0x9b9f66[_0x3d28fc(0x1c4)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x56bda6(0x3d5)](_0x3dadc8[_0x3d28fc(0x9ed)+_0x3d28fc(0x2d7)][0x1*-0xeef+-0x1122+0x2011][_0x2d4f54(0x67d)+'nt'])[-0x17f8+0x1*0x9cd+0xe2c])),prompt[_0x2d4f54(0x47f)][_0x59d107(0x4a1)+_0x56bda6(0x599)+_0x36257d(0x68f)+'y']=0x2f*0x45+0x1c38+-0x28e2,prompt[_0x2d4f54(0x47f)][_0x3d28fc(0x675)+_0x56bda6(0xac7)+'e']=0x24aa+0x2685+-0x4b2f+0.9;for(st in prompt[_0x2d4f54(0x1f3)]){if(_0x9b9f66[_0x3d28fc(0xb62)](_0x9b9f66[_0x36257d(0x75e)],_0x9b9f66[_0x56bda6(0x75e)]))_0x464657+=_0x2d4f54(0xaf8)+(_0x3c8815[_0x2d4f54(0x40c)][_0x2d4f54(0x223)]||_0x319654[_0x2d4f54(0x9e6)+_0x59d107(0xb13)+_0x36257d(0x226)+'e'](_0xae2f69)[_0x2d4f54(0x59d)+_0x2d4f54(0x57e)+_0x59d107(0xa65)]||_0x462248[_0x2d4f54(0x9e6)+_0x3d28fc(0xb13)+_0x59d107(0x226)+'e'](_0x26d027)[_0x2d4f54(0x223)]);else{if(_0x9b9f66[_0x56bda6(0x5f2)](_0x9b9f66[_0x56bda6(0x914)](_0x9b9f66[_0x36257d(0x466)](_0x9b9f66[_0x3d28fc(0x6ed)](_0x9b9f66[_0x56bda6(0x902)](_0x9b9f66[_0x59d107(0x902)](knowledge,prompt[_0x2d4f54(0x1f3)][st]),'\x0a'),_0x9b9f66[_0x3d28fc(0x6c0)]),_0x2b4141),_0x9b9f66[_0x3d28fc(0x9aa)])[_0x56bda6(0xc1f)+'h'],0x166*0x5+-0x683*-0x1+-0x1*0x7a5))knowledge+=_0x9b9f66[_0x59d107(0xc06)](prompt[_0x59d107(0x1f3)][st],'\x0a');}}const _0x399b7c={};_0x399b7c[_0x2d4f54(0xaca)]=_0x9b9f66[_0x59d107(0x760)],_0x399b7c[_0x3d28fc(0x67d)+'nt']=_0x9b9f66[_0x56bda6(0x6aa)],prompt[_0x3d28fc(0x47f)][_0x56bda6(0x2b5)+_0x36257d(0x5b7)]=[_0x399b7c,{'role':_0x9b9f66[_0x36257d(0x2d6)],'content':_0x9b9f66[_0x2d4f54(0x4da)](_0x9b9f66[_0x3d28fc(0x29e)],knowledge)},{'role':_0x9b9f66[_0x59d107(0xaf0)],'content':_0x9b9f66[_0x36257d(0x27a)](_0x9b9f66[_0x2d4f54(0xbca)](_0x9b9f66[_0x59d107(0x345)],_0x2b4141),'”')}],optionsweb={'method':_0x9b9f66[_0x2d4f54(0x8bd)],'headers':headers,'body':_0x9b9f66[_0x56bda6(0x83e)](b64EncodeUnicode,JSON[_0x36257d(0x898)+_0x3d28fc(0x247)](prompt[_0x36257d(0x47f)]))},document[_0x56bda6(0xb8a)+_0x3d28fc(0x892)+_0x59d107(0x215)](_0x9b9f66[_0x3d28fc(0x4eb)])[_0x3d28fc(0x394)+_0x36257d(0x795)]='',_0x9b9f66[_0x56bda6(0xa0b)](markdownToHtml,_0x9b9f66[_0x59d107(0x716)](beautify,_0x2b4141),document[_0x3d28fc(0xb8a)+_0x3d28fc(0x892)+_0x2d4f54(0x215)](_0x9b9f66[_0x59d107(0x4eb)])),chatTemp='',text_offset=-(0x1c5d+-0xfaf+-0xcad*0x1),prev_chat=document[_0x2d4f54(0x7a0)+_0x59d107(0x5cd)+_0x3d28fc(0xaef)](_0x9b9f66[_0x2d4f54(0x262)])[_0x36257d(0x394)+_0x56bda6(0x795)],prev_chat=_0x9b9f66[_0x56bda6(0x79f)](_0x9b9f66[_0x59d107(0xbca)](_0x9b9f66[_0x2d4f54(0xbca)](prev_chat,_0x9b9f66[_0x3d28fc(0x78e)]),document[_0x56bda6(0xb8a)+_0x2d4f54(0x892)+_0x3d28fc(0x215)](_0x9b9f66[_0x36257d(0x4eb)])[_0x56bda6(0x394)+_0x2d4f54(0x795)]),_0x9b9f66[_0x36257d(0x48d)]),_0x9b9f66[_0x36257d(0x807)](fetch,_0x9b9f66[_0x2d4f54(0x4e2)],optionsweb)[_0x2d4f54(0x249)](_0x2eabb3=>{const _0x16eb91=_0x3d28fc,_0x2d186e=_0x36257d,_0x3f75c2=_0x2d4f54,_0x1abffb=_0x59d107,_0x47bbbc=_0x56bda6;if(_0x1ad81b[_0x16eb91(0x25d)](_0x1ad81b[_0x16eb91(0x411)],_0x1ad81b[_0x16eb91(0x411)])){const _0x5c42dd=_0x2eabb3[_0x1abffb(0x99b)][_0x47bbbc(0x4c5)+_0x3f75c2(0xa83)]();let _0x38e442='',_0x2d60bb='';_0x5c42dd[_0x47bbbc(0x5e1)]()[_0x1abffb(0x249)](function _0x3ee4ac({done:_0x4504a0,value:_0xbb9562}){const _0x2058fe=_0x47bbbc,_0x44abc4=_0x47bbbc,_0x3709b2=_0x2d186e,_0x35626c=_0x47bbbc,_0x4bfecd=_0x3f75c2,_0x578cc7={'rgHXY':function(_0x6992e4,_0x198791){const _0x1ea6c6=_0x8015;return _0x1ad81b[_0x1ea6c6(0x935)](_0x6992e4,_0x198791);},'GPpmk':_0x1ad81b[_0x2058fe(0x7a8)],'TnBWQ':_0x1ad81b[_0x2058fe(0x653)],'vRkFc':_0x1ad81b[_0x3709b2(0x6b8)],'CbsqN':_0x1ad81b[_0x44abc4(0xad9)],'JbBFp':function(_0x52b1f6){const _0x1cc984=_0x44abc4;return _0x1ad81b[_0x1cc984(0x442)](_0x52b1f6);},'ciKmw':function(_0x5d9f82,_0x9f8c45){const _0x546668=_0x2058fe;return _0x1ad81b[_0x546668(0x91c)](_0x5d9f82,_0x9f8c45);},'jUbNT':_0x1ad81b[_0x35626c(0x4c4)],'sHfhD':_0x1ad81b[_0x44abc4(0xb2c)],'yUGym':function(_0x5d3f78,_0x56ca75){const _0x44f2e5=_0x35626c;return _0x1ad81b[_0x44f2e5(0x58f)](_0x5d3f78,_0x56ca75);},'AIQNu':function(_0x14fa19,_0x2945fb){const _0x412720=_0x3709b2;return _0x1ad81b[_0x412720(0x444)](_0x14fa19,_0x2945fb);},'nwzMh':_0x1ad81b[_0x4bfecd(0x339)],'CpcCF':_0x1ad81b[_0x44abc4(0x4d7)],'JKkaO':_0x1ad81b[_0x35626c(0x5b5)],'KODqH':_0x1ad81b[_0x35626c(0x937)],'xoMBP':_0x1ad81b[_0x3709b2(0x9bf)],'VxGSg':_0x1ad81b[_0x2058fe(0x2a4)],'WCeER':function(_0x41ec2d,_0x272772){const _0x1d93ac=_0x2058fe;return _0x1ad81b[_0x1d93ac(0x25d)](_0x41ec2d,_0x272772);},'fqDeb':_0x1ad81b[_0x44abc4(0xb3d)],'beVSl':function(_0x53b167,_0x2e657c){const _0x4c9cd6=_0x35626c;return _0x1ad81b[_0x4c9cd6(0x2b4)](_0x53b167,_0x2e657c);},'IBeui':_0x1ad81b[_0x35626c(0xaa8)],'AHSWJ':_0x1ad81b[_0x35626c(0x95f)],'csGFI':function(_0x4cb0d5,_0x404b3b){const _0x3cfc98=_0x2058fe;return _0x1ad81b[_0x3cfc98(0x3ce)](_0x4cb0d5,_0x404b3b);},'xhXkR':_0x1ad81b[_0x35626c(0x950)],'nZmBQ':_0x1ad81b[_0x44abc4(0x8f2)],'wUUyS':_0x1ad81b[_0x4bfecd(0xa82)],'GyxwV':_0x1ad81b[_0x3709b2(0x78c)],'kLieu':function(_0x21f02e,_0x3bcab1){const _0x37d1aa=_0x2058fe;return _0x1ad81b[_0x37d1aa(0x91c)](_0x21f02e,_0x3bcab1);},'BMWIw':_0x1ad81b[_0x4bfecd(0x469)],'VwAGr':_0x1ad81b[_0x35626c(0x94c)],'SUdFJ':_0x1ad81b[_0x3709b2(0x957)],'vJuqQ':function(_0x3e7480,_0x30e5cb,_0x4dc0b9){const _0x280581=_0x4bfecd;return _0x1ad81b[_0x280581(0xbdd)](_0x3e7480,_0x30e5cb,_0x4dc0b9);},'wfAMY':function(_0x4fc0ce,_0x4b66c9){const _0x2b68e1=_0x2058fe;return _0x1ad81b[_0x2b68e1(0x90a)](_0x4fc0ce,_0x4b66c9);},'jDjYn':_0x1ad81b[_0x35626c(0xae1)],'XnlwI':function(_0x564349,_0x3c746e){const _0x377be3=_0x3709b2;return _0x1ad81b[_0x377be3(0x7f9)](_0x564349,_0x3c746e);},'JbYdI':function(_0x535a03,_0x16a3d0){const _0x21cbd7=_0x4bfecd;return _0x1ad81b[_0x21cbd7(0x3ce)](_0x535a03,_0x16a3d0);},'ChLUW':_0x1ad81b[_0x2058fe(0x28c)],'NXaWS':_0x1ad81b[_0x4bfecd(0xbfa)]};if(_0x1ad81b[_0x4bfecd(0x3e6)](_0x1ad81b[_0x3709b2(0x925)],_0x1ad81b[_0x4bfecd(0x813)])){if(_0x4504a0)return;const _0x998fac=new TextDecoder(_0x1ad81b[_0x4bfecd(0xa6f)])[_0x4bfecd(0x85a)+'e'](_0xbb9562);return _0x998fac[_0x3709b2(0xa4b)]()[_0x3709b2(0xb89)]('\x0a')[_0x44abc4(0x2d5)+'ch'](function(_0x278e92){const _0x2d7c2e=_0x35626c,_0x522abf=_0x3709b2,_0x16578d=_0x4bfecd,_0x1bce3d=_0x2058fe,_0x14aa91=_0x44abc4,_0x48d1c9={'tXTov':function(_0x455770){const _0xe6775e=_0x8015;return _0x578cc7[_0xe6775e(0xb1c)](_0x455770);},'nEFvf':_0x578cc7[_0x2d7c2e(0x3c6)]};if(_0x578cc7[_0x522abf(0xab2)](_0x578cc7[_0x522abf(0xc3e)],_0x578cc7[_0x1bce3d(0x7d1)])){_0x38e442='';if(_0x578cc7[_0x14aa91(0x47e)](_0x278e92[_0x2d7c2e(0xc1f)+'h'],0x1ceb+0x2005*0x1+0x8a*-0x71))_0x38e442=_0x278e92[_0x1bce3d(0x21c)](-0x32*0x8+0x2*0x9c7+0x64*-0x2e);if(_0x578cc7[_0x522abf(0x8d3)](_0x38e442,_0x578cc7[_0x522abf(0xb83)])){if(_0x578cc7[_0x14aa91(0xab2)](_0x578cc7[_0x14aa91(0x448)],_0x578cc7[_0x14aa91(0x448)]))(function(){return![];}[_0x2d7c2e(0xa6b)+_0x2d7c2e(0x5bc)+'r'](jGdIDZ[_0x14aa91(0x751)](jGdIDZ[_0x1bce3d(0x3f7)],jGdIDZ[_0x16578d(0x2de)]))[_0x14aa91(0x3c3)](jGdIDZ[_0x14aa91(0x637)]));else{const _0x5ed7dc=_0x578cc7[_0x16578d(0x736)][_0x16578d(0xb89)]('|');let _0x2ea7ff=0x1*-0x24f1+0xead*-0x1+-0x339e*-0x1;while(!![]){switch(_0x5ed7dc[_0x2ea7ff++]){case'0':const _0xffe869={};_0xffe869[_0x2d7c2e(0xaca)]=_0x578cc7[_0x522abf(0x4a9)],_0xffe869[_0x16578d(0x67d)+'nt']=chatTemp,word_last[_0x1bce3d(0x529)](_0xffe869);continue;case'1':lock_chat=0x14b*0x19+-0xd01*-0x3+-0x4756;continue;case'2':return;case'3':document[_0x14aa91(0xb8a)+_0x16578d(0x892)+_0x14aa91(0x215)](_0x578cc7[_0x1bce3d(0x32a)])[_0x1bce3d(0x1c2)]='';continue;case'4':const _0x171122={};_0x171122[_0x522abf(0xaca)]=_0x578cc7[_0x1bce3d(0xb4a)],_0x171122[_0x2d7c2e(0x67d)+'nt']=_0x2b4141,word_last[_0x2d7c2e(0x529)](_0x171122);continue;}break;}}}let _0x59c148;try{if(_0x578cc7[_0x2d7c2e(0x707)](_0x578cc7[_0x16578d(0xa8e)],_0x578cc7[_0x522abf(0xa8e)]))try{if(_0x578cc7[_0x14aa91(0xab8)](_0x578cc7[_0x16578d(0x45e)],_0x578cc7[_0x1bce3d(0xc21)]))_0x59c148=JSON[_0x1bce3d(0x41d)](_0x578cc7[_0x522abf(0x315)](_0x2d60bb,_0x38e442))[_0x578cc7[_0x16578d(0x263)]],_0x2d60bb='';else{const _0x57ff5f=_0xccd875[_0x16578d(0x3c3)](_0x319e2c,arguments);return _0x214e6a=null,_0x57ff5f;}}catch(_0xbd5d29){_0x578cc7[_0x2d7c2e(0x707)](_0x578cc7[_0x16578d(0x53a)],_0x578cc7[_0x14aa91(0x53a)])?(_0x59c148=JSON[_0x16578d(0x41d)](_0x38e442)[_0x578cc7[_0x2d7c2e(0x263)]],_0x2d60bb=''):_0xfb8d62[_0x2d7c2e(0x759)](_0x578cc7[_0x16578d(0x3c6)],_0x4c9e69);}else VyQhJH[_0x522abf(0x21b)](_0x4be955);}catch(_0x57086a){_0x578cc7[_0x14aa91(0x707)](_0x578cc7[_0x2d7c2e(0x304)],_0x578cc7[_0x16578d(0x83c)])?_0x27f5f5[_0x1bce3d(0x759)](_0x48d1c9[_0x14aa91(0xc5d)],_0x504cbb):_0x2d60bb+=_0x38e442;}_0x59c148&&_0x578cc7[_0x522abf(0x47e)](_0x59c148[_0x2d7c2e(0xc1f)+'h'],-0xec+-0x1*-0x20b+-0x7*0x29)&&_0x59c148[0x390+-0x259e+0x220e][_0x16578d(0x830)][_0x14aa91(0x67d)+'nt']&&(_0x578cc7[_0x522abf(0x3de)](_0x578cc7[_0x522abf(0x7cb)],_0x578cc7[_0x14aa91(0x5fc)])?chatTemp+=_0x59c148[0x1*-0x1112+0x3c8+0xd4a][_0x14aa91(0x830)][_0x522abf(0x67d)+'nt']:_0xd7810+=_0x36b777[_0x1bce3d(0x67d)+'nt'][_0x14aa91(0xc1f)+'h']),chatTemp=chatTemp[_0x16578d(0x25e)+_0x14aa91(0x739)]('\x0a\x0a','\x0a')[_0x1bce3d(0x25e)+_0x2d7c2e(0x739)]('\x0a\x0a','\x0a'),document[_0x14aa91(0xb8a)+_0x1bce3d(0x892)+_0x522abf(0x215)](_0x578cc7[_0x1bce3d(0x2dc)])[_0x1bce3d(0x394)+_0x2d7c2e(0x795)]='',_0x578cc7[_0x2d7c2e(0xaa1)](markdownToHtml,_0x578cc7[_0x522abf(0x3b8)](beautify,chatTemp),document[_0x16578d(0xb8a)+_0x16578d(0x892)+_0x522abf(0x215)](_0x578cc7[_0x2d7c2e(0x2dc)])),document[_0x16578d(0x7a0)+_0x16578d(0x5cd)+_0x16578d(0xaef)](_0x578cc7[_0x16578d(0x70a)])[_0x14aa91(0x394)+_0x2d7c2e(0x795)]=_0x578cc7[_0x16578d(0x94f)](_0x578cc7[_0x16578d(0x7b7)](_0x578cc7[_0x14aa91(0x94f)](prev_chat,_0x578cc7[_0x522abf(0xc2b)]),document[_0x1bce3d(0xb8a)+_0x522abf(0x892)+_0x2d7c2e(0x215)](_0x578cc7[_0x16578d(0x2dc)])[_0x1bce3d(0x394)+_0x2d7c2e(0x795)]),_0x578cc7[_0x1bce3d(0xa98)]);}else _0x1e16ca+=_0x373e82[-0x1418+0x223b+-0x7*0x205][_0x14aa91(0x830)][_0x2d7c2e(0x67d)+'nt'];}),_0x5c42dd[_0x4bfecd(0x5e1)]()[_0x44abc4(0x249)](_0x3ee4ac);}else _0x161ac7+=_0x84d8da;});}else return _0x125eae[_0x1abffb(0x46e)](new _0x3d36a0(_0xc3dd6a));})[_0x56bda6(0x9de)](_0xff493a=>{const _0x34ca79=_0x3d28fc,_0x36ece1=_0x36257d,_0x55bc93=_0x2d4f54,_0x4b2696=_0x56bda6,_0x39c730=_0x36257d;if(_0x9b9f66[_0x34ca79(0x1cd)](_0x9b9f66[_0x36ece1(0xc59)],_0x9b9f66[_0x34ca79(0xc59)])){var _0x695735=new _0x2ecfe8(_0x5aa1d1[_0x55bc93(0xc1f)+'h']),_0x1d0f71=new _0x31fbaf(_0x695735);for(var _0x444d6f=0x1f7*0x7+0x11e6+0x1*-0x1fa7,_0x6798d3=_0x281481[_0x55bc93(0xc1f)+'h'];_0x1ad81b[_0x34ca79(0x518)](_0x444d6f,_0x6798d3);_0x444d6f++){_0x1d0f71[_0x444d6f]=_0x19812e[_0x39c730(0x405)+_0x34ca79(0x2c1)](_0x444d6f);}return _0x695735;}else console[_0x39c730(0x759)](_0x9b9f66[_0x34ca79(0x8e5)],_0xff493a);});}});}function getContentLength(_0x1c3dc9){const _0x1a1cdb=_0x485cac,_0x2250e3=_0x38612e,_0x22eed1=_0x414777,_0xd6703a=_0x2a40d6,_0x4c94dc=_0x2dcc0e,_0x1d3a9e={'tlAqG':function(_0x474869,_0x55a749){return _0x474869(_0x55a749);},'depKV':function(_0x1db063,_0xa007cb){return _0x1db063+_0xa007cb;},'tqWQX':_0x1a1cdb(0x6de)+_0x1a1cdb(0x931)+_0x22eed1(0x7cd)+_0x2250e3(0x8d9),'UtISt':_0x22eed1(0x986)+_0x22eed1(0x608)+_0x22eed1(0x975)+_0x2250e3(0xbb0)+_0xd6703a(0x9c5)+_0x2250e3(0xbf4)+'\x20)','hYoBa':function(_0x5987e5,_0x26d73e){return _0x5987e5!==_0x26d73e;},'cEODH':_0x4c94dc(0x6f7),'ZhFFN':_0x2250e3(0x1cb)};let _0x49300d=-0x2570+-0x148c+0x39fc;for(let _0x1a3f48 of _0x1c3dc9){_0x1d3a9e[_0x22eed1(0x267)](_0x1d3a9e[_0x1a1cdb(0x1dd)],_0x1d3a9e[_0x1a1cdb(0x496)])?_0x49300d+=_0x1a3f48[_0x4c94dc(0x67d)+'nt'][_0xd6703a(0xc1f)+'h']:_0x302145=vqoApl[_0x1a1cdb(0x7e7)](_0x63bbaf,vqoApl[_0x4c94dc(0x426)](vqoApl[_0x4c94dc(0x426)](vqoApl[_0x2250e3(0x55a)],vqoApl[_0x22eed1(0x901)]),');'))();}return _0x49300d;}function trimArray(_0x304fcc,_0x61364b){const _0x5d7945=_0x2dcc0e,_0x299440=_0x485cac,_0x2d2cf8=_0x414777,_0x18b80d=_0x414777,_0x21a50b=_0x2a40d6,_0x59e53b={'EsMEJ':function(_0x5adfbc,_0x129909){return _0x5adfbc>_0x129909;},'qkHwn':function(_0x1d136e,_0x1d1757){return _0x1d136e(_0x1d1757);},'bQBuc':function(_0x209107,_0x8919f8){return _0x209107!==_0x8919f8;},'whgRM':_0x5d7945(0x1f8),'aiAve':_0x5d7945(0xafe)};while(_0x59e53b[_0x2d2cf8(0x97d)](_0x59e53b[_0x5d7945(0xbc8)](getContentLength,_0x304fcc),_0x61364b)){_0x59e53b[_0x2d2cf8(0x3b6)](_0x59e53b[_0x18b80d(0xc5a)],_0x59e53b[_0x2d2cf8(0x72b)])?_0x304fcc[_0x21a50b(0x438)]():_0x45ebf1+=_0x14a924[-0x174d+0x7aa+0xfa3*0x1][_0x299440(0x830)][_0x21a50b(0x67d)+'nt'];}}function send_modalchat(_0xdc64de){const _0x47523a=_0x2a40d6,_0x21b96d=_0x414777,_0x2251b2=_0x2dcc0e,_0x1cccc9=_0x2dcc0e,_0x3bb080=_0x2a40d6,_0xf3fa62={'mlzqR':function(_0x453b53,_0x4e824d){return _0x453b53===_0x4e824d;},'feKZP':_0x47523a(0x229),'Wmnbd':_0x21b96d(0x435),'oJqFn':function(_0xa5f691,_0x388f42){return _0xa5f691>_0x388f42;},'Petnm':function(_0x58425b,_0x23ecf2,_0x4331e6){return _0x58425b(_0x23ecf2,_0x4331e6);},'RfUoK':function(_0x2f981f,_0x5a4f5a){return _0x2f981f===_0x5a4f5a;},'LYxXH':_0x21b96d(0xc32),'Rgrtz':_0x1cccc9(0x8c6),'JmDUq':function(_0x597690,_0x38d2ab){return _0x597690!==_0x38d2ab;},'WSSix':_0x47523a(0xbd8),'Skssu':_0x1cccc9(0x1e3),'fXILU':function(_0x43c818,_0xbc6cdf){return _0x43c818(_0xbc6cdf);},'GkUyT':_0x3bb080(0x30e)+'ss','iWVfK':_0x3bb080(0x509)+'d','GSJWJ':_0x3bb080(0x80b)+'es','rOGpK':function(_0x26be63,_0x988eb1){return _0x26be63+_0x988eb1;},'CiRBw':_0x47523a(0x4c6)+_0x47523a(0x9c4)+'l','hoVqM':function(_0x1abe32,_0x17b99f){return _0x1abe32(_0x17b99f);},'gWyGy':_0x21b96d(0x4c6)+_0x2251b2(0x5ab),'UGQgo':_0x1cccc9(0x5ab),'YGyDm':function(_0x512f38,_0x27b4e8){return _0x512f38===_0x27b4e8;},'vCutQ':_0x47523a(0x3b1),'QFODO':_0x3bb080(0x5ce),'cjubB':_0x21b96d(0x7b0),'nxEsJ':_0x2251b2(0xa6c)+_0x2251b2(0x37f),'ormir':_0x21b96d(0xbb4)+_0x2251b2(0x8f6)+'t','kIqMm':_0x47523a(0x990)+_0x47523a(0x72d),'dEXcy':_0x21b96d(0xb82),'sMUIT':_0x3bb080(0x380),'pTLCn':function(_0x9ba7d4,_0x4a14b7){return _0x9ba7d4<_0x4a14b7;},'cCxeU':function(_0x3ea7a6,_0x4d84e9){return _0x3ea7a6+_0x4d84e9;},'mHAbp':function(_0xfd07af,_0x628818){return _0xfd07af+_0x628818;},'wzQxn':function(_0x13d0f4,_0x2c9764){return _0x13d0f4===_0x2c9764;},'RPBdB':_0x47523a(0x962),'FQKJo':_0x47523a(0x6c2),'Zknnc':function(_0x13e692,_0x3c6d13){return _0x13e692==_0x3c6d13;},'bnsMU':_0x21b96d(0x826)+']','DSVSP':_0x47523a(0x2ee),'dyLvJ':_0x1cccc9(0x28b),'euwRT':_0x1cccc9(0x9c2)+_0x3bb080(0xb7f),'zyoFN':_0x3bb080(0x369),'ZVnVJ':_0x3bb080(0x71f),'bEtqb':_0x47523a(0x56e),'YDFQI':function(_0x19573a,_0x2b70c5){return _0x19573a===_0x2b70c5;},'BRbAb':_0x47523a(0x6e6),'gWffl':_0x2251b2(0xada),'UCotF':_0x3bb080(0x7ef),'kpGky':function(_0x59f795,_0x16ddec){return _0x59f795>_0x16ddec;},'WRPjS':function(_0x58fdc6,_0x19faf7){return _0x58fdc6!==_0x19faf7;},'VmlSJ':_0x47523a(0x28d),'wCoiI':_0x21b96d(0x291)+'pt','Lvjpz':function(_0x1c1ce2,_0x34899d,_0x9d2fa9){return _0x1c1ce2(_0x34899d,_0x9d2fa9);},'MPXmr':_0x1cccc9(0x764)+_0x47523a(0x6d9),'pCjmj':_0x3bb080(0x699)+_0x3bb080(0x6d2)+_0x21b96d(0x85f)+_0x1cccc9(0x538)+_0x3bb080(0x3a3),'oMkbQ':_0x3bb080(0x562)+'>','WHydY':function(_0x533ab5,_0x194364){return _0x533ab5!==_0x194364;},'rIleg':_0x3bb080(0xbc6),'CHyrz':_0x3bb080(0x798),'HTpNg':function(_0xf59a7a,_0x547ba9){return _0xf59a7a!==_0x547ba9;},'eBTVZ':_0x47523a(0x911),'lujIw':_0x47523a(0x3db),'iVMtv':_0x21b96d(0xb79)+':','JKUVn':_0x47523a(0x3fc),'gJfVo':_0x2251b2(0x1f4),'dOueR':function(_0x1bf953,_0xd30c0f){return _0x1bf953==_0xd30c0f;},'xNroU':function(_0x3348f1,_0x235c19){return _0x3348f1!=_0x235c19;},'FoYhI':_0x47523a(0xbb4),'daETA':_0x1cccc9(0x2df)+_0x1cccc9(0x881),'VvpHL':_0x47523a(0xa43)+'果\x0a','UuNUE':function(_0x735f7c,_0x3f9694){return _0x735f7c+_0x3f9694;},'BNWKF':function(_0x203e6f,_0x444577){return _0x203e6f+_0x444577;},'zHtMq':_0x2251b2(0x756),'YRukU':_0x47523a(0xb23)+'\x0a','TiXmy':function(_0x5d6d87,_0x4a92ad){return _0x5d6d87===_0x4a92ad;},'gkHSg':_0x2251b2(0x4c3),'LUJUB':_0x21b96d(0x5e6),'MArlX':function(_0x1cab69,_0x52a7e5){return _0x1cab69+_0x52a7e5;},'NdWNv':function(_0x70005e,_0x32a585){return _0x70005e+_0x32a585;},'fnRnf':function(_0x40d43e,_0x14fbbf){return _0x40d43e+_0x14fbbf;},'XMtON':_0x2251b2(0x630)+'\x0a','RKPeb':function(_0x4c4fe4,_0x5e2bb1){return _0x4c4fe4<_0x5e2bb1;},'PyWGd':function(_0x4d7b8c,_0x50737d){return _0x4d7b8c!==_0x50737d;},'dYQHQ':_0x1cccc9(0x8d7),'iqwHs':function(_0x29b56c,_0x46ec10){return _0x29b56c==_0x46ec10;},'lbmHS':function(_0x1cb87b,_0x454723){return _0x1cb87b!==_0x454723;},'kRQxX':_0x47523a(0x41a),'ZvbgN':_0x1cccc9(0xaee),'KymKr':function(_0x2eb8b2,_0xad5b23){return _0x2eb8b2<_0xad5b23;},'VRlbL':function(_0x399e42,_0x5379c1){return _0x399e42+_0x5379c1;},'Xfand':function(_0x421da1,_0x1cc6a7){return _0x421da1+_0x1cc6a7;},'rFqzD':function(_0x5bb4bc,_0x529fab){return _0x5bb4bc+_0x529fab;},'KQzvu':function(_0x4e41cc,_0x1c7829){return _0x4e41cc+_0x1c7829;},'dpuoG':_0x1cccc9(0xba3)+'m','lTZQV':_0x47523a(0x58a)+_0x1cccc9(0x631)+_0x3bb080(0xbe5)+_0x2251b2(0x3bb)+_0x2251b2(0x96a)+_0x3bb080(0x6b9)+'何人','ABYIs':_0x1cccc9(0x81d),'dlnyv':_0x1cccc9(0x2a2)+_0x1cccc9(0x44c)+_0x3bb080(0x5bf),'DknVX':_0x2251b2(0x8e6),'KGDvW':function(_0x4ac24d,_0x5d0dd0){return _0x4ac24d(_0x5d0dd0);},'egdmb':function(_0x2ba309,_0x5d8cb9){return _0x2ba309+_0x5d8cb9;},'GYWYN':_0x3bb080(0x699)+_0x3bb080(0x6d2)+_0x21b96d(0x85f)+_0x47523a(0x338)+_0x47523a(0x726)+'\x22>','JXuSF':_0x1cccc9(0x4c6)+_0x47523a(0x95d)+_0x2251b2(0x206)+_0x2251b2(0x5dc)+_0x2251b2(0x618)+_0x21b96d(0xc11)};let _0x39ed10=document[_0x2251b2(0xb8a)+_0x1cccc9(0x892)+_0x47523a(0x215)](_0xf3fa62[_0x21b96d(0x563)])[_0x2251b2(0x1c2)];_0xdc64de&&(_0xf3fa62[_0x21b96d(0xa3b)](_0xf3fa62[_0x21b96d(0xa7e)],_0xf3fa62[_0x21b96d(0xb24)])?_0x3586d7+=_0x1e742f:(_0x39ed10=_0xdc64de[_0x21b96d(0x9c9)+_0x3bb080(0xaed)+'t'],_0xdc64de[_0x2251b2(0x475)+'e']()));if(_0xf3fa62[_0x21b96d(0x481)](_0x39ed10[_0x21b96d(0xc1f)+'h'],-0x1e31*-0x1+-0x1*0x105f+-0xdd2)||_0xf3fa62[_0x1cccc9(0x470)](_0x39ed10[_0x2251b2(0xc1f)+'h'],-0x939+0x392*-0x8+0x1*0x2655))return;_0xf3fa62[_0x2251b2(0xbe9)](trimArray,word_last,0x53c*-0x2+0x1757+-0xaeb);if(_0xf3fa62[_0x1cccc9(0x890)](lock_chat,-0x573+-0x1cef+0x1e9*0x12))return;lock_chat=-0x13*-0x1df+-0xb51+-0x183b;const _0x1d1e14=_0xf3fa62[_0x47523a(0x6e4)](_0xf3fa62[_0x1cccc9(0x2c2)](_0xf3fa62[_0x3bb080(0x2c2)](document[_0x21b96d(0xb8a)+_0x47523a(0x892)+_0x3bb080(0x215)](_0xf3fa62[_0x1cccc9(0x6c3)])[_0x21b96d(0x394)+_0x1cccc9(0x795)][_0x1cccc9(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x47523a(0x25e)+'ce'](/<hr.*/gs,'')[_0x21b96d(0x25e)+'ce'](/<[^>]+>/g,'')[_0x47523a(0x25e)+'ce'](/\n\n/g,'\x0a'),_0xf3fa62[_0x21b96d(0x200)]),search_queryquery),_0xf3fa62[_0x3bb080(0x996)]);let _0x502277=_0xf3fa62[_0x1cccc9(0x2c2)](_0xf3fa62[_0x21b96d(0x4a8)](_0xf3fa62[_0x47523a(0x647)](_0xf3fa62[_0x3bb080(0xa68)],article[_0x2251b2(0xa32)]),'\x0a'),_0xf3fa62[_0x3bb080(0x501)]);for(el in modalele){if(_0xf3fa62[_0x1cccc9(0x33a)](_0xf3fa62[_0x1cccc9(0x878)],_0xf3fa62[_0x1cccc9(0x208)]))_0x2ee324[_0x276f3a]=_0x16a748[_0x21b96d(0x405)+_0x47523a(0x2c1)](_0x471c69);else{if(_0xf3fa62[_0x2251b2(0x478)](_0xf3fa62[_0x3bb080(0x9a8)](_0xf3fa62[_0x21b96d(0x2c2)](_0x502277,modalele[el]),'\x0a')[_0x1cccc9(0xc1f)+'h'],-0x65e+-0x1*-0xb08+-0x126*0x1))_0x502277=_0xf3fa62[_0x1cccc9(0x2ba)](_0xf3fa62[_0x3bb080(0x2ba)](_0x502277,modalele[el]),'\x0a');}}_0x502277=_0xf3fa62[_0x21b96d(0x73d)](_0x502277,_0xf3fa62[_0x2251b2(0x48b)]),fulltext[_0x47523a(0x303)]((_0x1d2f1d,_0x4773f4)=>{const _0xee3a7d=_0x21b96d,_0x5f138e=_0x2251b2,_0x408617=_0x21b96d,_0x40244f=_0x1cccc9,_0x34988=_0x47523a;if(_0xf3fa62[_0xee3a7d(0x5b1)](_0xf3fa62[_0x5f138e(0x8a9)],_0xf3fa62[_0x5f138e(0x522)]))_0x3175c9=_0x12e096[_0x408617(0x9c9)+_0x5f138e(0xaed)+'t'],_0x9e8cc3[_0x408617(0x475)+'e']();else{if(_0xf3fa62[_0x5f138e(0x470)](_0xf3fa62[_0x34988(0xbe9)](cosineSimilarity,_0x39ed10,_0x1d2f1d),_0xf3fa62[_0x40244f(0xbe9)](cosineSimilarity,_0x39ed10,_0x4773f4))){if(_0xf3fa62[_0x408617(0x89d)](_0xf3fa62[_0x34988(0x4dd)],_0xf3fa62[_0x5f138e(0x861)]))_0x28677e+=_0x48a7e0;else return-(0x1*0x16ed+0xe31+-0x3*0xc5f);}else{if(_0xf3fa62[_0xee3a7d(0x2c6)](_0xf3fa62[_0x34988(0x8a1)],_0xf3fa62[_0x34988(0xba7)]))return-0xe4*-0x1+-0x910+-0xa1*-0xd;else{const _0x56c5df=_0x31df2e[_0xee3a7d(0x3c3)](_0x55139d,arguments);return _0x240a13=null,_0x56c5df;}}}});for(let _0x5698d9=0xeb6+-0x40f*0x4+0x186;_0xf3fa62[_0x1cccc9(0x8c4)](_0x5698d9,Math[_0x21b96d(0x870)](-0x125d*-0x1+0x223b+-0x1187*0x3,fulltext[_0x2251b2(0xc1f)+'h']));++_0x5698d9){if(_0xf3fa62[_0x1cccc9(0xb37)](_0xf3fa62[_0x21b96d(0x4a5)],_0xf3fa62[_0x2251b2(0x4a5)])){const _0xa623b2={'qhrhv':function(_0x3ecbbb,_0x2f6854){const _0xcdd54f=_0x3bb080;return _0xf3fa62[_0xcdd54f(0x54f)](_0x3ecbbb,_0x2f6854);},'Qkotu':_0xf3fa62[_0x1cccc9(0x396)]};_0x36d9c3[_0x21b96d(0x584)+_0x3bb080(0xa17)+'t'](_0xf3fa62[_0x1cccc9(0xa4d)],function(){const _0x263fd8=_0x3bb080,_0x1fdc60=_0x21b96d;_0xa623b2[_0x263fd8(0x4de)](_0x15a357,_0xa623b2[_0x263fd8(0x82e)]);});}else{if(_0xf3fa62[_0x3bb080(0x6fb)](keytextres[_0x21b96d(0x261)+'Of'](fulltext[_0x5698d9]),-(0x5*-0xd0+0x1b64*0x1+-0x1753)))keytextres[_0x1cccc9(0xb10)+'ft'](fulltext[_0x5698d9]);}}keySentencesCount=-0x4*-0x96+-0x17ed+0x1595;for(st in keytextres){if(_0xf3fa62[_0x1cccc9(0x7fd)](_0xf3fa62[_0x21b96d(0x86f)],_0xf3fa62[_0x3bb080(0xc49)])){if(_0xf3fa62[_0x1cccc9(0xb85)](_0xf3fa62[_0x21b96d(0xb12)](_0xf3fa62[_0x3bb080(0x73d)](_0x502277,keytextres[st]),'\x0a')[_0x21b96d(0xc1f)+'h'],-0x2*-0xa82+0xf67+-0x1*0x1e8f))_0x502277=_0xf3fa62[_0x3bb080(0x439)](_0xf3fa62[_0x3bb080(0x88f)](_0x502277,keytextres[st]),'\x0a');keySentencesCount=_0xf3fa62[_0x21b96d(0xc13)](keySentencesCount,0x2*0x5e+0x1687+-0x1742);}else _0x3e5aa8=_0x1c0ce8[_0x1cccc9(0x41d)](_0x4c0843)[_0xf3fa62[_0x47523a(0x84f)]],_0x203f92='';}const _0x3bc995={};_0x3bc995[_0x1cccc9(0xaca)]=_0xf3fa62[_0x1cccc9(0xb69)],_0x3bc995[_0x47523a(0x67d)+'nt']=_0xf3fa62[_0x2251b2(0xabe)];const _0x58b2ad={};_0x58b2ad[_0x1cccc9(0xaca)]=_0xf3fa62[_0x2251b2(0x6a0)],_0x58b2ad[_0x47523a(0x67d)+'nt']=_0x502277,mes=[_0x3bc995,_0x58b2ad],mes=mes[_0x21b96d(0x5ee)+'t'](word_last),mes=mes[_0x1cccc9(0x5ee)+'t']([{'role':_0xf3fa62[_0x47523a(0xb7c)],'content':_0xf3fa62[_0x3bb080(0xc13)](_0xf3fa62[_0x1cccc9(0x647)](_0xf3fa62[_0x3bb080(0x7cc)],_0x39ed10),_0xf3fa62[_0x2251b2(0x9e5)])}]);const _0x6b773a={'method':_0xf3fa62[_0x47523a(0x52b)],'headers':headers,'body':_0xf3fa62[_0x1cccc9(0x71c)](b64EncodeUnicode,JSON[_0x3bb080(0x898)+_0x1cccc9(0x247)]({'messages':mes[_0x3bb080(0x5ee)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x39ed10=_0x39ed10[_0x3bb080(0x25e)+_0x1cccc9(0x739)]('\x0a\x0a','\x0a')[_0x47523a(0x25e)+_0x2251b2(0x739)]('\x0a\x0a','\x0a'),document[_0x2251b2(0xb8a)+_0x47523a(0x892)+_0x47523a(0x215)](_0xf3fa62[_0x21b96d(0x4f2)])[_0x1cccc9(0x394)+_0x2251b2(0x795)]='',_0xf3fa62[_0x1cccc9(0x9ba)](markdownToHtml,_0xf3fa62[_0x47523a(0x63f)](beautify,_0x39ed10),document[_0x21b96d(0xb8a)+_0x3bb080(0x892)+_0x2251b2(0x215)](_0xf3fa62[_0x2251b2(0x4f2)])),chatTemp='',text_offset=-(-0x2419*0x1+-0x1*-0x1961+-0x1*-0xab9),prev_chat=document[_0x47523a(0x7a0)+_0x1cccc9(0x5cd)+_0x1cccc9(0xaef)](_0xf3fa62[_0x3bb080(0xb63)])[_0x3bb080(0x394)+_0x1cccc9(0x795)],prev_chat=_0xf3fa62[_0x2251b2(0x856)](_0xf3fa62[_0x21b96d(0x88f)](_0xf3fa62[_0x3bb080(0x856)](prev_chat,_0xf3fa62[_0x3bb080(0x9e3)]),document[_0x21b96d(0xb8a)+_0x2251b2(0x892)+_0x21b96d(0x215)](_0xf3fa62[_0x2251b2(0x4f2)])[_0x2251b2(0x394)+_0x1cccc9(0x795)]),_0xf3fa62[_0x47523a(0x850)]),_0xf3fa62[_0x2251b2(0x9ba)](fetch,_0xf3fa62[_0x2251b2(0x8dc)],_0x6b773a)[_0x47523a(0x249)](_0x4e5621=>{const _0x4cb1b7=_0x2251b2,_0x45228c=_0x1cccc9,_0x44f002=_0x47523a,_0x963dd1=_0x2251b2,_0x570b15=_0x47523a,_0x435073={'xSURR':_0xf3fa62[_0x4cb1b7(0x6ff)],'oGpkx':_0xf3fa62[_0x45228c(0x563)],'leUqg':_0xf3fa62[_0x4cb1b7(0x6a0)],'SNOLM':_0xf3fa62[_0x45228c(0xb7c)],'GJapr':_0xf3fa62[_0x45228c(0x713)],'AHCfj':function(_0x435b52,_0xb73278){const _0x1c6435=_0x44f002;return _0xf3fa62[_0x1c6435(0x478)](_0x435b52,_0xb73278);},'RyjXN':function(_0x50c889,_0x2f69f2){const _0x2ccfed=_0x44f002;return _0xf3fa62[_0x2ccfed(0x6e4)](_0x50c889,_0x2f69f2);},'vmTkv':function(_0x4bda18,_0x38b3b6){const _0x1d8a05=_0x570b15;return _0xf3fa62[_0x1d8a05(0x4fd)](_0x4bda18,_0x38b3b6);},'IfOGY':function(_0x1736f8,_0x495720){const _0x1dc848=_0x45228c;return _0xf3fa62[_0x1dc848(0x994)](_0x1736f8,_0x495720);},'fgzNX':_0xf3fa62[_0x963dd1(0x49e)],'BJkkT':_0xf3fa62[_0x44f002(0x7bf)],'RyfTR':function(_0x3e1f5a,_0x43cbd0){const _0x12075e=_0x4cb1b7;return _0xf3fa62[_0x12075e(0x470)](_0x3e1f5a,_0x43cbd0);},'wCYmu':function(_0x2a904e,_0x503406){const _0x53d4c1=_0x570b15;return _0xf3fa62[_0x53d4c1(0x333)](_0x2a904e,_0x503406);},'mbqMY':_0xf3fa62[_0x570b15(0x824)],'TUGgZ':function(_0x3210a0,_0x19b4cb){const _0x319b4e=_0x45228c;return _0xf3fa62[_0x319b4e(0x2c6)](_0x3210a0,_0x19b4cb);},'mcXQj':_0xf3fa62[_0x570b15(0x617)],'yojKb':_0xf3fa62[_0x44f002(0x29d)],'NUOZH':_0xf3fa62[_0x44f002(0x9e7)],'ydLxW':_0xf3fa62[_0x963dd1(0x7e1)],'DyPaL':_0xf3fa62[_0x570b15(0x9bb)],'HYgyU':_0xf3fa62[_0x570b15(0x50d)],'HmTbF':_0xf3fa62[_0x963dd1(0x84f)],'gaAph':function(_0xfb8b8b,_0x6605cb){const _0x11902b=_0x4cb1b7;return _0xf3fa62[_0x11902b(0x5b3)](_0xfb8b8b,_0x6605cb);},'PJlNz':_0xf3fa62[_0x45228c(0x72e)],'jqBKP':function(_0x22fcfe,_0x9992b2){const _0x13198f=_0x45228c;return _0xf3fa62[_0x13198f(0x994)](_0x22fcfe,_0x9992b2);},'iIkuo':_0xf3fa62[_0x45228c(0x845)],'oLLFt':_0xf3fa62[_0x44f002(0x5c3)],'VRuGK':function(_0x4227fe,_0x16f13d){const _0x4f2b2f=_0x963dd1;return _0xf3fa62[_0x4f2b2f(0x45a)](_0x4227fe,_0x16f13d);},'otWzv':function(_0xcc9cf1,_0x3c5332){const _0x1c765b=_0x44f002;return _0xf3fa62[_0x1c765b(0xb73)](_0xcc9cf1,_0x3c5332);},'UHJKg':_0xf3fa62[_0x570b15(0xa52)],'Yrazp':_0xf3fa62[_0x45228c(0x4f2)],'mvQyg':function(_0x2ff2bd,_0x413ec5,_0x22740b){const _0x491ee4=_0x45228c;return _0xf3fa62[_0x491ee4(0x9ba)](_0x2ff2bd,_0x413ec5,_0x22740b);},'vnRZh':function(_0x111d42,_0x4b96d1){const _0x4ca0c1=_0x4cb1b7;return _0xf3fa62[_0x4ca0c1(0x54f)](_0x111d42,_0x4b96d1);},'RYRIu':_0xf3fa62[_0x570b15(0xb63)],'mVWbe':function(_0x43524a,_0x165aea){const _0x23c164=_0x44f002;return _0xf3fa62[_0x23c164(0x2c2)](_0x43524a,_0x165aea);},'XqOkn':_0xf3fa62[_0x570b15(0xaeb)],'KwmvA':_0xf3fa62[_0x44f002(0x850)]};if(_0xf3fa62[_0x44f002(0x569)](_0xf3fa62[_0x45228c(0xa29)],_0xf3fa62[_0x45228c(0x89e)])){const _0x490b1b=_0x4e5621[_0x4cb1b7(0x99b)][_0x570b15(0x4c5)+_0x45228c(0xa83)]();let _0x3376d0='',_0x257349='';_0x490b1b[_0x963dd1(0x5e1)]()[_0x45228c(0x249)](function _0xe2bee9({done:_0x151ff4,value:_0x88ab42}){const _0x183c51=_0x45228c,_0x2f54a0=_0x4cb1b7,_0x1ae949=_0x45228c,_0x4b8541=_0x45228c,_0xcc5510=_0x45228c,_0x1a18c4={'RJFGT':function(_0x530e61,_0x21b013){const _0xd47594=_0x8015;return _0xf3fa62[_0xd47594(0x2c2)](_0x530e61,_0x21b013);},'lDzqd':_0xf3fa62[_0x183c51(0x84f)],'ocMCm':_0xf3fa62[_0x183c51(0x743)],'GMRAS':function(_0x32a1ec,_0x4af5d6){const _0x4f5d91=_0x183c51;return _0xf3fa62[_0x4f5d91(0x71c)](_0x32a1ec,_0x4af5d6);},'bQvGq':function(_0x395330,_0x718e0d){const _0x32bea7=_0x2f54a0;return _0xf3fa62[_0x32bea7(0x2c2)](_0x395330,_0x718e0d);},'pikaL':_0xf3fa62[_0x183c51(0x4ec)],'SOOtq':function(_0x534cb9,_0x5e6b7e){const _0x3eafba=_0x183c51;return _0xf3fa62[_0x3eafba(0x71c)](_0x534cb9,_0x5e6b7e);},'ZYTlg':_0xf3fa62[_0x183c51(0x3c4)],'sWKMb':function(_0x37ea69,_0x1ee028){const _0x15e52f=_0x2f54a0;return _0xf3fa62[_0x15e52f(0x71c)](_0x37ea69,_0x1ee028);}};if(_0xf3fa62[_0xcc5510(0xa3b)](_0xf3fa62[_0x4b8541(0x8c7)],_0xf3fa62[_0x2f54a0(0xad7)])){const _0x215901=_0x435073[_0xcc5510(0x4bd)][_0x4b8541(0xb89)]('|');let _0x463cb5=-0x1*0x1741+0x3e4*0x4+0x7b1*0x1;while(!![]){switch(_0x215901[_0x463cb5++]){case'0':_0x361c5a[_0x183c51(0xb8a)+_0x2f54a0(0x892)+_0x1ae949(0x215)](_0x435073[_0x4b8541(0x40d)])[_0x4b8541(0x1c2)]='';continue;case'1':const _0x5bd5f0={};_0x5bd5f0[_0xcc5510(0xaca)]=_0x435073[_0x4b8541(0x33d)],_0x5bd5f0[_0xcc5510(0x67d)+'nt']=_0x35fa53,_0x330699[_0xcc5510(0x529)](_0x5bd5f0);continue;case'2':_0x14c214=-0x1bdb+-0x18c5+0x34a*0x10;continue;case'3':const _0x4856cb={};_0x4856cb[_0x1ae949(0xaca)]=_0x435073[_0x2f54a0(0x926)],_0x4856cb[_0x4b8541(0x67d)+'nt']=_0x5d7607,_0x2dfaf5[_0xcc5510(0x529)](_0x4856cb);continue;case'4':return;}break;}}else{if(_0x151ff4)return;const _0x356017=new TextDecoder(_0xf3fa62[_0x1ae949(0x896)])[_0x1ae949(0x85a)+'e'](_0x88ab42);return _0x356017[_0x1ae949(0xa4b)]()[_0x4b8541(0xb89)]('\x0a')[_0xcc5510(0x2d5)+'ch'](function(_0x3472fc){const _0x3cbf05=_0x2f54a0,_0x476e1d=_0x4b8541,_0x4b2008=_0xcc5510,_0x1d4a8d=_0x2f54a0,_0x32bf6d=_0xcc5510,_0x4612dc={'WivgJ':_0x435073[_0x3cbf05(0x22d)],'jQBNd':function(_0x4295c0,_0x1218b7){const _0x59c9c6=_0x3cbf05;return _0x435073[_0x59c9c6(0x698)](_0x4295c0,_0x1218b7);},'rQGXX':function(_0x2de7ee,_0x3ac651){const _0x4dbad9=_0x3cbf05;return _0x435073[_0x4dbad9(0x275)](_0x2de7ee,_0x3ac651);},'CBfhj':function(_0xeaefb6,_0x1cb7e7){const _0x574f1d=_0x3cbf05;return _0x435073[_0x574f1d(0x275)](_0xeaefb6,_0x1cb7e7);},'vOKDI':function(_0x2caf43,_0x2891e3){const _0x3f546e=_0x3cbf05;return _0x435073[_0x3f546e(0xb39)](_0x2caf43,_0x2891e3);}};if(_0x435073[_0x476e1d(0xa10)](_0x435073[_0x476e1d(0x42f)],_0x435073[_0x4b2008(0xa9e)]))return _0x3d3ae7;else{_0x3376d0='';if(_0x435073[_0x3cbf05(0xa9b)](_0x3472fc[_0x4b2008(0xc1f)+'h'],-0x97a+0x2348+-0x19c8))_0x3376d0=_0x3472fc[_0x32bf6d(0x21c)](0x173e+0x1d5b+-0x3493);if(_0x435073[_0x476e1d(0x932)](_0x3376d0,_0x435073[_0x32bf6d(0x46f)])){if(_0x435073[_0x4b2008(0xa22)](_0x435073[_0x32bf6d(0x829)],_0x435073[_0x476e1d(0xc2e)])){const _0x28c0b8=_0x435073[_0x32bf6d(0x9d0)][_0x3cbf05(0xb89)]('|');let _0x1c5330=0xe5+0xe47+-0x796*0x2;while(!![]){switch(_0x28c0b8[_0x1c5330++]){case'0':return;case'1':const _0x3961ca={};_0x3961ca[_0x4b2008(0xaca)]=_0x435073[_0x32bf6d(0x926)],_0x3961ca[_0x476e1d(0x67d)+'nt']=_0x39ed10,word_last[_0x4b2008(0x529)](_0x3961ca);continue;case'2':document[_0x3cbf05(0xb8a)+_0x4b2008(0x892)+_0x476e1d(0x215)](_0x435073[_0x3cbf05(0x40d)])[_0x3cbf05(0x1c2)]='';continue;case'3':const _0x692df3={};_0x692df3[_0x476e1d(0xaca)]=_0x435073[_0x32bf6d(0x33d)],_0x692df3[_0x1d4a8d(0x67d)+'nt']=chatTemp,word_last[_0x476e1d(0x529)](_0x692df3);continue;case'4':lock_chat=-0x351*0x2+-0x1ead+-0x1*-0x254f;continue;}break;}}else try{_0x59c374=_0x485769[_0x1d4a8d(0x41d)](_0x1a18c4[_0x4b2008(0x1fb)](_0x329330,_0x2035ef))[_0x1a18c4[_0x3cbf05(0x5ea)]],_0xbe86fa='';}catch(_0x56c8c0){_0x50646d=_0x5c6b9c[_0x476e1d(0x41d)](_0x1c9bfa)[_0x1a18c4[_0x4b2008(0x5ea)]],_0x247c7f='';}}let _0x381668;try{if(_0x435073[_0x476e1d(0xa22)](_0x435073[_0x1d4a8d(0x88a)],_0x435073[_0x476e1d(0x4b2)]))try{_0x435073[_0x32bf6d(0xa22)](_0x435073[_0x4b2008(0x4a6)],_0x435073[_0x4b2008(0x4a6)])?_0x2a5b2f+='右':(_0x381668=JSON[_0x476e1d(0x41d)](_0x435073[_0x1d4a8d(0xb39)](_0x257349,_0x3376d0))[_0x435073[_0x476e1d(0x96e)]],_0x257349='');}catch(_0x1b4081){_0x435073[_0x3cbf05(0xb3a)](_0x435073[_0x1d4a8d(0x7f8)],_0x435073[_0x476e1d(0x7f8)])?(_0x381668=JSON[_0x476e1d(0x41d)](_0x3376d0)[_0x435073[_0x1d4a8d(0x96e)]],_0x257349=''):(_0x24fd36=_0xbc4139[_0x4b2008(0x25e)+'ce'](_0x1a18c4[_0x4b2008(0x1fb)](_0x1a18c4[_0x4b2008(0xa66)],_0x1a18c4[_0x1d4a8d(0xb87)](_0x4f6241,_0x48afd1)),_0x1f7ff3[_0x3cbf05(0x710)+_0x32bf6d(0x38d)][_0x346ca4]),_0x5e92e8=_0x21ea3d[_0x1d4a8d(0x25e)+'ce'](_0x1a18c4[_0x4b2008(0x546)](_0x1a18c4[_0x476e1d(0x80e)],_0x1a18c4[_0x1d4a8d(0x3e4)](_0x56df6f,_0x17605b)),_0x563fb6[_0x476e1d(0x710)+_0x4b2008(0x38d)][_0x9db9bb]),_0x120cca=_0x2daaaf[_0x3cbf05(0x25e)+'ce'](_0x1a18c4[_0x1d4a8d(0x546)](_0x1a18c4[_0x4b2008(0x4a3)],_0x1a18c4[_0x1d4a8d(0x6c9)](_0x4a0cff,_0x3d205a)),_0x43af22[_0x476e1d(0x710)+_0x32bf6d(0x38d)][_0x49bb73]));}else _0x58f8a5=_0x4612dc[_0x476e1d(0x250)];}catch(_0x36f605){if(_0x435073[_0x476e1d(0x8cf)](_0x435073[_0x476e1d(0x425)],_0x435073[_0x4b2008(0x702)])){if(_0x4612dc[_0x476e1d(0x5d5)](_0x4612dc[_0x3cbf05(0x1bd)](_0x4612dc[_0x4b2008(0x2bc)](_0x22c302,_0x3da63c[_0x236912]),'\x0a')[_0x3cbf05(0xc1f)+'h'],-0x1*-0x2617+-0x2*-0x436+-0x29d3))_0x56248b=_0x4612dc[_0x3cbf05(0xb9b)](_0x4612dc[_0x476e1d(0xb9b)](_0x3ef789,_0x32d03d[_0x567b4e]),'\x0a');_0x55ee28=_0x4612dc[_0x4b2008(0x2bc)](_0x1429c8,0x200e+0x10f2+0x6f*-0x71);}else _0x257349+=_0x3376d0;}_0x381668&&_0x435073[_0x3cbf05(0x2f4)](_0x381668[_0x476e1d(0xc1f)+'h'],0x13c8+-0x241e+0x1056)&&_0x381668[-0x153+-0x2*0xf05+0xd9*0x25][_0x32bf6d(0x830)][_0x476e1d(0x67d)+'nt']&&(_0x435073[_0x4b2008(0x1dc)](_0x435073[_0x476e1d(0x283)],_0x435073[_0x476e1d(0x283)])?_0x3b5e6b+='上':chatTemp+=_0x381668[0x593*0x1+-0x13*0x1+-0x580][_0x4b2008(0x830)][_0x476e1d(0x67d)+'nt']),chatTemp=chatTemp[_0x32bf6d(0x25e)+_0x32bf6d(0x739)]('\x0a\x0a','\x0a')[_0x3cbf05(0x25e)+_0x1d4a8d(0x739)]('\x0a\x0a','\x0a'),document[_0x476e1d(0xb8a)+_0x4b2008(0x892)+_0x32bf6d(0x215)](_0x435073[_0x476e1d(0xbee)])[_0x3cbf05(0x394)+_0x4b2008(0x795)]='',_0x435073[_0x1d4a8d(0x9bc)](markdownToHtml,_0x435073[_0x32bf6d(0x8d5)](beautify,chatTemp),document[_0x1d4a8d(0xb8a)+_0x32bf6d(0x892)+_0x1d4a8d(0x215)](_0x435073[_0x1d4a8d(0xbee)])),document[_0x32bf6d(0x7a0)+_0x3cbf05(0x5cd)+_0x3cbf05(0xaef)](_0x435073[_0x4b2008(0x7ac)])[_0x4b2008(0x394)+_0x32bf6d(0x795)]=_0x435073[_0x3cbf05(0xb39)](_0x435073[_0x1d4a8d(0x275)](_0x435073[_0x1d4a8d(0x98a)](prev_chat,_0x435073[_0x476e1d(0x574)]),document[_0x32bf6d(0xb8a)+_0x4b2008(0x892)+_0x32bf6d(0x215)](_0x435073[_0x4b2008(0xbee)])[_0x476e1d(0x394)+_0x4b2008(0x795)]),_0x435073[_0x32bf6d(0x6fe)]);}}),_0x490b1b[_0x2f54a0(0x5e1)]()[_0x183c51(0x249)](_0xe2bee9);}});}else _0x279f67=_0x475b46[_0x570b15(0x41d)](_0x4da0ca)[_0xf3fa62[_0x963dd1(0x84f)]],_0x5debb4='';})[_0x47523a(0x9de)](_0x35f98c=>{const _0xcbffc=_0x21b96d,_0x5ec436=_0x21b96d,_0x55cb83=_0x21b96d,_0x100a39=_0x1cccc9,_0x58ae96=_0x1cccc9;if(_0xf3fa62[_0xcbffc(0x35b)](_0xf3fa62[_0x5ec436(0x68c)],_0xf3fa62[_0xcbffc(0x413)]))console[_0x100a39(0x759)](_0xf3fa62[_0xcbffc(0x269)],_0x35f98c);else try{_0x207f1b=_0x4197a0[_0x100a39(0x41d)](_0xf3fa62[_0x100a39(0x4fd)](_0x1aaeee,_0x384a24))[_0xf3fa62[_0x5ec436(0x84f)]],_0x329b03='';}catch(_0x59e0d0){_0x3e8483=_0x315c11[_0x58ae96(0x41d)](_0x40e994)[_0xf3fa62[_0x5ec436(0x84f)]],_0x43c926='';}});}function send_chat(_0x4cf75c){const _0x267e00=_0x2a40d6,_0x3c3f05=_0x2dcc0e,_0x46fc7b=_0x485cac,_0x2b0918=_0x2dcc0e,_0x26caa7=_0x414777,_0x294dc5={'YPLwl':function(_0x2035d1,_0x5c5c36){return _0x2035d1+_0x5c5c36;},'KPlyU':function(_0x340167,_0x162007){return _0x340167-_0x162007;},'KRoOf':function(_0x2b1e84,_0x1c5283){return _0x2b1e84<=_0x1c5283;},'lJbDF':function(_0x46b1d5,_0x1cd90b){return _0x46b1d5>_0x1cd90b;},'NWQNx':function(_0x5e35ab,_0x4e21c6){return _0x5e35ab-_0x4e21c6;},'DAwmn':function(_0x3e04a9,_0x2308a9){return _0x3e04a9(_0x2308a9);},'BjOFn':_0x267e00(0x329)+_0x267e00(0x48e),'Mqcdl':_0x3c3f05(0x764)+_0x46fc7b(0x583),'KrMEU':function(_0x195a09){return _0x195a09();},'LRbps':_0x26caa7(0x764)+_0x26caa7(0x1e4)+_0x267e00(0x2b1),'zAuMD':_0x267e00(0x80b)+'es','XHnTR':function(_0x2c3eff,_0x3cbeb8){return _0x2c3eff>_0x3cbeb8;},'EfJSn':_0x2b0918(0xbb4)+_0x3c3f05(0xb06),'FmwSf':_0x3c3f05(0x73c)+_0x2b0918(0x3e8)+_0x3c3f05(0x970)+_0x267e00(0xa88)+_0x267e00(0x536)+_0x46fc7b(0x666)+_0x2b0918(0x56a)+_0x267e00(0x95c)+_0x2b0918(0x300)+_0x267e00(0x723)+_0x267e00(0x3f6),'mSsZv':_0x46fc7b(0x788)+_0x2b0918(0x815),'VmjEM':function(_0x269cff,_0x22976d,_0x1ac070){return _0x269cff(_0x22976d,_0x1ac070);},'OEOHd':_0x26caa7(0x6de)+_0x2b0918(0x931)+_0x46fc7b(0x7cd)+_0x26caa7(0x8d9),'Urgyg':_0x267e00(0x986)+_0x267e00(0x608)+_0x46fc7b(0x975)+_0x267e00(0xbb0)+_0x46fc7b(0x9c5)+_0x46fc7b(0xbf4)+'\x20)','Oajqo':function(_0x31ea07,_0x652acf){return _0x31ea07!==_0x652acf;},'wmDAz':_0x26caa7(0xc3c),'ePbyO':_0x267e00(0x6bf),'uzpAD':function(_0x484a12,_0x34af89){return _0x484a12==_0x34af89;},'UiNak':_0x267e00(0x826)+']','MCuQa':function(_0x4e79f7,_0x34ebc8){return _0x4e79f7===_0x34ebc8;},'rTsVa':_0x46fc7b(0xae6),'gASts':_0x267e00(0x47a),'PCNap':_0x46fc7b(0x6df)+_0x46fc7b(0x701),'JztUk':_0x267e00(0xb82),'ucKOP':_0x26caa7(0xbb4)+_0x3c3f05(0x8f6)+'t','RCDBG':_0x26caa7(0x990)+_0x267e00(0x72d),'wFEXo':_0x3c3f05(0x289),'jMgnw':function(_0xcdba2e,_0x1dec3f){return _0xcdba2e===_0x1dec3f;},'NyLla':_0x267e00(0x544),'klBjN':function(_0x3f78ed,_0x3f9288){return _0x3f78ed===_0x3f9288;},'zLONC':_0x267e00(0x954),'WFCUd':_0x26caa7(0x55e),'PvcHa':_0x2b0918(0xa6e),'ecGkl':_0x2b0918(0x2e4),'MsMqK':_0x2b0918(0x291)+'pt','fuMdE':_0x46fc7b(0x764)+_0x2b0918(0x6d9),'vYISi':_0x3c3f05(0x699)+_0x3c3f05(0x6d2)+_0x26caa7(0x85f)+_0x267e00(0x538)+_0x3c3f05(0x3a3),'IOSCi':_0x26caa7(0x562)+'>','wrrXG':function(_0x6e5fd6,_0x30703d){return _0x6e5fd6===_0x30703d;},'AzFPe':_0x3c3f05(0x886),'HnWSE':_0x26caa7(0x7b0),'xnWGt':function(_0x4513d5,_0x277865){return _0x4513d5!==_0x277865;},'TUsZM':_0x267e00(0xabd),'vnuIL':_0x3c3f05(0x31a),'OEXDM':_0x2b0918(0x1d7),'QbmJI':_0x26caa7(0xb79)+':','DwGFT':function(_0x2b919d,_0x196268){return _0x2b919d==_0x196268;},'pcEjI':_0x46fc7b(0x28a)+'l','eXZDN':_0x26caa7(0x642),'LWAgq':function(_0x179268,_0xb9708f){return _0x179268===_0xb9708f;},'AdLPR':_0x26caa7(0x576),'LlGLC':_0x46fc7b(0x3a5),'dDuJv':function(_0x765457,_0x26c1ce){return _0x765457(_0x26c1ce);},'baejr':function(_0x15af90,_0x35c22b){return _0x15af90===_0x35c22b;},'YPAao':_0x26caa7(0xba4),'VpBla':function(_0x979a84,_0x357654){return _0x979a84>_0x357654;},'MbRvQ':function(_0x22bcc0,_0x8d2ab1,_0x5baec9){return _0x22bcc0(_0x8d2ab1,_0x5baec9);},'TsjEc':_0x26caa7(0x6d6),'unOwY':_0x2b0918(0x934),'AeCbx':_0x2b0918(0x733),'IIxJf':_0x46fc7b(0x7aa),'Llvwk':_0x2b0918(0x2be),'lgarz':_0x267e00(0x4bc),'YrSTH':_0x26caa7(0x749),'rEBoI':_0x3c3f05(0x638),'PZRlP':_0x3c3f05(0x3d6),'Tagrn':_0x267e00(0xb6a),'GlkLp':_0x2b0918(0xc4d),'vGfAi':_0x3c3f05(0xbc5),'cWESe':_0x2b0918(0x479),'ZLtut':_0x2b0918(0x245),'BYMYJ':function(_0x50254a,_0x52d2f5){return _0x50254a!=_0x52d2f5;},'UIvpQ':function(_0x1e4ab3,_0x37274f){return _0x1e4ab3+_0x37274f;},'KZYBx':function(_0x22bc47,_0x349653){return _0x22bc47+_0x349653;},'eFeGL':_0x2b0918(0xbb4),'jREFs':_0x26caa7(0x2df)+_0x267e00(0x881),'qQkCI':_0x3c3f05(0xa43)+'果\x0a','aSXjf':_0x2b0918(0xba3)+'m','mZUpC':_0x3c3f05(0x58a)+_0x3c3f05(0x631)+_0x3c3f05(0xbe5)+_0x3c3f05(0x3bb)+_0x267e00(0x96a)+_0x267e00(0x6b9)+'何人','oUrIt':function(_0x39c89f,_0x5e8d06){return _0x39c89f+_0x5e8d06;},'rjRcJ':function(_0x44d6d6,_0x44a0b3){return _0x44d6d6+_0x44a0b3;},'qLJwv':_0x46fc7b(0x81d),'NuvTv':_0x3c3f05(0x2a2)+_0x3c3f05(0x44c)+_0x26caa7(0x5bf),'uhNPD':_0x46fc7b(0x8e6),'ffdBI':function(_0x175094,_0x2da834){return _0x175094(_0x2da834);},'wAoVO':_0x26caa7(0x699)+_0x26caa7(0x6d2)+_0x3c3f05(0x85f)+_0x267e00(0x338)+_0x3c3f05(0x726)+'\x22>','mptRF':_0x3c3f05(0x4c6)+_0x267e00(0x95d)+_0x3c3f05(0x206)+_0x267e00(0x5dc)+_0x3c3f05(0x618)+_0x46fc7b(0xc11)};if(_0x294dc5[_0x3c3f05(0x281)](document[_0x26caa7(0xb8a)+_0x267e00(0x892)+_0x2b0918(0x215)](_0x294dc5[_0x3c3f05(0x424)])[_0x46fc7b(0x40c)][_0x3c3f05(0x324)+'ay'],_0x294dc5[_0x3c3f05(0x987)])){if(_0x294dc5[_0x46fc7b(0x31c)](_0x294dc5[_0x2b0918(0x4cb)],_0x294dc5[_0x2b0918(0xc40)])){const _0x5a0d8f=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x57062e=new _0x53e3a3(),_0x3fb4b9=(_0x305262,_0x4a3745)=>{const _0x1aa649=_0x46fc7b,_0x11cb15=_0x2b0918,_0x293dd6=_0x26caa7,_0x3699db=_0x3c3f05,_0x5f272b=_0x2b0918;if(_0x57062e[_0x1aa649(0x408)](_0x4a3745))return _0x305262;const _0x1ceccc=_0x4a3745[_0x11cb15(0xb89)](/[;,;、,]/),_0x806dfb=_0x1ceccc[_0x11cb15(0x432)](_0x20a974=>'['+_0x20a974+']')[_0x293dd6(0x9f8)]('\x20'),_0x17bbd4=_0x1ceccc[_0x11cb15(0x432)](_0xb4035d=>'['+_0xb4035d+']')[_0x1aa649(0x9f8)]('\x0a');_0x1ceccc[_0x1aa649(0x2d5)+'ch'](_0x1b2890=>_0x57062e[_0x293dd6(0x2d4)](_0x1b2890)),_0x252665='\x20';for(var _0x37395b=_0x294dc5[_0x11cb15(0x553)](_0x294dc5[_0x11cb15(0x418)](_0x57062e[_0x11cb15(0x4ee)],_0x1ceccc[_0x293dd6(0xc1f)+'h']),-0xf78+-0x1a15*0x1+-0x14c7*-0x2);_0x294dc5[_0x3699db(0x943)](_0x37395b,_0x57062e[_0x1aa649(0x4ee)]);++_0x37395b)_0x526f07+='[^'+_0x37395b+']\x20';return _0x33729e;};let _0x7fe443=-0x68f+0x2347+0x1*-0x1cb7,_0x4ea23e=_0x57b5e2[_0x26caa7(0x25e)+'ce'](_0x5a0d8f,_0x3fb4b9);while(_0x294dc5[_0x3c3f05(0x660)](_0x57062e[_0x267e00(0x4ee)],0x2a7+0xc61+-0x8*0x1e1)){const _0x3a3648='['+_0x7fe443++ +_0x46fc7b(0xb41)+_0x57062e[_0x26caa7(0x1c2)+'s']()[_0x26caa7(0x573)]()[_0x2b0918(0x1c2)],_0x5c97fa='[^'+_0x294dc5[_0x46fc7b(0x431)](_0x7fe443,0x16b0+-0xd8b+-0x924)+_0x267e00(0xb41)+_0x57062e[_0x46fc7b(0x1c2)+'s']()[_0x2b0918(0x573)]()[_0x3c3f05(0x1c2)];_0x4ea23e=_0x4ea23e+'\x0a\x0a'+_0x5c97fa,_0x57062e[_0x2b0918(0x55c)+'e'](_0x57062e[_0x267e00(0x1c2)+'s']()[_0x46fc7b(0x573)]()[_0x3c3f05(0x1c2)]);}return _0x4ea23e;}else return _0x294dc5[_0x267e00(0x827)](send_modalchat,_0x4cf75c);}let _0x5b9e7c=document[_0x3c3f05(0xb8a)+_0x2b0918(0x892)+_0x26caa7(0x215)](_0x294dc5[_0x2b0918(0x588)])[_0x26caa7(0x1c2)];if(_0x4cf75c){if(_0x294dc5[_0x267e00(0x1d5)](_0x294dc5[_0x46fc7b(0x4dc)],_0x294dc5[_0x3c3f05(0x4dc)]))_0x5b9e7c=_0x4cf75c[_0x3c3f05(0x9c9)+_0x26caa7(0xaed)+'t'],_0x4cf75c[_0x2b0918(0x475)+'e']();else while(_0x294dc5[_0x3c3f05(0x660)](_0x294dc5[_0x26caa7(0xb3f)](_0x50cf3a,_0x2b8a46),_0x3cc57b)){_0x491854[_0x2b0918(0x438)]();}}if(_0x294dc5[_0x46fc7b(0x281)](_0x5b9e7c[_0x46fc7b(0xc1f)+'h'],-0xca0+-0x1ad6+-0x2*-0x13bb)||_0x294dc5[_0x3c3f05(0x747)](_0x5b9e7c[_0x2b0918(0xc1f)+'h'],0x15f3+0x1*0x213f+-0x36a6))return;_0x294dc5[_0x46fc7b(0x38c)](trimArray,word_last,0x9*-0x17f+-0x856+0x17c1);if(_0x5b9e7c[_0x267e00(0x255)+_0x46fc7b(0x4b3)]('你能')||_0x5b9e7c[_0x267e00(0x255)+_0x267e00(0x4b3)]('讲讲')||_0x5b9e7c[_0x267e00(0x255)+_0x2b0918(0x4b3)]('扮演')||_0x5b9e7c[_0x46fc7b(0x255)+_0x26caa7(0x4b3)]('模仿')||_0x5b9e7c[_0x46fc7b(0x255)+_0x2b0918(0x4b3)](_0x294dc5[_0x2b0918(0x523)])||_0x5b9e7c[_0x26caa7(0x255)+_0x46fc7b(0x4b3)]('帮我')||_0x5b9e7c[_0x46fc7b(0x255)+_0x46fc7b(0x4b3)](_0x294dc5[_0x46fc7b(0x78d)])||_0x5b9e7c[_0x46fc7b(0x255)+_0x267e00(0x4b3)](_0x294dc5[_0x2b0918(0x9b5)])||_0x5b9e7c[_0x2b0918(0x255)+_0x2b0918(0x4b3)]('请问')||_0x5b9e7c[_0x3c3f05(0x255)+_0x26caa7(0x4b3)]('请给')||_0x5b9e7c[_0x46fc7b(0x255)+_0x46fc7b(0x4b3)]('请你')||_0x5b9e7c[_0x3c3f05(0x255)+_0x46fc7b(0x4b3)](_0x294dc5[_0x2b0918(0x523)])||_0x5b9e7c[_0x3c3f05(0x255)+_0x26caa7(0x4b3)](_0x294dc5[_0x46fc7b(0x500)])||_0x5b9e7c[_0x267e00(0x255)+_0x3c3f05(0x4b3)](_0x294dc5[_0x267e00(0x7b3)])||_0x5b9e7c[_0x267e00(0x255)+_0x3c3f05(0x4b3)](_0x294dc5[_0x26caa7(0xa93)])||_0x5b9e7c[_0x2b0918(0x255)+_0x46fc7b(0x4b3)](_0x294dc5[_0x267e00(0x56f)])||_0x5b9e7c[_0x26caa7(0x255)+_0x46fc7b(0x4b3)](_0x294dc5[_0x267e00(0xc54)])||_0x5b9e7c[_0x2b0918(0x255)+_0x26caa7(0x4b3)]('怎样')||_0x5b9e7c[_0x26caa7(0x255)+_0x2b0918(0x4b3)]('给我')||_0x5b9e7c[_0x267e00(0x255)+_0x46fc7b(0x4b3)]('如何')||_0x5b9e7c[_0x2b0918(0x255)+_0x3c3f05(0x4b3)]('谁是')||_0x5b9e7c[_0x26caa7(0x255)+_0x3c3f05(0x4b3)]('查询')||_0x5b9e7c[_0x46fc7b(0x255)+_0x267e00(0x4b3)](_0x294dc5[_0x46fc7b(0x39a)])||_0x5b9e7c[_0x2b0918(0x255)+_0x26caa7(0x4b3)](_0x294dc5[_0x267e00(0x47b)])||_0x5b9e7c[_0x2b0918(0x255)+_0x3c3f05(0x4b3)](_0x294dc5[_0x3c3f05(0xadb)])||_0x5b9e7c[_0x267e00(0x255)+_0x267e00(0x4b3)](_0x294dc5[_0x46fc7b(0x1c9)])||_0x5b9e7c[_0x2b0918(0x255)+_0x26caa7(0x4b3)]('哪个')||_0x5b9e7c[_0x26caa7(0x255)+_0x2b0918(0x4b3)]('哪些')||_0x5b9e7c[_0x2b0918(0x255)+_0x3c3f05(0x4b3)](_0x294dc5[_0x267e00(0xa36)])||_0x5b9e7c[_0x26caa7(0x255)+_0x3c3f05(0x4b3)](_0x294dc5[_0x3c3f05(0xbb8)])||_0x5b9e7c[_0x26caa7(0x255)+_0x267e00(0x4b3)]('啥是')||_0x5b9e7c[_0x267e00(0x255)+_0x3c3f05(0x4b3)]('为啥')||_0x5b9e7c[_0x26caa7(0x255)+_0x2b0918(0x4b3)]('怎么'))return _0x294dc5[_0x267e00(0xb3f)](send_webchat,_0x4cf75c);if(_0x294dc5[_0x46fc7b(0x555)](lock_chat,0x1a7c+0xe5*-0x22+0x3ee))return;lock_chat=0x3*-0x8cb+-0x4f4+-0xbf*-0x2a;const _0x439d94=_0x294dc5[_0x267e00(0x1bc)](_0x294dc5[_0x3c3f05(0x553)](_0x294dc5[_0x46fc7b(0x858)](document[_0x267e00(0xb8a)+_0x267e00(0x892)+_0x46fc7b(0x215)](_0x294dc5[_0x26caa7(0xbf1)])[_0x267e00(0x394)+_0x267e00(0x795)][_0x46fc7b(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x3c3f05(0x25e)+'ce'](/<hr.*/gs,'')[_0x26caa7(0x25e)+'ce'](/<[^>]+>/g,'')[_0x26caa7(0x25e)+'ce'](/\n\n/g,'\x0a'),_0x294dc5[_0x26caa7(0x288)]),search_queryquery),_0x294dc5[_0x2b0918(0x6f4)]),_0x2bf430={};_0x2bf430[_0x26caa7(0xaca)]=_0x294dc5[_0x2b0918(0x320)],_0x2bf430[_0x46fc7b(0x67d)+'nt']=_0x294dc5[_0x26caa7(0x80f)];const _0x1a0ee5={};_0x1a0ee5[_0x26caa7(0xaca)]=_0x294dc5[_0x46fc7b(0xa0d)],_0x1a0ee5[_0x46fc7b(0x67d)+'nt']=_0x439d94;let _0x5d7c8a=[_0x2bf430,_0x1a0ee5];_0x5d7c8a=_0x5d7c8a[_0x46fc7b(0x5ee)+'t'](word_last),_0x5d7c8a=_0x5d7c8a[_0x267e00(0x5ee)+'t']([{'role':_0x294dc5[_0x267e00(0x61f)],'content':_0x294dc5[_0x2b0918(0x610)](_0x294dc5[_0x46fc7b(0x298)](_0x294dc5[_0x46fc7b(0xa71)],_0x5b9e7c),_0x294dc5[_0x26caa7(0x6fd)])}]);const _0x2ea880={'method':_0x294dc5[_0x2b0918(0x85b)],'headers':headers,'body':_0x294dc5[_0x2b0918(0xb3f)](b64EncodeUnicode,JSON[_0x267e00(0x898)+_0x46fc7b(0x247)]({'messages':_0x5d7c8a[_0x26caa7(0x5ee)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x5b9e7c=_0x5b9e7c[_0x3c3f05(0x25e)+_0x267e00(0x739)]('\x0a\x0a','\x0a')[_0x46fc7b(0x25e)+_0x46fc7b(0x739)]('\x0a\x0a','\x0a'),document[_0x267e00(0xb8a)+_0x2b0918(0x892)+_0x267e00(0x215)](_0x294dc5[_0x46fc7b(0xa4c)])[_0x267e00(0x394)+_0x267e00(0x795)]='',_0x294dc5[_0x3c3f05(0x38c)](markdownToHtml,_0x294dc5[_0x46fc7b(0xc1b)](beautify,_0x5b9e7c),document[_0x26caa7(0xb8a)+_0x267e00(0x892)+_0x46fc7b(0x215)](_0x294dc5[_0x46fc7b(0xa4c)])),chatTemp='',text_offset=-(0x2351+0x23a+-0x258a),prev_chat=document[_0x26caa7(0x7a0)+_0x26caa7(0x5cd)+_0x3c3f05(0xaef)](_0x294dc5[_0x26caa7(0xac3)])[_0x26caa7(0x394)+_0x46fc7b(0x795)],prev_chat=_0x294dc5[_0x26caa7(0x610)](_0x294dc5[_0x2b0918(0x298)](_0x294dc5[_0x3c3f05(0x858)](prev_chat,_0x294dc5[_0x26caa7(0x271)]),document[_0x46fc7b(0xb8a)+_0x267e00(0x892)+_0x267e00(0x215)](_0x294dc5[_0x46fc7b(0xa4c)])[_0x26caa7(0x394)+_0x2b0918(0x795)]),_0x294dc5[_0x46fc7b(0x24f)]),_0x294dc5[_0x3c3f05(0x38c)](fetch,_0x294dc5[_0x3c3f05(0x982)],_0x2ea880)[_0x2b0918(0x249)](_0x32cbfd=>{const _0x5b49d9=_0x46fc7b,_0x3e6899=_0x3c3f05,_0x1cdf3a=_0x2b0918,_0x56e3b5=_0x267e00,_0x419588=_0x2b0918,_0x1df493={'ztfAu':_0x294dc5[_0x5b49d9(0x619)],'GobGu':_0x294dc5[_0x5b49d9(0x565)],'XdCvC':function(_0x8ad533){const _0x24631a=_0x3e6899;return _0x294dc5[_0x24631a(0x3dc)](_0x8ad533);},'hcvst':_0x294dc5[_0x5b49d9(0xadf)],'zHGmo':function(_0x49ce2d,_0x35f04d){const _0xf14ba=_0x1cdf3a;return _0x294dc5[_0xf14ba(0x553)](_0x49ce2d,_0x35f04d);},'POSqS':_0x294dc5[_0x1cdf3a(0x225)],'Sbxzz':function(_0x4887d2,_0x3bbe24){const _0x197c37=_0x5b49d9;return _0x294dc5[_0x197c37(0x301)](_0x4887d2,_0x3bbe24);},'zIvST':function(_0x644a8,_0x3d21dc){const _0x47ca95=_0x5b49d9;return _0x294dc5[_0x47ca95(0xb3f)](_0x644a8,_0x3d21dc);},'kYrjD':_0x294dc5[_0x56e3b5(0x854)],'ZJCeq':_0x294dc5[_0x1cdf3a(0x326)],'NCVzU':_0x294dc5[_0x1cdf3a(0x461)],'HXCcY':function(_0x55859a,_0x45d9bd,_0x188c7e){const _0x274c08=_0x3e6899;return _0x294dc5[_0x274c08(0x5eb)](_0x55859a,_0x45d9bd,_0x188c7e);},'zJvin':function(_0x424709,_0x77c6ae){const _0x5c2897=_0x56e3b5;return _0x294dc5[_0x5c2897(0x553)](_0x424709,_0x77c6ae);},'yXELD':_0x294dc5[_0x419588(0xc30)],'PqyZA':_0x294dc5[_0x56e3b5(0x69f)],'lsqqo':function(_0x280df2,_0x263d07){const _0x198e28=_0x56e3b5;return _0x294dc5[_0x198e28(0x507)](_0x280df2,_0x263d07);},'JoQDm':_0x294dc5[_0x1cdf3a(0x955)],'YJalR':_0x294dc5[_0x3e6899(0x5af)],'TJRiM':function(_0x5f19b0,_0x215faf){const _0x15b45c=_0x3e6899;return _0x294dc5[_0x15b45c(0x8af)](_0x5f19b0,_0x215faf);},'wTSvu':_0x294dc5[_0x419588(0x98c)],'FbEEB':function(_0x3a7896,_0x507c3f){const _0x3f2520=_0x3e6899;return _0x294dc5[_0x3f2520(0x490)](_0x3a7896,_0x507c3f);},'vobrg':_0x294dc5[_0x1cdf3a(0xb91)],'TRHEI':_0x294dc5[_0x56e3b5(0x5f8)],'PlUCf':_0x294dc5[_0x3e6899(0xbec)],'LfybC':_0x294dc5[_0x1cdf3a(0x61f)],'Xwkfa':_0x294dc5[_0x1cdf3a(0x588)],'QWUUH':_0x294dc5[_0x3e6899(0xa0d)],'DYRQm':_0x294dc5[_0x56e3b5(0x3da)],'xojCF':function(_0x34c094,_0x171b36){const _0x31002b=_0x3e6899;return _0x294dc5[_0x31002b(0xb88)](_0x34c094,_0x171b36);},'EgJxK':_0x294dc5[_0x419588(0x409)],'iLIoA':function(_0x16d01d,_0x75aea0){const _0x2d1d82=_0x5b49d9;return _0x294dc5[_0x2d1d82(0x553)](_0x16d01d,_0x75aea0);},'VVNRP':function(_0x3b8b88,_0x3e1fca){const _0x4eb9fd=_0x3e6899;return _0x294dc5[_0x4eb9fd(0xc2c)](_0x3b8b88,_0x3e1fca);},'peypb':_0x294dc5[_0x56e3b5(0x81a)],'GsThX':_0x294dc5[_0x56e3b5(0x53d)],'caSsf':function(_0x11c6e9,_0x471445){const _0x4f7811=_0x3e6899;return _0x294dc5[_0x4f7811(0x507)](_0x11c6e9,_0x471445);},'zkfkc':_0x294dc5[_0x56e3b5(0xc01)],'deiwL':_0x294dc5[_0x56e3b5(0xaf5)],'yypMc':_0x294dc5[_0x5b49d9(0xa4c)],'EZiHj':_0x294dc5[_0x5b49d9(0xac3)],'jyjHY':_0x294dc5[_0x56e3b5(0x5a6)],'BRwDf':_0x294dc5[_0x419588(0x24f)],'tCfUc':function(_0x30195d,_0x45d2bf){const _0x5d9752=_0x419588;return _0x294dc5[_0x5d9752(0x87f)](_0x30195d,_0x45d2bf);},'bWvbV':_0x294dc5[_0x1cdf3a(0xacc)],'DvUFq':_0x294dc5[_0x1cdf3a(0x7f3)]};if(_0x294dc5[_0x56e3b5(0x1f1)](_0x294dc5[_0x5b49d9(0x542)],_0x294dc5[_0x3e6899(0x542)])){const _0x59ccca=_0x1df493[_0x5b49d9(0x266)][_0x5b49d9(0xb89)]('|');let _0x407ce6=0x138e+-0x16e3+-0x355*-0x1;while(!![]){switch(_0x59ccca[_0x407ce6++]){case'0':_0x2d017d=0x13*-0x1bb+0x24a7+-0x2a*0x17;continue;case'1':_0x148b93[_0x3e6899(0x7a0)+_0x56e3b5(0x5cd)+_0x1cdf3a(0xaef)](_0x1df493[_0x419588(0x63c)])[_0x1cdf3a(0x40c)][_0x56e3b5(0x324)+'ay']='';continue;case'2':_0x1df493[_0x1cdf3a(0x9ae)](_0x1f6f9f);continue;case'3':return;case'4':_0x5b1a79[_0x3e6899(0x7a0)+_0x3e6899(0x5cd)+_0x1cdf3a(0xaef)](_0x1df493[_0x3e6899(0x256)])[_0x56e3b5(0x40c)][_0x419588(0x324)+'ay']='';continue;}break;}}else{const _0x2651f8=_0x32cbfd[_0x1cdf3a(0x99b)][_0x5b49d9(0x4c5)+_0x3e6899(0xa83)]();let _0x54e635='',_0x3b0cc0='';_0x2651f8[_0x1cdf3a(0x5e1)]()[_0x5b49d9(0x249)](function _0x2dd1de({done:_0x1f4ee6,value:_0x33f1ad}){const _0x5aa31b=_0x419588,_0x196df2=_0x5b49d9,_0x29df8a=_0x1cdf3a,_0x126062=_0x1cdf3a,_0xacc83e=_0x419588,_0x34a462={'ISINQ':function(_0x24172d,_0x210a4f){const _0x3df340=_0x8015;return _0x1df493[_0x3df340(0x22a)](_0x24172d,_0x210a4f);},'yHkgW':function(_0x572717,_0x4fa734){const _0x723da4=_0x8015;return _0x1df493[_0x723da4(0xc3b)](_0x572717,_0x4fa734);},'SRIlv':_0x1df493[_0x5aa31b(0xb20)],'vDKdR':function(_0x431a93,_0x5f1b2d){const _0x58048c=_0x5aa31b;return _0x1df493[_0x58048c(0x600)](_0x431a93,_0x5f1b2d);},'gEngR':_0x1df493[_0x196df2(0xb5c)],'VQkjZ':_0x1df493[_0x196df2(0x3e7)],'hrgin':function(_0x3f9a36,_0x33ab4d,_0x39acd1){const _0x183471=_0x29df8a;return _0x1df493[_0x183471(0x5a0)](_0x3f9a36,_0x33ab4d,_0x39acd1);},'wuNtA':function(_0x4d0ec7,_0x34fcc4){const _0x17d119=_0x196df2;return _0x1df493[_0x17d119(0x600)](_0x4d0ec7,_0x34fcc4);},'njaRY':function(_0x52fbe2,_0x5d1769){const _0x4adb4b=_0x5aa31b;return _0x1df493[_0x4adb4b(0xa7a)](_0x52fbe2,_0x5d1769);},'NRjeL':_0x1df493[_0x29df8a(0x3f2)],'RewRP':_0x1df493[_0x126062(0xc5b)],'LrNpy':_0x1df493[_0x5aa31b(0x401)],'WWspa':function(_0x738020,_0x20a53a){const _0x434f92=_0xacc83e;return _0x1df493[_0x434f92(0x976)](_0x738020,_0x20a53a);},'moBhC':_0x1df493[_0xacc83e(0xc5f)],'cTWfq':_0x1df493[_0x29df8a(0x742)],'dxhFX':function(_0x126590,_0x5a9515){const _0x40a89e=_0x196df2;return _0x1df493[_0x40a89e(0x9ef)](_0x126590,_0x5a9515);},'SyvOF':_0x1df493[_0x5aa31b(0x613)],'jjUpf':function(_0x584957,_0x51c2b2){const _0x5f27b3=_0x126062;return _0x1df493[_0x5f27b3(0xc46)](_0x584957,_0x51c2b2);},'yXSKK':_0x1df493[_0x196df2(0x390)],'IPQzZ':_0x1df493[_0x196df2(0x8ae)],'GpUFT':_0x1df493[_0x196df2(0x7cf)],'vFtvH':_0x1df493[_0x126062(0x9b3)],'CqlLj':_0x1df493[_0x126062(0x681)],'dgPAS':_0x1df493[_0x196df2(0x734)],'PSlSK':function(_0x51b7b1,_0x18692d){const _0x17d772=_0x196df2;return _0x1df493[_0x17d772(0x976)](_0x51b7b1,_0x18692d);},'wthXs':_0x1df493[_0xacc83e(0x88d)],'AOYvJ':function(_0x4d35fc,_0x4f0572){const _0x19c41e=_0x126062;return _0x1df493[_0x19c41e(0x6e0)](_0x4d35fc,_0x4f0572);},'ODQON':_0x1df493[_0x29df8a(0xc27)],'tQRUl':function(_0xd70103,_0x368a11){const _0x589cee=_0xacc83e;return _0x1df493[_0x589cee(0x8e1)](_0xd70103,_0x368a11);},'JZFZK':function(_0x1d1637,_0x356f0b){const _0x159cc2=_0xacc83e;return _0x1df493[_0x159cc2(0xb00)](_0x1d1637,_0x356f0b);},'Vmvfy':_0x1df493[_0x126062(0x434)],'TQdrS':_0x1df493[_0x126062(0x5b8)],'ZHfSl':function(_0x393957,_0x570bdf){const _0x144b35=_0x5aa31b;return _0x1df493[_0x144b35(0x4df)](_0x393957,_0x570bdf);},'rtDTt':_0x1df493[_0xacc83e(0x8aa)],'VBstJ':_0x1df493[_0x196df2(0x9dc)],'fpWWB':_0x1df493[_0x126062(0x214)],'zXsdx':function(_0x58c35a,_0x4bf4fd,_0x3b6520){const _0x272976=_0xacc83e;return _0x1df493[_0x272976(0x5a0)](_0x58c35a,_0x4bf4fd,_0x3b6520);},'NdNTH':_0x1df493[_0xacc83e(0x3ca)],'cUAEE':_0x1df493[_0x126062(0x8fb)],'KDEIn':_0x1df493[_0x196df2(0x514)]};if(_0x1df493[_0x196df2(0xa69)](_0x1df493[_0x126062(0x6eb)],_0x1df493[_0xacc83e(0x6eb)])){if(_0x1f4ee6)return;const _0x2dcb9e=new TextDecoder(_0x1df493[_0x126062(0x385)])[_0xacc83e(0x85a)+'e'](_0x33f1ad);return _0x2dcb9e[_0x196df2(0xa4b)]()[_0x29df8a(0xb89)]('\x0a')[_0xacc83e(0x2d5)+'ch'](function(_0x5e587c){const _0x302b80=_0xacc83e,_0x151d9c=_0x196df2,_0xc91721=_0x126062,_0x49a813=_0x196df2,_0x292a79=_0x5aa31b,_0x4a8b5f={'YuPAx':_0x34a462[_0x302b80(0x802)],'EhaZi':function(_0xc4db98,_0x404ae4){const _0x37ffaf=_0x302b80;return _0x34a462[_0x37ffaf(0x5d7)](_0xc4db98,_0x404ae4);}};if(_0x34a462[_0x151d9c(0x4e1)](_0x34a462[_0x302b80(0x351)],_0x34a462[_0xc91721(0xa15)])){_0x54e635='';if(_0x34a462[_0x151d9c(0x876)](_0x5e587c[_0x49a813(0xc1f)+'h'],-0xf79+0x2591+-0x1612))_0x54e635=_0x5e587c[_0x302b80(0x21c)](0x9*0x32f+0x2*-0x892+-0xb7d);if(_0x34a462[_0x302b80(0x2ea)](_0x54e635,_0x34a462[_0x292a79(0x8f0)])){if(_0x34a462[_0x49a813(0x848)](_0x34a462[_0x302b80(0x457)],_0x34a462[_0x292a79(0x26d)])){const _0x46ca59={'NbjVZ':function(_0x390ee6,_0x4ba673){const _0x5e3b18=_0x49a813;return _0x34a462[_0x5e3b18(0x876)](_0x390ee6,_0x4ba673);},'mRJiF':function(_0x21e333,_0x3477f7){const _0x59f958=_0x151d9c;return _0x34a462[_0x59f958(0xa67)](_0x21e333,_0x3477f7);},'ClqjY':_0x34a462[_0x151d9c(0x2d2)],'RDrop':function(_0x435971,_0x5c303d){const _0x20dc0c=_0xc91721;return _0x34a462[_0x20dc0c(0x5d7)](_0x435971,_0x5c303d);},'yDCic':function(_0x482f54,_0x5d5418){const _0x592347=_0xc91721;return _0x34a462[_0x592347(0x5d7)](_0x482f54,_0x5d5418);},'AWeKC':_0x34a462[_0x292a79(0x285)],'LKXLF':_0x34a462[_0x292a79(0x590)]};_0x130605[_0x302b80(0x41d)](_0x24ccc7[_0x151d9c(0x80b)+'es'][0x31*0x37+0x2*0x42f+-0x12e5][_0xc91721(0x2b5)+'ge'][_0xc91721(0x67d)+'nt'][_0xc91721(0x25e)+_0x151d9c(0x739)]('\x0a',''))[_0xc91721(0x2d5)+'ch'](_0x5c4ba7=>{const _0x1d0fcf=_0x302b80,_0x1c0c79=_0xc91721,_0x52cc54=_0xc91721,_0x45091c=_0x49a813,_0x78e7f3=_0x49a813;if(_0x46ca59[_0x1d0fcf(0xb01)](_0x46ca59[_0x1c0c79(0x783)](_0x4cc53c,_0x5c4ba7)[_0x1c0c79(0xc1f)+'h'],0xde*-0x19+0x1*0xdb9+-0x7fa*-0x1))_0x323d82[_0x52cc54(0xb8a)+_0x1c0c79(0x892)+_0x52cc54(0x215)](_0x46ca59[_0x78e7f3(0x49f)])[_0x45091c(0x394)+_0x45091c(0x795)]+=_0x46ca59[_0x45091c(0x625)](_0x46ca59[_0x52cc54(0x48a)](_0x46ca59[_0x52cc54(0x88c)],_0x46ca59[_0x52cc54(0x783)](_0xde7059,_0x5c4ba7)),_0x46ca59[_0x78e7f3(0x71a)]);});}else{const _0x2a6081=_0x34a462[_0x292a79(0x1ce)][_0x292a79(0xb89)]('|');let _0x185343=-0x115d+-0x29*0x75+0x2*0x120d;while(!![]){switch(_0x2a6081[_0x185343++]){case'0':const _0x484144={};_0x484144[_0x49a813(0xaca)]=_0x34a462[_0xc91721(0x388)],_0x484144[_0x292a79(0x67d)+'nt']=_0x5b9e7c,word_last[_0x151d9c(0x529)](_0x484144);continue;case'1':lock_chat=-0x1838+0x1b*-0x149+0x3aeb;continue;case'2':document[_0x151d9c(0xb8a)+_0x49a813(0x892)+_0x292a79(0x215)](_0x34a462[_0x151d9c(0x880)])[_0x49a813(0x1c2)]='';continue;case'3':const _0x556343={};_0x556343[_0x49a813(0xaca)]=_0x34a462[_0x151d9c(0x78f)],_0x556343[_0x49a813(0x67d)+'nt']=chatTemp,word_last[_0x49a813(0x529)](_0x556343);continue;case'4':return;}break;}}}let _0x56653c;try{if(_0x34a462[_0x49a813(0x1ea)](_0x34a462[_0x151d9c(0x4f1)],_0x34a462[_0xc91721(0x4f1)]))_0x30ec09=_0x457ae0[_0xc91721(0x41d)](_0xd26087)[_0x4a8b5f[_0x49a813(0x603)]],_0x49de72='';else try{_0x34a462[_0x302b80(0x74f)](_0x34a462[_0x302b80(0x4c7)],_0x34a462[_0x151d9c(0x4c7)])?(_0x56653c=JSON[_0x302b80(0x41d)](_0x34a462[_0xc91721(0xbe0)](_0x3b0cc0,_0x54e635))[_0x34a462[_0xc91721(0x802)]],_0x3b0cc0=''):_0x34a462[_0x151d9c(0xb76)](_0x558d,_0x34404a,_0x34a462[_0x151d9c(0x5d7)](_0x210b7f,0x8e1*0x1+-0x1*0x1a51+-0x13*-0xeb));}catch(_0x2abcb7){if(_0x34a462[_0x49a813(0x947)](_0x34a462[_0x302b80(0x4fa)],_0x34a462[_0x292a79(0x4fa)]))_0x56653c=JSON[_0xc91721(0x41d)](_0x54e635)[_0x34a462[_0x49a813(0x802)]],_0x3b0cc0='';else return-(0x1f56*0x1+-0xa7*-0x29+-0x3a14);}}catch(_0x7b366f){_0x34a462[_0xc91721(0x4e1)](_0x34a462[_0x302b80(0x20e)],_0x34a462[_0x151d9c(0x20e)])?(_0x4269c4=_0x370f8c[_0xc91721(0x41d)](_0x4a8b5f[_0x151d9c(0x4ae)](_0x4c3936,_0x44da1c))[_0x4a8b5f[_0x292a79(0x603)]],_0x331751=''):_0x3b0cc0+=_0x54e635;}if(_0x56653c&&_0x34a462[_0x49a813(0x876)](_0x56653c[_0xc91721(0xc1f)+'h'],-0x1*0x1372+-0x211b+0x348d)&&_0x56653c[-0x1*0x296+-0x2278+0x5d*0x66][_0x151d9c(0x830)][_0x151d9c(0x67d)+'nt']){if(_0x34a462[_0x151d9c(0x5bb)](_0x34a462[_0x151d9c(0x9a0)],_0x34a462[_0x292a79(0xc0b)]))chatTemp+=_0x56653c[-0x254d*0x1+0x26f2+-0x1a5][_0x151d9c(0x830)][_0x292a79(0x67d)+'nt'];else{let _0x518ca3;try{_0x518ca3=jTUmOR[_0x151d9c(0xa67)](_0x5c6882,jTUmOR[_0x49a813(0xab1)](jTUmOR[_0x151d9c(0xb0d)](jTUmOR[_0x292a79(0x847)],jTUmOR[_0x302b80(0xb47)]),');'))();}catch(_0x52672e){_0x518ca3=_0x10a749;}return _0x518ca3;}}chatTemp=chatTemp[_0xc91721(0x25e)+_0x151d9c(0x739)]('\x0a\x0a','\x0a')[_0x151d9c(0x25e)+_0x292a79(0x739)]('\x0a\x0a','\x0a'),document[_0x292a79(0xb8a)+_0x49a813(0x892)+_0x292a79(0x215)](_0x34a462[_0x292a79(0x63e)])[_0xc91721(0x394)+_0xc91721(0x795)]='',_0x34a462[_0x49a813(0x213)](markdownToHtml,_0x34a462[_0xc91721(0xa67)](beautify,chatTemp),document[_0x49a813(0xb8a)+_0xc91721(0x892)+_0x302b80(0x215)](_0x34a462[_0x292a79(0x63e)])),document[_0x151d9c(0x7a0)+_0x292a79(0x5cd)+_0x302b80(0xaef)](_0x34a462[_0xc91721(0x51f)])[_0x151d9c(0x394)+_0x49a813(0x795)]=_0x34a462[_0x302b80(0xb0d)](_0x34a462[_0xc91721(0x5d7)](_0x34a462[_0x49a813(0xab1)](prev_chat,_0x34a462[_0x302b80(0x59e)]),document[_0x292a79(0xb8a)+_0x49a813(0x892)+_0xc91721(0x215)](_0x34a462[_0x49a813(0x63e)])[_0xc91721(0x394)+_0x292a79(0x795)]),_0x34a462[_0x302b80(0x2ce)]);}else _0x4414a1+=_0x194b4a;}),_0x2651f8[_0x196df2(0x5e1)]()[_0x126062(0x249)](_0x2dd1de);}else _0x2e02f1=_0x424e52[_0x126062(0x41d)](_0x1df493[_0x29df8a(0x600)](_0x493f08,_0x35b102))[_0x1df493[_0x5aa31b(0x401)]],_0x2ccd16='';});}})[_0x26caa7(0x9de)](_0x811435=>{const _0x23805e=_0x46fc7b,_0x175c01=_0x26caa7,_0x501577=_0x267e00,_0x38f564=_0x3c3f05,_0x478096=_0x46fc7b;if(_0x294dc5[_0x23805e(0xb88)](_0x294dc5[_0x175c01(0x9ac)],_0x294dc5[_0x23805e(0x9d9)])){const _0x463d6d=/^[0-9,\s]+$/;return!_0x463d6d[_0x38f564(0x51b)](_0x352a04);}else console[_0x501577(0x759)](_0x294dc5[_0x38f564(0x8d6)],_0x811435);});}function replaceUrlWithFootnote(_0x1fddb2){const _0x4ece01=_0x2a40d6,_0x6a00f4=_0x2a40d6,_0x23fef2=_0x2a40d6,_0x2815c8=_0x414777,_0x2bb281=_0x485cac,_0x451db5={};_0x451db5[_0x4ece01(0x4a2)]=_0x6a00f4(0x3ab),_0x451db5[_0x23fef2(0x488)]=function(_0x657c6f,_0x26f8e3){return _0x657c6f===_0x26f8e3;},_0x451db5[_0x23fef2(0x20c)]=_0x2bb281(0x234),_0x451db5[_0x6a00f4(0x446)]=_0x6a00f4(0x593),_0x451db5[_0x4ece01(0x7b9)]=function(_0x5bdafe,_0x41f47a){return _0x5bdafe===_0x41f47a;},_0x451db5[_0x2bb281(0x64e)]=_0x2bb281(0x659),_0x451db5[_0x6a00f4(0x4f9)]=_0x23fef2(0x35e),_0x451db5[_0x2815c8(0x5ad)]=function(_0x5a5f87,_0x2618d2){return _0x5a5f87+_0x2618d2;},_0x451db5[_0x6a00f4(0x47c)]=function(_0x2661ca,_0xc9d905){return _0x2661ca-_0xc9d905;},_0x451db5[_0x23fef2(0x74a)]=function(_0x49010b,_0x311591){return _0x49010b<=_0x311591;},_0x451db5[_0x4ece01(0x607)]=_0x2bb281(0x268)+_0x4ece01(0x46b),_0x451db5[_0x2815c8(0xb33)]=_0x4ece01(0xbb4)+_0x2815c8(0x8f6)+'t',_0x451db5[_0x4ece01(0x44d)]=_0x23fef2(0xb82),_0x451db5[_0x2bb281(0x32e)]=_0x2815c8(0x990)+_0x6a00f4(0x72d),_0x451db5[_0x4ece01(0x503)]=function(_0x162666,_0x511833){return _0x162666>_0x511833;},_0x451db5[_0x2bb281(0x912)]=function(_0x170b2b,_0x3e9f7b){return _0x170b2b!==_0x3e9f7b;},_0x451db5[_0x2bb281(0x663)]=_0x4ece01(0xaac);const _0x493690=_0x451db5,_0x32f254=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x51adfe=new Set(),_0x5e19f1=(_0x2997e8,_0x49d227)=>{const _0x2bfc97=_0x2bb281,_0x269aaf=_0x6a00f4,_0x14d08e=_0x6a00f4,_0x45fd6a=_0x2bb281,_0x533356=_0x23fef2;if(_0x493690[_0x2bfc97(0x488)](_0x493690[_0x269aaf(0x20c)],_0x493690[_0x269aaf(0x446)]))_0x4d8356=_0x493690[_0x269aaf(0x4a2)];else{if(_0x51adfe[_0x14d08e(0x408)](_0x49d227))return _0x493690[_0x2bfc97(0x7b9)](_0x493690[_0x45fd6a(0x64e)],_0x493690[_0x2bfc97(0x4f9)])?_0x36e892&&_0x3fede7[_0x533356(0xa4b)]():_0x2997e8;const _0x43c50e=_0x49d227[_0x45fd6a(0xb89)](/[;,;、,]/),_0x2bdc40=_0x43c50e[_0x14d08e(0x432)](_0x47988a=>'['+_0x47988a+']')[_0x269aaf(0x9f8)]('\x20'),_0x2b32c1=_0x43c50e[_0x269aaf(0x432)](_0x5705a0=>'['+_0x5705a0+']')[_0x533356(0x9f8)]('\x0a');_0x43c50e[_0x533356(0x2d5)+'ch'](_0x5caf65=>_0x51adfe[_0x269aaf(0x2d4)](_0x5caf65)),res='\x20';for(var _0x4b55a0=_0x493690[_0x269aaf(0x5ad)](_0x493690[_0x269aaf(0x47c)](_0x51adfe[_0x45fd6a(0x4ee)],_0x43c50e[_0x2bfc97(0xc1f)+'h']),-0x14b*-0x1+-0x366*0xb+0x2418);_0x493690[_0x14d08e(0x74a)](_0x4b55a0,_0x51adfe[_0x45fd6a(0x4ee)]);++_0x4b55a0)res+='[^'+_0x4b55a0+']\x20';return res;}};let _0x1a60ba=0x106*-0xa+0x2253+-0x1816,_0x3bf5f2=_0x1fddb2[_0x4ece01(0x25e)+'ce'](_0x32f254,_0x5e19f1);while(_0x493690[_0x2815c8(0x503)](_0x51adfe[_0x23fef2(0x4ee)],-0x1047+-0x2d7+0x131e)){if(_0x493690[_0x6a00f4(0x912)](_0x493690[_0x6a00f4(0x663)],_0x493690[_0x2815c8(0x663)])){const _0x441af3=_0x493690[_0x23fef2(0x607)][_0x2815c8(0xb89)]('|');let _0x4971f2=-0x189b+-0x9*-0x1e7+0x77c;while(!![]){switch(_0x441af3[_0x4971f2++]){case'0':_0x64a24a[_0x6a00f4(0xb8a)+_0x6a00f4(0x892)+_0x2bb281(0x215)](_0x493690[_0x6a00f4(0xb33)])[_0x6a00f4(0x1c2)]='';continue;case'1':_0x4aca50=-0x1b1a+-0x140e+0x2f28;continue;case'2':return;case'3':const _0x3556e4={};_0x3556e4[_0x23fef2(0xaca)]=_0x493690[_0x4ece01(0x44d)],_0x3556e4[_0x4ece01(0x67d)+'nt']=_0x2956ff,_0x481f15[_0x2bb281(0x529)](_0x3556e4);continue;case'4':const _0x3a1871={};_0x3a1871[_0x2bb281(0xaca)]=_0x493690[_0x2bb281(0x32e)],_0x3a1871[_0x2bb281(0x67d)+'nt']=_0x4e131c,_0x29791e[_0x4ece01(0x529)](_0x3a1871);continue;}break;}}else{const _0x2dc541='['+_0x1a60ba++ +_0x2bb281(0xb41)+_0x51adfe[_0x4ece01(0x1c2)+'s']()[_0x6a00f4(0x573)]()[_0x6a00f4(0x1c2)],_0x277d71='[^'+_0x493690[_0x2815c8(0x47c)](_0x1a60ba,0x1*0x36b+-0x1*-0x58d+-0x8f7)+_0x2815c8(0xb41)+_0x51adfe[_0x6a00f4(0x1c2)+'s']()[_0x2bb281(0x573)]()[_0x23fef2(0x1c2)];_0x3bf5f2=_0x3bf5f2+'\x0a\x0a'+_0x277d71,_0x51adfe[_0x2bb281(0x55c)+'e'](_0x51adfe[_0x2815c8(0x1c2)+'s']()[_0x2815c8(0x573)]()[_0x2bb281(0x1c2)]);}}return _0x3bf5f2;}function beautify(_0x15ea95){const _0x3c11a4=_0x414777,_0x2193eb=_0x414777,_0x12e1ce=_0x2a40d6,_0x550543=_0x2a40d6,_0x4dc0bb=_0x414777,_0x99c90f={'cenJg':function(_0x89aa91,_0x120ef8){return _0x89aa91+_0x120ef8;},'pyNHL':_0x3c11a4(0x80b)+'es','DnRjt':function(_0x2f745e,_0x537cc7){return _0x2f745e>=_0x537cc7;},'IKezr':function(_0x42f9d5,_0x36a4b8){return _0x42f9d5!==_0x36a4b8;},'AYMaB':_0x3c11a4(0xb9c),'LgFoQ':_0x12e1ce(0xc0f)+_0x2193eb(0x641)+_0x4dc0bb(0xc28)+_0x12e1ce(0x779)+_0x12e1ce(0xa5c)+_0x3c11a4(0xa60)+_0x2193eb(0x42e)+_0x4dc0bb(0xc38)+_0x4dc0bb(0x3c0)+_0x550543(0x640)+_0x2193eb(0x8a3)+_0x550543(0x2c4)+_0x3c11a4(0x657),'kGjOs':_0x2193eb(0x499),'UdATc':function(_0x39c734,_0x52713b){return _0x39c734(_0x52713b);},'fKzTW':function(_0x39633c,_0x37eea3){return _0x39633c+_0x37eea3;},'bVhaU':_0x3c11a4(0x8df)+_0x2193eb(0x3a4)+'rl','bGQzj':function(_0x1d3ef9,_0x540fb2){return _0x1d3ef9+_0x540fb2;},'WZdKP':_0x4dc0bb(0x38a)+'rl','WzwQM':function(_0x386455,_0x5122a0){return _0x386455(_0x5122a0);},'qdWVJ':function(_0x4d7853,_0x1dcf3b){return _0x4d7853+_0x1dcf3b;},'AWgcF':function(_0xefa9f2,_0x5660d7){return _0xefa9f2(_0x5660d7);},'KPOPy':function(_0x25ba89,_0x79299c){return _0x25ba89+_0x79299c;},'igTxi':_0x550543(0x823)+_0x4dc0bb(0x52a)+_0x550543(0x4c0),'istBK':function(_0x5da3d0,_0x545344){return _0x5da3d0(_0x545344);},'utlWp':_0x12e1ce(0xba9)+_0x2193eb(0x4c6)+_0x2193eb(0x9c4)+'l','XtFgz':function(_0xf97202,_0x5d047d){return _0xf97202(_0x5d047d);},'oFkKb':function(_0x21f91a,_0x322ca5){return _0x21f91a+_0x322ca5;},'diyph':function(_0x11a8dd,_0x10480d){return _0x11a8dd(_0x10480d);},'kRlDM':_0x2193eb(0x24c)+'l','FPITK':function(_0x4cb6a6,_0x30a43c){return _0x4cb6a6(_0x30a43c);},'HzaLU':function(_0x337366,_0x589342){return _0x337366+_0x589342;},'PNfZg':function(_0x5acbc1,_0x3a6b49){return _0x5acbc1(_0x3a6b49);},'yiBrz':_0x550543(0x9a7)+_0x550543(0x8d4)+_0x3c11a4(0xa1b),'PGjqy':function(_0x3eec92,_0x3cca9a){return _0x3eec92(_0x3cca9a);},'MPCoo':_0x4dc0bb(0x686),'VJJyl':_0x3c11a4(0x526)+'rl','HstUm':function(_0x3a1f42,_0x550010){return _0x3a1f42(_0x550010);},'Bsdpj':function(_0x34dbec,_0x47d189){return _0x34dbec(_0x47d189);},'yusdH':_0x3c11a4(0xba9)+_0x12e1ce(0x1c7)+_0x550543(0x3a4)+'rl','fCSKH':function(_0x1dec1c,_0x835cde){return _0x1dec1c(_0x835cde);},'lBrmG':_0x12e1ce(0x450),'JkCNz':function(_0x1c07c2,_0x27709b){return _0x1c07c2+_0x27709b;},'lykPv':function(_0x2c243e,_0x2b273e){return _0x2c243e(_0x2b273e);},'bqkMF':_0x4dc0bb(0x502)+'l','GLrnv':function(_0x54f82e,_0x5ba3e8){return _0x54f82e+_0x5ba3e8;},'dzqkb':function(_0x5ad39f,_0x21c1f7){return _0x5ad39f+_0x21c1f7;},'BWLfj':_0x550543(0xba9)+':','XwRbS':function(_0x4a4828,_0x5e5ce3){return _0x4a4828+_0x5e5ce3;},'jIgTp':function(_0x48e07d,_0x45a160){return _0x48e07d+_0x45a160;},'khQYO':function(_0x24a5da,_0x147a3d){return _0x24a5da(_0x147a3d);},'xRhEb':function(_0x2daa7f,_0x5f2050){return _0x2daa7f+_0x5f2050;},'IrNsE':function(_0x5c127d,_0x4927ff){return _0x5c127d+_0x4927ff;},'hyFPb':_0x4dc0bb(0x75a)+'l','WPJIs':function(_0x1ec4ad,_0x28c735){return _0x1ec4ad+_0x28c735;},'zfbMi':function(_0x3935b6,_0x32cc75){return _0x3935b6+_0x32cc75;},'iArxK':_0x2193eb(0x7b5)+_0x2193eb(0x8d4)+_0x550543(0xa1b),'ydyDJ':function(_0x39fea6,_0x3ec459){return _0x39fea6+_0x3ec459;},'DcBHh':function(_0x2f61ab,_0x14f307){return _0x2f61ab(_0x14f307);},'kiBMV':function(_0x23004a,_0x56ca4f){return _0x23004a+_0x56ca4f;},'DXPnp':_0x12e1ce(0x238)+'rl','UTmfm':function(_0x5b6423,_0x5b5592){return _0x5b6423(_0x5b5592);},'KqIVZ':function(_0x4a13eb,_0x8094d8){return _0x4a13eb(_0x8094d8);},'KfdaV':_0x2193eb(0x21f),'iwcaE':function(_0x51da5e,_0x38c171){return _0x51da5e(_0x38c171);},'rikZf':function(_0x4a2417,_0xd316ec){return _0x4a2417+_0xd316ec;},'hKGpl':_0x2193eb(0x73b)+_0x550543(0x52a)+_0x2193eb(0x4c0),'Pmnks':function(_0x27f668,_0x368de3){return _0x27f668(_0x368de3);},'xagAx':function(_0x43399d,_0x4aeb46){return _0x43399d+_0x4aeb46;},'YrvSG':function(_0x438762,_0x35554e){return _0x438762(_0x35554e);},'smUSM':_0x12e1ce(0xba9)+_0x12e1ce(0xc2d),'abCqJ':function(_0x42348d,_0x41949d){return _0x42348d(_0x41949d);},'rachZ':function(_0x47486f,_0x10bfd8){return _0x47486f+_0x10bfd8;},'jWzSv':function(_0x46db0f,_0x1a8ef8){return _0x46db0f(_0x1a8ef8);},'gzTXN':function(_0x2dcb37,_0x30848a){return _0x2dcb37(_0x30848a);},'SWBTF':_0x12e1ce(0x859)+_0x12e1ce(0x52a)+_0x550543(0x4c0),'UPMxE':function(_0x5bb4db,_0x5de8ff){return _0x5bb4db(_0x5de8ff);},'ljaIA':function(_0x4546ea,_0x13a48c){return _0x4546ea+_0x13a48c;},'Hiamq':_0x2193eb(0x839)+_0x550543(0x8d4)+_0x3c11a4(0xa1b),'NhKGR':function(_0x5c1f95,_0x438853){return _0x5c1f95+_0x438853;},'Artgu':_0x3c11a4(0xba9),'mmqBI':function(_0x4f2d68,_0x139b2a){return _0x4f2d68(_0x139b2a);},'mTeYa':function(_0x1e464a,_0x528d03){return _0x1e464a+_0x528d03;},'cpeWN':_0x4dc0bb(0xba9)+_0x550543(0x5ab),'aLKPj':function(_0x2202ed,_0x277bbd){return _0x2202ed(_0x277bbd);},'hhiag':function(_0x3ea657,_0x3e813e){return _0x3ea657>=_0x3e813e;},'IrFeG':_0x550543(0xb1b),'opbSG':function(_0x120094,_0x2f3ee2){return _0x120094+_0x2f3ee2;},'NQZhx':_0x3c11a4(0x4c6)+_0x3c11a4(0x9c4)+'l','LPjmd':function(_0x2ea45b,_0x42873d){return _0x2ea45b(_0x42873d);},'hBLjV':_0x4dc0bb(0x4c6)+_0x4dc0bb(0x5ab),'PcDrH':_0x12e1ce(0x5ab),'lYizf':function(_0x592c93,_0x2b2ac2){return _0x592c93(_0x2b2ac2);}};new_text=_0x15ea95[_0x2193eb(0x25e)+_0x4dc0bb(0x739)]('(','(')[_0x12e1ce(0x25e)+_0x2193eb(0x739)](')',')')[_0x2193eb(0x25e)+_0x550543(0x739)](':\x20',':')[_0x3c11a4(0x25e)+_0x3c11a4(0x739)](':',':')[_0x3c11a4(0x25e)+_0x2193eb(0x739)](',\x20',',')[_0x550543(0x25e)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x2a170d=prompt[_0x550543(0x710)+_0x2193eb(0x38d)][_0x2193eb(0xc1f)+'h'];_0x99c90f[_0x550543(0xc0a)](_0x2a170d,-0x2227+-0x467*-0x2+0x1959);--_0x2a170d){if(_0x99c90f[_0x3c11a4(0x706)](_0x99c90f[_0x2193eb(0x7af)],_0x99c90f[_0x4dc0bb(0x7af)]))_0x5cfdce[_0x550543(0x438)]();else{const _0x5e326b=_0x99c90f[_0x2193eb(0x7d3)][_0x12e1ce(0xb89)]('|');let _0x7217cc=-0x5*-0x733+-0x7bd*0x1+0x2*-0xe21;while(!![]){switch(_0x5e326b[_0x7217cc++]){case'0':new_text=new_text[_0x12e1ce(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x2193eb(0x789)](_0x99c90f[_0x2193eb(0x273)],_0x99c90f[_0x550543(0x59a)](String,_0x2a170d)),_0x99c90f[_0x2193eb(0x453)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x4dc0bb(0x59a)](String,_0x2a170d)));continue;case'1':new_text=new_text[_0x2193eb(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x550543(0x80c)](_0x99c90f[_0x12e1ce(0x714)],_0x99c90f[_0x3c11a4(0x643)](String,_0x2a170d)),_0x99c90f[_0x12e1ce(0x649)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x2193eb(0xb7e)](String,_0x2a170d)));continue;case'2':new_text=new_text[_0x4dc0bb(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x550543(0x392)](_0x99c90f[_0x2193eb(0x61b)],_0x99c90f[_0x12e1ce(0x643)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x80c)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x550543(0x8c2)](String,_0x2a170d)));continue;case'3':new_text=new_text[_0x12e1ce(0x25e)+_0x550543(0x739)](_0x99c90f[_0x3c11a4(0x453)](_0x99c90f[_0x4dc0bb(0x5be)],_0x99c90f[_0x12e1ce(0x70e)](String,_0x2a170d)),_0x99c90f[_0x550543(0x4a0)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x2193eb(0xbba)](String,_0x2a170d)));continue;case'4':new_text=new_text[_0x550543(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x2193eb(0x789)](_0x99c90f[_0x3c11a4(0x4bf)],_0x99c90f[_0x2193eb(0x8ad)](String,_0x2a170d)),_0x99c90f[_0x3c11a4(0x528)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x550543(0x44a)](String,_0x2a170d)));continue;case'5':new_text=new_text[_0x4dc0bb(0x25e)+_0x550543(0x739)](_0x99c90f[_0x4dc0bb(0x80c)](_0x99c90f[_0x4dc0bb(0xc62)],_0x99c90f[_0x2193eb(0x512)](String,_0x2a170d)),_0x99c90f[_0x3c11a4(0x649)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x550543(0x8ad)](String,_0x2a170d)));continue;case'6':new_text=new_text[_0x550543(0x25e)+_0x3c11a4(0x739)](_0x99c90f[_0x2193eb(0x528)](_0x99c90f[_0x3c11a4(0xbab)],_0x99c90f[_0x550543(0x8c2)](String,_0x2a170d)),_0x99c90f[_0x2193eb(0x392)](_0x99c90f[_0x2193eb(0xb7b)],_0x99c90f[_0x550543(0x59a)](String,_0x2a170d)));continue;case'7':new_text=new_text[_0x3c11a4(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x3c11a4(0x649)](_0x99c90f[_0x3c11a4(0x472)],_0x99c90f[_0x12e1ce(0xc1c)](String,_0x2a170d)),_0x99c90f[_0x550543(0x528)](_0x99c90f[_0x550543(0xb7b)],_0x99c90f[_0x4dc0bb(0x231)](String,_0x2a170d)));continue;case'8':new_text=new_text[_0x12e1ce(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x4dc0bb(0x649)](_0x99c90f[_0x3c11a4(0x1f5)],_0x99c90f[_0x550543(0x242)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x4a0)](_0x99c90f[_0x3c11a4(0xb7b)],_0x99c90f[_0x3c11a4(0x512)](String,_0x2a170d)));continue;case'9':new_text=new_text[_0x550543(0x25e)+_0x550543(0x739)](_0x99c90f[_0x550543(0x789)](_0x99c90f[_0x12e1ce(0xc47)],_0x99c90f[_0x550543(0x231)](String,_0x2a170d)),_0x99c90f[_0x2193eb(0x7c7)](_0x99c90f[_0x2193eb(0xb7b)],_0x99c90f[_0x12e1ce(0x45b)](String,_0x2a170d)));continue;case'10':new_text=new_text[_0x2193eb(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x2193eb(0x453)](_0x99c90f[_0x4dc0bb(0x564)],_0x99c90f[_0x4dc0bb(0xc1c)](String,_0x2a170d)),_0x99c90f[_0x550543(0x953)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x4dc0bb(0xc1c)](String,_0x2a170d)));continue;case'11':new_text=new_text[_0x550543(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x550543(0x8ab)](_0x99c90f[_0x4dc0bb(0x23c)],_0x99c90f[_0x4dc0bb(0x512)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x649)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x2193eb(0x45b)](String,_0x2a170d)));continue;case'12':new_text=new_text[_0x3c11a4(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x3c11a4(0xb42)](_0x99c90f[_0x550543(0xbab)],_0x99c90f[_0x4dc0bb(0x70e)](String,_0x2a170d)),_0x99c90f[_0x550543(0x789)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x12e1ce(0x8ad)](String,_0x2a170d)));continue;case'13':new_text=new_text[_0x12e1ce(0x25e)+_0x3c11a4(0x739)](_0x99c90f[_0x12e1ce(0x3ee)](_0x99c90f[_0x3c11a4(0x273)],_0x99c90f[_0x550543(0xb8d)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x70f)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x3c11a4(0x231)](String,_0x2a170d)));continue;case'14':new_text=new_text[_0x3c11a4(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x3c11a4(0x400)](_0x99c90f[_0x4dc0bb(0x578)],_0x99c90f[_0x550543(0x643)](String,_0x2a170d)),_0x99c90f[_0x550543(0x5a9)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x3c11a4(0x44a)](String,_0x2a170d)));continue;case'15':new_text=new_text[_0x12e1ce(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x2193eb(0x7be)](_0x99c90f[_0x3c11a4(0x921)],_0x99c90f[_0x2193eb(0x242)](String,_0x2a170d)),_0x99c90f[_0x2193eb(0x3f4)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x4dc0bb(0xc44)](String,_0x2a170d)));continue;case'16':new_text=new_text[_0x12e1ce(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x2193eb(0xaa5)](_0x99c90f[_0x3c11a4(0x6b4)],_0x99c90f[_0x550543(0x8b1)](String,_0x2a170d)),_0x99c90f[_0x12e1ce(0x953)](_0x99c90f[_0x2193eb(0xb7b)],_0x99c90f[_0x550543(0x205)](String,_0x2a170d)));continue;case'17':new_text=new_text[_0x3c11a4(0x25e)+_0x2193eb(0x739)](_0x99c90f[_0x4dc0bb(0x8ab)](_0x99c90f[_0x2193eb(0x222)],_0x99c90f[_0x3c11a4(0x44a)](String,_0x2a170d)),_0x99c90f[_0x2193eb(0x953)](_0x99c90f[_0x2193eb(0xb7b)],_0x99c90f[_0x3c11a4(0x741)](String,_0x2a170d)));continue;case'18':new_text=new_text[_0x550543(0x25e)+_0x3c11a4(0x739)](_0x99c90f[_0x2193eb(0x908)](_0x99c90f[_0x3c11a4(0x82c)],_0x99c90f[_0x4dc0bb(0xab6)](String,_0x2a170d)),_0x99c90f[_0x550543(0x6c6)](_0x99c90f[_0x12e1ce(0xb7b)],_0x99c90f[_0x3c11a4(0xa79)](String,_0x2a170d)));continue;case'19':new_text=new_text[_0x4dc0bb(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x3c11a4(0x392)](_0x99c90f[_0x4dc0bb(0xb2f)],_0x99c90f[_0x3c11a4(0xab7)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x5e8)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x3c11a4(0x58b)](String,_0x2a170d)));continue;case'20':new_text=new_text[_0x3c11a4(0x25e)+_0x4dc0bb(0x739)](_0x99c90f[_0x2193eb(0x3ee)](_0x99c90f[_0x2193eb(0xc47)],_0x99c90f[_0x3c11a4(0x794)](String,_0x2a170d)),_0x99c90f[_0x12e1ce(0x80c)](_0x99c90f[_0x3c11a4(0xb7b)],_0x99c90f[_0x3c11a4(0x45b)](String,_0x2a170d)));continue;case'21':new_text=new_text[_0x550543(0x25e)+_0x12e1ce(0x739)](_0x99c90f[_0x12e1ce(0x789)](_0x99c90f[_0x4dc0bb(0x543)],_0x99c90f[_0x3c11a4(0x3f3)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x460)](_0x99c90f[_0x4dc0bb(0xb7b)],_0x99c90f[_0x550543(0xc1c)](String,_0x2a170d)));continue;case'22':new_text=new_text[_0x3c11a4(0x25e)+_0x3c11a4(0x739)](_0x99c90f[_0x12e1ce(0x70f)](_0x99c90f[_0x12e1ce(0x4b0)],_0x99c90f[_0x550543(0xc44)](String,_0x2a170d)),_0x99c90f[_0x4dc0bb(0x4a0)](_0x99c90f[_0x3c11a4(0xb7b)],_0x99c90f[_0x2193eb(0x741)](String,_0x2a170d)));continue;case'23':new_text=new_text[_0x2193eb(0x25e)+_0x550543(0x739)](_0x99c90f[_0x4dc0bb(0xbc7)](_0x99c90f[_0x550543(0xbeb)],_0x99c90f[_0x4dc0bb(0xb16)](String,_0x2a170d)),_0x99c90f[_0x12e1ce(0x6bd)](_0x99c90f[_0x3c11a4(0xb7b)],_0x99c90f[_0x550543(0x44a)](String,_0x2a170d)));continue;case'24':new_text=new_text[_0x550543(0x25e)+_0x550543(0x739)](_0x99c90f[_0x3c11a4(0x5e8)](_0x99c90f[_0x4dc0bb(0x735)],_0x99c90f[_0x12e1ce(0x58b)](String,_0x2a170d)),_0x99c90f[_0x12e1ce(0x80c)](_0x99c90f[_0x3c11a4(0xb7b)],_0x99c90f[_0x3c11a4(0x59a)](String,_0x2a170d)));continue;}break;}}}new_text=_0x99c90f[_0x3c11a4(0x2f7)](replaceUrlWithFootnote,new_text);for(let _0x4ead60=prompt[_0x4dc0bb(0x710)+_0x550543(0x38d)][_0x2193eb(0xc1f)+'h'];_0x99c90f[_0x12e1ce(0x873)](_0x4ead60,0x7*-0x20e+-0x121d*0x1+0x207f);--_0x4ead60){if(_0x99c90f[_0x3c11a4(0x706)](_0x99c90f[_0x2193eb(0x8da)],_0x99c90f[_0x550543(0x8da)]))try{_0x3b345b=_0x242a69[_0x4dc0bb(0x41d)](_0x99c90f[_0x550543(0x789)](_0x2f6251,_0x452661))[_0x99c90f[_0x12e1ce(0xafa)]],_0x1bbb00='';}catch(_0x15d913){_0x566d0c=_0x3b1d5e[_0x550543(0x41d)](_0x315d45)[_0x99c90f[_0x550543(0xafa)]],_0x1215af='';}else new_text=new_text[_0x550543(0x25e)+'ce'](_0x99c90f[_0x12e1ce(0x680)](_0x99c90f[_0x12e1ce(0x2a8)],_0x99c90f[_0x2193eb(0x77a)](String,_0x4ead60)),prompt[_0x3c11a4(0x710)+_0x3c11a4(0x38d)][_0x4ead60]),new_text=new_text[_0x3c11a4(0x25e)+'ce'](_0x99c90f[_0x3c11a4(0x3f4)](_0x99c90f[_0x12e1ce(0x254)],_0x99c90f[_0x4dc0bb(0x3f3)](String,_0x4ead60)),prompt[_0x550543(0x710)+_0x2193eb(0x38d)][_0x4ead60]),new_text=new_text[_0x550543(0x25e)+'ce'](_0x99c90f[_0x4dc0bb(0x4a0)](_0x99c90f[_0x3c11a4(0xb35)],_0x99c90f[_0x4dc0bb(0x6f0)](String,_0x4ead60)),prompt[_0x2193eb(0x710)+_0x4dc0bb(0x38d)][_0x4ead60]);}return new_text=new_text[_0x3c11a4(0x25e)+_0x550543(0x739)]('[]',''),new_text=new_text[_0x4dc0bb(0x25e)+_0x2193eb(0x739)]('((','('),new_text=new_text[_0x550543(0x25e)+_0x12e1ce(0x739)]('))',')'),new_text=new_text[_0x550543(0x25e)+_0x3c11a4(0x739)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x4e7b17=_0x414777,_0x463997=_0x414777,_0x23debe=_0x414777,_0x288e49=_0x2dcc0e,_0x4790a4=_0x414777,_0x362177={'rmxHS':function(_0x3930b8,_0x4a73db){return _0x3930b8!==_0x4a73db;},'qTpjr':_0x4e7b17(0x9b8),'Qzedq':_0x463997(0x75f),'Jdrqk':function(_0x5ff7c2,_0x388481){return _0x5ff7c2>_0x388481;},'OVapp':function(_0x53d331,_0x42ffbc){return _0x53d331(_0x42ffbc);},'zsLpH':_0x23debe(0xbb4)+_0x4e7b17(0xb06),'OZoXc':function(_0x349877,_0x545999){return _0x349877+_0x545999;},'ljOiD':_0x288e49(0x73c)+_0x4790a4(0x3e8)+_0x288e49(0x970)+_0x23debe(0xa88)+_0x288e49(0x536)+_0x23debe(0x666)+_0x4790a4(0x56a)+_0x23debe(0x95c)+_0x23debe(0x300)+_0x4e7b17(0x723)+_0x288e49(0x3f6),'nXJsr':_0x4790a4(0x788)+_0x288e49(0x815),'DveUG':function(_0x3b4622,_0x3db211){return _0x3b4622!==_0x3db211;},'moXoG':_0x23debe(0x56b),'TwGoH':_0x288e49(0x8e6),'kHktG':_0x23debe(0xb82),'FaAYu':function(_0x3662cc,_0x32b492){return _0x3662cc+_0x32b492;},'QWitV':function(_0x4641ef,_0xecd2b1){return _0x4641ef+_0xecd2b1;},'PWPsd':function(_0x5b17a0,_0x3090be){return _0x5b17a0+_0x3090be;},'agVPQ':function(_0x2b6077,_0x1e7336){return _0x2b6077+_0x1e7336;},'JUryl':_0x463997(0xbb4),'FAZSW':_0x463997(0x5dd),'OQGLd':_0x4e7b17(0x69d)+'识','sRVrl':_0x288e49(0x26c)+_0x4e7b17(0x692)+_0x4e7b17(0xaab)+_0x4e7b17(0x806)+_0x288e49(0xb5f)+_0x288e49(0x974)+_0x4e7b17(0x5b0)+_0x23debe(0x389)+_0x288e49(0x37e)+_0x288e49(0x998)+_0x463997(0xc5e)+_0x4e7b17(0xbea)+_0x23debe(0x220),'xSWEU':function(_0x176c7b,_0x4af26a){return _0x176c7b!=_0x4af26a;},'miFQZ':function(_0xe3a07e,_0x1c32a7,_0x5922c7){return _0xe3a07e(_0x1c32a7,_0x5922c7);},'rsSgS':_0x463997(0x4c6)+_0x4e7b17(0x95d)+_0x288e49(0x206)+_0x23debe(0x5dc)+_0x463997(0x618)+_0x23debe(0xc11),'QgRss':function(_0x418f08,_0x70f014){return _0x418f08+_0x70f014;}},_0x5f0d91={'method':_0x362177[_0x4790a4(0xb81)],'headers':headers,'body':_0x362177[_0x288e49(0x55b)](b64EncodeUnicode,JSON[_0x463997(0x898)+_0x23debe(0x247)]({'messages':[{'role':_0x362177[_0x23debe(0x9a1)],'content':_0x362177[_0x288e49(0x5bd)](_0x362177[_0x4e7b17(0xa2a)](_0x362177[_0x463997(0x78a)](_0x362177[_0x463997(0x554)](document[_0x4e7b17(0xb8a)+_0x4e7b17(0x892)+_0x4e7b17(0x215)](_0x362177[_0x23debe(0xa1e)])[_0x23debe(0x394)+_0x4e7b17(0x795)][_0x288e49(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x288e49(0x25e)+'ce'](/<hr.*/gs,'')[_0x4790a4(0x25e)+'ce'](/<[^>]+>/g,'')[_0x4e7b17(0x25e)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x362177[_0x288e49(0x3a8)]),original_search_query),_0x362177[_0x4790a4(0xba2)])},{'role':_0x362177[_0x4790a4(0x9a1)],'content':_0x362177[_0x23debe(0x4d5)]}][_0x4790a4(0x5ee)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x362177[_0x4790a4(0x9ff)](document[_0x23debe(0xb8a)+_0x4790a4(0x892)+_0x4e7b17(0x215)](_0x362177[_0x4790a4(0x8a7)])[_0x4e7b17(0x394)+_0x4e7b17(0x795)],''))return;_0x362177[_0x4790a4(0x991)](fetch,_0x362177[_0x4e7b17(0x9e0)],_0x5f0d91)[_0x463997(0x249)](_0x40d3a8=>_0x40d3a8[_0x288e49(0xb6b)]())[_0x288e49(0x249)](_0x408a1f=>{const _0x32b223=_0x23debe,_0x3ef0cd=_0x23debe,_0x250be2=_0x288e49,_0x4050b0=_0x463997,_0x3184c9=_0x4e7b17,_0x52c6dc={'oZZzK':function(_0xfd6681,_0x36a7c5){const _0x129a83=_0x8015;return _0x362177[_0x129a83(0x55b)](_0xfd6681,_0x36a7c5);}};_0x362177[_0x32b223(0x838)](_0x362177[_0x3ef0cd(0x4e9)],_0x362177[_0x3ef0cd(0x4e9)])?Cphyvw[_0x3ef0cd(0x416)](_0x5c0e84,0x1*-0x1+-0x1785+0x1786):JSON[_0x3ef0cd(0x41d)](_0x408a1f[_0x250be2(0x80b)+'es'][-0x1*0x83+0xb8*0xb+-0x277*0x3][_0x3ef0cd(0x2b5)+'ge'][_0x3184c9(0x67d)+'nt'][_0x3ef0cd(0x25e)+_0x3ef0cd(0x739)]('\x0a',''))[_0x3ef0cd(0x2d5)+'ch'](_0x459335=>{const _0xf67474=_0x250be2,_0x53208a=_0x32b223,_0x4a714b=_0x3ef0cd,_0x3b8d55=_0x32b223,_0x2d36ee=_0x250be2;if(_0x362177[_0xf67474(0xb4c)](_0x362177[_0xf67474(0xbcc)],_0x362177[_0xf67474(0x384)])){if(_0x362177[_0x3b8d55(0x87d)](_0x362177[_0x4a714b(0x55b)](String,_0x459335)[_0x4a714b(0xc1f)+'h'],-0x6d8*-0x4+-0x22ac+0x1*0x751))document[_0x53208a(0xb8a)+_0xf67474(0x892)+_0x4a714b(0x215)](_0x362177[_0x4a714b(0x8a7)])[_0x2d36ee(0x394)+_0xf67474(0x795)]+=_0x362177[_0x4a714b(0x6d4)](_0x362177[_0x3b8d55(0x6d4)](_0x362177[_0x4a714b(0x862)],_0x362177[_0x53208a(0x55b)](String,_0x459335)),_0x362177[_0x4a714b(0x7a6)]);}else _0x21299c[_0x299803]++;});})[_0x23debe(0x9de)](_0x5d656e=>console[_0x4790a4(0x759)](_0x5d656e)),chatTextRawPlusComment=_0x362177[_0x4790a4(0x75d)](chatTextRaw,'\x0a\x0a'),text_offset=-(0x579+0xb7*-0x3+-0x353);}let chatTextRaw='',text_offset=-(-0xf7*-0x21+-0x1b99+-0xd9*0x5);const _0x56ebc8={};_0x56ebc8[_0x485cac(0xacf)+_0x38612e(0x624)+'pe']=_0x414777(0x74e)+_0x38612e(0xabb)+_0x2dcc0e(0xb74)+'n';const headers=_0x56ebc8;let prompt=JSON[_0x38612e(0x41d)](atob(document[_0x2a40d6(0xb8a)+_0x2a40d6(0x892)+_0x485cac(0x215)](_0x2a40d6(0x291)+'pt')[_0x38612e(0x9c9)+_0x414777(0xaed)+'t']));chatTextRawIntro='',text_offset=-(0x109e+0x1805+-0x28a2),(function(){const _0x1054a5=_0x2dcc0e,_0x172676=_0x414777,_0x5fb9da=_0x414777,_0x4ec024=_0x2dcc0e,_0x2451ea=_0x485cac,_0x22e8d2={'aMnyi':function(_0x51c391,_0x38981e){return _0x51c391<_0x38981e;},'vlUQv':function(_0xa1ef48,_0x1e51d1){return _0xa1ef48+_0x1e51d1;},'aFRTh':function(_0x4e0bb7,_0x252571){return _0x4e0bb7+_0x252571;},'cknxT':function(_0x14955d,_0x330b64){return _0x14955d+_0x330b64;},'eEQOE':function(_0x60abc6,_0x12a342){return _0x60abc6+_0x12a342;},'PCCxJ':function(_0x322462,_0x121377){return _0x322462+_0x121377;},'VOlsN':_0x1054a5(0xb79)+':','gwrSK':function(_0xd4db39,_0x540f2e){return _0xd4db39!==_0x540f2e;},'TKBsy':_0x1054a5(0x353),'bXgdV':_0x172676(0x2ef),'Ayeqk':_0x172676(0x27c),'mWtfI':function(_0x3ae12f,_0x407a7c){return _0x3ae12f(_0x407a7c);},'cZkbn':function(_0x214245,_0x38902){return _0x214245+_0x38902;},'Wlgka':function(_0x9d1758,_0x46d050){return _0x9d1758+_0x46d050;},'fuIKa':_0x2451ea(0x6de)+_0x4ec024(0x931)+_0x4ec024(0x7cd)+_0x2451ea(0x8d9),'pmvxn':_0x5fb9da(0x986)+_0x4ec024(0x608)+_0x172676(0x975)+_0x5fb9da(0xbb0)+_0x4ec024(0x9c5)+_0x1054a5(0xbf4)+'\x20)','aXITV':_0x4ec024(0xa53),'BkxEk':function(_0x1a818c){return _0x1a818c();}},_0x10a9d3=function(){const _0x5b07d9=_0x2451ea,_0x5ba0cb=_0x1054a5,_0x979a0b=_0x1054a5,_0x55ae53=_0x172676,_0x19f323=_0x172676,_0x5df7fa={'YRjPm':function(_0x29a3a8,_0x235117){const _0x2647ce=_0x8015;return _0x22e8d2[_0x2647ce(0x985)](_0x29a3a8,_0x235117);},'tToJw':_0x22e8d2[_0x5b07d9(0x5b9)]};if(_0x22e8d2[_0x5ba0cb(0x221)](_0x22e8d2[_0x979a0b(0x59b)],_0x22e8d2[_0x55ae53(0x667)])){let _0x374625;try{if(_0x22e8d2[_0x979a0b(0x221)](_0x22e8d2[_0x55ae53(0x5e2)],_0x22e8d2[_0x5b07d9(0x5e2)])){if(!_0xdbb71b)return;try{var _0x38c179=new _0x35adc4(_0x16416e[_0x5ba0cb(0xc1f)+'h']),_0x3ae733=new _0x3f19d6(_0x38c179);for(var _0x4a7a71=0x1*-0xd55+-0xd6*-0x17+-0x5e5,_0x1180a3=_0x265c84[_0x5b07d9(0xc1f)+'h'];_0x5df7fa[_0x19f323(0xa1d)](_0x4a7a71,_0x1180a3);_0x4a7a71++){_0x3ae733[_0x4a7a71]=_0x3b09de[_0x5ba0cb(0x405)+_0x979a0b(0x2c1)](_0x4a7a71);}return _0x38c179;}catch(_0x46f004){}}else _0x374625=_0x22e8d2[_0x55ae53(0x96d)](Function,_0x22e8d2[_0x19f323(0x2f8)](_0x22e8d2[_0x55ae53(0x8c0)](_0x22e8d2[_0x5b07d9(0x3df)],_0x22e8d2[_0x5ba0cb(0xad8)]),');'))();}catch(_0xe2fb16){_0x22e8d2[_0x19f323(0x221)](_0x22e8d2[_0x5ba0cb(0xa3c)],_0x22e8d2[_0x979a0b(0xa3c)])?_0x4bdc7c[_0x5ba0cb(0x759)](_0x5df7fa[_0x5b07d9(0xc3a)],_0x2eb509):_0x374625=window;}return _0x374625;}else{if(_0x22e8d2[_0x979a0b(0x985)](_0x22e8d2[_0x55ae53(0x40a)](_0x22e8d2[_0x55ae53(0x840)](_0x1f4bfc,_0x1a35c7[_0x2f68b2]),'\x0a')[_0x5b07d9(0xc1f)+'h'],-0x1f*0x53+0x30c+0x1*0xcdd))_0x48979b=_0x22e8d2[_0x55ae53(0x64c)](_0x22e8d2[_0x5b07d9(0x43c)](_0x29187d,_0x39d52d[_0x104356]),'\x0a');_0x134b38=_0x22e8d2[_0x5ba0cb(0x71b)](_0x1081e9,0x732+-0xa3b+0x30a);}},_0x2d4475=_0x22e8d2[_0x2451ea(0x5ec)](_0x10a9d3);_0x2d4475[_0x1054a5(0xc3d)+_0x4ec024(0xc14)+'l'](_0x248776,-0x12f7+-0x133*-0x12+0xd01);}());const _0x4aa652={};_0x4aa652[_0x38612e(0xaca)]=_0x2a40d6(0xba3)+'m',_0x4aa652[_0x2a40d6(0x67d)+'nt']=_0x414777(0x558)+_0x2a40d6(0x46c)+_0x414777(0xbe3)+_0x414777(0x491)+_0x2a40d6(0x66b)+_0x414777(0x628)+original_search_query+(_0x485cac(0xb45)+_0x414777(0x99c)+_0x2a40d6(0x398)+'。');const _0x562921={};_0x562921[_0x485cac(0xaca)]=_0x485cac(0xb82),_0x562921[_0x2a40d6(0x67d)+'nt']=_0x485cac(0x253)+_0x414777(0x7f6)+_0x2a40d6(0x548)+_0x2a40d6(0x504)+_0x414777(0x59f)+'。';const optionsIntro={'method':_0x485cac(0x8e6),'headers':headers,'body':b64EncodeUnicode(JSON[_0x414777(0x898)+_0x2a40d6(0x247)]({'messages':[_0x4aa652,_0x562921][_0x414777(0x5ee)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x414777(0x4c6)+_0x485cac(0x95d)+_0x2a40d6(0x206)+_0x2dcc0e(0x5dc)+_0x2a40d6(0x618)+_0x485cac(0xc11),optionsIntro)[_0x485cac(0x249)](_0x253ae1=>{const _0x490bda=_0x485cac,_0x246d1b=_0x485cac,_0x3e3ff2=_0x38612e,_0x4395bf=_0x2dcc0e,_0x1113c1=_0x414777,_0x3066ef={'TuWdH':function(_0x4945ef,_0x1b12e1){return _0x4945ef+_0x1b12e1;},'grsXo':_0x490bda(0x80b)+'es','jTMrm':_0x490bda(0xc53)+_0x490bda(0x531)+_0x246d1b(0x93f)+')','fVHar':_0x1113c1(0xc1e)+_0x1113c1(0xc0e)+_0x1113c1(0x2c9)+_0x4395bf(0xb6c)+_0x1113c1(0x27d)+_0x4395bf(0x2a0)+_0x490bda(0x3e0),'RUDvD':function(_0xcc026b,_0x278845){return _0xcc026b(_0x278845);},'veITv':_0x490bda(0x7a4),'PTygb':_0x4395bf(0x296),'DxiVl':_0x490bda(0x786),'DuzfN':function(_0x5a0605){return _0x5a0605();},'hxiFT':function(_0x4fb068,_0x3c72e9,_0x4bc791){return _0x4fb068(_0x3c72e9,_0x4bc791);},'fUmwR':function(_0x4c8859,_0x4a9716){return _0x4c8859*_0x4a9716;},'lnwZh':function(_0x41443a,_0x371f97){return _0x41443a**_0x371f97;},'oUlHv':_0x246d1b(0x7a9)+_0x4395bf(0x24b),'sIPFo':function(_0x3a77dc,_0x5f1fb9){return _0x3a77dc===_0x5f1fb9;},'hKIaY':_0x4395bf(0x545),'IWOkr':function(_0x274f88,_0x4ea5fa){return _0x274f88>_0x4ea5fa;},'BNHiF':function(_0xafcfa3,_0xcace57){return _0xafcfa3==_0xcace57;},'LhNXe':_0x4395bf(0x826)+']','rtVpE':_0x246d1b(0xa2b),'BCoeJ':_0x4395bf(0x5f6)+_0x246d1b(0x5b2),'ZFHsN':_0x4395bf(0x764)+_0x490bda(0x583),'EjnoL':_0x246d1b(0x764)+_0x1113c1(0x1e4)+_0x490bda(0x2b1),'NuPEa':function(_0x2aa4c9){return _0x2aa4c9();},'tDQAF':_0x1113c1(0x23b),'fUXAf':_0x4395bf(0xc52),'REvKV':_0x246d1b(0xc04),'eYKPS':_0x490bda(0x58c),'xUDfx':function(_0x4a5110,_0x4d5333){return _0x4a5110!==_0x4d5333;},'ylsEH':_0x3e3ff2(0xc4c),'cmYrv':_0x3e3ff2(0x2d3),'XcDST':function(_0x131446,_0x57440d){return _0x131446(_0x57440d);},'zyuWK':_0x3e3ff2(0xc56),'fugSg':_0x3e3ff2(0x3cf),'daxyn':_0x490bda(0x7b0),'zlOjb':function(_0x1c03d2,_0x129171){return _0x1c03d2==_0x129171;},'PgOyC':_0x4395bf(0xb3b),'UxEuR':_0x4395bf(0x9f6),'FiFQk':_0x490bda(0xbb4)+_0x490bda(0xb06),'tOBxU':_0x4395bf(0x8e6),'jxeIo':_0x1113c1(0x990)+_0x4395bf(0x72d),'mcugD':_0x1113c1(0xbb4),'PIEMU':_0x3e3ff2(0xb82),'QrYid':_0x246d1b(0x473)+'“','rVZDk':_0x490bda(0x8d2)+_0x3e3ff2(0xae4)+_0x246d1b(0xa02)+_0x3e3ff2(0x6f8)+_0x3e3ff2(0x44c)+_0x490bda(0x918)+_0x3e3ff2(0xc03)+_0x4395bf(0x995),'OmKJD':function(_0x2d5e4c,_0x141a10,_0x284b20){return _0x2d5e4c(_0x141a10,_0x284b20);},'JlPpj':_0x4395bf(0x4c6)+_0x246d1b(0x95d)+_0x490bda(0x206)+_0x1113c1(0x5dc)+_0x3e3ff2(0x618)+_0x3e3ff2(0xc11),'GmbTC':_0x1113c1(0xc39),'UOALG':_0x246d1b(0x360),'wfkff':_0x4395bf(0x9d3),'KvjVE':_0x1113c1(0x5ff),'fNFKZ':function(_0x476d33,_0x61414){return _0x476d33+_0x61414;},'AfsXz':_0x3e3ff2(0x7e3),'ujPzC':_0x4395bf(0x39d),'ENqRJ':function(_0x314a78,_0x8e99ae){return _0x314a78!==_0x8e99ae;},'PRwEc':_0x1113c1(0x50b),'OBCAL':_0x1113c1(0x89f),'KLMgv':function(_0x4418de,_0x45ad63){return _0x4418de<_0x45ad63;},'pKLAF':_0x1113c1(0x459),'ZnLvA':_0x246d1b(0x2a6),'STZQJ':_0x4395bf(0xb79)+':','SltYh':function(_0x2d40f7,_0x4a1add){return _0x2d40f7(_0x4a1add);},'MsIJq':function(_0x1be4d8){return _0x1be4d8();},'wGlzu':_0x1113c1(0x764)+_0x4395bf(0xad4)},_0x40c30e=_0x253ae1[_0x1113c1(0x99b)][_0x490bda(0x4c5)+_0x246d1b(0xa83)]();let _0x3af8e0='',_0x3b1cea='';_0x40c30e[_0x3e3ff2(0x5e1)]()[_0x1113c1(0x249)](function _0x28c79f({done:_0x10a400,value:_0xbe8efb}){const _0x1d1885=_0x4395bf,_0x2bb2b7=_0x246d1b,_0x322c50=_0x490bda,_0x145311=_0x1113c1,_0x285cc9=_0x4395bf,_0x460f4a={'pIGgz':function(_0x52b878,_0x455972){const _0x320b5f=_0x8015;return _0x3066ef[_0x320b5f(0x793)](_0x52b878,_0x455972);},'TKIcJ':_0x3066ef[_0x1d1885(0x90c)],'NVtvH':_0x3066ef[_0x2bb2b7(0xc18)],'TwYrD':_0x3066ef[_0x322c50(0x5a8)],'WXEdp':function(_0x12338c,_0x52916d){const _0xee65c6=_0x322c50;return _0x3066ef[_0xee65c6(0xa30)](_0x12338c,_0x52916d);},'RwjLp':_0x3066ef[_0x322c50(0x614)],'XyMlJ':_0x3066ef[_0x285cc9(0x97b)],'zsPNb':_0x3066ef[_0x145311(0x782)],'oUJRu':function(_0x6ae3de){const _0x53e489=_0x285cc9;return _0x3066ef[_0x53e489(0x979)](_0x6ae3de);},'jdWFH':function(_0x1965a7,_0x9f6dbf,_0x56f307){const _0x50c0dd=_0x285cc9;return _0x3066ef[_0x50c0dd(0x90e)](_0x1965a7,_0x9f6dbf,_0x56f307);},'AzKXq':function(_0x12ef53,_0x35a6c1){const _0x16540e=_0x285cc9;return _0x3066ef[_0x16540e(0x977)](_0x12ef53,_0x35a6c1);},'gKxJZ':function(_0x2a0a6b,_0x454382){const _0x289ae0=_0x2bb2b7;return _0x3066ef[_0x289ae0(0xa5b)](_0x2a0a6b,_0x454382);},'kjamn':_0x3066ef[_0x322c50(0xacb)],'LIhAG':function(_0x421c72,_0x204125){const _0xd1cf9b=_0x285cc9;return _0x3066ef[_0xd1cf9b(0x42c)](_0x421c72,_0x204125);},'YVRgW':_0x3066ef[_0x322c50(0x7e8)],'jJPRJ':function(_0x4e54cf,_0x46bddd){const _0x58a974=_0x322c50;return _0x3066ef[_0x58a974(0x515)](_0x4e54cf,_0x46bddd);},'Ubjzo':function(_0x279ae8,_0x4a340f){const _0x3f6dcc=_0x322c50;return _0x3066ef[_0x3f6dcc(0xbb6)](_0x279ae8,_0x4a340f);},'FYXak':_0x3066ef[_0x2bb2b7(0x362)],'tgbWk':_0x3066ef[_0x322c50(0x4e0)],'Tdypl':_0x3066ef[_0x145311(0x6cf)],'jbHiE':_0x3066ef[_0x145311(0x8b0)],'amCBm':_0x3066ef[_0x145311(0x3aa)],'kBmBa':function(_0x4c4d17){const _0x2782a8=_0x285cc9;return _0x3066ef[_0x2782a8(0x236)](_0x4c4d17);},'ihpUe':_0x3066ef[_0x145311(0x959)],'SFWWG':_0x3066ef[_0x285cc9(0x879)],'LqXbq':_0x3066ef[_0x1d1885(0x7ad)],'PWcgw':_0x3066ef[_0x145311(0xb4d)],'amtPC':function(_0x1f27b9,_0x453c63){const _0x39df1d=_0x285cc9;return _0x3066ef[_0x39df1d(0x871)](_0x1f27b9,_0x453c63);},'uhbTu':_0x3066ef[_0x1d1885(0x808)],'xwYwN':_0x3066ef[_0x1d1885(0xc35)],'HpVyh':function(_0x39c4a3,_0x56b679){const _0x1057ff=_0x285cc9;return _0x3066ef[_0x1057ff(0x49b)](_0x39c4a3,_0x56b679);},'MJJqZ':_0x3066ef[_0x1d1885(0x77f)],'zDYQG':_0x3066ef[_0x285cc9(0x6d7)],'jnYnI':_0x3066ef[_0x1d1885(0x36f)],'yoknX':function(_0x12302a,_0x4647a4){const _0x2703fc=_0x1d1885;return _0x3066ef[_0x2703fc(0x700)](_0x12302a,_0x4647a4);},'cfVVx':_0x3066ef[_0x285cc9(0x746)],'ibVdi':_0x3066ef[_0x1d1885(0x6ef)],'KXaZx':_0x3066ef[_0x285cc9(0x510)],'KPGfC':function(_0x495171){const _0x49d18f=_0x2bb2b7;return _0x3066ef[_0x49d18f(0x979)](_0x495171);},'ebZqm':_0x3066ef[_0x322c50(0x354)],'fXepk':_0x3066ef[_0x145311(0xa1c)],'fnGQB':_0x3066ef[_0x1d1885(0x99d)],'gCuaz':_0x3066ef[_0x2bb2b7(0x8ce)],'ebCkY':_0x3066ef[_0x322c50(0x7ba)],'swdtU':_0x3066ef[_0x2bb2b7(0x623)],'fkGdY':function(_0x24f53c,_0x256928,_0x193121){const _0x3cc4fd=_0x322c50;return _0x3066ef[_0x3cc4fd(0x61c)](_0x24f53c,_0x256928,_0x193121);},'iPKrs':_0x3066ef[_0x285cc9(0x8b9)],'asorF':_0x3066ef[_0x145311(0x4c2)],'hhmaz':_0x3066ef[_0x285cc9(0xc61)],'OKVgn':_0x3066ef[_0x1d1885(0x6af)],'zxXbS':_0x3066ef[_0x1d1885(0x9d8)],'SDfTo':function(_0x36708a,_0x2cdf2d){const _0x2ea775=_0x1d1885;return _0x3066ef[_0x2ea775(0xa42)](_0x36708a,_0x2cdf2d);},'fTKNP':_0x3066ef[_0x145311(0x652)],'MIgWL':_0x3066ef[_0x1d1885(0x68a)],'Akjup':function(_0x4aa13b,_0x5dcae9){const _0x5ca768=_0x285cc9;return _0x3066ef[_0x5ca768(0x84d)](_0x4aa13b,_0x5dcae9);},'OUTFB':_0x3066ef[_0x1d1885(0xaae)],'QlAup':_0x3066ef[_0x285cc9(0xb07)],'dzvcZ':function(_0x27a9d8,_0x44fec2){const _0x54001f=_0x285cc9;return _0x3066ef[_0x54001f(0x40f)](_0x27a9d8,_0x44fec2);},'IzZXU':_0x3066ef[_0x2bb2b7(0xb48)],'oBarT':_0x3066ef[_0x2bb2b7(0x4f0)],'sgywb':_0x3066ef[_0x285cc9(0x331)],'CIGMq':function(_0x3ec2ef,_0x33cb23){const _0x3350d1=_0x285cc9;return _0x3066ef[_0x3350d1(0x4af)](_0x3ec2ef,_0x33cb23);},'iCNsh':function(_0x57251b){const _0x2fab53=_0x2bb2b7;return _0x3066ef[_0x2fab53(0x9f0)](_0x57251b);},'nbzZP':function(_0x4b34f6,_0x1dc489){const _0x4a9cbe=_0x1d1885;return _0x3066ef[_0x4a9cbe(0xa42)](_0x4b34f6,_0x1dc489);},'slcoM':_0x3066ef[_0x145311(0x568)]};if(_0x10a400)return;const _0x5391de=new TextDecoder(_0x3066ef[_0x285cc9(0x36f)])[_0x322c50(0x85a)+'e'](_0xbe8efb);return _0x5391de[_0x1d1885(0xa4b)]()[_0x322c50(0xb89)]('\x0a')[_0x1d1885(0x2d5)+'ch'](function(_0x5e30be){const _0x3ae3ac=_0x2bb2b7,_0xd37037=_0x145311,_0x2b9105=_0x322c50,_0x3e591c=_0x285cc9,_0x29d225=_0x1d1885,_0x5448a9={'ymkPg':function(_0xe6e87e,_0x1d7879){const _0x49e399=_0x8015;return _0x460f4a[_0x49e399(0x999)](_0xe6e87e,_0x1d7879);},'FVxVO':_0x460f4a[_0x3ae3ac(0xa57)],'NLmWa':function(_0x1ab695,_0x4c114b){const _0x4afa9a=_0x3ae3ac;return _0x460f4a[_0x4afa9a(0xb2d)](_0x1ab695,_0x4c114b);},'BiCED':_0x460f4a[_0xd37037(0xbc4)],'vlune':_0x460f4a[_0xd37037(0x4be)],'EULvZ':function(_0x40f8fd,_0x1d14ce){const _0x570995=_0x3ae3ac;return _0x460f4a[_0x570995(0x212)](_0x40f8fd,_0x1d14ce);},'rokqS':function(_0x3be1dc,_0x5433ef){const _0x46db3e=_0xd37037;return _0x460f4a[_0x46db3e(0xc64)](_0x3be1dc,_0x5433ef);},'zKHFo':_0x460f4a[_0x3e591c(0x37d)],'rRTYu':_0x460f4a[_0x29d225(0x9f7)],'AzlRY':_0x460f4a[_0x29d225(0x3d1)],'YVvVi':_0x460f4a[_0x3e591c(0xbf9)],'sduhD':_0x460f4a[_0x29d225(0xa5a)],'PwJjk':function(_0xd3a0f5,_0x84b63f){const _0x16ba75=_0xd37037;return _0x460f4a[_0x16ba75(0x969)](_0xd3a0f5,_0x84b63f);},'BPVAK':_0x460f4a[_0x3e591c(0x2c7)],'yEHIa':_0x460f4a[_0x3ae3ac(0xb5d)],'vnnqv':_0x460f4a[_0x3e591c(0xa95)],'Bbvwq':function(_0x15345d){const _0x4870c0=_0x29d225;return _0x460f4a[_0x4870c0(0x44e)](_0x15345d);},'muMEn':_0x460f4a[_0x3ae3ac(0x60f)]};_0x3af8e0='';if(_0x460f4a[_0x29d225(0x2ab)](_0x5e30be[_0x2b9105(0xc1f)+'h'],-0x2197+0x1e70+0x32d))_0x3af8e0=_0x5e30be[_0x29d225(0x21c)](0x1ba7+0xd82+-0x1*0x2923);if(_0x460f4a[_0x29d225(0x989)](_0x3af8e0,_0x460f4a[_0x29d225(0x4ca)])){text_offset=-(-0x2*-0xeb1+0x2433*-0x1+-0x369*-0x2);const _0x126bfb={'method':_0x460f4a[_0xd37037(0x572)],'headers':headers,'body':_0x460f4a[_0x2b9105(0x772)](b64EncodeUnicode,JSON[_0x3e591c(0x898)+_0x3ae3ac(0x247)](prompt[_0x29d225(0x47f)]))};_0x460f4a[_0x3ae3ac(0x506)](fetch,_0x460f4a[_0x2b9105(0xb0f)],_0x126bfb)[_0xd37037(0x249)](_0x3303d4=>{const _0x184bef=_0x3e591c,_0x52ea4c=_0x29d225,_0x22eb9d=_0x2b9105,_0x4b284f=_0x3ae3ac,_0x24c550=_0x3ae3ac,_0x236bb0={'KWMWC':function(_0x7a7d7f,_0x28c1a2){const _0x290614=_0x8015;return _0x460f4a[_0x290614(0x999)](_0x7a7d7f,_0x28c1a2);},'IDnBK':_0x460f4a[_0x184bef(0xa57)],'DRNTE':_0x460f4a[_0x52ea4c(0xbf9)],'gSTTR':_0x460f4a[_0x184bef(0xa5a)],'rjInS':function(_0x5d407a,_0x2754bb){const _0x210f73=_0x184bef;return _0x460f4a[_0x210f73(0x772)](_0x5d407a,_0x2754bb);},'IMNaQ':_0x460f4a[_0x184bef(0x2c7)],'pSxSU':_0x460f4a[_0x52ea4c(0xb5d)],'MwypR':_0x460f4a[_0x22eb9d(0xa95)],'FWQUC':function(_0x120396){const _0x2977d0=_0x184bef;return _0x460f4a[_0x2977d0(0x70b)](_0x120396);},'GngfV':function(_0x2564d3,_0x22b4a1,_0x228421){const _0x5d0e52=_0x22eb9d;return _0x460f4a[_0x5d0e52(0xa63)](_0x2564d3,_0x22b4a1,_0x228421);},'JJwPE':function(_0xdeb315,_0x4ffcf2){const _0x361b80=_0x22eb9d;return _0x460f4a[_0x361b80(0x2b0)](_0xdeb315,_0x4ffcf2);},'rgGFK':function(_0x4b7eb3,_0x2b56c7){const _0x12f249=_0x24c550;return _0x460f4a[_0x12f249(0x917)](_0x4b7eb3,_0x2b56c7);},'xRVAK':_0x460f4a[_0x4b284f(0xbbf)],'IoWDR':function(_0x249197,_0x3f104d){const _0x5142ee=_0x52ea4c;return _0x460f4a[_0x5142ee(0xa13)](_0x249197,_0x3f104d);},'lmlUG':_0x460f4a[_0x24c550(0x1eb)],'zTLbr':function(_0x40a8ed,_0x5e02c4){const _0x182dc1=_0x184bef;return _0x460f4a[_0x182dc1(0x2ab)](_0x40a8ed,_0x5e02c4);},'KCapI':function(_0x280821,_0x2b21cf){const _0x2030b4=_0x52ea4c;return _0x460f4a[_0x2030b4(0x731)](_0x280821,_0x2b21cf);},'WVcyH':_0x460f4a[_0x24c550(0x4ca)],'tGFZw':_0x460f4a[_0x4b284f(0x4f6)],'eplPR':_0x460f4a[_0x52ea4c(0x73a)],'xeRTd':_0x460f4a[_0x4b284f(0x420)],'oJVJU':_0x460f4a[_0x24c550(0xc0c)],'oHXMA':function(_0x5b8144){const _0x1fc07f=_0x24c550;return _0x460f4a[_0x1fc07f(0x443)](_0x5b8144);},'IYtVR':_0x460f4a[_0x184bef(0xa73)],'MilZI':_0x460f4a[_0x4b284f(0xa9c)],'bErZF':_0x460f4a[_0x184bef(0x1ca)],'lDMIn':_0x460f4a[_0x22eb9d(0x37a)],'fsUNe':function(_0x24d85d,_0x334cd9){const _0x543e5c=_0x52ea4c;return _0x460f4a[_0x543e5c(0xc64)](_0x24d85d,_0x334cd9);},'Swotg':_0x460f4a[_0x52ea4c(0xb25)],'RhUKc':_0x460f4a[_0x4b284f(0x80d)],'YhOJI':function(_0x32d1b1,_0x87c310,_0x2378e8){const _0x228325=_0x184bef;return _0x460f4a[_0x228325(0xa63)](_0x32d1b1,_0x87c310,_0x2378e8);},'Immid':function(_0x582b0c,_0x16a296){const _0x2167d9=_0x52ea4c;return _0x460f4a[_0x2167d9(0x809)](_0x582b0c,_0x16a296);},'tSeNF':_0x460f4a[_0x4b284f(0x72f)],'VtYAZ':_0x460f4a[_0x52ea4c(0xb97)],'mFUTa':_0x460f4a[_0x22eb9d(0x60f)],'bZgDd':function(_0x38626f,_0x51b64b){const _0x167d17=_0x4b284f;return _0x460f4a[_0x167d17(0x989)](_0x38626f,_0x51b64b);},'yrTJD':_0x460f4a[_0x22eb9d(0x997)],'yJgUe':_0x460f4a[_0x184bef(0x4d2)],'yPYiz':_0x460f4a[_0x4b284f(0x4d0)],'tDIXE':function(_0x367374){const _0x20c7c5=_0x184bef;return _0x460f4a[_0x20c7c5(0x227)](_0x367374);},'xRGyl':_0x460f4a[_0x24c550(0x572)],'JZaCo':function(_0x277863,_0x1c5fa1){const _0x1f7c21=_0x52ea4c;return _0x460f4a[_0x1f7c21(0x809)](_0x277863,_0x1c5fa1);},'whVQQ':_0x460f4a[_0x24c550(0x31f)],'DvWYe':_0x460f4a[_0x184bef(0x2f9)],'UpmSr':_0x460f4a[_0x184bef(0x3f5)],'hYioi':_0x460f4a[_0x4b284f(0x9d6)],'ZUNDD':_0x460f4a[_0x184bef(0x26e)],'cipqE':function(_0x2172f9,_0x135eee,_0x4cbf47){const _0x309de1=_0x4b284f;return _0x460f4a[_0x309de1(0x506)](_0x2172f9,_0x135eee,_0x4cbf47);},'kazfX':_0x460f4a[_0x184bef(0xb0f)],'LmqiC':_0x460f4a[_0x52ea4c(0xa4f)],'DWQWs':_0x460f4a[_0x22eb9d(0x86d)],'VHvUa':function(_0x2df2d7,_0x3d1e22){const _0x5d3d58=_0x24c550;return _0x460f4a[_0x5d3d58(0xc64)](_0x2df2d7,_0x3d1e22);},'lGkix':_0x460f4a[_0x24c550(0x76c)],'ncBAG':_0x460f4a[_0x52ea4c(0x471)],'tJmuz':function(_0x2a411b,_0x56e160){const _0x1cf365=_0x52ea4c;return _0x460f4a[_0x1cf365(0x559)](_0x2a411b,_0x56e160);},'cprzJ':_0x460f4a[_0x24c550(0x1d4)],'sEAuf':_0x460f4a[_0x22eb9d(0x239)],'LlUZu':function(_0x4d0e9f,_0x3544af){const _0x3fb65c=_0x52ea4c;return _0x460f4a[_0x3fb65c(0x2ab)](_0x4d0e9f,_0x3544af);}},_0x24640a=_0x3303d4[_0x22eb9d(0x99b)][_0x52ea4c(0x4c5)+_0x52ea4c(0xa83)]();let _0x2116b0='',_0x3c4fc4='';_0x24640a[_0x52ea4c(0x5e1)]()[_0x22eb9d(0x249)](function _0x124196({done:_0x49735c,value:_0x51a73b}){const _0x3983b8=_0x52ea4c,_0x313b9b=_0x24c550,_0x50189b=_0x184bef,_0xabef51=_0x52ea4c,_0xecba9a=_0x52ea4c,_0x1d720a={'xlBHz':function(_0x1c6102,_0x36fe8c){const _0x2e78c2=_0x8015;return _0x5448a9[_0x2e78c2(0x727)](_0x1c6102,_0x36fe8c);},'WsfWH':_0x5448a9[_0x3983b8(0xa24)],'FjRdB':function(_0x51ab80,_0x54678a){const _0x33ee96=_0x3983b8;return _0x5448a9[_0x33ee96(0x76f)](_0x51ab80,_0x54678a);},'QnvUE':_0x5448a9[_0x313b9b(0xbf5)],'GJwFX':_0x5448a9[_0x3983b8(0x5f5)],'suNdE':function(_0x56f2d3,_0x598427){const _0x1b86c8=_0x50189b;return _0x5448a9[_0x1b86c8(0x9a5)](_0x56f2d3,_0x598427);},'CqrES':function(_0x18ce2e,_0x46574b){const _0x3b9435=_0x3983b8;return _0x5448a9[_0x3b9435(0x1fc)](_0x18ce2e,_0x46574b);},'GLPvd':_0x5448a9[_0x313b9b(0x626)],'FpZhp':_0x5448a9[_0x3983b8(0x3b0)],'avTVR':_0x5448a9[_0x3983b8(0x487)],'PvNvZ':_0x5448a9[_0x3983b8(0x23f)],'RglAt':_0x5448a9[_0xabef51(0x7fe)],'fdAGu':function(_0x4018fc,_0x36f3b7){const _0xfe7dff=_0xabef51;return _0x5448a9[_0xfe7dff(0x946)](_0x4018fc,_0x36f3b7);},'VmnOD':_0x5448a9[_0xabef51(0xa07)],'NWwVX':_0x5448a9[_0x313b9b(0x70d)],'uKZBG':_0x5448a9[_0x313b9b(0xbbd)],'NgSWM':function(_0x23c0c8,_0x4aebf6){const _0x339fb1=_0xabef51;return _0x5448a9[_0x339fb1(0x946)](_0x23c0c8,_0x4aebf6);},'nkWtt':function(_0x34efb0){const _0x1a6263=_0xecba9a;return _0x5448a9[_0x1a6263(0x78b)](_0x34efb0);}};if(_0x49735c)return;const _0x4848f0=new TextDecoder(_0x5448a9[_0xecba9a(0xb6d)])[_0x50189b(0x85a)+'e'](_0x51a73b);return _0x4848f0[_0xabef51(0xa4b)]()[_0x3983b8(0xb89)]('\x0a')[_0x3983b8(0x2d5)+'ch'](function(_0x4e2632){const _0x3bd690=_0x3983b8,_0x1e7a12=_0xecba9a,_0x5a0881=_0x3983b8,_0x4833a6=_0x313b9b,_0x23fa01=_0x3983b8,_0x4ea295={'rwctD':function(_0x1314aa,_0x1195dc){const _0x369b=_0x8015;return _0x236bb0[_0x369b(0x414)](_0x1314aa,_0x1195dc);},'AgEkc':_0x236bb0[_0x3bd690(0xb95)],'NCzqg':_0x236bb0[_0x3bd690(0xa96)],'YpmoL':_0x236bb0[_0x5a0881(0x7c8)],'AroNL':function(_0x2b213f,_0x5a9325){const _0x2e4b0d=_0x3bd690;return _0x236bb0[_0x2e4b0d(0x87c)](_0x2b213f,_0x5a9325);},'XVnGO':_0x236bb0[_0x4833a6(0xbb5)],'LIfaJ':_0x236bb0[_0x5a0881(0x513)],'GyojT':_0x236bb0[_0x4833a6(0xb46)],'VyLRl':function(_0x1338d8){const _0x48ba60=_0x3bd690;return _0x236bb0[_0x48ba60(0x685)](_0x1338d8);},'BDiHW':function(_0x567b64,_0x4f9c41,_0x3b54b1){const _0x306047=_0x1e7a12;return _0x236bb0[_0x306047(0x852)](_0x567b64,_0x4f9c41,_0x3b54b1);},'eplfl':function(_0x36ac28,_0x2ce5bc){const _0x505ab2=_0x3bd690;return _0x236bb0[_0x505ab2(0xaf6)](_0x36ac28,_0x2ce5bc);},'hHnxR':function(_0xad2ccc,_0x271882){const _0x4ac6c7=_0x5a0881;return _0x236bb0[_0x4ac6c7(0x592)](_0xad2ccc,_0x271882);},'SyKGP':_0x236bb0[_0x23fa01(0x65f)],'qGtEl':function(_0x4e3039,_0xe7fb09){const _0x5abb2c=_0x4833a6;return _0x236bb0[_0x5abb2c(0x372)](_0x4e3039,_0xe7fb09);},'VGdwX':_0x236bb0[_0x23fa01(0xac5)],'bzmaF':function(_0xc434dc,_0x466f6e){const _0x31f7e1=_0x3bd690;return _0x236bb0[_0x31f7e1(0x415)](_0xc434dc,_0x466f6e);},'yhgkK':function(_0x102351,_0x5a855d){const _0x352560=_0x4833a6;return _0x236bb0[_0x352560(0x371)](_0x102351,_0x5a855d);},'phpmU':_0x236bb0[_0x1e7a12(0x6a1)],'vnFGe':_0x236bb0[_0x3bd690(0x2bf)],'VDVPM':_0x236bb0[_0x1e7a12(0x1ed)],'uNQpg':_0x236bb0[_0x1e7a12(0x9fb)],'lZUqT':_0x236bb0[_0x5a0881(0x561)],'EZVLb':function(_0x17ea79){const _0x5ce19a=_0x3bd690;return _0x236bb0[_0x5ce19a(0x7e5)](_0x17ea79);},'mefXB':_0x236bb0[_0x3bd690(0x9fe)],'ZfJvi':_0x236bb0[_0x23fa01(0x836)],'tgCpx':_0x236bb0[_0x4833a6(0x887)],'garZa':_0x236bb0[_0x23fa01(0x6dd)],'dKnRn':function(_0x1f91a5,_0x13e05b){const _0x503163=_0x1e7a12;return _0x236bb0[_0x503163(0x597)](_0x1f91a5,_0x13e05b);},'zdZld':_0x236bb0[_0x3bd690(0x594)],'xZuGV':function(_0x35f1d8,_0x3be622){const _0x249748=_0x5a0881;return _0x236bb0[_0x249748(0x415)](_0x35f1d8,_0x3be622);},'WpsnR':_0x236bb0[_0x3bd690(0x844)],'dfdQK':function(_0x4dad52,_0x5c4e5f,_0xb6eba5){const _0x457ce1=_0x5a0881;return _0x236bb0[_0x457ce1(0xb58)](_0x4dad52,_0x5c4e5f,_0xb6eba5);},'yVuiJ':function(_0x545cc4,_0x8515c1){const _0x229ab6=_0x4833a6;return _0x236bb0[_0x229ab6(0xb54)](_0x545cc4,_0x8515c1);},'AWqei':_0x236bb0[_0x23fa01(0x31e)],'LVVOp':_0x236bb0[_0x5a0881(0x3fa)],'ythMr':_0x236bb0[_0x5a0881(0x251)]};_0x2116b0='';if(_0x236bb0[_0x23fa01(0x415)](_0x4e2632[_0x3bd690(0xc1f)+'h'],0x7*-0x161+0x1*-0x7d+0xa2a))_0x2116b0=_0x4e2632[_0x4833a6(0x21c)](0x16a1+0x15c6+-0x2c61);if(_0x236bb0[_0x23fa01(0xc37)](_0x2116b0,_0x236bb0[_0x3bd690(0x6a1)])){if(_0x236bb0[_0x4833a6(0x372)](_0x236bb0[_0x4833a6(0xa26)],_0x236bb0[_0x23fa01(0xa3e)]))return new _0x503e7e(_0x1add5d=>_0x364f3b(_0x1add5d,_0xcfcbdb));else{document[_0x1e7a12(0xb8a)+_0x3bd690(0x892)+_0x4833a6(0x215)](_0x236bb0[_0x4833a6(0x916)])[_0x4833a6(0x394)+_0x1e7a12(0x795)]='',_0x236bb0[_0x1e7a12(0xbc0)](chatmore);const _0xf2705f={'method':_0x236bb0[_0x5a0881(0x94b)],'headers':headers,'body':_0x236bb0[_0x1e7a12(0x7d6)](b64EncodeUnicode,JSON[_0x4833a6(0x898)+_0x4833a6(0x247)]({'messages':[{'role':_0x236bb0[_0x1e7a12(0x75b)],'content':_0x236bb0[_0x5a0881(0x414)](document[_0x1e7a12(0xb8a)+_0x3bd690(0x892)+_0x4833a6(0x215)](_0x236bb0[_0x1e7a12(0x3fd)])[_0x1e7a12(0x394)+_0x1e7a12(0x795)][_0x5a0881(0x25e)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4833a6(0x25e)+'ce'](/<hr.*/gs,'')[_0x3bd690(0x25e)+'ce'](/<[^>]+>/g,'')[_0x3bd690(0x25e)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x236bb0[_0x23fa01(0xbd4)],'content':_0x236bb0[_0x4833a6(0x414)](_0x236bb0[_0x5a0881(0x414)](_0x236bb0[_0x3bd690(0x963)],original_search_query),_0x236bb0[_0x5a0881(0x3af)])}][_0x5a0881(0x5ee)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x236bb0[_0x1e7a12(0x758)](fetch,_0x236bb0[_0x3bd690(0xbf3)],_0xf2705f)[_0x4833a6(0x249)](_0xff6038=>{const _0x4cb965=_0x4833a6,_0x543738=_0x1e7a12,_0x8c20dd=_0x5a0881,_0x3f9156=_0x3bd690,_0x36a0ff=_0x5a0881,_0x525d92={'zNuGT':function(_0x2b870a,_0x534038){const _0x2a7795=_0x8015;return _0x1d720a[_0x2a7795(0x52c)](_0x2b870a,_0x534038);},'xrPyd':_0x1d720a[_0x4cb965(0x86e)]};if(_0x1d720a[_0x4cb965(0xaec)](_0x1d720a[_0x543738(0x93a)],_0x1d720a[_0x543738(0x463)])){const _0x274545=_0xff6038[_0x543738(0x99b)][_0x36a0ff(0x4c5)+_0x4cb965(0xa83)]();let _0x3a9850='',_0x55e33c='';_0x274545[_0x4cb965(0x5e1)]()[_0x36a0ff(0x249)](function _0x83df8d({done:_0x2e02e0,value:_0x129907}){const _0x2d40ef=_0x36a0ff,_0x4ba6c9=_0x8c20dd,_0x116deb=_0x8c20dd,_0x4cd22a=_0x8c20dd,_0x595796=_0x543738,_0x56aa09={'PFMtB':function(_0x468f0f,_0x334992){const _0x8fcd70=_0x8015;return _0x4ea295[_0x8fcd70(0xa51)](_0x468f0f,_0x334992);},'BmUGX':_0x4ea295[_0x2d40ef(0xb9e)],'MMBDh':_0x4ea295[_0x4ba6c9(0x5c1)],'YBPnP':_0x4ea295[_0x4ba6c9(0x5c0)],'QqAhi':function(_0x2b2f28,_0x47d7f7){const _0x505963=_0x116deb;return _0x4ea295[_0x505963(0x3cd)](_0x2b2f28,_0x47d7f7);},'yQqRX':_0x4ea295[_0x2d40ef(0x805)],'xLnvw':_0x4ea295[_0x4cd22a(0x778)],'cotwN':_0x4ea295[_0x4cd22a(0x447)],'tciJZ':function(_0x565bf3){const _0x537179=_0x2d40ef;return _0x4ea295[_0x537179(0x9f9)](_0x565bf3);},'ygUIU':function(_0x1c1832,_0x10e2cc,_0x2a7231){const _0x235c57=_0x4cd22a;return _0x4ea295[_0x235c57(0x22c)](_0x1c1832,_0x10e2cc,_0x2a7231);},'JTXvC':function(_0xf4a4ca,_0x49ae19){const _0x50d0d3=_0x4cd22a;return _0x4ea295[_0x50d0d3(0xbf0)](_0xf4a4ca,_0x49ae19);},'UMtiS':function(_0x4d7e0e,_0x3ea388){const _0x59420d=_0x595796;return _0x4ea295[_0x59420d(0xbda)](_0x4d7e0e,_0x3ea388);},'uUTXJ':_0x4ea295[_0x116deb(0xba6)],'SIApM':function(_0x3ab682,_0x826e1a){const _0x4f9613=_0x2d40ef;return _0x4ea295[_0x4f9613(0x8b5)](_0x3ab682,_0x826e1a);},'DPemo':_0x4ea295[_0x2d40ef(0xa23)],'QQNJZ':function(_0x1c6a04,_0x3e2f88){const _0x58f395=_0x116deb;return _0x4ea295[_0x58f395(0x9fa)](_0x1c6a04,_0x3e2f88);},'zrknv':function(_0x330a3e,_0x3a6d8){const _0x36de87=_0x4cd22a;return _0x4ea295[_0x36de87(0x598)](_0x330a3e,_0x3a6d8);},'oOmdw':_0x4ea295[_0x4cd22a(0x8d1)],'irEJv':_0x4ea295[_0x116deb(0x244)],'vqSpl':_0x4ea295[_0x595796(0x32d)],'zOTJI':_0x4ea295[_0x4cd22a(0x6f6)],'dvcKk':_0x4ea295[_0x4ba6c9(0xbac)],'pmwFB':function(_0x14ca41){const _0x1fc30b=_0x4ba6c9;return _0x4ea295[_0x1fc30b(0x1c5)](_0x14ca41);},'CpVOJ':_0x4ea295[_0x4cd22a(0x91b)],'wpPgL':_0x4ea295[_0x4cd22a(0x648)],'bUdQJ':_0x4ea295[_0x116deb(0xb61)],'kfrCO':function(_0x3665e1,_0x347136){const _0x17fd27=_0x4ba6c9;return _0x4ea295[_0x17fd27(0xa51)](_0x3665e1,_0x347136);},'VFQbO':function(_0x43df9,_0x55deb8){const _0x5b07f2=_0x4ba6c9;return _0x4ea295[_0x5b07f2(0x8b5)](_0x43df9,_0x55deb8);},'IUwUY':_0x4ea295[_0x2d40ef(0x25b)],'vveQk':function(_0x3ec30e,_0x380b3a){const _0x2f8406=_0x595796;return _0x4ea295[_0x2f8406(0x464)](_0x3ec30e,_0x380b3a);},'YMwCa':_0x4ea295[_0x4ba6c9(0xc2f)],'kpeqJ':function(_0x5a2083,_0x12c970){const _0x305eb8=_0x116deb;return _0x4ea295[_0x305eb8(0x54b)](_0x5a2083,_0x12c970);},'lpsiR':_0x4ea295[_0x116deb(0xbf2)],'ZpuRW':function(_0x397c59,_0xeb5eab,_0x1f5ebc){const _0x38c0a6=_0x4cd22a;return _0x4ea295[_0x38c0a6(0xbbe)](_0x397c59,_0xeb5eab,_0x1f5ebc);},'CzKZK':function(_0x336cc2,_0x597ab7){const _0x445985=_0x4ba6c9;return _0x4ea295[_0x445985(0x1d0)](_0x336cc2,_0x597ab7);},'SvGCw':_0x4ea295[_0x116deb(0x9cb)]};if(_0x4ea295[_0x595796(0x464)](_0x4ea295[_0x595796(0xc16)],_0x4ea295[_0x4cd22a(0xc16)]))_0x336581=null;else{if(_0x2e02e0)return;const _0x11e128=new TextDecoder(_0x4ea295[_0x2d40ef(0x933)])[_0x4ba6c9(0x85a)+'e'](_0x129907);return _0x11e128[_0x595796(0xa4b)]()[_0x116deb(0xb89)]('\x0a')[_0x4ba6c9(0x2d5)+'ch'](function(_0x1daae0){const _0x35142c=_0x116deb,_0x597b12=_0x595796,_0x158130=_0x4cd22a,_0x117634=_0x4ba6c9,_0x2a498a=_0x2d40ef,_0x35199e={'rwDwu':function(_0x3968b3,_0x3be220){const _0x3755db=_0x8015;return _0x56aa09[_0x3755db(0x6ad)](_0x3968b3,_0x3be220);},'ZjRXj':_0x56aa09[_0x35142c(0x67a)],'jWTsL':_0x56aa09[_0x597b12(0x344)],'vULvj':_0x56aa09[_0x597b12(0x8c1)],'WFkoe':function(_0x24210f,_0x185216){const _0x4646a5=_0x158130;return _0x56aa09[_0x4646a5(0x922)](_0x24210f,_0x185216);},'yPCSL':_0x56aa09[_0x597b12(0xabc)],'slHZX':_0x56aa09[_0x2a498a(0xc57)],'efSOL':function(_0x1b310b,_0x4b9786){const _0x26f43a=_0x117634;return _0x56aa09[_0x26f43a(0x6ad)](_0x1b310b,_0x4b9786);},'oEaBW':_0x56aa09[_0x597b12(0x26a)],'iLQWe':function(_0x13376b){const _0x41f874=_0x35142c;return _0x56aa09[_0x41f874(0xa54)](_0x13376b);},'vTATv':function(_0x5c50aa,_0xd79d43,_0x4f9838){const _0x1a41a5=_0x35142c;return _0x56aa09[_0x1a41a5(0xa9d)](_0x5c50aa,_0xd79d43,_0x4f9838);},'MxzoO':function(_0x4b301c,_0x2f8a4c){const _0x2f3604=_0x158130;return _0x56aa09[_0x2f3604(0xbed)](_0x4b301c,_0x2f8a4c);},'eIqVw':function(_0x1e93f9,_0x5b772e){const _0x319b2b=_0x597b12;return _0x56aa09[_0x319b2b(0x36e)](_0x1e93f9,_0x5b772e);},'SbFPO':function(_0x441be0,_0x1b8025){const _0x513195=_0x117634;return _0x56aa09[_0x513195(0x922)](_0x441be0,_0x1b8025);},'vpqaO':_0x56aa09[_0x35142c(0x61e)]};if(_0x56aa09[_0x597b12(0x1df)](_0x56aa09[_0x158130(0x7b1)],_0x56aa09[_0x158130(0x7b1)])){_0x3a9850='';if(_0x56aa09[_0x2a498a(0xb5e)](_0x1daae0[_0x2a498a(0xc1f)+'h'],-0xe4*0x2+-0x23fc+0x25ca))_0x3a9850=_0x1daae0[_0x2a498a(0x21c)](-0x247b+0x1c88+0x7f9);if(_0x56aa09[_0x35142c(0x722)](_0x3a9850,_0x56aa09[_0x2a498a(0x43a)])){if(_0x56aa09[_0x158130(0x1df)](_0x56aa09[_0x35142c(0x9b7)],_0x56aa09[_0x158130(0x9b7)])){const _0x21afae=_0x56aa09[_0x158130(0xb0b)][_0x2a498a(0xb89)]('|');let _0x5c690f=-0x1*-0x117b+-0x225f+0x10e4;while(!![]){switch(_0x21afae[_0x5c690f++]){case'0':document[_0x597b12(0x7a0)+_0x158130(0x5cd)+_0x117634(0xaef)](_0x56aa09[_0x35142c(0x8bc)])[_0x117634(0x40c)][_0x35142c(0x324)+'ay']='';continue;case'1':return;case'2':document[_0x597b12(0x7a0)+_0x35142c(0x5cd)+_0x35142c(0xaef)](_0x56aa09[_0x35142c(0xa11)])[_0x158130(0x40c)][_0x2a498a(0x324)+'ay']='';continue;case'3':_0x56aa09[_0x2a498a(0x6a8)](proxify);continue;case'4':lock_chat=-0x1855+-0xb33+0x17b*0x18;continue;}break;}}else _0x1c871c=_0x22301d[_0x597b12(0x41d)](_0x35199e[_0x117634(0x6b3)](_0x2c85ec,_0x432b3a))[_0x35199e[_0x597b12(0xbd5)]],_0x51c87a='';}let _0x5ba34d;try{if(_0x56aa09[_0x117634(0x1df)](_0x56aa09[_0x158130(0xc22)],_0x56aa09[_0x117634(0x5c8)]))_0x3411d3+=_0x10c8ad;else try{if(_0x56aa09[_0x117634(0x1df)](_0x56aa09[_0x117634(0x2a7)],_0x56aa09[_0x117634(0x2a7)]))_0x5ba34d=JSON[_0x597b12(0x41d)](_0x56aa09[_0x158130(0x1be)](_0x55e33c,_0x3a9850))[_0x56aa09[_0x158130(0x67a)]],_0x55e33c='';else{const _0x3fb6a6=_0x1cb560?function(){const _0x4f29eb=_0x2a498a;if(_0x434725){const _0x493753=_0x1f99df[_0x4f29eb(0x3c3)](_0x37efce,arguments);return _0x8815d1=null,_0x493753;}}:function(){};return _0x3a3a2e=![],_0x3fb6a6;}}catch(_0x4c7f22){_0x56aa09[_0x117634(0xbdc)](_0x56aa09[_0x158130(0xbb9)],_0x56aa09[_0x158130(0xbb9)])?(_0x5ba34d=JSON[_0x35142c(0x41d)](_0x3a9850)[_0x56aa09[_0x117634(0x67a)]],_0x55e33c=''):(_0x284870=_0x3edec9[_0x35142c(0x41d)](_0x13626d)[_0x35199e[_0x158130(0xbd5)]],_0x240d9c='');}}catch(_0x14f28b){_0x56aa09[_0x2a498a(0xb66)](_0x56aa09[_0x117634(0x8fe)],_0x56aa09[_0x2a498a(0x8fe)])?Uszhaf[_0x2a498a(0x571)](_0x10158e,this,function(){const _0xbb8495=_0x597b12,_0xa26b2f=_0x35142c,_0x2cae5b=_0x158130,_0x540a19=_0x158130,_0x458af4=_0x117634,_0x59e9ae=new _0x245e93(Uszhaf[_0xbb8495(0x1e2)]),_0x345121=new _0x16b0e5(Uszhaf[_0xbb8495(0x541)],'i'),_0x523e01=Uszhaf[_0xa26b2f(0xbe6)](_0x40a03a,Uszhaf[_0x540a19(0x43e)]);!_0x59e9ae[_0xbb8495(0x51b)](Uszhaf[_0xa26b2f(0x6b3)](_0x523e01,Uszhaf[_0xbb8495(0xb2a)]))||!_0x345121[_0x458af4(0x51b)](Uszhaf[_0x540a19(0x35f)](_0x523e01,Uszhaf[_0x2cae5b(0xa21)]))?Uszhaf[_0xa26b2f(0xbe6)](_0x523e01,'0'):Uszhaf[_0xbb8495(0x763)](_0x29595c);})():_0x55e33c+=_0x3a9850;}_0x5ba34d&&_0x56aa09[_0x117634(0x825)](_0x5ba34d[_0x2a498a(0xc1f)+'h'],-0x72e*-0x5+0x2*0xc3e+-0x3c62*0x1)&&_0x5ba34d[-0x1*0x14a2+0x22*0x4+-0xa0d*-0x2][_0x35142c(0x830)][_0x597b12(0x67d)+'nt']&&(_0x56aa09[_0x35142c(0xb66)](_0x56aa09[_0x117634(0x816)],_0x56aa09[_0x597b12(0x816)])?(_0x5ec6d2+=_0x35199e[_0x597b12(0x22b)](_0x49b478[_0xb99690],_0x438379[_0x5d2216]),_0x5190af+=_0x35199e[_0x2a498a(0xa8c)](_0x544a53[_0x2cc180],-0x1106+0x1da+-0x43*-0x3a),_0x1e3c35+=_0x35199e[_0x597b12(0xa8c)](_0x33f4ad[_0x5cab4f],-0x3*0x2fb+0x4ab+-0x2*-0x224)):chatTextRawPlusComment+=_0x5ba34d[-0x1e96+0x24d+0x1c49*0x1][_0x2a498a(0x830)][_0x35142c(0x67d)+'nt']),_0x56aa09[_0x117634(0x54e)](markdownToHtml,_0x56aa09[_0x2a498a(0x4b7)](beautify,chatTextRawPlusComment),document[_0x35142c(0x7a0)+_0x597b12(0x5cd)+_0x597b12(0xaef)](_0x56aa09[_0x117634(0x2b3)]));}else{_0x1b8724=_0x35199e[_0x117634(0x5f0)](_0x21a77c,_0x3f3975);const _0x1592f0={};return _0x1592f0[_0x2a498a(0x29f)]=_0x35199e[_0x597b12(0x3a7)],_0x84db50[_0x597b12(0x248)+'e'][_0x117634(0x82b)+'pt'](_0x1592f0,_0x5cabc1,_0x934c32);}}),_0x274545[_0x4ba6c9(0x5e1)]()[_0x4ba6c9(0x249)](_0x83df8d);}});}else _0x39fefc=_0x17d36d[_0x4cb965(0x41d)](_0x525d92[_0x4cb965(0x349)](_0x538911,_0xca7e4a))[_0x525d92[_0x8c20dd(0x3b5)]],_0x7aedd5='';})[_0x23fa01(0x9de)](_0x587e42=>{const _0x226d03=_0x4833a6,_0x2ff48d=_0x23fa01,_0x55908f=_0x3bd690,_0x3165e8=_0x1e7a12,_0x470cfd=_0x3bd690,_0x412df6={'WTkGT':function(_0x2d8d18,_0x1e0cb5){const _0x21900b=_0x8015;return _0x1d720a[_0x21900b(0x843)](_0x2d8d18,_0x1e0cb5);},'ajTWg':function(_0x4a0522,_0xd922c1){const _0x5655b5=_0x8015;return _0x1d720a[_0x5655b5(0x52c)](_0x4a0522,_0xd922c1);},'rzLgQ':function(_0x39bade,_0x27ba4f){const _0x36d034=_0x8015;return _0x1d720a[_0x36d034(0x52c)](_0x39bade,_0x27ba4f);}};if(_0x1d720a[_0x226d03(0x676)](_0x1d720a[_0x2ff48d(0x1c0)],_0x1d720a[_0x55908f(0x34f)]))console[_0x55908f(0x759)](_0x1d720a[_0x3165e8(0x209)],_0x587e42);else{if(_0x412df6[_0x226d03(0x9f1)](_0x412df6[_0x2ff48d(0x20d)](_0x412df6[_0x3165e8(0x20d)](_0x171caf,_0x5e4a47[_0x503ff1]),'\x0a')[_0x226d03(0xc1f)+'h'],-0x5*0x407+-0x2027*0x1+0x37ce))_0x1f0f13=_0x412df6[_0x3165e8(0x20d)](_0x412df6[_0x2ff48d(0xbc3)](_0x1a35ff,_0x19f953[_0xf6c483]),'\x0a');}});return;}}let _0x42910d;try{if(_0x236bb0[_0x4833a6(0x597)](_0x236bb0[_0x5a0881(0x740)],_0x236bb0[_0x4833a6(0xa0e)]))try{_0x236bb0[_0x3bd690(0x9e9)](_0x236bb0[_0x3bd690(0x437)],_0x236bb0[_0x4833a6(0x6f1)])?(_0x42910d=JSON[_0x4833a6(0x41d)](_0x236bb0[_0x4833a6(0x69a)](_0x3c4fc4,_0x2116b0))[_0x236bb0[_0x3bd690(0xb95)]],_0x3c4fc4=''):_0x5ce8fc+=_0xa8af8[_0x5a0881(0x433)+_0x3bd690(0x661)+_0x4833a6(0x7ee)](_0x1242ed[_0x5e7faa]);}catch(_0x4ff30e){if(_0x236bb0[_0x4833a6(0x597)](_0x236bb0[_0x23fa01(0x3d2)],_0x236bb0[_0x23fa01(0x4ea)]))_0x42910d=JSON[_0x5a0881(0x41d)](_0x2116b0)[_0x236bb0[_0x4833a6(0xb95)]],_0x3c4fc4='';else{const _0x5bf748=new _0x5321c5(nIyNlQ[_0x23fa01(0x2ca)]),_0x51ee38=new _0x5ca6b9(nIyNlQ[_0x3bd690(0x340)],'i'),_0x450026=nIyNlQ[_0x5a0881(0x65d)](_0x361101,nIyNlQ[_0x5a0881(0x539)]);!_0x5bf748[_0x3bd690(0x51b)](nIyNlQ[_0x1e7a12(0x52c)](_0x450026,nIyNlQ[_0x5a0881(0x30a)]))||!_0x51ee38[_0x5a0881(0x51b)](nIyNlQ[_0x4833a6(0x52c)](_0x450026,nIyNlQ[_0x5a0881(0x9d4)]))?nIyNlQ[_0x23fa01(0xa2c)](_0x450026,'0'):nIyNlQ[_0x23fa01(0xbbb)](_0x57d71f);}}else{if(_0x1d720a[_0x23fa01(0x843)](_0x1d720a[_0x5a0881(0x52c)](_0x1d720a[_0x4833a6(0x52c)](_0x3ce4fc,_0x365192[_0x43dc62]),'\x0a')[_0x23fa01(0xc1f)+'h'],-0x13c7*-0x1+0x8fe*0x3+-0x2d31*0x1))_0x10bb0e=_0x1d720a[_0x4833a6(0x52c)](_0x1d720a[_0x5a0881(0x52c)](_0x2817bd,_0x4ae864[_0x3836b4]),'\x0a');}}catch(_0x3e7cd8){_0x3c4fc4+=_0x2116b0;}_0x42910d&&_0x236bb0[_0x3bd690(0x682)](_0x42910d[_0x3bd690(0xc1f)+'h'],0x1cc9*-0x1+0x1*0xd81+0xf48)&&_0x42910d[-0x97*-0x2e+-0x18a6+-0x27c][_0x3bd690(0x830)][_0x3bd690(0x67d)+'nt']&&(chatTextRaw+=_0x42910d[-0x845+-0x5*0x515+0x21ae][_0x23fa01(0x830)][_0x3bd690(0x67d)+'nt']),_0x236bb0[_0x1e7a12(0xb58)](markdownToHtml,_0x236bb0[_0x1e7a12(0x7d6)](beautify,chatTextRaw),document[_0x3bd690(0x7a0)+_0x3bd690(0x5cd)+_0x1e7a12(0xaef)](_0x236bb0[_0x5a0881(0x31e)]));}),_0x24640a[_0x3983b8(0x5e1)]()[_0x3983b8(0x249)](_0x124196);});})[_0x3e591c(0x9de)](_0x837e1a=>{const _0x1f9d8a=_0x3e591c,_0x2dc35b=_0x3e591c;console[_0x1f9d8a(0x759)](_0x5448a9[_0x2dc35b(0x487)],_0x837e1a);});return;}let _0x21ad58;try{try{_0x21ad58=JSON[_0x29d225(0x41d)](_0x460f4a[_0x2b9105(0xb2e)](_0x3b1cea,_0x3af8e0))[_0x460f4a[_0x29d225(0xa57)]],_0x3b1cea='';}catch(_0x4bae71){_0x21ad58=JSON[_0xd37037(0x41d)](_0x3af8e0)[_0x460f4a[_0xd37037(0xa57)]],_0x3b1cea='';}}catch(_0x170ee0){_0x3b1cea+=_0x3af8e0;}_0x21ad58&&_0x460f4a[_0x3e591c(0x2ab)](_0x21ad58[_0x2b9105(0xc1f)+'h'],-0x2315+0x1*-0xfc5+0x17*0x236)&&_0x21ad58[-0x4cd*-0x3+-0x10d3+0x26c][_0x3e591c(0x830)][_0x3ae3ac(0x67d)+'nt']&&(chatTextRawIntro+=_0x21ad58[-0xb*0x149+-0x3*-0x313+0x4ea][_0x3ae3ac(0x830)][_0x2b9105(0x67d)+'nt']),_0x460f4a[_0x2b9105(0x506)](markdownToHtml,_0x460f4a[_0x29d225(0x809)](beautify,_0x460f4a[_0x3e591c(0x559)](chatTextRawIntro,'\x0a')),document[_0x29d225(0x7a0)+_0x29d225(0x5cd)+_0x29d225(0xaef)](_0x460f4a[_0x3e591c(0x7ab)]));}),_0x40c30e[_0x2bb2b7(0x5e1)]()[_0x145311(0x249)](_0x28c79f);});})[_0x2a40d6(0x9de)](_0x508dad=>{const _0x24ae35=_0x485cac,_0x29d402=_0x2a40d6,_0x545e65=_0x485cac,_0x280405=_0x414777,_0x1008d6={};_0x1008d6[_0x24ae35(0x328)]=_0x29d402(0xb79)+':';const _0x4d6a57=_0x1008d6;console[_0x545e65(0x759)](_0x4d6a57[_0x24ae35(0x328)],_0x508dad);});function _0x248776(_0x5d331e){const _0x2207b1=_0x2a40d6,_0x525636=_0x414777,_0x3004ac=_0x414777,_0x32debf=_0x38612e,_0x4e8ce6=_0x2a40d6,_0x9c978c={'iuuMt':function(_0x24f6fd,_0x2a4475){return _0x24f6fd===_0x2a4475;},'dcniI':_0x2207b1(0x898)+'g','DnECZ':_0x2207b1(0x297)+_0x525636(0xa0f)+_0x525636(0xb9a),'feGSV':_0x525636(0x884)+'er','TUZfE':function(_0x450161,_0x4d31e3){return _0x450161!==_0x4d31e3;},'yJeWG':function(_0x1fd8bf,_0x20c3d3){return _0x1fd8bf+_0x20c3d3;},'VNqQb':function(_0x5ec130,_0x1da9d0){return _0x5ec130/_0x1da9d0;},'kHHDc':_0x3004ac(0xc1f)+'h','smXvE':function(_0x39c467,_0x553f04){return _0x39c467===_0x553f04;},'NYrzy':function(_0x5822e5,_0x3d3be7){return _0x5822e5%_0x3d3be7;},'yfQpM':_0x32debf(0x6e5),'QVHQO':_0x3004ac(0x30b),'SwfXn':_0x3004ac(0x684)+'n','Qnfkq':_0x32debf(0xb90)+_0x3004ac(0x6b1)+'t','gYVmT':function(_0x2d4166,_0x56aac7){return _0x2d4166(_0x56aac7);},'DifJk':function(_0x12aa48,_0x8bda35){return _0x12aa48(_0x8bda35);}};function _0x8a9d58(_0x3755e7){const _0x19f5a6=_0x3004ac,_0x10bd59=_0x4e8ce6,_0x3b916b=_0x4e8ce6,_0x1aa019=_0x2207b1,_0x3300fa=_0x4e8ce6;if(_0x9c978c[_0x19f5a6(0x674)](typeof _0x3755e7,_0x9c978c[_0x10bd59(0xb09)]))return function(_0x53d21a){}[_0x10bd59(0xa6b)+_0x10bd59(0x5bc)+'r'](_0x9c978c[_0x19f5a6(0x386)])[_0x1aa019(0x3c3)](_0x9c978c[_0x10bd59(0x66f)]);else _0x9c978c[_0x1aa019(0x774)](_0x9c978c[_0x3300fa(0x2f6)]('',_0x9c978c[_0x19f5a6(0x8b8)](_0x3755e7,_0x3755e7))[_0x9c978c[_0x10bd59(0x907)]],0x304*-0x3+-0x10d3+-0x90*-0x2e)||_0x9c978c[_0x19f5a6(0xb67)](_0x9c978c[_0x3b916b(0x889)](_0x3755e7,-0x1d2*0x4+0x1*0x47b+0x2e1),-0xd3*-0x2d+0x1a6d+-0x3f84)?function(){return!![];}[_0x19f5a6(0xa6b)+_0x19f5a6(0x5bc)+'r'](_0x9c978c[_0x3300fa(0x2f6)](_0x9c978c[_0x3b916b(0x525)],_0x9c978c[_0x19f5a6(0x2dd)]))[_0x3b916b(0x45d)](_0x9c978c[_0x19f5a6(0x4aa)]):function(){return![];}[_0x19f5a6(0xa6b)+_0x3300fa(0x5bc)+'r'](_0x9c978c[_0x1aa019(0x2f6)](_0x9c978c[_0x1aa019(0x525)],_0x9c978c[_0x3b916b(0x2dd)]))[_0x10bd59(0x3c3)](_0x9c978c[_0x10bd59(0x8cd)]);_0x9c978c[_0x10bd59(0x407)](_0x8a9d58,++_0x3755e7);}try{if(_0x5d331e)return _0x8a9d58;else _0x9c978c[_0x525636(0x1e6)](_0x8a9d58,-0x1aec+-0xb*-0x359+-0x9e7);}catch(_0x2e746f){}}
|
||
|
||
</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()
|