searxng/searx/webapp.py
Joseph Cheung 2b473a701d d
2023-03-13 00:15:05 +08:00

2154 lines
391 KiB
Python
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
# pyright: basic
"""WebbApp
"""
# pylint: disable=use-dict-literal
import hashlib
import hmac
import json
import os
import sys
import base64
import requests
import markdown
import re
import datetime
from textrank4zh import TextRank4Keyword, TextRank4Sentence
import pycorrector
import threading
from timeit import default_timer
from html import escape
from io import StringIO
import typing
from typing import List, Dict, Iterable
import urllib
import urllib.parse
from urllib.parse import urlencode, unquote
import httpx
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
import flask
from flask import (
Flask,
render_template,
url_for,
make_response,
redirect,
send_from_directory,
)
from flask.wrappers import Response
from flask.json import jsonify
from flask_babel import (
Babel,
gettext,
format_decimal,
)
from searx import (
logger,
get_setting,
settings,
searx_debug,
)
from searx import infopage
from searx.data import ENGINE_DESCRIPTIONS
from searx.results import Timing, UnresponsiveEngine
from searx.settings_defaults import OUTPUT_FORMATS
from searx.settings_loader import get_default_settings_path
from searx.exceptions import SearxParameterException
from searx.engines import (
OTHER_CATEGORY,
categories,
engines,
engine_shortcuts,
)
from searx.webutils import (
UnicodeWriter,
highlight_content,
get_static_files,
get_result_templates,
get_themes,
prettify_url,
new_hmac,
is_hmac_of,
is_flask_run_cmdline,
group_engines_in_tab,
searxng_l10n_timespan,
)
from searx.webadapter import (
get_search_query_from_webapp,
get_selected_categories,
)
from searx.utils import (
html_to_text,
gen_useragent,
dict_subset,
match_language,
)
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
from searx.query import RawTextQuery
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
from searx.plugins.oa_doi_rewrite import get_doi_resolver
from searx.preferences import (
Preferences,
ValidationException,
)
from searx.answerers import (
answerers,
ask,
)
from searx.metrics import (
get_engines_stats,
get_engine_errors,
get_reliabilities,
histogram,
counter,
)
from searx.flaskfix import patch_application
from searx.locales import (
LOCALE_NAMES,
RTL_LOCALES,
localeselector,
locales_initialize,
)
# renaming names from searx imports ...
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
from searx.languages import language_codes as languages
from searx.redisdb import initialize as redis_initialize
from searx.search import SearchWithPlugins, initialize as search_initialize
from searx.network import stream as http_stream, set_context_network_name
from searx.search.checker import get_result as checker_get_result
logger = logger.getChild('webapp')
# check secret_key
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
sys.exit(1)
# about static
logger.debug('static directory is %s', settings['ui']['static_path'])
static_files = get_static_files(settings['ui']['static_path'])
# about templates
logger.debug('templates directory is %s', settings['ui']['templates_path'])
default_theme = settings['ui']['default_theme']
templates_path = settings['ui']['templates_path']
themes = get_themes(templates_path)
result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),
}
# Flask app
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
app.secret_key = settings['server']['secret_key']
timeout_text = gettext('timeout')
parsing_error_text = gettext('parsing error')
http_protocol_error_text = gettext('HTTP protocol error')
network_error_text = gettext('network error')
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
exception_classname_to_text = {
None: gettext('unexpected crash'),
'timeout': timeout_text,
'asyncio.TimeoutError': timeout_text,
'httpx.TimeoutException': timeout_text,
'httpx.ConnectTimeout': timeout_text,
'httpx.ReadTimeout': timeout_text,
'httpx.WriteTimeout': timeout_text,
'httpx.HTTPStatusError': gettext('HTTP error'),
'httpx.ConnectError': gettext("HTTP connection error"),
'httpx.RemoteProtocolError': http_protocol_error_text,
'httpx.LocalProtocolError': http_protocol_error_text,
'httpx.ProtocolError': http_protocol_error_text,
'httpx.ReadError': network_error_text,
'httpx.WriteError': network_error_text,
'httpx.ProxyError': gettext("proxy error"),
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
'KeyError': parsing_error_text,
'json.decoder.JSONDecodeError': parsing_error_text,
'lxml.etree.ParserError': parsing_error_text,
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
}
class ExtendedRequest(flask.Request):
"""This class is never initialized and only used for type checking."""
preferences: Preferences
errors: List[str]
user_plugins: List[Plugin]
form: Dict[str, str]
start_time: float
render_time: float
timings: List[Timing]
request = typing.cast(ExtendedRequest, flask.request)
def get_locale():
locale = localeselector()
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
return locale
babel = Babel(app, locale_selector=get_locale)
def _get_browser_language(req, lang_list):
for lang in req.headers.get("Accept-Language", "en").split(","):
if ';' in lang:
lang = lang.split(';')[0]
if '-' in lang:
lang_parts = lang.split('-')
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
locale = match_language(lang, lang_list, fallback=None)
if locale is not None:
return locale
return 'en'
def _get_locale_rfc5646(locale):
"""Get locale name for <html lang="...">
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
For example "zh-TW" is detected but not "zh-Hant-TW".
This function returns a locale without the subtag.
"""
parts = locale.split('-')
return parts[0].lower() + '-' + parts[-1].upper()
# code-highlighter
@app.template_filter('code_highlighter')
def code_highlighter(codelines, language=None):
if not language:
language = 'text'
try:
# find lexer by programming language
lexer = get_lexer_by_name(language, stripall=True)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
# if lexer is not found, using default one
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''
tmp_code = ''
last_line = None
line_code_start = None
# parse lines
for line, code in codelines:
if not last_line:
line_code_start = line
# new codeblock is detected
if last_line is not None and last_line + 1 != line:
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
# reset conditions for next codepart
tmp_code = ''
line_code_start = line
# add codepart
tmp_code += code + '\n'
# update line
last_line = line
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
return html_code
def get_result_template(theme_name: str, template_name: str):
themed_path = theme_name + '/result_templates/' + template_name
if themed_path in result_templates:
return themed_path
return 'result_templates/' + template_name
def custom_url_for(endpoint: str, **values):
suffix = ""
if endpoint == 'static' and values.get('filename'):
file_hash = static_files.get(values['filename'])
if not file_hash:
# try file in the current theme
theme_name = request.preferences.get_value('theme')
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
file_hash = static_files.get(filename_with_theme)
if file_hash:
values['filename'] = filename_with_theme
if get_setting('ui.static_use_hash') and file_hash:
suffix = "?" + file_hash
if endpoint == 'info' and 'locale' not in values:
locale = request.preferences.get_value('locale')
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
locale = _INFO_PAGES.locale_default
values['locale'] = locale
return url_for(endpoint, **values) + suffix
def morty_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not settings['result_proxy']['url']:
return url
url = url.replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")
url_params = dict(mortyurl=url)
if settings['result_proxy']['key']:
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
def image_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not request.preferences.get_value('image_proxy'):
return url
if url.startswith('data:image/'):
# 50 is an arbitrary number to get only the beginning of the image.
partial_base64 = url[len('data:image/') : 50].split(';')
if (
len(partial_base64) == 2
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
and partial_base64[1].startswith('base64,')
):
return url
return None
if settings['result_proxy']['url']:
return morty_proxify(url)
h = new_hmac(settings['server']['secret_key'], url.encode())
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
def get_translations():
return {
# when there is autocompletion
'no_item_found': gettext('No item found'),
# /preferences: the source of the engine description (wikipedata, wikidata, website)
'Source': gettext('Source'),
# infinite scroll
'error_loading_next_page': gettext('Error loading the next page'),
}
def _get_enable_categories(all_categories: Iterable[str]):
disabled_engines = request.preferences.engines.get_disabled()
enabled_categories = set(
# pylint: disable=consider-using-dict-items
category
for engine_name in engines
for category in engines[engine_name].categories
if (engine_name, category) not in disabled_engines
)
return [x for x in all_categories if x in enabled_categories]
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
path = parsed_url.path
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
path = unquote(path.replace("/", " "))
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
def get_client_settings():
req_pref = request.preferences
return {
'autocomplete_provider': req_pref.get_value('autocomplete'),
'autocomplete_min': get_setting('search.autocomplete_min'),
'http_method': req_pref.get_value('method'),
'infinite_scroll': req_pref.get_value('infinite_scroll'),
'translations': get_translations(),
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
'theme_static_path': custom_url_for('static', filename='themes/simple'),
}
def render(template_name: str, **kwargs):
kwargs['client_settings'] = str(
base64.b64encode(
bytes(
json.dumps(get_client_settings()),
encoding='utf-8',
)
),
encoding='utf-8',
)
# values from the HTTP requests
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
kwargs['cookies'] = request.cookies
kwargs['errors'] = request.errors
# values from the preferences
kwargs['preferences'] = request.preferences
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
kwargs['theme'] = request.preferences.get_value('theme')
kwargs['method'] = request.preferences.get_value('method')
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
kwargs['categories'] = _get_enable_categories(categories.keys())
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
# i18n
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
locale = request.preferences.get_value('locale')
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
if locale in RTL_LOCALES and 'rtl' not in kwargs:
kwargs['rtl'] = True
if 'current_language' not in kwargs:
kwargs['current_language'] = match_language(
request.preferences.get_value('language'), settings['search']['languages']
)
# values from settings
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
kwargs['instance_name'] = get_setting('general.instance_name')
kwargs['searx_version'] = VERSION_STRING
kwargs['searx_git_url'] = GIT_URL
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
kwargs['get_setting'] = get_setting
kwargs['get_pretty_url'] = get_pretty_url
# values from settings: donation_url
donation_url = get_setting('general.donation_url')
if donation_url is True:
donation_url = custom_url_for('info', pagename='donate')
kwargs['donation_url'] = donation_url
# helpers to create links to other pages
kwargs['url_for'] = custom_url_for # override url_for function in templates
kwargs['image_proxify'] = image_proxify
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
kwargs['cache_url'] = settings['ui']['cache_url']
kwargs['get_result_template'] = get_result_template
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
kwargs['opensearch_url'] = (
url_for('opensearch')
+ '?'
+ urlencode(
{
'method': request.preferences.get_value('method'),
'autocomplete': request.preferences.get_value('autocomplete'),
}
)
)
# scripts from plugins
kwargs['scripts'] = set()
for plugin in request.user_plugins:
for script in plugin.js_dependencies:
kwargs['scripts'].add(script)
# styles from plugins
kwargs['styles'] = set()
for plugin in request.user_plugins:
for css in plugin.css_dependencies:
kwargs['styles'].add(css)
start_time = default_timer()
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
return result
@app.before_request
def pre_request():
request.start_time = default_timer() # pylint: disable=assigning-non-slot
request.render_time = 0 # pylint: disable=assigning-non-slot
request.timings = [] # pylint: disable=assigning-non-slot
request.errors = [] # pylint: disable=assigning-non-slot
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
user_agent = request.headers.get('User-Agent', '').lower()
if 'webkit' in user_agent and 'android' in user_agent:
preferences.key_value_settings['method'].value = 'GET'
request.preferences = preferences # pylint: disable=assigning-non-slot
try:
preferences.parse_dict(request.cookies)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings, please edit your preferences'))
# merge GET, POST vars
# request.form
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
for k, v in request.args.items():
if k not in request.form:
request.form[k] = v
if request.form.get('preferences'):
preferences.parse_encoded_data(request.form['preferences'])
else:
try:
preferences.parse_dict(request.form)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings'))
# language is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("language"):
language = _get_browser_language(request, settings['search']['languages'])
preferences.parse_dict({"language": language})
logger.debug('set language %s (from browser)', preferences.get_value("language"))
# locale is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("locale"):
locale = _get_browser_language(request, LOCALE_NAMES.keys())
preferences.parse_dict({"locale": locale})
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
# request.user_plugins
request.user_plugins = [] # pylint: disable=assigning-non-slot
allowed_plugins = preferences.plugins.get_enabled()
disabled_plugins = preferences.plugins.get_disabled()
for plugin in plugins:
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
request.user_plugins.append(plugin)
@app.after_request
def add_default_headers(response: flask.Response):
# set default http headers
for header, value in settings['server']['default_http_headers'].items():
if header in response.headers:
continue
response.headers[header] = value
return response
@app.after_request
def post_request(response: flask.Response):
total_time = default_timer() - request.start_time
timings_all = [
'total;dur=' + str(round(total_time * 1000, 3)),
'render;dur=' + str(round(request.render_time * 1000, 3)),
]
if len(request.timings) > 0:
timings = sorted(request.timings, key=lambda t: t.total)
timings_total = [
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
]
timings_load = [
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
for i, t in enumerate(timings)
if t.load
]
timings_all = timings_all + timings_total + timings_load
# response.headers.add('Server-Timing', ', '.join(timings_all))
return response
def index_error(output_format: str, error_message: str):
if output_format == 'json':
return Response(json.dumps({'error': error_message}), mimetype='application/json')
if output_format == 'csv':
response = Response('', mimetype='application/csv')
cont_disp = 'attachment;Filename=searx.csv'
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=[],
q=request.form['q'] if 'q' in request.form else '',
number_of_results=0,
error_message=error_message,
)
return Response(response_rss, mimetype='text/xml')
# html
request.errors.append(gettext('search error'))
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
@app.route('/', methods=['GET', 'POST'])
def index():
"""Render index page."""
# redirect to search if there's a query in the request
if request.form.get('q'):
query = ('?' + request.query_string.decode()) if request.query_string else ''
return redirect(url_for('search') + query, 308)
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
current_locale = request.preferences.get_value("locale"),
# fmt: on
)
@app.route('/healthz', methods=['GET'])
def health():
return Response('OK', mimetype='text/plain')
@app.route('/keytext', methods=['POST'])
def keytext():
res = []
text = request.json['text']
tr4s = TextRank4Sentence()
tr4s.analyze(text=text, lower=True, source = 'all_filters')
for item in tr4s.get_key_sentences(num=15):
res.append(item.sentence)
return Response(json.dumps(res), mimetype='application/json')
def process_result(result):
url_pattern = re.compile(r'^(https?://)?([a-z0-9-]+\.)+[a-z0-9-]+\.[a-z]+/?$')
# 判断URL是否符合要求
if not url_pattern.match(result['url']):
return
# 发起GET请求访问API
query_url=re.sub(r'https?://', '', result['url'])
try:
response = requests.get(f'https://noisy-dust-b504.marduk.workers.dev/siteOwner?url={query_url}', timeout=5)
except requests.exceptions.Timeout:
print(f'Request timeout for {result["url"]}')
return
except requests.exceptions.RequestException as e:
print(f'Request error for {result["url"]}: {e}')
return
# 判断返回值是否为'null'如果不是则更新title
if response.text != 'null':
result['title'] += ' (该网站属于:' +response.text + ')'
@app.route('/search', methods=['GET', 'POST'])
def search():
"""Search query in q and return results.
Supported outputs: html, json, csv, rss.
"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# output_format
output_format = request.form.get('format', 'html')
if output_format not in OUTPUT_FORMATS:
output_format = 'html'
if output_format not in settings['search']['formats']:
flask.abort(403)
# check if there is query (not None and not an empty string)
if not request.form.get('q'):
if output_format == 'html':
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
return index_error(output_format, 'No query'), 400
# search
search_query = None
raw_text_query = None
result_container = None
original_search_query = ""
search_type = "搜索网页"
net_search = True
net_search_str = 'true'
prompt = ""
add_system = '[]'
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
try:
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
return render('404.html'), 404
try:
original_search_query = search_query.query
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
if len(search_query.query)>5 and "谁是" in search_query.query:
search_query.query = search_query.query.replace("谁是","")
if len(search_query.query)>5 and "是谁" in search_query.query:
search_query.query = search_query.query.replace("是谁","")
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
prompt = search_query.query + "\n对以上问题生成一个Google搜索词\n"
search_type = '任务'
net_search = False
net_search_str = 'false'
elif len(original_search_query)>10:
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","","详细关键词"]来表述'
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
if "今年" in prompt or "今天" in prompt:
now = datetime.datetime.now()
prompt = prompt.replace("今年",now.strftime('%Y年'))
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d'))
gpt = ""
gpt_url = "https://api.openai.com/v1/chat/completions"
gpt_headers = {
"Authorization": "Bearer "+os.environ['GPTKEY'],
"Content-Type": "application/json",
}
gpt_data = {
"model": "gpt-3.5-turbo",
"messages": [{"role":"user","content":prompt}],
"max_tokens": 256,
"temperature": 0.9,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": False
}
gpt_json={}
if prompt and prompt !='' :
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
gpt_json = gpt_response.json()
if 'choices' in gpt_json:
gpt = gpt_json['choices'][0]['message']['content']
if search_type == '任务':
for word in gpt.split('\n'):
if word != "":
gpt = word.replace("\"","").replace("\'","").replace("","").replace("","").replace("","").replace("","")
break
if gpt!="":
search_query.query = gpt
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
else:
gpt_judge = []
for tmpj in gpt.split():
try:
gpt_judge = json.loads(tmpj)
except:pass
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
search_query.query = gpt_judge[2]
search_type = gpt_judge[0]
net_search = True
net_search_str = 'true'
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
search_type = gpt_judge[0]
net_search = False
net_search_str = 'false'
except Exception as ee:
logger.exception(ee, exc_info=True)
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
result_container = search.search()
except SearxParameterException as e:
logger.exception('search error: SearxParameterException')
return index_error(output_format, e.message), 400
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
return index_error(output_format, gettext('No item found')), 500
# results
results = result_container.get_ordered_results()
number_of_results = result_container.results_number()
if number_of_results < result_container.results_length():
number_of_results = 0
# OPENAI GPT
raws = []
try:
url_pair = []
url_proxy = {}
prompt = ""
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
for res in results:
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
except:pass
# threads = []
# for result in results:
# t = threading.Thread(target=process_result, args=(result,))
# t.start()
# threads.append(t)
# # 等待所有线程执行完毕
# for t in threads:
# t.join()
for res in results:
if 'engine' in res and res['engine'] == 'twitter':
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
continue
except:pass
if 'url' not in res: continue
if 'title' not in res: continue
if 'content' not in res: continue
if res['content'] == '': continue
new_url = 'https://url'+str(len(url_pair))
url_pair.append(res['url'])
url_proxy[res['url']] = (morty_proxify(res['url']))
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
res['content'] = res['content'].replace(" "," ")
res['content'] = res['content'].replace("Translate Tweet. ","")
res['content'] = res['content'].replace("Learn more ","")
res['content'] = res['content'].replace("Translate Tweet.","")
res['content'] = res['content'].replace("Retweeted.","Reposted.")
res['content'] = res['content'].replace("Learn more.","")
res['content'] = res['content'].replace("Show replies.","")
res['content'] = res['content'].replace("See new Tweets. ","")
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
res['content'] = res['content'].replace("Twitter for Android · ","")
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
raws.insert(0,tmp_prompt)
else: raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
if prompt != "":
gpt = ""
gpt_url = "https://search.kg/completions"
gpt_headers = {
"Content-Type": "application/json",
}
if '搜索' not in search_type:
gpt_data = {
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
else:
gpt_data = {
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
<div id="modal" class="modal">
<div id="modal-title" class="modal-title">网页速览<span>
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
</div>
<div class="modal-input-content" id="modal-input-content">
<div id="iframe-wrapper">
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
<div id='readability-reader' style='display:none'></div>
</div>
</div>
</div>
<script>
// 1. 获取元素
var modal = document.querySelector('.modal');
var closeBtn = document.querySelector('#closebtn');
var title = document.querySelector('#modal-title');
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
// 3. 点击 closeBtn 就隐藏 mask 和 modal
closeBtn.addEventListener('click', function () {
modal.style.display = 'none';
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
document.querySelector("#readability-reader").innerHTML = '';
try{iframe.removeAttribute('src');}catch(e){}
})
// 4. 开始拖拽
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
modal.addEventListener('mousedown', function (e) {
var x = e.pageX - modal.offsetLeft;
var y = e.pageY - modal.offsetTop;
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move)
function move(e) {
modal.style.left = e.pageX - x + 'px';
modal.style.top = e.pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
modal.addEventListener('touchstart', function (e) {
var x = e.touches[0].pageX - modal.offsetLeft;
var y = e.touches[0].pageY - modal.offsetTop;
document.addEventListener('touchmove', move)
function move(e) {
modal.style.left = e.touches[0].pageX - x + 'px';
modal.style.top = e.touches[0].pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('touchend', function () {
document.removeEventListener('touchmove ', move);
})
})
</script>
<style>
.modal-header {
width: 100%;
text-align: center;
height: 30px;
font-size: 24px;
line-height: 30px;
}
.modal {
display: none;
width: 45%;
position: fixed;
left: 32%;
top: 50%;
background: var(--color-header-background);
z-index: 10001;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 50em) {
.modal {
width: 85%;
left: 50%;
top: 50%;
}
}
.modal-title {
width: 100%;
margin: 10px 0px 0px 0px;
text-align: center;
line-height: 40px;
height: 40px;
font-size: 18px;
position: relative;
cursor: move;
}
.modal-button {
width: 50%;
margin: 30px auto 0px auto;
line-height: 40px;
font-size: 14px;
border: #ebebeb 1px solid;
text-align: center;
}
.modal-button a {
display: block;
}
.modal-input input.list-input {
float: left;
line-height: 35px;
height: 35px;
width: 350px;
border: #ebebeb 1px solid;
text-indent: 5px;
}
.modal-input {
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.modal-input label {
float: left;
width: 90px;
padding-right: 10px;
text-align: right;
line-height: 35px;
height: 35px;
font-size: 14px;
}
.modal-title span {
position: absolute;
right: 0px;
top: -15px;
}
#chat_talk {
width: 100%;
max-height: 30vh;
position: relative;
overflow: scroll;
padding-top: 1em;
}
#iframe-wrapper {
width: 100%;
height: 40vh;
position: relative;
overflow: hidden; /* 防止滚动条溢出 */
}
#iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
#iframe-wrapper div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
.closebtn{
width: 25px;
height: 25px;
display: inline-block;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
}
.closebtn::before, .closebtn::after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 12px;
right: 2px;
background: #999;
cursor: pointer;
}
.closebtn::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.closebtn::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
<div id="chat_talk"></div>
<div id="chat_continue" style="display:none">
<div id="chat_more" style="display:none"></div>
<hr>
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
<button id="chat_send" onclick='send_chat()' style="
width: 75%;
display: block;
margin: auto;
margin-top: .8em;
border-radius: .8rem;
height: 2em;
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
color: #fff;
border: none;
cursor: pointer;
">发送</button>
</div>
</div>
<style>
.chat_answer {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 3em 0.5em 0;
padding: 8px 12px;
color: white;
background: rgba(27,74,239,0.7);
}
.chat_question {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 0 0.5em 3em;
padding: 8px 12px;
color: black;
background: rgba(245, 245, 245, 0.7);
}
button.btn_more {
min-height: 30px;
text-align: left;
background: rgb(209, 219, 250);
border-radius: 8px;
overflow: hidden;
box-sizing: border-box;
padding: 0px 12px;
margin: 1px;
cursor: pointer;
font-weight: 500;
line-height: 28px;
border: 1px solid rgb(18, 59, 182);
color: rgb(18, 59, 182);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
box-shadow: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(17, 16, 16, 0.13);
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
box-shadow: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(211, 173, 209, 0.4);
}
</style>
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
# gpt_json = gpt_response.json()
# if 'choices' in gpt_json:
# gpt = gpt_json['choices'][0]['text']
# gpt = gpt.replace("简报:","").replace("简报:","")
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
# rgpt = gpt
if gpt and gpt!="":
if original_search_query != search_query.query:
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
gpt = gpt + r'''<style>
a.footnote {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 600;
vertical-align: top;
top: 0px;
margin: 1px 1px;
min-width: 14px;
height: 14px;
border-radius: 3px;
color: rgb(18, 59, 182);
background: rgb(209, 219, 250);
outline: transparent solid 1px;
}
</style>
<script src="/static/themes/magi/Readability-readerable.js"></script>
<script src="/static/themes/magi/Readability.js"></script>
<script src="/static/themes/magi/markdown.js"></script>
<script src="/static/themes/magi/stop_words.js"></script>
<script>
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
const search_type = "''' + search_type + r'''"
const net_search = ''' + net_search_str + r'''
const add_system = ''' + add_system +r'''
</script><script>
function _0x8d41(){const _0x6aa32a=['TpDRr','rMiNr','tKeif','isVpS','MDTug','Hnvcl','nIZcl','XFxDn','call','gujTC','lwWDn','(来源:u','Xrmoy','kNPdp','ikVUp','iVtwu','YgSF4','3|18|','rIOfT','bIVUz','iELub','VEylS','7|6|2','lKyKS','WQxyV','GpGUK','jBcdw','Znzbp','mznRS','lcegC','oIrcS','oADGS','XREOm','kOEQM','Yscnm','XpSgs','2|6|7','</div','shmGN','vvNMw','接)标注对','mwMPx','Fwpya','IBXwG','arGUg','CCPZT','VMixC','sYqTA','img','Color','Libky','GnBaQ','HcUtU','FebsC','OqhYX','何人。如果','eMeEW','ZJTYJ','tYhUW','YkTyX','bawmy','terva','TBvFd','CmJKa','AjGpm','push','PjOrE','=\x22cha','(来源链接','chain','TtALA','定搜索结果','aDCgy','DVazm','ZCzkI','MXSyj','90ceN','DaFVV','ratur','pgJDo','qmczQ','yvMAS','SZTmK','ZGZXh','pRpoA','PIcsz','hBPwA','zpWbj','kPwhr','unshi','GnzGy','PfqRF','NeIZj','yNemD','qyHDT','OLwkR','qCFnR','strin','#ifra','CQYQm','ZLVvX','grHTM','JGIkp','TMCjF','|1|12','getBo','guCeP','undin','tKMPj','JotxF','exMRC','WPVmN','BYohp','bLrHG','|19|2','zRqen','oFOYf','sCHyV','BLFyJ','yzqyf','inner','hYGic','XBfcn','lPYPU','ntRec','bZULD','heMvA','YTpiN','/inde','JCjzP','encry','ById','byteL','qIaqF','qbFMi','des','Onbmy','idtwr','nstru','woujA','qNRDj','tuHyY','str','jWmbq','TOP_R','TOP_M','vDsAO','BAQEF','uVAxb','UGCSm','YjaAN','OGveo','UAxSN','form','FQtfd','floor','fYxqq','uyKTi','RPGky','lZLDw','nxpLG','VoEbo','nHndp','TdQKe','r8Ljj','重复上文','KHNaS','LNwVG','dArIx','attac','vlxMY','IGfte','fromC','CnXNi','HMjdI','TrJvY','bIEcy','fadEv','GAtDB','Iemxc','info','backg','mzAeg','QQcnc','DhEjO','jsetJ','VWdik','IwmiH','selec','SHA-2','MhhRU','ceBlm','JbTnv','trace','UFuxh','TkHTp','YdclZ','vgplx','bHrVH','2RHU6','avata','AAOCA','NlLPk','aqhpJ','qrZZN','nue','read','singl','lcjDx','entlo','emoji','kuAgU','PbQTH','用简体中文','slTfo','ggAyT','TQaUV','IBCgK','Zwlra','ebcha','ofPYs','写一段','IpwEW','iUuAB','cuyqy','dNoXj','ujpKW','jEzWQ','cNlOb','IC\x20KE','UseOs','#fnre','xHKdb','LqFBe','s)\x22>','HpaOV','Zeodv','CtmfC','要上网搜索','rhnvs','JrOFf','yphHO','jCekc','GViGK','dProm','x+el7','eTQPl','0|13|','xJKPc','HLfZj','KgnSG','Xfsqz','zNvKO','Nxkug','dvKst','TSirf','lDtZj','PigeJ','TmduV','FPHrg','OwwJN','wuhhs','OYJZe','jcVci','GEWet','ewerA','zGHav','14|1|','JkykP','aXMpm','WESaC','UwtrI','jwCiA','LdRxF','yaInW','gClie','cFqpy','JzjFX','LczxL','zaMcG','(http','XrkqK','3|23|','ohbxT','#prom','decry','lizWQ','AEP','cdrEu','jLbMT','vgEDp','jmjaj','HPcAh','=UTF-','立问题,以','jCDYm','fWZGp','hyGQk','fxjsu','OCoPF','vGCMI','FNCGq','YsPXn','XYAHD','的是“','KdoMg','[DONE','zdXuu','yXUms','ntWin','ZsPAA','(链接:u','CzGLO','qdppQ','zSaLA','BjuKc','thTGK','UZasp','MsKWj','OUwVU','zJLIe','MFDfl','MtCbk',',位于','arlRp','XEgxj','gDsZa','ZpBuQ','KLQRx','JxGlO','blNpw','hioUf','Wncgv','oitHF','LfAqh','zTibj','ThpCo','LOwIO','Xmool','fXZNK','/stat','pKjuH','f\x5c:','键词“','QuzyT','XCevU','dfkGW','Q8AMI','什么样','e?cli','GcDRA','eAttr','dgBIF','lJlLC','AMznT','GTNSv','tapzb','conso','eZyRN','nt-Ty','cMQem','mINJi','CLPet','HOJMk','Dfvow','lwRVr','cNzrp','写一句语言','XzSEt','wwKjG','IvvLV','XaNqt','dVDUs','76884jYDIoN','SJsfl','tYGzA','uvPoC','”,结合你','BEBNg','JyYcg','xWYrX','vPvGF','|6|3|','lmTnO','xHxrr','rBSWn','IqLHy','twwmz','ngfhM','WepiI','UdLrY','DIHET','gMWxz','5U9h1','wjwsV','255,\x20','PGXwJ','ion\x20*','uTRse','RaCMn','hCTnK','LYRaR','cquht','OqEko','fmyZY','//url','rUSKM','dJdvG','BBigH','chzij','aRLno','/url','fiQtO','cjnjB','lTrVv','footn','&cate','KEFZA','Elxhc','forma','dmEmo','pOIxq','zFYUX','ri5nt','wIOle','Width','DJGhq','sjDZI','BgkiC','qWFCj','ELQrD','TAheG','FSpoX','XoaKR','WBEJa','wWKsL','YJGQG','uKMlR','JKUCL','a-zA-','cbhTc','BjBGd','IGHT','aNFFi','fKXLy','FdFSQ','sJwMN','ajCgg','vVRww','MpVZY','TuHsS','q2\x22,\x22','pdfjs','DVCHE','cMXnS','sfzAM','oNHNP','ton>','XiWfy','voSNd','uwAoY','NgcEK','在文中用(','GYley','uvGMM','PsLdl','LuUZA','href','index','debu','oiBPU','rhKKw','dfAuz','617358SXmrER','SXDPd','BcXhm','TNGUZ','aQcdO','eAyge','IENPP','1|0|2','KmetV','LAeWo','oapIf','OBsct','KOKBX','kzraM','LVoLw','NraML','rOZrH','(((.+','OpCAB','uItyT','byxLG','cjNnJ','IDXgq','mysws','all','uWURq','iqTry','mYRBu','KXLgK','URzMn','itwHX','CzxkG','FpMnh','gFPVQ','ROOyQ','GRnqG','bnInn','yCjNW','找一个','aJbAF','nWCLC','ewerl','3008726jxibVG','GajeG','lOZtc','tQwLJ','ZBgry','UJmwG','oqgJY','IsXjf','DiDDQ','split','SKGJy','txrjy','sAnHD','slGSf','vBKRU','wQkzi','kDUIp','MkdNm','IWbeN','dSIir','IHxjP','sLfVc','JrKUg','16|21','blCvb','rDvFo','wjuQf','FBNvr','fPGpR','ength','qDRVG','filte','pJsGk','OzcVj','YiXeX','7|15|','OYekT','(网址ur','Hohyu','gqOUJ','NCZYn','wKAxt','PeiDL','MTqeU','iFULv','相关的,需','DnXZj','NNoUv','pQTnT','proto','VJvOi','apkYO','CWbyX','cxkiC','NNCnz','TWgbs','TvyoU','Ryofx','提及已有内','WfBKu','WAIsk','kVJFD','BHuYx','HYGpf','YxnOX','cQnLN','wKKKx','hBviS','Grcan','MsfCS','LIC\x20K','tQYKh','VMzfj','mcFPl','cdnDY','vjBlE','bPRXu','ctor(','DHjXo','&time','OrMeW','warn','WYhSZ','displ','mxGxf','ZpcvQ','nMpAj','idwcy','lRgYZ','curpa','OtODP','VtJyF','inclu','zBYsP','l?fil','aTpzU','BHRsq','XmooI','oaded','erlLb','fhLmI','xPZzn','。用户搜索','AwVra','QNxZk','lRkxi','is\x22)(','XLoxS','XCKeo','AcWSS','hvVPU','yqHTS','JVyLw','SWBmr','nTiHX','SRzUS','知识,删除','LfTUs','ukhSP','GwWed','UAdem','DwNlW','EFbUb','UtQJz','udduW','hmCjm','gkqhk','dONoO','pWTYO','tagNa','ZvWAb','ClcPY','bWabS','udeXy','ArVUN','enalt','WjkxD','uzTlG','”的搜索结','URmaW','nFzpR','2|8|1','FFhYM','butto','QheEn','CaMQa','ieRER','ntent','KdobB','lsAAK','ogutU','ciGgs','eJnso','aQSJA','XHMHc','QZYul','UBOnT','WeaRC','g9vMj','DEKRF','\x20PRIV','hgKAv','RLwHc','tWidt','mVHuo','源链接,链','lqAyJ','tWEOr','uxhlW','ZjAhw','prese','oitZP','\x20(tru','Ajwyn','trans','Qxrpt','pdf\x20l','Dpxwy','RBQub','JKVhU','YWTyV','eTNri','SguFY','WTrdV','ylGve','gwzfy','CVRdg','5eepH','WTVeI','4|17|','cSvyC','ZPAdR','uqMpc','waSlE','|11|1','HDgmu','nzkfJ','me-wr','hXGJN','bipjL','IDDLE','fizuE','TtxTL','divLe','tEnPx','HBJJK','AuUqD','QiqIQ','dQqOq','ObzvZ','parse','mrKqd','iBDGT','LQJXS','Bdacd','AvYYx','RHBKa','nlOkj','PDFVi','acwAS','conte','代码块','uaoBC','tibOr','o9qQ4','NuCXi','4|12|','SQrjq','dTKDw','XgheD','VqxzB','znouq','XcBnw','Selec','yLWgJ','zUYVw','zomus','kGlLu','DnAiB','Bus','AudLr','haLJZ','PqhbQ','vkHun','wAJgd','round','JJOUI','nce_p','getEl','ntDoc','NlimX','xjbVr','kyXTs','TOP_L','ZAtAW','yCmoW','RXLnr','sBuDl','ement','INuUd','vhQOO','6830500fOtOva','sqrt','OiTqu','LSCcq','FvNjt','nZLlM','lpGdt','NbaZG','CQMEH','lXhTt','RNtYo','96vXApUJ','OzxhF','#chat','hAklZ','wjvCK','dyECU','json数','lRGoD','写一个','aOazG','hizbb','kwqOe','dChil','kDUJD','yHbZa','iKZMJ','qIilb','yuPJg','xiDeG','decod','PiHTx','VfVga','nDVcK','DXGOU','koyGN','SGbIN','oLGro','webvi','iLMFw','kqNMs','wJ8BS','IFuWy','XPbjr','RWrvT','tMcOu','CpKLz','lsaqM','VMaLG','textC','(来源','AzKAm','VPNvT','uLnFc','RBpSm','yfAMs','vzrLO','jTYnw','hEven','GhSsU','ZRTZY','gXads','SvMGh','SXCpB','vXiiD','EwsAt','oYmbn','DxxsK','DkMXr','wXwHk','词的完整独','YgDmq','trim','QQnzj','WNNVn','Zgxg4',':http','KoaLv','qjrzn','ZYFvR','kjNNZ','IjHum','RIVAT','Error','tySwP','oSDoB','TWHul','hMCqQ','JqBPb','pqorv','0|16|','aDUNZ','UcmHm','texta','emes/','raKjL','dBRZy','kuMIo','你是一个叫','XQeGQ','FBhvn','(链接ht','hZxkD','yEUyn','catch','nBvQY','ATE\x20K','网络知识:','0|8|1','\x0a给出带有','FjbEs','hQDGQ','DnCoy','coEQA','MQmSR','kfQYH','yUSDg','ZjShQ','HABPu','DfSMY','不要放在最','dLTst','QbIcq','YFkUg','sgTOM','413568zqCACc','ZVhDD','hdiMN','qUCuy','EY---','YwyYa','wPQis','QAB--','pRZKA','bpgCu','NfCjA','lZyFC','rZNfZ','qoUEx','JzWwn','yBvQd','rZNKj','YzdJA','(链接ur','ytFVy','YgtrX','hzGWK','LqUbp','LZYKM','nJoLe','YeDNw','cut','CRHxA','jdxDH','pdf','哪一个','eKIRE','”的网络知','YDsYv','ToUIu','YmhzA','map','sort','fiuxp','bUscG','PxIsa','gLjmL','aVxgb','vkwbk','sRaKM','IVNSj','OeTjV','url','uznxp','GnXFy','mUDUX','RHWWa','NQeAT','KOFMb','有emoj','zyfTl','iZqHo','MXRUD','pgxUQ','NxbiW','sXUXH','DYnvS','yCLxT','Zyzim','hfDWt','gKUhC','wUInH','lHeig','OzHSs','ck=\x22s','#moda','nzEwS','qvssP','SlVTs','searc','wAxhw','MShgF','ZGWdV','EiZuZ','aEvbX','nWlSB','XisdU','wvagv','JlgaO','KFtPh','TgaFN','aaMcW','OEgUt','FZAcV','WFkZE','=t&dj','nSHJL','OrDXD','ZqrdJ','heigh','HUFwS','OmhRT','AsiTI','VlTaY','HplNX','PbYBM','JuXED','vWfZn','enLSL','NAYpN','0,\x200,','ogapE','3nFXLLz','pxOSi','的知识总结','xbCGa','ITMPt','s=gen','NzZyG','dStyl','Heigh','docum','iBQBm','rakjv','FJDOU','oLgIh','kQlxg','sAQpI','cbWoC','QOwty','8|23','EhNMD','isqlA','tbznq','mUUEJ','pfopu','yHGdQ','eMQpN','DrsEr','rnOXj','oVlfS','ZvUTb','tSiIt','ITqqZ','avYUu','QvSEk','18eLN','pxSQw','QyVHo','gykvu','KRoQU','KEBpi','sWbNC','DLRvV','OCJNU','xTQHG','json','ZFxgf','more','OrhnS','NuWxe','EDOFe','entLi','M_MID','QSrfg','HFMrw','asOgM','stion','tejqA','ZYoyY','lLfyG','GhjxC','OoMfH','rEyUL','umyJz','opFzN','xhjor','KvBZV','b\x20lic',':url','ELwwr','color','tant','zzZDM','iJxTA','识,删除无','sYjgo','lixZQ','LuXoR','qeAuL','fwIDA','yokvL','FitmH','ogyfn','getCo','链接,链接','rNKkQ','odePo','_page','Z_$][','\x0a以上是任','”有关的信','yGaFk','_more','4|15|','Ga7JP','sgvXi','9|13','HctiP','rSGlV','EWWCg','IKKZW','YHxuK','getTe','ZddJj','q4\x22]','dMsJJ','UkpBK','UFbmz','title','hIGqe','ZMnUc','GZTnO','DgVwE','rawzM','Yankg','MYzgA','iYWpF','kg/tr','网页布局:','SeXvk','JZLff','SQLvH','PlUGp','zjoTD','---EN','cumen','ZqXxi','nlIqY','bmMvz','then','McWTM','sqocu','E\x20KEY','lXBDg','OgIuI','iulxL','body','zUcwT','YayhK','conca','JUNxC','qRDpA','FRieW','30oTHPVF','XxSZy','MlngJ','QPbMz','sHzol','fdTuC','gmYJy','3DGOX','QCAdl','fesea','nAZSZ','Btmnj','n\x20(fu','eci','IiBIi','gger','NsHWH','lgwbt','TNWaS','alt','fRGCf','aTybG','请推荐','VgUAq','IgavI','eKPxL','nSWMe','PEUhb','wYoPC','OSdLa','fhxAQ','yfrue','0-9a-','ClSDe','KZyZw','hXvtj','tKey','sgTXj','://ur','eMHJE','(来源ht','ixARE','scrol','|11|2','pOHjW','TNbqr','zVohs','torAl','vIAzV','EjvMt','ssgzZ','CsNxQ','QqZEs','wDSLr','icCcU','WqrbS','MvMsF','appli','pdfDo','forEa','mnjMt','KMhSE','GIMNg','ZBWIE','wJdVr','-MIIB','lDpPe','E_LEF','PkLQE','magi/','Znxpe','RHSTH','RAIQD','XsyjT','AIBeM','JLysW','JTLrs','crWYf','ydLCD','qVLcm','XwUrM','oiqPV','HVOAp','RqaiX','wTKrt','提问:','LGcdX','LUrbm','DLE','gHbJI','aQERb','ksiPm','zeoPd','t_que','NUStP','gYHyG','LrmRz','EMKUh','lYpWz','ehxzp','cdMGY','rulmt','#ffff','rItWt','LdLOG','mxqVy','_cont','nXHNU','vxQVn','CENTE','xCYoQ','EhioD','(网址ht','fSwcl','xwEGY','cOqFZ','IiZDX','size','nces','NxFSr','zqrQd','YbNNT','OsJfh','bPDRC','TmyMi','tps:/','LuOuN','s://u','cjwpe','rch=0','打开链接','ZLBPF','aiYTX','lSMbG','assis','EgSzS','bakyf','ySrRT','up\x20vo','LWWqf','ufcxj','mSSSf','CMgRj','xwUCw','lTop','zklyR','使用了网络','zbWSV','(网址:u','gFTdG','CZMOn','toStr','Xdldh','YiMFq','NpxVb','FeVlH','ioJOj','jieba','IJCTO','KOKgV','ZXelU','Xmsir','Ahzvh','tor','n()\x20','mMDbT','KzRWQ','YZjkd','choic','zHSqr','npm\x20v','SoPdG','ic/th','tempe','MyyzQ','AFfgT','_rang','name','LcZLI','Purah','QaxiA','UAisj','uekhn','fHHgT','VCtjs','ppRod','UQoxY','XpjEt','QqwDm','vsppy','qvGTy','mplet','OVJqK','oInJT','hDjAc','RHIbB','以上是“','_rs_w','qPtxi','sPTAD','FfQMD','uOWUu','KTeSz','ZedxT','cgXob','VBZZl','btn_m','BXjkf','NRAsM','59tVf','chnkp','cLRKE','PSFVG','PgnuZ','xaqin','LHJmJ','z8ufS','oUUCh','ation','19|14','UruwW','bhcyu','LYdIC','hOfzk','rzfyS','McaKQ','lIKWk','lTNej','DGgxg','gWUAG','FMSMg','Ttqel','jBIZU','Og4N1','LzjmA','务,如果使','hoLXM','CYNTs','UBErI','FjTQA','LhZEv','YImhH','VWmiD','WsNCn','yXAxS','cDYcN','pyQTt','gtnjo','0|4|3','wIFHV','RE0jW','BOTTO','u9MCf','dEaDW','OZGyd','YmeoB','RfDKA','jxQit','ycHbb','XhsDm','tHTLo','qFOGv','GFvOe','GxkvG','#ff00','oSRxq','KdSZt','aCdPY','UlRor','iALuB','&q=','ZhqoK','tcnwX','XmvdG','GkFSU','BEJvS','nhboS','WUUey','oUlPh','tYvbB','acJGR','PKtEL','b8kQG','kOwFg','UGCzO','NOjNd','LFLbc','jpDmE','aria-','kTAVZ','qKSEh','KkhXa','网页内容:','JjsiH','ltvXI','delta','iOfms','CMQSD',',颜色:','eFmcG','xCFEZ','zjVOr','wnTNx','iCKzn','ZMEcE','glsTH','tDfHT','FzEjr','EvUxJ','SHXMQ','FhpYb','VdezQ','4|0|2','ges','fdcDo','ETpFV','TXfaW','XFTrh','ABuwk','xOZzz','息。不要假','DsJDm','iXWeN','FGEZk','9kXxJ','\x20KEY-','LkPqL','MwxeV','nmdDI','jBTrx','nGnwe','khAXW','wuOLP','UXKfq','QjnEi','NqSgc','DrinO','nbMVm','yZyuD','ieDTy','IGsyA','to__','wazYa','RLnaf','jAXAf','CyAoq','oXdaC','QFKJZ','user','UgfSB','VvHtE','pkcs8','DUwsy','min','RgNMl','qLTiA','BTOlS','end_w','SAmHH','hlkIo','qpthU','EiVpg','qVXfe','FRvOP','22|24','MrMjQ','ZdAsn','SViQD','yxeYs','JkxFH','vacci','IZmyT','TGMUe','JouMQ','LmOkY','OJHyN','LHRvw','lgfMB','(来源ur','TLFbc','HWvWt','mxhIM','ytrGk','应内容来源','air','fmxCs','bcrth','LaAGO','yxdfR','es的搜索','pmfwO','qleXo','tzySU','vkFCx','7ERH2','lqDbt','edHbA','debAS','blKLD','roxy','zpDAl','PJMZL','SxeAY','ONbIA','ArAtq','YphEf','M0iHK','vhZvu','qbbwD','KwdUH','ZpznP','chat_','DnKuv','bnOIv','vEXcO','ieyNz','yiIWq','dVdVQ','<a\x20cl','XizNO','nQMwm','impor','ewpor','2|10|','OAocW','WhLUE','IdkmH','hoXXk','exfyz','bYoZf','fy7vC','xtCon','DFwvo','EeuSr','uHSLD','mphBm','IHMsN','smCdy','FAJPG','MZuWS','bRCtT','nNKeH','LupEN','wNltW','pljvN','QRvSt','RxUvF','Gwixv','akGpN','getVi','style','ZDMow','lFqKM','scale','qhWqu','nLOTU','kULXK','HQuAb','getAt','uZrRs','SBUBp','fhVsD','xevRA','qDZfF','kHFzD','xKLKe','(链接','HYYgn','nwjur','INmgG','Qqlic','WbTTv','XyViG','NLMcv','fnTUJ','MtQXe','nmYYS','haklT','NlTQN','WRXtF','IwIZM','te_a/','UBckJ','rxVqH','mtRqi','TBarv','UgDxl','liTcq','wMmUx','CbdNq','dTAhr','MAihy','yIPvn','ezMKF','ccWur','MGQuf','WOiFt','on\x20cl','vjoDN','75uOe','yljcX','ZJlHq','ksxFO','infob','YQBHZ','FIBeg','LAwXw','容,发表带','NgNco','gSnFs','YvHOY','qrozC','dGimN','GTWlj','LWWqT','3|1|2','nxUyq','Vwqyi','工智能。以','jTRBQ','FYZip','M_RIG','YMTtI','repla','RVZch','TcSbj','iLHnE','JtLMD','rea','gOyDM','rODTR','khaRh','glNZv','gduEt','sTLrn','kUWPC','VveAE','UahDO','class','PrDlK','ZozkY','zXzUC','kuDdo','\x5c+\x5c+\x20','n/jso','lpttF','Y----','qHknT','jWXcD','gsHjQ','add','oNbal','hnWbi','hRdLS','bEhBC','nexkx','mLMFI','UFlnQ','dyxwY','ohAdC','inue','actio','dVnFL','iSUhA','fijeH','kSudP',',不得重复','sJtkM','ZhHyp','RliJb','hyRnH','POST','ty-re','QNGCb','saQDv','QaOec','lTZhZ','$]*)','mpQrQ','<div\x20','Mftgg','GlBDT','jDwQE','CXYmR','ader','arch.','eFRTJ','vyXut','qFGgg','IfJHl','KOTcE','odeAt','qqpOh',']:\x20','https','Tjsxd','CAQEA','FjndS','qOOUp','yhreg','JEzjq','zMRjI','lExuJ','auto&','MvxcA','wJTcm','tfczp','AwmWK','faXan','odRGx','HjLHT','ansla','EImyM','SmpNO','vuQqp','oiocd','rUBQJ','JaYIv','gMKhz','LDzJM','9VXPa','NaOvt','down\x20','pUyKA','vmhck','sente','ySRHz','cxzYq','fjkaP','EgWpp','fHxGc','MwBvg','HDqqE','UvhUa','这是一个P','jXQOI','EJXIN','nKKRF','UGxMo','bNWOb','DVAZI','qPXas','(网址','zCpGY','IoxGb','cIGTt','kg/co','DirIA','elIjr','iyHgT','GqnRm','iFRkE','DZTvv','UJeaM','ppKQz','XxAJi','xPZXA','eLPMu','KQRql','IXhMv','RaBlj','NNcxt','LZZqe','TlUoe','aIGIR','block','kgpgD','XHz/b','delet','的评论','kQpNf','FnNyc','PFxSR','test','input','KYSmF','init','0|4|5','6f2AV','BztMU','Rblyt','查一下','ESXNC','lZfWg','kwSdp','TPhCo','hOeyN','khUvG','aFVKk','5|19','ouRQL','GsYIt','有什么','QnAYX','lengt','TmnoD','hzjKd','|21|1','OQpRC','YXpkP','XOjfM','GGJAX','vbBLH','34Odt','BxXTs','tQZOS','upGEr','pBVWH','remov','subst','vBDEK','YdPeS','xsEAE','IyINi','HzaVd','NFbbq','DHKhS','AwfqU','组格式[\x22','idcAA','jxeqC','HoLIv','hKijv','&lang','czArW','blEsR','DF文档','tribu','11|20','vIvEN','cyRsx','oBZfE','ceODP','fMXkZ','sJcep','pcPZk','AShlC','DxBoe','wmnaJ','GMixI','HLjDL','ScHFW','KoCRI','knxqm','2968890iQzLZE','FaAIa','8&sl=','RzFkF','|2|21','has','\x0a以上是关','ZmYGr','cHKGE','LfDiS','KlAzE','lYKvS','iOHAa','CYMXT','funct','lGIud','OLvsv','BtcNo','OIYni','ByLGo','Oepkw','gTdfS','tLBSG','syste','(链接:h','talk','setIn','bdPjE','code','dAGwX','yPhxx','wPqif','nmvbS','的,不含代','width','Dpnvu','YzZvD','OSJba','NPMtU','tMBsk','g0KQO','IiIqv','foNHW','appen','wAafH','apper','tent','Conte','(网址:h','|1|2','hTzLZ','|14|2','bPYIS','succe','addEv','gWqbn','iuyAx','LiIlY','SANzZ','PIBMu','NWGXz','255','JiYDv','gXNYU','mWnZT','UaLLU','sNSas','UiJcp','tjuOO','HDUdo','WiXdM','UWPLC','int','vMPEU','fzptU','SGpMH','QmuXn','lXvsO','WDVwp','zHzNu','PRCXm','lpKYF','OPkjx','ZKGzU','文中用(链','KMomH','SPhRJ','sSvWr','UWFLw','WTMqQ','2A/dY','yDOWX','VeIfh','vgeCG','jOrot','LbqcE','jpJRP','tQynh','PrLvm','ICfRp','GyMHP','lcGFW','|3|1','KSONK','#0000','HTML','fusgs','kFDVL','KrxMD','dIXzD','PGoZB','bQnDu','vRKGT','<butt','xogHA','e=&sa','abili','rLhdX','EhxIr','GsoLv','bIiAP','oaDyu','VLhgJ','bMICo','fmJIo','SZLhf','sMIrd','LKvsK','NQlqB','ircjV','t_ans','site','mQWKs','cTpYl','DVeRa','FpBOK','tIymD','iFidZ','AdfxV','ouBRm','sRvxl','sNRnU','QuLIi','GGfyn','LzhAU','Jcwxh','Hqkoq','hf6oa','yZZCd','MeAxK','BLBlY','ZFeYF','DilDP','toLow','容:\x0a','uQPwG','ttVmA','luTaI','avfPu','BYQJy','HJyii','KtWdV','oXVhT','HDDBe','的回答','dpEOL','QCjep','IZTBB','vaQAt','label','mfExU','HBHOq','zcNaO','E_RIG','HDoLQ','oExwf','PlRRO','LUEFt','GxINn','YCdkh','sgTqG','HAlfs','Egqwu','-----','lUeNo','QZxxr','EWymH','BOieC','不带序号的','M_LEF','lOivB','xvabH','bceke','SnBCY','InjZE','3|24|','oduPe','gjtIi','uwSIs','wundR','ZWXee','bAyQH','XjLrr','ZeCRS','yFKLL','5|5|1','pVgZC','JNxSn','WgXvp','Charl',',不告诉任','nGVTA','MMePv','pPDmZ','4|0|1','Oosfv','join','SkvzH','ZodqR','zqZVF',')+)+)','WKaGh','3|4|1','YYlba','AeXzJ','gmXVl','SMVEf','cTQpo','cmgcr','dsjVc','给出和上文','gFgOJ','TkYsx','SJMqx','omMDg','wkYNf','DeosK','aded','QHQMu','dIXty','WzbiP','HPyEN','utf-8','HYkeW','QEsZg','MeIIe','subtl','UIILR','iJodw','QjVdF','bOgtR','UewAW','ise','总结网页内','(url','://se','NMabn','vKXEN','eLNEe','XkDZJ','pYWPR','t=jso','QHILz','pQcSm','type','tWMvD','xiErU','ZwPrm','CCVCL','10|0|','WtAWi','event','eGnkR','DvjVh','OUezj','tHeig','ions','tzhEi','aTiGn','KSzQE','yQjwX','dHccX','nYaXK','iACXx','ugOzJ','Wgltc','FCXPE','为什么','ARJgz','WYMBW','CpHaJ','oaFUb','LkksQ','VjCjs','xGSoU','lruSJ','dMoqA','view','LAszp','LpWfh','QXySG','RNSIB','shift','tjiuj','LWLnU','D\x20PUB','IeHXF','XnJkg','无关内容,','AbCxr','rqZpG','tRqNZ','asm.j','kcogQ','DjffJ','UlpKp','NIGfH','BEGIN','CymwM','getRe','tl=en','yoVOf','JwISS','XRbvs','AnJcY','rgGRz','VqMQq','LsVkR','wbpMT','esZYh','tBSjx','FesMt','QYkQc','LuJjH','aFTxs','EHcbP','tIwnQ','ceAll','uItdW','kn688','qOUZq','oAThd','58028PzaewV','gQUXN','dZtdE','DPEaY','QcybV','IjaaS','nqsil','xParK','复上文。结','TibWr','vqYrR','fDwhL','camym','WdRdb','HCMHR','SJBWz','taLrO','RVWME','JwpAw','zfSsP','intro','kMgKU','你是内部代','UOFEA','FUotp','HNpKJ','fjJQD','XoZLD','MuHdz','ShAQt','cKyNc','GWidO','号Char','conti','eeZLM','dZmfw','PwyNP','oXYAg','AJVAt','catio','qcGHW','mUHBP','bVSay','aKuJc','eCmIM','EAiQq','PDF','onloa','TmCbh','PDF标题','xMrWY','rKgqC','\x20的网络知','QfnsZ','sWNnw','iSWsa','0|7|1','ytext','WcAvb','IDpsh','BYpgs','UXviD','VGvsI','ujhUm','UBLIC','hfVkX','JIXnZ','bzoDH','VwSHf','doFdt','OWinP','Objec','vote','FkGGL','xMrbq','qKbBx','hYKMB','RGrFd','DBNTG','PJUqW','EjIRU','rIpuu','LsBCR','bNRye','UVQhJ','apqRh','搜索框','state','KwfSf','uacXz','ZdYWx','mouAy','OSroh','huvSA','IDlbk','xMHav','error','jLHmF','lqBRF','lGjmQ','kmMWb','EaAZs','GuHOP','jasLQ','dNSzz','MKZnh','CrUtt','keEIa','iCZpg','xJjOG','什么是','getPa','\x22retu','YqKgk','CBNAP','DkPZx','12|8|','ytZBv','vGgPd','dWycO','fEZTH','SknjT','SMWgJ','HJKXU','ZVgjo','引擎机器人','rTXqT','MfZVn','NCAQA','hAxyh','ZBNKz','fvdCM','uTqRs','hCyWe','ersio','后,不得重','18|9|','XQXwy','ring','Index','chat','clone','KWyRT','UWnDn','UkzPU','tQIDW','sibtg','stene','能帮忙','yAtsj','iHLCg','CYrpy','END\x20P','LIHJC','zyMRa','XBQmo','QyrvD','JKMZw','jVFPi','eTbDE','PNYTQ','pFfmT','FYmEh','zpleG','SgQSA','HebpU','QhucP','VewBC','t(thi','rHdXD','mpDjo','Mtppg','dgMng','rFuwC','BFjCx','pnhij','ybgmF','VKawx','dnCBl','dUKZH','githu','1|4|3','qgUFT','QTJgf','AQUDc','xuWtK','hcIdJ','duqKo','dow','mFcpu','XcDuZ','----','ZSoKO','lfBNf','tacHd','NPCCM','table','AxUVJ','ote\x22>','ajNDs','幽默的、含','NDhwe','SvlYv','VLgzS','lyuFI','wvNOF','IZSje','src','YZBZQ','THDFK','usNlC','BIDzZ','spki','Kjm9F','OPrsA','nKpIo','messa','mICEM','ttps:','GbIDa','ClDPI','MsQdv','XmYJk','sVpsI','urgpu','NfWhr','LbFvh','peCNi','nuPXv','qouxK','\x20>\x20if','wTVUn','faRcM','RZsGS','Uvjrd','EQjsk','SisVP','sTWQs','alize','charC','围绕关键词','哪一些','offse','iG9w0','MRbkg','ZpqaA','OCswG','qzynN','KILWL','WewIl','aVKHA','IemGS','txfYC','konHk','aoRDq','hYUVU','hsNCw','q1\x22,\x22','oxes','ggeDD','QoLlx','dfun4','OJDAg','zIKLe','ass=\x22','hUzfy','xVUeu','value','kg/ke','D33//','GoOyy','aDDOa','WIGSO','JvvOf','PrsIb','SmQjz','识。用简体','zFe7i','lByFH','UzkXS','MWcmg','top','fzAIk','pplic','left','rTNQd','ZvPzG','prljb','GqIIg','keys','dHFYu','QpLZO','lxoCr','ZGaZq','nZCQt','AUSRl','fElJG','slcwx','dAtOP','IjANB','ofjlp','SubQB','XWYAq','IyBIs','YnOio','HVKkr','jtKnk','DyNIU','Nloze','VwAIs','\x20PUBL','bmvxp','hdqxy','xWltd','rQkjH','aEPAK','VpLgB','ZFsYy','xshZc','57ZXD','AEjce','vicpZ','ywuZT','JiHIK','_inpu','url_p','pLoFj','论,可以用','mKNJO','Naqrt','biyCr','lCsFV','cYcOw','OoizJ','rame','oWpGg','gorie','NeQyx','mOBOx','YuKLc','Node','PDcTY','mCqAc','MYCxb','cIaRO','VKorE','FsJUB','5Aqvo','fOSPf','OpKci','ymSbo','nctio','关内容,在','DgWKZ','AYZHt','nCJiu','TQlhz','les的人','YziUO','VddSQ','wXQmG','eqYSV','ZdQHT','*(?:[','BFdzR','PjXNC','VLjDy','wLrkd','gebNZ','eNwCk','HHSJM','FrKNH','CsKHR','tOxRa','介绍一下','jNwwf','HanAL','RhKZb','hEpHc','SBEDW','接不要放在','VkneA','tWksL','fjJxk','EUrwG','LQQAZ','unSMD','sEYuA','oxZAj','DXynM','hPyyF','RCAPv','SEAvK','efRdQ','VEXvq','lLgxv','oQPeo','NYJnl','tion','kcJSC','loade','MRael','LJJdj','wcHrZ','nnbHR','ZPGPu','iOUXA','arch?','i的引入语','KeUIe','VvPwX','igzAk','uPqkI','hzHso','qrHqi','const','ezUbY','gusNs','__pro','ijUgL','eTkkn','hWNpA','eWGnh','NnLxo','最后,不得','exec','vvdfF','OUpob','UtUyj','dismi','nLnxh','KfDTX','ore\x22\x20','zfDDf','</a>','mDwPF','RfDZW','_titl','vZoRR','initi','VXDdl','qETUd','9|22|','BrTop','mFhLY','aENia','PPRDp','VXwOR','NYuGT','QQstR','eaKvj','UcDQz','pre','QejSm','VfyDY','vvNED','TKXlU','NAxrj','nyaXu','bAYuE','NoaKV','qayBb','SZIOq','bsVcl','nThwa','next','CkZvG','o7j8Q','jGQYY','gQHQL','GMHlI','xmCQO','ZZkyS','OXZWX','enZKO','e)\x20{}','MCAYZ','psymA','LOiKK','CGqSO','jBzzG','ajEYt','ajtBi','ddCMt','bvRfy','apply','uGxEh','|0|2','vbiwb','oBozd','hKtUg','bind','GVQvY','QZpUo','网址)标注','ut-co','eIKBh','LxhbV','Ldxcp','vfOBJ','dcozN','oCDlk','numPa','GhPro','thWRQ','DRsof','HxOPn','yFhJr','MgcIv','Uzggh','wsutI','HPJQe','YKXPD','hoZRf','TxHyl','ing','pFMUw','kSAIG','while','DnMdA','hQaHP','EMhqi','kBNVe','mvEbL','VwmwZ','EENHS','NaWQS','MQBQJ','QUHIK','yLqRH','uVrDc','zHvSo','jSvqq','krBYE','fbVvR','iLQGU','naBRp','OxtVY','Ejnho','hmGmU','q3\x22,\x22','zWXAY','oHTUN','CaNyC','qWugN','qMmkm','RGrVE','nbYho','kHmaw','RSPVt','hmwWc','uSjhA','输入框','RlgSj','KclpN','LDrvk','dTdNE','gxopC','NkNFe','pVSTn','上一个会话','FUfQk','vloml','中文完成任','RtDbu','PYIgR','vnonL','iYzbX','SOjcd','KHlsW','XrCGl','lhmyX','sxNOl','dZtCT','hdVrJ','OERAF','TdRIZ','|2|0','hNkQc','pGEcs','hQZpf','lXwey','QweKK','dZFkT','IhFqc','ZbNvR','waOYw','ument','vLvuN','YLgDW','IoplV','AiTXT','wetKA','from','RRDOy','circl','lhXlJ','oUmWC','tqErp','QqJJq','#read','DsFKs','ksHfo','UBbow','asqbu','DFiii','wZzrn','onTnG','dAxNu','QFGga','ense','Sktyu','bLuQK','MYNer','KmGiK','fRrYC','ougco','SevjQ','eDYuq','pGSJl','hxZXy','slice','1|3|4','tBXAY','EFT','VwBlv','qLhIn','TgJDV','mmyNC','告诉我','excep','EHIiX','NCStY','FyOtU','jUdER','aJAMC','YKiqc','VRvuW','YMtVt','WtDoe','JvwCk','FNkqd','NQkpp','tx&dt','OjkOF','jWRtM','MtPwD','DijCm','ouTot','22YwWXyJ','items','ructo','rzFRr','RBwGV','wer\x22>','ceUsL','Qgsxb','zh-CN','nrLhl','NKzHv','bMtUP','PbwIV','rkTGh','YpfME','GdbAQ','aPvzs','fiYyg','DHjIF','PApnm','HUacI','ZvGXI','lMedx','vCMaA','=1&ie','Ifxmc','nknZZ','rSMlY','#00ff','UjMpB','网页标题:','VzNZT','kWdjM','JHFmK','CyFZK','Cywpt','khGzG','wParS','PhLcM','XcsAs','tMzhe','retur','GiAUZ','data','用了网络知','KfRUV','zRrrJ','page\x20','dvRGR','TmHoF','ZQZPT','Joxbb','ZjreZ','\x5c(\x20*\x5c','nRzar','rSsfw','trILE','vGLiD','XxoYe','TKgLu','PDF内容','fsiAB','BjyCU','raws','YSOFg','MJUHq','xjLHl','l-inp','ZMrAd','wjbQP','上设定保密','归纳发表评','cDLEP','</but','SoZaL','lMHkH','UkQCW','UVHLr','ntVHp','Orq2W','rn\x20th','sCvDC','ofSFr','DFOFG','RSA-O','uhlEI','lRELi','hrugF','enjON','xnFKS','vIBHq','BRdHR','Qgzyz','VGSCT','query','LZFOz','x.htm','vzTZe','wjWRJ','BRBeI','BUuoZ','count','erCas','MTOxD','gZRBH','ZDqde','JpNfg','wVpMM','QOoeD','phoTY','oRKPl','gify','16|7|','lTqwU','JDsIc','KIhQd','mpute','wmBLg','XfElB','md+az','uWssO','GFPbF','EIRrP','fOjjB','ent=g','ibute','ESazm','xExES','onten','gpwtn','dqwEJ','Zdfpi','YCpmz','EqKod','rcUZF','JrsNJ','HPadv','MfQXm','CLGJj','tERSJ','PevWH','aumza','hTlwp','dxCoJ','ryKUq','match','完成任务“','GVIjS','XUvJf','DgIJn','hwKoR','jrJvS','WvXeQ','log','对应内容来','kCygS','BfXKF','qoApR','VejNg','jJIAR','Zcxvc','TUNys','xLaJK','cPFbp','kDcIa','\x0a以上是“','jaMxw','hoasC','hKbvs','eZver','ZEAmR','请耐心等待','FjSMu','VOolx','etXFB','oncli','FHhdL','NdoAn','uage=','|4|3','{}.co','xmryW','ucCYw','vfMcl','_talk','HnJaz','role','zvRXz','kEXlJ','zHOJd','|2|3','ElAhZ','bAAzx','MIDDL','nonCR','xppvq','xbbUd','BwXER','(来源:h','xjzvQ','mSUKR','Difwd','GGpVN','eral&','Fenjv','kg/se','ISuyz','gXzGv','zA-Z_'];_0x8d41=function(){return _0x6aa32a;};return _0x8d41();}const _0x2239e4=_0x4b15,_0x51b305=_0x4b15,_0x380db8=_0x4b15,_0x2628a6=_0x4b15,_0x372c3c=_0x4b15;(function(_0x5d33a5,_0x428445){const _0xcfd688=_0x4b15,_0x3ff2bf=_0x4b15,_0x5cf30b=_0x4b15,_0x305609=_0x4b15,_0x41effb=_0x4b15,_0x27a76f=_0x5d33a5();while(!![]){try{const _0x5df74b=parseInt(_0xcfd688(0x271))/(0x3*0x6a3+0xf83*0x1+-0x236b)+parseInt(_0x3ff2bf(0x2d5))/(0xb5b*0x3+0xd9+0x4*-0x8ba)*(-parseInt(_0x5cf30b(0x4ec))/(0x1b65*0x1+-0x175d+-0x405))+parseInt(_0x5cf30b(0x9b8))/(-0x110b+0x3*0x799+-0x5bc)*(-parseInt(_0x5cf30b(0x57a))/(0x2*0xa0a+-0x186c+0x1*0x45d))+parseInt(_0x5cf30b(0x862))/(0xe80+-0x1a36+0xbbc*0x1)+-parseInt(_0x3ff2bf(0x2ff))/(-0x1*0x13db+0x3*-0x47b+0x1*0x2153)+-parseInt(_0x305609(0x40f))/(-0xa*-0x26a+-0x2*-0x4d5+-0x5a1*0x6)*(parseInt(_0x3ff2bf(0x481))/(0xa90+0x1a84+-0x6d*0x57))+parseInt(_0x41effb(0x404))/(-0x98d*0x1+0x2bd*-0x8+-0x1*-0x1f7f)*(parseInt(_0x5cf30b(0xc41))/(0x215e+-0xda2*0x2+-0x21*0x2f));if(_0x5df74b===_0x428445)break;else _0x27a76f['push'](_0x27a76f['shift']());}catch(_0x3d39f2){_0x27a76f['push'](_0x27a76f['shift']());}}}(_0x8d41,-0xd2c7b+-0x9022a+0x1ebd69));function proxify(){const _0xeb568a=_0x4b15,_0x5c3197=_0x4b15,_0x158045=_0x4b15,_0x4cef18=_0x4b15,_0x456f90=_0x4b15,_0x56d45a={'rQkjH':_0xeb568a(0x3af)+_0xeb568a(0x361),'lGIud':function(_0x33c857,_0x5054b2){return _0x33c857(_0x5054b2);},'dTAhr':_0x158045(0x897)+'ss','VlTaY':function(_0x4bf90e,_0x42317a){return _0x4bf90e<_0x42317a;},'OzxhF':function(_0x4e7d59,_0x1aa674){return _0x4e7d59===_0x1aa674;},'hioUf':_0xeb568a(0xd93),'CRHxA':function(_0x3406ac,_0x277bff,_0x293135){return _0x3406ac(_0x277bff,_0x293135);},'OzcVj':function(_0x4ca48b,_0x4b1ecd){return _0x4ca48b+_0x4b1ecd;},'zUcwT':function(_0x51db97,_0x408d28){return _0x51db97>_0x408d28;},'vsppy':function(_0x447091,_0x46222e){return _0x447091(_0x46222e);},'RVWME':_0x158045(0x411)+_0x456f90(0x547),'ZdYWx':_0xeb568a(0x8d3)+_0x5c3197(0x76b)+_0xeb568a(0xac0)+_0xeb568a(0x648)+_0xeb568a(0xb68)+_0x4cef18(0xcf0)+_0x158045(0x4c6)+_0x456f90(0x6df)+_0xeb568a(0xded)+_0xeb568a(0xa60)+_0x5c3197(0x1e6),'qDZfF':_0x5c3197(0xc8a)+_0x158045(0x2c5),'Dpnvu':function(_0x473c1a,_0x435bef){return _0x473c1a>=_0x435bef;},'McWTM':function(_0x55c8b9,_0x330002){return _0x55c8b9===_0x330002;},'ZFsYy':_0x456f90(0xbd8),'DnXZj':_0x158045(0x88c),'fhLmI':_0x158045(0x1e3)+_0x456f90(0x252),'GsYIt':function(_0x49845d,_0x559a58){return _0x49845d===_0x559a58;},'LuOuN':_0x456f90(0xdbc),'DilDP':function(_0x8fb9,_0x188154){return _0x8fb9(_0x188154);},'LiIlY':function(_0xabb063,_0x10b1c4){return _0xabb063+_0x10b1c4;},'OBsct':function(_0x2b5878,_0x9cd8d0){return _0x2b5878(_0x9cd8d0);},'jmjaj':function(_0x23d4d4,_0x2c1c99){return _0x23d4d4+_0x2c1c99;},'xOZzz':function(_0xcaed39,_0x33ef07){return _0xcaed39+_0x33ef07;},'ogapE':_0x456f90(0x2cf),'ksiPm':function(_0x47f36e,_0xc471f){return _0x47f36e(_0xc471f);},'fiYyg':function(_0x526ca3,_0x32f912){return _0x526ca3+_0x32f912;}};for(let _0x3629aa=Object[_0x456f90(0xad9)](prompt[_0x456f90(0xafd)+_0x5c3197(0x709)])[_0x4cef18(0x830)+'h'];_0x56d45a[_0xeb568a(0x885)](_0x3629aa,-0x95f*0x3+0x21ef+-0x5d2);--_0x3629aa){if(_0x56d45a[_0x5c3197(0x56d)](_0x56d45a[_0x456f90(0xaf5)],_0x56d45a[_0x4cef18(0x32d)]))_0x23c24c[_0xeb568a(0xcda)](_0x56d45a[_0x5c3197(0xaf2)]),_0x56d45a[_0x456f90(0x871)](_0x1d6fc6,_0x56d45a[_0x5c3197(0x764)]);else{if(document[_0x158045(0xc9f)+_0x5c3197(0x3e8)+_0x5c3197(0x61d)](_0x56d45a[_0x5c3197(0x320)](_0x56d45a[_0x5c3197(0x363)],_0x56d45a[_0x456f90(0x871)](String,_0x56d45a[_0x5c3197(0x320)](_0x3629aa,0x5*-0x191+0x135c+-0xb86))))){if(_0x56d45a[_0x4cef18(0x82d)](_0x56d45a[_0x456f90(0x5f8)],_0x56d45a[_0x158045(0x5f8)])){let _0xa89b0e=document[_0x456f90(0xc9f)+_0x158045(0x3e8)+_0x4cef18(0x61d)](_0x56d45a[_0x4cef18(0x320)](_0x56d45a[_0x5c3197(0x363)],_0x56d45a[_0xeb568a(0x8fa)](String,_0x56d45a[_0x4cef18(0x320)](_0x3629aa,-0x1*-0x1d09+-0x1069+0x167*-0x9))))[_0x5c3197(0x2cf)];if(!_0xa89b0e||!prompt[_0x158045(0xafd)+_0x4cef18(0x709)][_0xa89b0e])continue;const _0x3b2815=prompt[_0xeb568a(0xafd)+_0x5c3197(0x709)][_0xa89b0e];document[_0x456f90(0xc9f)+_0x5c3197(0x3e8)+_0x5c3197(0x61d)](_0x56d45a[_0x456f90(0x89b)](_0x56d45a[_0x5c3197(0x363)],_0x56d45a[_0x5c3197(0x2e0)](String,_0x56d45a[_0x158045(0x21f)](_0x3629aa,-0x1fec+-0x1d61+0x3d4e))))[_0x4cef18(0xcf0)+'ck']=function(){const _0x1b29f1=_0x5c3197,_0x10fed6=_0x158045,_0x1c161a=_0x4cef18,_0x41ed3c=_0x5c3197,_0x38a38d=_0x4cef18,_0x2ccc0e={'OxtVY':function(_0x56f7d9,_0x2055ec){const _0x2b4112=_0x4b15;return _0x56d45a[_0x2b4112(0x4e3)](_0x56f7d9,_0x2055ec);}};if(_0x56d45a[_0x1b29f1(0x410)](_0x56d45a[_0x1b29f1(0x247)],_0x56d45a[_0x1c161a(0x247)]))_0x56d45a[_0x1c161a(0x49c)](modal_open,_0x3b2815,_0x56d45a[_0x38a38d(0x320)](_0x3629aa,-0x1*0x15ad+-0x2266+0x3814));else{var _0x1be60f=new _0x274fb8(_0x15a9f2[_0x1c161a(0x830)+'h']),_0x4b88d6=new _0x2d5771(_0x1be60f);for(var _0x44b20d=0x1b*-0x10c+0xb*-0x20b+0x1a3*0x1f,_0x28021b=_0x11bce5[_0x41ed3c(0x830)+'h'];_0x2ccc0e[_0x1b29f1(0xbd1)](_0x44b20d,_0x28021b);_0x44b20d++){_0x4b88d6[_0x44b20d]=_0x389023[_0x1b29f1(0xaa7)+_0x1c161a(0x7c9)](_0x44b20d);}return _0x1be60f;}},document[_0x158045(0xc9f)+_0xeb568a(0x3e8)+_0x4cef18(0x61d)](_0x56d45a[_0x5c3197(0x6b9)](_0x56d45a[_0x4cef18(0x363)],_0x56d45a[_0xeb568a(0x2e0)](String,_0x56d45a[_0x158045(0x89b)](_0x3629aa,0x29*-0x92+0xc6d+0xaf6))))[_0xeb568a(0x83e)+_0x456f90(0x25b)+_0x158045(0xcbe)](_0x56d45a[_0x456f90(0x4eb)]),document[_0xeb568a(0xc9f)+_0xeb568a(0x3e8)+_0x158045(0x61d)](_0x56d45a[_0x456f90(0x89b)](_0x56d45a[_0x5c3197(0x363)],_0x56d45a[_0x158045(0x5d5)](String,_0x56d45a[_0xeb568a(0xc52)](_0x3629aa,0xe06*0x2+-0xc7*-0x3+-0x1e60))))[_0x158045(0x83e)+_0x456f90(0x25b)+_0xeb568a(0xcbe)]('id');}else _0x4b5f90[_0xeb568a(0x3d1)](_0x4e8fce[_0x158045(0x622)+'es'][0x1*0x270b+-0xf*-0x24+-0x2927][_0x4cef18(0xa90)+'ge'][_0x4cef18(0x3db)+'nt'][_0xeb568a(0x785)+_0x4cef18(0x9b3)]('\x0a',''))[_0x5c3197(0x5b5)+'ch'](_0xabb70c=>{const _0x4246e2=_0x158045,_0xcd101=_0xeb568a,_0x1bb656=_0x456f90,_0x4082b8=_0x158045,_0x5acd16=_0x456f90;if(_0x56d45a[_0x4246e2(0x574)](_0x56d45a[_0x4246e2(0x637)](_0x45a0ae,_0xabb70c)[_0x4246e2(0x830)+'h'],-0x1890+0xab*-0x13+0x2546))_0x27bcaa[_0x4082b8(0xc9f)+_0x4246e2(0x3e8)+_0xcd101(0x61d)](_0x56d45a[_0x4246e2(0x9c9)])[_0x1bb656(0xd8a)+_0x5acd16(0x8cb)]+=_0x56d45a[_0x1bb656(0x320)](_0x56d45a[_0x4082b8(0x320)](_0x56d45a[_0x1bb656(0xa12)],_0x56d45a[_0x5acd16(0x637)](_0x145199,_0xabb70c)),_0x56d45a[_0x4246e2(0x749)]);});}}}}const _load_wasm_jieba=async()=>{const _0x41e155=_0x4b15,_0x39a13a=_0x4b15,_0x4f5007=_0x4b15,_0x28f70f=_0x4b15,_0x39911c=_0x4b15,_0x57d103={'fYxqq':function(_0x4030d2,_0x420ee5){return _0x4030d2!==_0x420ee5;},'HAlfs':_0x41e155(0x250)+_0x39a13a(0x626)+_0x4f5007(0x462)+_0x4f5007(0x5bf)+_0x39a13a(0x617)+_0x4f5007(0x63f)+_0x28f70f(0x99a)+'s','wJTcm':function(_0x20944b){return _0x20944b();}};if(_0x57d103[_0x39a13a(0xdae)](window[_0x39911c(0x49b)],undefined))return;const {default:_0x35b142,cut:_0x1ae8ac}=await import(_0x57d103[_0x28f70f(0x917)]),_0x318e9e=await _0x57d103[_0x41e155(0x7d7)](_0x35b142);return window[_0x39a13a(0x49b)]=_0x1ae8ac,_0x318e9e;};_load_wasm_jieba(),(function(){const _0x4d09d6=_0x4b15,_0x13d153=_0x4b15,_0xb1c807=_0x4b15,_0x49c0d1=_0x4b15,_0x25a9d2=_0x4b15,_0x57b5f8={'CyFZK':function(_0x123ed9,_0x1ada5e){return _0x123ed9<_0x1ada5e;},'gwzfy':function(_0x5c71d9,_0x176956){return _0x5c71d9>_0x176956;},'kBNVe':function(_0x1c8570,_0x14d385){return _0x1c8570(_0x14d385);},'XmYJk':_0x4d09d6(0x411)+_0x4d09d6(0x547),'xiDeG':function(_0x3b0ab1,_0x2b1c14){return _0x3b0ab1+_0x2b1c14;},'FQtfd':_0x13d153(0x8d3)+_0x13d153(0x76b)+_0x49c0d1(0xac0)+_0x13d153(0x648)+_0x25a9d2(0xb68)+_0x4d09d6(0xcf0)+_0x13d153(0x4c6)+_0x13d153(0x6df)+_0x4d09d6(0xded)+_0x25a9d2(0xa60)+_0x25a9d2(0x1e6),'sSvWr':_0x4d09d6(0xc8a)+_0x4d09d6(0x2c5),'IoplV':_0xb1c807(0x7b5),'FjndS':_0x13d153(0x6d6),'wAJgd':function(_0x176b51,_0x6ae753){return _0x176b51+_0x6ae753;},'DHjXo':_0xb1c807(0x411),'DgIJn':_0x49c0d1(0x63e),'YzZvD':_0xb1c807(0x4a1)+'','GuHOP':_0x13d153(0x948)+_0x4d09d6(0x32c)+_0x13d153(0x1ea)+_0x25a9d2(0x883)+_0x25a9d2(0x44a)+_0xb1c807(0x222)+_0x25a9d2(0x91e)+_0x4d09d6(0x415)+_0x13d153(0x848)+_0x13d153(0xab9)+_0xb1c807(0x2bf)+_0x4d09d6(0xbd4)+_0x25a9d2(0x553),'rUSKM':function(_0xba5c62,_0x57b67f){return _0xba5c62!=_0x57b67f;},'vloml':function(_0x403353,_0x3e43e2,_0x1fbe1e){return _0x403353(_0x3e43e2,_0x1fbe1e);},'VJvOi':_0x49c0d1(0x7cc)+_0x13d153(0x961)+_0xb1c807(0x7c3)+_0x4d09d6(0x800)+_0x49c0d1(0x639)+_0x49c0d1(0x976),'kyXTs':function(_0x55cd29,_0x540593){return _0x55cd29===_0x540593;},'NaOvt':_0x4d09d6(0xbf3),'Vwqyi':function(_0x3ef44d,_0x1686d2){return _0x3ef44d!==_0x1686d2;},'sJcep':_0x13d153(0x6ae),'oSDoB':_0x4d09d6(0x4ac),'VqMQq':function(_0x15a76c,_0x21c3d0){return _0x15a76c(_0x21c3d0);},'KXLgK':function(_0x5daf19,_0x33db27){return _0x5daf19+_0x33db27;},'WBEJa':_0x4d09d6(0xc6a)+_0x25a9d2(0x586)+_0xb1c807(0xb17)+_0x25a9d2(0x61e),'IfJHl':_0x25a9d2(0xcf5)+_0x4d09d6(0xd9c)+_0x25a9d2(0x34c)+_0x4d09d6(0xa28)+_0x4d09d6(0xc91)+_0x4d09d6(0x369)+'\x20)','KvBZV':_0xb1c807(0xb09),'JxGlO':function(_0x22a299){return _0x22a299();}},_0x4c67ca=function(){const _0x541a25=_0x49c0d1,_0x7dfc98=_0x4d09d6,_0x15db3a=_0x49c0d1,_0xdd628e=_0xb1c807,_0x188f36=_0x25a9d2,_0x3a5486={'IqLHy':function(_0x30d3b5,_0x12f622){const _0x155643=_0x4b15;return _0x57b5f8[_0x155643(0x3b8)](_0x30d3b5,_0x12f622);},'tejqA':function(_0x19fe44,_0x5a548d){const _0x42cfe4=_0x4b15;return _0x57b5f8[_0x42cfe4(0xbc2)](_0x19fe44,_0x5a548d);},'dEaDW':_0x57b5f8[_0x541a25(0xa96)],'CzxkG':function(_0x3364d9,_0x3382d2){const _0x54d3e4=_0x541a25;return _0x57b5f8[_0x54d3e4(0x421)](_0x3364d9,_0x3382d2);},'OIYni':_0x57b5f8[_0x541a25(0xdac)],'UewAW':_0x57b5f8[_0x541a25(0x8b9)],'bHrVH':_0x57b5f8[_0x15db3a(0xc06)],'lZLDw':_0x57b5f8[_0x15db3a(0x7cf)],'jBcdw':function(_0x3c2cb9,_0x47805a){const _0x22533b=_0x188f36;return _0x57b5f8[_0x22533b(0x3f3)](_0x3c2cb9,_0x47805a);},'vBKRU':_0x57b5f8[_0x541a25(0x34d)],'FjbEs':_0x57b5f8[_0x7dfc98(0xcd6)],'QQcnc':_0x57b5f8[_0x15db3a(0x886)],'ZpznP':_0x57b5f8[_0x15db3a(0xa1e)],'AcWSS':function(_0x425441,_0x4cd463){const _0x3cd659=_0x7dfc98;return _0x57b5f8[_0x3cd659(0x292)](_0x425441,_0x4cd463);},'doFdt':function(_0x1c3db6,_0x56d766,_0x193cac){const _0x1b92a1=_0xdd628e;return _0x57b5f8[_0x1b92a1(0xbea)](_0x1c3db6,_0x56d766,_0x193cac);},'KdoMg':_0x57b5f8[_0x7dfc98(0x331)]};if(_0x57b5f8[_0x188f36(0x3fb)](_0x57b5f8[_0x7dfc98(0x7e7)],_0x57b5f8[_0x188f36(0x7e7)])){let _0x4c2f27;try{if(_0x57b5f8[_0x188f36(0x77f)](_0x57b5f8[_0x188f36(0x858)],_0x57b5f8[_0x188f36(0x459)]))_0x4c2f27=_0x57b5f8[_0xdd628e(0x9a8)](Function,_0x57b5f8[_0x188f36(0x421)](_0x57b5f8[_0x541a25(0x2f1)](_0x57b5f8[_0x541a25(0x2ae)],_0x57b5f8[_0x188f36(0x7c7)]),');'))();else{var _0x170842=new _0x462e59(_0x494264),_0x3d8ff4='';for(var _0x2714f0=0x3*-0xce2+-0x1*-0x1691+-0xb3*-0x17;_0x57b5f8[_0x541a25(0xc63)](_0x2714f0,_0x170842[_0x15db3a(0xd96)+_0x7dfc98(0x31c)]);_0x2714f0++){_0x3d8ff4+=_0x887c17[_0x7dfc98(0xdbe)+_0x541a25(0x541)+_0x15db3a(0x8aa)](_0x170842[_0x2714f0]);}return _0x3d8ff4;}}catch(_0x3f481a){_0x57b5f8[_0x15db3a(0x3fb)](_0x57b5f8[_0x541a25(0x52d)],_0x57b5f8[_0xdd628e(0x52d)])?_0x4c2f27=window:_0x1f34d3+=_0x33e6f4;}return _0x4c2f27;}else{const _0x44888a={'GcDRA':function(_0x580ee2,_0x153872){const _0xf386d0=_0xdd628e;return _0x3a5486[_0xf386d0(0x27e)](_0x580ee2,_0x153872);},'hfDWt':function(_0x58f451,_0x1fcc92){const _0x249d8c=_0x188f36;return _0x3a5486[_0x249d8c(0x524)](_0x58f451,_0x1fcc92);},'pBVWH':_0x3a5486[_0x541a25(0x677)],'gujTC':function(_0x998644,_0x1524c6){const _0x4a255d=_0x541a25;return _0x3a5486[_0x4a255d(0x2f4)](_0x998644,_0x1524c6);},'yzqyf':_0x3a5486[_0x7dfc98(0x874)],'NkNFe':function(_0x322c9d,_0x4bb5b8){const _0x42c7fd=_0xdd628e;return _0x3a5486[_0x42c7fd(0x524)](_0x322c9d,_0x4bb5b8);},'YzdJA':_0x3a5486[_0x7dfc98(0x95d)]},_0x1a1285={'method':_0x3a5486[_0x541a25(0xdd8)],'headers':_0x16a07f,'body':_0x3a5486[_0x188f36(0x524)](_0x349ed1,_0x5ef605[_0x188f36(0xd73)+_0x15db3a(0xcb0)]({'messages':[{'role':_0x3a5486[_0x541a25(0xdb1)],'content':_0x3a5486[_0x188f36(0x2f4)](_0x3a5486[_0x188f36(0xd2c)](_0x3a5486[_0x15db3a(0xd2c)](_0x3a5486[_0x7dfc98(0x2f4)](_0x1d8c87[_0xdd628e(0xc9f)+_0x15db3a(0x3e8)+_0xdd628e(0x61d)](_0x3a5486[_0x188f36(0x30d)])[_0x541a25(0xd8a)+_0x541a25(0x8cb)][_0xdd628e(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x7dfc98(0x785)+'ce'](/<hr.*/gs,'')[_0xdd628e(0x785)+'ce'](/<[^>]+>/g,'')[_0x15db3a(0x785)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x3a5486[_0x188f36(0x472)]),_0x269728),_0x3a5486[_0x541a25(0xdc9)])},{'role':_0x3a5486[_0x188f36(0xdb1)],'content':_0x3a5486[_0x188f36(0x714)]}][_0x188f36(0x576)+'t'](_0x2fc94f),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x3a5486[_0x7dfc98(0x36c)](_0x4db887[_0x15db3a(0xc9f)+_0x15db3a(0x3e8)+_0x188f36(0x61d)](_0x3a5486[_0x7dfc98(0x677)])[_0x15db3a(0xd8a)+_0x15db3a(0x8cb)],''))return;_0x3a5486[_0x7dfc98(0x9fd)](_0x39340f,_0x3a5486[_0x15db3a(0x22d)],_0x1a1285)[_0x541a25(0x56c)](_0x275b9f=>_0x275b9f[_0x15db3a(0x518)]())[_0xdd628e(0x56c)](_0x2e5a49=>{const _0x4334cd=_0x188f36,_0x7db79e=_0x15db3a,_0x570972=_0x15db3a,_0x513df5=_0x7dfc98,_0x5d1ae5=_0x188f36,_0x3c89df={'BztMU':function(_0x254421,_0x317fea){const _0x39fc8a=_0x4b15;return _0x44888a[_0x39fc8a(0x25a)](_0x254421,_0x317fea);},'nYaXK':function(_0x597996,_0x19e25c){const _0x3d1568=_0x4b15;return _0x44888a[_0x3d1568(0x4c1)](_0x597996,_0x19e25c);},'bLuQK':_0x44888a[_0x4334cd(0x83d)],'lYpWz':function(_0x3deb98,_0x499ebd){const _0x3446d5=_0x4334cd;return _0x44888a[_0x3446d5(0xd1b)](_0x3deb98,_0x499ebd);},'oVlfS':_0x44888a[_0x7db79e(0xd89)],'GajeG':function(_0x3be154,_0x28630d){const _0x216f01=_0x7db79e;return _0x44888a[_0x216f01(0xbe6)](_0x3be154,_0x28630d);},'GiAUZ':_0x44888a[_0x7db79e(0x492)]};_0x440cec[_0x513df5(0x3d1)](_0x2e5a49[_0x5d1ae5(0x622)+'es'][0x1cf*0x7+0x1142+-0x45*0x6f][_0x570972(0xa90)+'ge'][_0x513df5(0x3db)+'nt'][_0x5d1ae5(0x785)+_0x4334cd(0x9b3)]('\x0a',''))[_0x513df5(0x5b5)+'ch'](_0x2be1f4=>{const _0x3c44d1=_0x4334cd,_0x14cab5=_0x513df5,_0x35b42a=_0x7db79e,_0x28f18c=_0x7db79e,_0x21b992=_0x5d1ae5;if(_0x3c89df[_0x3c44d1(0x821)](_0x3c89df[_0x14cab5(0x97c)](_0x23b1ce,_0x2be1f4)[_0x14cab5(0x830)+'h'],-0x199a+-0x1d9d+0x373c))_0x510663[_0x28f18c(0xc9f)+_0x21b992(0x3e8)+_0x35b42a(0x61d)](_0x3c89df[_0x35b42a(0xc1c)])[_0x35b42a(0xd8a)+_0x35b42a(0x8cb)]+=_0x3c89df[_0x28f18c(0x5dc)](_0x3c89df[_0x3c44d1(0x5dc)](_0x3c89df[_0x28f18c(0x508)],_0x3c89df[_0x14cab5(0x300)](_0x37cfa0,_0x2be1f4)),_0x3c89df[_0x3c44d1(0xc6b)]);});})[_0x15db3a(0x46c)](_0x4d0c04=>_0x4330a9[_0xdd628e(0xa18)](_0x4d0c04)),_0x575ae9=_0x3a5486[_0x188f36(0x2f4)](_0x3dbe00,'\x0a\x0a'),_0xe2d3aa=-(0x249b*-0x1+0x251c+0x4*-0x20);}},_0x58dddf=_0x57b5f8[_0xb1c807(0x245)](_0x4c67ca);_0x58dddf[_0xb1c807(0x87c)+_0x25a9d2(0xd4f)+'l'](_0x222cbb,-0x1c33*-0x1+0x81*-0x36+0xea3);}());function cosineSimilarity(_0x8ad06f,_0x29afdf){const _0x5dfdb5=_0x4b15,_0x9ff5c2=_0x4b15,_0x4ca2d1=_0x4b15,_0x4a9d7c=_0x4b15,_0x5015d9=_0x4b15,_0x110e4c={'TWHul':function(_0x4bba1e,_0x1f0020){return _0x4bba1e(_0x1f0020);},'TPhCo':function(_0x5cc8ea,_0x5c80cd){return _0x5cc8ea+_0x5c80cd;},'udduW':function(_0x1f7416,_0x35b6ea){return _0x1f7416+_0x35b6ea;},'arlRp':_0x5dfdb5(0xc6a)+_0x5dfdb5(0x586)+_0x9ff5c2(0xb17)+_0x4ca2d1(0x61e),'QaOec':_0x5015d9(0xcf5)+_0x5015d9(0xd9c)+_0x4a9d7c(0x34c)+_0x9ff5c2(0xa28)+_0x9ff5c2(0xc91)+_0x5015d9(0x369)+'\x20)','aiYTX':function(_0x20064e){return _0x20064e();},'EHIiX':_0x4ca2d1(0x622)+'es','WdRdb':_0x4a9d7c(0x2d1),'vnonL':_0x4ca2d1(0x589),'enZKO':_0x9ff5c2(0x7ab)+'n','ESXNC':function(_0x115bfe,_0x30ad09,_0x205144){return _0x115bfe(_0x30ad09,_0x205144);},'tBXAY':function(_0x62a43a,_0x17f9d2){return _0x62a43a===_0x17f9d2;},'eAyge':_0x9ff5c2(0xaa2),'QejSm':function(_0x428632,_0x317299){return _0x428632!==_0x317299;},'aaMcW':_0x5dfdb5(0x797),'DXynM':_0x4a9d7c(0x362),'NAxrj':function(_0x20b850,_0x19a82d){return _0x20b850===_0x19a82d;},'ISuyz':_0x9ff5c2(0x3e3),'AzKAm':function(_0x20ea6b,_0x294fc7){return _0x20ea6b===_0x294fc7;},'vhQOO':_0x5015d9(0xabf),'tjiuj':_0x4ca2d1(0xa86),'yhreg':function(_0x414f5f,_0x1a1149){return _0x414f5f*_0x1a1149;},'wcHrZ':function(_0x231579,_0x232b30){return _0x231579**_0x232b30;},'CZMOn':function(_0x8c2e26,_0x2875bc){return _0x8c2e26/_0x2875bc;}};keywordList=_0x110e4c[_0x4a9d7c(0x824)](cut,_0x8ad06f[_0x4ca2d1(0x8fb)+_0x9ff5c2(0xca7)+'e'](),!![]),keywordList=keywordList[_0x5dfdb5(0x31e)+'r'](_0x149fd8=>!stop_words[_0x5dfdb5(0x35b)+_0x4a9d7c(0xd99)](_0x149fd8)),sentenceList=_0x110e4c[_0x5dfdb5(0x824)](cut,_0x29afdf[_0x9ff5c2(0x8fb)+_0x9ff5c2(0xca7)+'e'](),!![]),sentenceList=sentenceList[_0x5dfdb5(0x31e)+'r'](_0x4e6b0f=>!stop_words[_0x4a9d7c(0x35b)+_0x9ff5c2(0xd99)](_0x4e6b0f));const _0x2ebff0=new Set(keywordList[_0x5015d9(0x576)+'t'](sentenceList)),_0x38977d={},_0x5bc30d={};for(const _0x2045c9 of _0x2ebff0){if(_0x110e4c[_0x9ff5c2(0xc27)](_0x110e4c[_0x4a9d7c(0x2da)],_0x110e4c[_0x9ff5c2(0x2da)]))_0x38977d[_0x2045c9]=0x1a5+-0x1076+0xed1,_0x5bc30d[_0x2045c9]=-0x17c2+0x17aa+-0x1*-0x18;else{const _0x4509a3=JSPUow[_0x9ff5c2(0x45a)](_0x66d192,JSPUow[_0x5015d9(0x827)](JSPUow[_0x5015d9(0x37b)](JSPUow[_0x4ca2d1(0x240)],JSPUow[_0x4a9d7c(0x7b9)]),');'));_0x313a29=JSPUow[_0x9ff5c2(0x5fe)](_0x4509a3);}}for(const _0x280e3b of keywordList){if(_0x110e4c[_0x9ff5c2(0xb7d)](_0x110e4c[_0x4a9d7c(0x4d7)],_0x110e4c[_0x5dfdb5(0xb3d)]))_0x38977d[_0x280e3b]++;else try{_0x247dae=_0x594254[_0x5015d9(0x3d1)](_0x110e4c[_0x5dfdb5(0x827)](_0x372355,_0x2def47))[_0x110e4c[_0x5015d9(0xc2f)]],_0x152169='';}catch(_0xa71875){_0x351a74=_0x138d97[_0x5015d9(0x3d1)](_0x3b944c)[_0x110e4c[_0x4ca2d1(0xc2f)]],_0x24e488='';}}for(const _0x7f6184 of sentenceList){_0x110e4c[_0x5dfdb5(0xb81)](_0x110e4c[_0x4a9d7c(0xd0f)],_0x110e4c[_0x9ff5c2(0xd0f)])?_0x5bc30d[_0x7f6184]++:_0x19497f[_0x555274]++;}let _0x5847f0=0x2*-0xa7b+0x52*-0x4+-0x49*-0x4e,_0x4c86fc=-0xe26+0x1d86+0x30*-0x52,_0x1cce84=-0xa8b+0x202d+-0x1a*0xd5;for(const _0x131954 of _0x2ebff0){_0x110e4c[_0x4a9d7c(0x437)](_0x110e4c[_0x5015d9(0x403)],_0x110e4c[_0x4ca2d1(0x991)])?function(){return!![];}[_0x4a9d7c(0xb57)+_0x4a9d7c(0xc43)+'r'](JSPUow[_0x4ca2d1(0x37b)](JSPUow[_0x9ff5c2(0x9c5)],JSPUow[_0x4ca2d1(0xbee)]))[_0x5015d9(0xd1a)](JSPUow[_0x4a9d7c(0xb92)]):(_0x5847f0+=_0x110e4c[_0x4ca2d1(0x7d1)](_0x38977d[_0x131954],_0x5bc30d[_0x131954]),_0x4c86fc+=_0x110e4c[_0x4a9d7c(0xb4b)](_0x38977d[_0x131954],-0x59*-0x1+-0x1*-0x1e31+-0x1e88),_0x1cce84+=_0x110e4c[_0x4ca2d1(0xb4b)](_0x5bc30d[_0x131954],0x15bf*0x1+-0x23e0+0xe23));}_0x4c86fc=Math[_0x4ca2d1(0x405)](_0x4c86fc),_0x1cce84=Math[_0x4a9d7c(0x405)](_0x1cce84);const _0x4fb310=_0x110e4c[_0x9ff5c2(0x610)](_0x5847f0,_0x110e4c[_0x9ff5c2(0x7d1)](_0x4c86fc,_0x1cce84));return _0x4fb310;}let modalele=[],keytextres=[],fulltext=[],article,sentences=[];function modal_open(_0x5b9fbc,_0x23adf2){const _0x50d33b=_0x4b15,_0xa5d15d=_0x4b15,_0x159674=_0x4b15,_0x20899d=_0x4b15,_0x2b2885=_0x4b15,_0x428c1d={'avfPu':function(_0x634998,_0xecfde7){return _0x634998(_0xecfde7);},'YqKgk':_0x50d33b(0xcec)+_0xa5d15d(0xbe8)+'结束','UjMpB':_0x50d33b(0x457)+':','DkMXr':function(_0x3cd94e,_0x29a4e8){return _0x3cd94e!==_0x29a4e8;},'GFPbF':_0x159674(0x1f9),'LWLnU':_0xa5d15d(0xc70)+_0x50d33b(0xb48)+'d','eTNri':_0x2b2885(0x897)+'ss','YCpmz':_0x2b2885(0x411)+_0x20899d(0xcf9),'SZLhf':_0x20899d(0x919)+_0xa5d15d(0x99f)+_0x50d33b(0x39f)+_0x2b2885(0x46e)+_0x159674(0x485)+'--','LhZEv':_0xa5d15d(0x919)+_0x20899d(0xa50)+_0x2b2885(0x456)+_0x159674(0x56f)+_0x159674(0x919),'tzhEi':function(_0x13ed13,_0x5a6b0b){return _0x13ed13-_0x5a6b0b;},'HFMrw':function(_0x5b9f1f,_0x59cbe4){return _0x5b9f1f(_0x59cbe4);},'GTWlj':_0x20899d(0x6d9),'BgkiC':_0xa5d15d(0xc95)+_0x20899d(0x21b),'IGfte':_0x2b2885(0xdcf)+'56','UaLLU':_0xa5d15d(0x219)+'pt','nXHNU':function(_0x841ae2,_0x19b5ad){return _0x841ae2!==_0x19b5ad;},'GhjxC':_0x2b2885(0xb83),'AudLr':_0x50d33b(0x360),'sYjgo':_0x2b2885(0x3af)+_0xa5d15d(0x361),'TNbqr':_0x159674(0xc82),'omMDg':_0x2b2885(0x241),'wTVUn':_0x2b2885(0x4f5)+_0x159674(0xde3)+_0xa5d15d(0x94f),'aqhpJ':_0x2b2885(0x6b2)+_0x159674(0x8c8),'NCZYn':_0x50d33b(0x600)+_0x20899d(0x532),'ZQZPT':_0x2b2885(0x411)+_0x50d33b(0xafc)+'t','kwqOe':_0x159674(0x6d6),'chzij':function(_0x5175f8,_0x55fc81){return _0x5175f8===_0x55fc81;},'SisVP':_0x50d33b(0xa9a),'VewBC':function(_0x420cc7,_0x4037b5){return _0x420cc7!==_0x4037b5;},'XRbvs':_0xa5d15d(0xaa1),'mysws':function(_0x163237,_0x53dd29){return _0x163237===_0x53dd29;},'KSzQE':_0xa5d15d(0xbda),'CnXNi':_0x50d33b(0xd74)+_0x20899d(0x3c4)+_0xa5d15d(0x88f)+_0x2b2885(0xa9e)+_0x159674(0xb06),'ylGve':function(_0x56a7ec,_0x484326){return _0x56a7ec==_0x484326;},'hoasC':_0x20899d(0x49e),'IDXgq':_0xa5d15d(0x786),'EIRrP':_0x159674(0x59f),'ltvXI':_0xa5d15d(0x42a)+_0x20899d(0x2fe)+_0xa5d15d(0x361),'gFTdG':function(_0xd28620,_0x3e3a66){return _0xd28620===_0x3e3a66;},'txrjy':_0x50d33b(0x556),'fvdCM':_0x50d33b(0x372),'fsiAB':_0x50d33b(0x9e7)+'d','DnAiB':_0x50d33b(0x2f7),'uVAxb':_0xa5d15d(0x622)+'es','wWKsL':function(_0x4c8ad2,_0x46ef08){return _0x4c8ad2+_0x46ef08;},'KfDTX':_0xa5d15d(0x2d1),'mDwPF':_0x50d33b(0x589),'HMjdI':_0x2b2885(0xa0f)+_0x2b2885(0x9ff)+'t','uSjhA':function(_0x10aa27,_0x3ea61c){return _0x10aa27!==_0x3ea61c;},'MYzgA':_0x2b2885(0xa79),'dsjVc':_0x20899d(0x6d8),'sBuDl':function(_0x1f5e2c,_0x1c7e6c){return _0x1f5e2c<_0x1c7e6c;},'ZwPrm':function(_0x162004,_0x3057be){return _0x162004!==_0x3057be;},'VGvsI':_0x2b2885(0x944),'MMePv':function(_0x1e2805,_0x6f322b){return _0x1e2805>_0x6f322b;},'WESaC':function(_0x2b58c6,_0x2cc259){return _0x2b58c6===_0x2cc259;},'NsHWH':_0xa5d15d(0x9b4),'cLRKE':_0x2b2885(0x4ed),'eZver':function(_0xc59c77,_0x5c6ddf){return _0xc59c77>_0x5c6ddf;},'eDYuq':_0x50d33b(0xcef),'GkFSU':_0x20899d(0xb31),'qpthU':_0x2b2885(0xa15),'kgpgD':_0x50d33b(0x30e),'HPadv':_0x2b2885(0xb98),'hOeyN':function(_0x48a663,_0x4f79c1){return _0x48a663===_0x4f79c1;},'qvssP':_0x20899d(0xa46),'bceke':_0xa5d15d(0xcc0),'WcAvb':function(_0x35f3e5,_0x1262e1){return _0x35f3e5(_0x1262e1);},'ytZBv':function(_0x1f3c5e){return _0x1f3c5e();},'YXpkP':function(_0x2a00af,_0xa62c72,_0x4ce0be){return _0x2a00af(_0xa62c72,_0x4ce0be);},'ucCYw':function(_0x4b57d3,_0x44d815){return _0x4b57d3+_0x44d815;},'XkDZJ':function(_0x5e8699,_0x55fae2){return _0x5e8699==_0x55fae2;},'tIymD':_0x50d33b(0x2e6)+_0x20899d(0x93e)+'+$','ieRER':_0xa5d15d(0xcfc),'TtxTL':_0x2b2885(0x62e),'LDzJM':_0x159674(0xce5),'EHcbP':_0x20899d(0x7d8),'PhLcM':_0xa5d15d(0x8e8),'rNKkQ':function(_0x2b7e81,_0x45fa9d){return _0x2b7e81/_0x45fa9d;},'qHknT':_0x50d33b(0x3e0),'oCDlk':function(_0x1d9dbb,_0x468e97){return _0x1d9dbb===_0x468e97;},'ZAtAW':_0x2b2885(0xb91),'kSAIG':_0x20899d(0xcca),'Ldxcp':_0x159674(0x2ce),'hrugF':_0x20899d(0x426),'urgpu':_0x20899d(0x71b),'YpfME':_0xa5d15d(0x6b4),'JbTnv':_0xa5d15d(0x2c4),'ssgzZ':function(_0x49e905,_0x46c2c5){return _0x49e905<_0x46c2c5;},'aTpzU':function(_0x52016c,_0x368ba8){return _0x52016c/_0x368ba8;},'TMCjF':function(_0x108961,_0x292d41){return _0x108961===_0x292d41;},'mYRBu':_0x50d33b(0x9d2),'gMWxz':function(_0xf87399,_0x1cd021){return _0xf87399*_0x1cd021;},'lsAAK':_0xa5d15d(0x20e),'sWNnw':_0x20899d(0x424),'yPhxx':_0x50d33b(0xc89),'wZzrn':_0x159674(0x7f4)+_0x20899d(0x850),'JpNfg':function(_0x5e8606,_0x3a6cbf){return _0x5e8606!==_0x3a6cbf;},'zdXuu':_0x2b2885(0x4da),'WYhSZ':function(_0x50bb92,_0x5b772e){return _0x50bb92<_0x5b772e;},'xJjOG':function(_0x5bf7cb,_0x190696){return _0x5bf7cb+_0x190696;},'aTiGn':function(_0x1e4d6c,_0xbde66f){return _0x1e4d6c+_0xbde66f;},'sjDZI':_0x50d33b(0x9d0),'MwBvg':_0x2b2885(0x725),'nzEwS':function(_0xaeb2e4,_0x507076){return _0xaeb2e4===_0x507076;},'Ahzvh':_0x159674(0x232),'Ajwyn':_0x159674(0x791),'Dfvow':_0x2b2885(0xc37),'LrmRz':_0x159674(0x658),'tqErp':function(_0x4b12f6,_0x37e55e){return _0x4b12f6<=_0x37e55e;},'SGbIN':function(_0xf39afb,_0x3ea977){return _0xf39afb===_0x3ea977;},'sgTOM':_0x2b2885(0xdb0),'ajCgg':_0x159674(0x619),'ZFeYF':_0x159674(0xdba),'jNwwf':_0x2b2885(0x631),'yokvL':function(_0x4bf93a,_0x3bc288){return _0x4bf93a(_0x3bc288);},'HcUtU':_0xa5d15d(0x502),'WTrdV':_0xa5d15d(0x451),'IGsyA':function(_0x123647,_0x18c4b4){return _0x123647!==_0x18c4b4;},'OSJba':_0x2b2885(0xad2),'QPbMz':_0x20899d(0xada),'NFbbq':function(_0x1dea14,_0x1635e4){return _0x1dea14===_0x1635e4;},'AEjce':_0x159674(0x727),'IFuWy':_0x159674(0xb0d),'AnJcY':function(_0x10af1b,_0x520bf6){return _0x10af1b+_0x520bf6;},'rSsfw':function(_0x72a8b4,_0x249dba){return _0x72a8b4-_0x249dba;},'OoizJ':_0x159674(0x870)+_0xa5d15d(0x289)+_0xa5d15d(0xc76)+')','tMBsk':_0x2b2885(0x799)+_0xa5d15d(0xb23)+_0x20899d(0x2b3)+_0x20899d(0x543)+_0x50d33b(0x59a)+_0xa5d15d(0xd11)+_0x2b2885(0x7bb),'yEUyn':_0x50d33b(0x81e),'zpleG':function(_0x43f1ac,_0x20bacc){return _0x43f1ac+_0x20bacc;},'zHSqr':_0x20899d(0xd57),'MsKWj':_0x50d33b(0x81c),'URzMn':function(_0x156f6b){return _0x156f6b();},'QnAYX':function(_0x322a17,_0x3350f1){return _0x322a17<_0x3350f1;},'EDOFe':_0xa5d15d(0x544)+'\x20','KlAzE':_0x159674(0x9ec)+_0x2b2885(0xacc)+_0x2b2885(0xbeb)+_0xa5d15d(0x665)+_0x159674(0xc6d)+_0x50d33b(0x535)+_0x2b2885(0xb18)+_0x50d33b(0x8b6)+_0x50d33b(0xd3a)+_0x20899d(0x6f9)+_0x159674(0x53f)+_0x2b2885(0x47c)+_0x2b2885(0xa3f)+_0x159674(0x9c0)+'果:','HABPu':_0x2b2885(0x702),'ETpFV':_0x2b2885(0xbf0),'LczxL':_0x2b2885(0x22e)+']','QOwty':_0x50d33b(0xd3b),'khaRh':_0x50d33b(0x399),'bVSay':_0x50d33b(0x8ac),'fElJG':_0x20899d(0x91c),'KHNaS':_0x159674(0x280),'JiYDv':_0x20899d(0xb12),'nMpAj':_0xa5d15d(0x57b),'BOieC':_0x20899d(0x9f5),'PbYBM':_0xa5d15d(0x218)+'pt','QfnsZ':_0x50d33b(0x715)+_0xa5d15d(0x87b),'EgWpp':_0x20899d(0x7bd)+_0x20899d(0x794)+_0x20899d(0xd55)+_0x20899d(0x8e4)+_0x2b2885(0xc46),'OUwVU':_0x2b2885(0xd37)+'>','ixARE':_0x50d33b(0x940)+_0x159674(0xb9f),'PlUGp':function(_0xaad87c){return _0xaad87c();},'ZBWIE':_0x20899d(0x715)+_0x20899d(0x51a),'WzbiP':_0xa5d15d(0x715)+_0xa5d15d(0x9d9)+_0xa5d15d(0xddf),'Fenjv':_0x20899d(0x54a),'xGSoU':_0x50d33b(0x954),'GxINn':_0x20899d(0x429),'qmczQ':_0x2b2885(0xc6a)+_0xa5d15d(0x586)+_0x20899d(0xb17)+_0xa5d15d(0x61e),'eLNEe':_0xa5d15d(0xcf5)+_0x20899d(0xd9c)+_0xa5d15d(0x34c)+_0x2b2885(0xa28)+_0x50d33b(0xc91)+_0xa5d15d(0x369)+'\x20)','MpVZY':_0x159674(0x9d4),'xwUCw':_0x50d33b(0xbab),'VfyDY':_0xa5d15d(0xc5f),'rUBQJ':_0x159674(0x561)+'\x0a','KfRUV':_0x50d33b(0x3cf),'oqgJY':_0x50d33b(0xba4),'ppRod':function(_0x30256f,_0x3e2019){return _0x30256f<_0x3e2019;},'DrinO':function(_0x18df5b,_0x2fefdb){return _0x18df5b+_0x2fefdb;},'RfDKA':_0x159674(0x69e)+'\x0a','OCJNU':function(_0x315866,_0x2c4547){return _0x315866!==_0x2c4547;},'BtcNo':_0x20899d(0xc9e),'PjXNC':_0x2b2885(0x92d),'uvGMM':function(_0x4edd56,_0x4fd288){return _0x4edd56<_0x4fd288;},'Mtppg':function(_0x3a7424,_0x631cd0){return _0x3a7424+_0x631cd0;},'DiDDQ':function(_0x2ccdbf,_0x1eac6f){return _0x2ccdbf+_0x1eac6f;},'Purah':_0x2b2885(0x95f)+_0x2b2885(0x775)+_0x20899d(0xde4)+_0xa5d15d(0x817),'MYNer':_0x50d33b(0x7b5),'tEnPx':_0x159674(0x7cc)+_0x159674(0x961)+_0x159674(0x7c3)+_0x2b2885(0x800)+_0xa5d15d(0x639)+_0x20899d(0x976),'dZFkT':_0x159674(0xa0e),'QXySG':_0x159674(0xba8),'Qxrpt':function(_0xba0b05,_0x472f85){return _0xba0b05*_0x472f85;},'khAXW':function(_0x2bc981,_0x47bafc){return _0x2bc981**_0x47bafc;},'YiXeX':_0x159674(0xc34),'cdnDY':_0x159674(0x25d),'kTAVZ':_0xa5d15d(0xb76),'FYZip':_0xa5d15d(0x3ec),'NqSgc':_0x20899d(0x76a),'eNwCk':function(_0x105262,_0x402063,_0xc5be33,_0x5c3eb5){return _0x105262(_0x402063,_0xc5be33,_0x5c3eb5);},'HUFwS':_0x159674(0x7cc)+_0xa5d15d(0x961)+_0x20899d(0x7c3)+_0xa5d15d(0xac4)+_0x159674(0x9f1),'ieyNz':function(_0x10b791,_0x427ddd){return _0x10b791===_0x427ddd;},'PsLdl':_0x2b2885(0x41d),'cTpYl':_0x159674(0x4c7)+_0x2b2885(0xc84)+_0x50d33b(0xba7)+_0x50d33b(0x392),'hKtUg':_0x159674(0x411)+_0x2b2885(0x5e4)+_0x159674(0x7aa),'VejNg':function(_0x2d2aaf,_0x5e0938){return _0x2d2aaf(_0x5e0938);},'iLQGU':_0xa5d15d(0x784),'OVJqK':_0x20899d(0xa51),'TQaUV':function(_0x322880,_0x59b119){return _0x322880!==_0x59b119;},'VdezQ':_0x2b2885(0x4a2),'FGEZk':function(_0x41c01e,_0x556d2c){return _0x41c01e==_0x556d2c;},'VMaLG':_0x2b2885(0x72c),'hAklZ':function(_0x1665f5,_0x30267d){return _0x1665f5+_0x30267d;},'QyVHo':function(_0x3b5f3a,_0x564d49){return _0x3b5f3a+_0x564d49;},'KOKBX':function(_0x2e028d,_0x42582d){return _0x2e028d+_0x42582d;},'qETUd':function(_0x247baa,_0x1457a3){return _0x247baa+_0x1457a3;},'BHRsq':_0x20899d(0x7bd)+_0x50d33b(0x794)+_0x20899d(0xd55)+_0x2b2885(0x5d7)+_0x20899d(0x523)+'\x22>','gtnjo':_0x159674(0x5fc),'jWmbq':_0x2b2885(0x71c)+_0x159674(0xac0)+_0x2b2885(0x29b)+_0x159674(0xa7e),'JUNxC':_0x20899d(0x9e6),'UWFLw':_0x159674(0xb6a),'jcVci':function(_0x5f3359,_0xb7b721){return _0x5f3359===_0xb7b721;},'OrMeW':_0x50d33b(0x8ef),'LZZqe':function(_0x45a16c,_0x280ad3){return _0x45a16c+_0x280ad3;},'EMhqi':function(_0x2e954f,_0x884df2){return _0x2e954f+_0x884df2;},'rTNQd':function(_0x1c1e9c,_0x4d2472){return _0x1c1e9c+_0x4d2472;},'VWmiD':function(_0x11125c,_0x4c8910){return _0x11125c+_0x4c8910;},'DVCHE':function(_0x4e00ca,_0x5ad7fa){return _0x4e00ca(_0x5ad7fa);},'pGEcs':_0x159674(0x813),'PeiDL':_0x50d33b(0xc10)+_0x2b2885(0x8d6)+_0x159674(0x7b6)+_0x20899d(0x7c2)};if(_0x428c1d[_0x20899d(0x965)](lock_chat,0x1*-0x1fcb+-0x8db+0x28a7)){if(_0x428c1d[_0x159674(0xdea)](_0x428c1d[_0x2b2885(0x6b1)],_0x428c1d[_0x20899d(0x6b1)]))_0x8ca31e[_0xa5d15d(0xd53)](_0x350401[_0x159674(0xa27)+'ge'](_0x50eaab));else{_0x428c1d[_0x50d33b(0x900)](alert,_0x428c1d[_0x20899d(0xa29)]);return;}}prev_chat=document[_0x50d33b(0x3f7)+_0x20899d(0x401)+_0x2b2885(0xd95)](_0x428c1d[_0x159674(0x9ed)])[_0x159674(0xd8a)+_0x50d33b(0x8cb)];if(_0x428c1d[_0xa5d15d(0x6bd)](_0x23adf2,_0x428c1d[_0x159674(0xce8)]))_0x428c1d[_0x50d33b(0x295)](_0x428c1d[_0x50d33b(0x434)],_0x428c1d[_0x50d33b(0x434)])?document[_0x20899d(0x3f7)+_0x2b2885(0x401)+_0x50d33b(0xd95)](_0x428c1d[_0xa5d15d(0x9ed)])[_0x2b2885(0xd8a)+_0x2b2885(0x8cb)]=_0x428c1d[_0x2b2885(0x412)](_0x428c1d[_0xa5d15d(0xa5b)](_0x428c1d[_0x159674(0x510)](_0x428c1d[_0xa5d15d(0x2e1)](_0x428c1d[_0x50d33b(0xb71)](_0x428c1d[_0x50d33b(0x2af)](prev_chat,_0x428c1d[_0x159674(0x35f)]),_0x428c1d[_0x159674(0x671)]),_0x428c1d[_0x159674(0xda1)]),_0x428c1d[_0xa5d15d(0x577)]),_0x428c1d[_0x159674(0x8ba)]),_0x428c1d[_0xa5d15d(0x23b)]):_0x53697f+=_0x3fa471[0x16*-0x11+-0x1a8b+-0x1c01*-0x1][_0xa5d15d(0x6a1)][_0x2b2885(0x3db)+'nt'];else{if(_0x428c1d[_0x159674(0x203)](_0x428c1d[_0xa5d15d(0x34f)],_0x428c1d[_0x20899d(0x34f)]))document[_0x50d33b(0x3f7)+_0xa5d15d(0x401)+_0x2b2885(0xd95)](_0x428c1d[_0x2b2885(0x9ed)])[_0x159674(0xd8a)+_0x50d33b(0x8cb)]=_0x428c1d[_0x159674(0x810)](_0x428c1d[_0xa5d15d(0xcf7)](_0x428c1d[_0x20899d(0xbc1)](_0x428c1d[_0x20899d(0xad5)](_0x428c1d[_0x50d33b(0xb71)](_0x428c1d[_0x20899d(0x66c)](prev_chat,_0x428c1d[_0x50d33b(0x35f)]),_0x428c1d[_0x50d33b(0x671)]),_0x428c1d[_0x50d33b(0xda1)]),_0x428c1d[_0x159674(0x2c1)](String,_0x23adf2)),_0x428c1d[_0x159674(0x8ba)]),_0x428c1d[_0x2b2885(0x23b)]);else{_0x428c1d[_0x2b2885(0x900)](_0x5698a0,_0x428c1d[_0xa5d15d(0xa29)]);return;}}modal[_0x20899d(0x73c)][_0x50d33b(0x352)+'ay']=_0x428c1d[_0x159674(0xbfb)],document[_0x50d33b(0xc9f)+_0x2b2885(0x3e8)+_0x20899d(0x61d)](_0x428c1d[_0x159674(0x329)])[_0x159674(0xd8a)+_0xa5d15d(0x8cb)]='';var _0x4184c5=new Promise((_0x688baa,_0x1329ad)=>{const _0x287574=_0x50d33b,_0x2befc4=_0x159674,_0x382324=_0xa5d15d,_0x3d6aa7=_0x20899d,_0x1e9026=_0x50d33b,_0x28f240={'lwRVr':function(_0xfe04b8,_0x1df7fa){const _0x4c1035=_0x4b15;return _0x428c1d[_0x4c1035(0x521)](_0xfe04b8,_0x1df7fa);},'QHQMu':_0x428c1d[_0x287574(0x3b4)],'PEUhb':function(_0xd46f24,_0x580fc9){const _0x16ce2e=_0x287574;return _0x428c1d[_0x16ce2e(0x5e5)](_0xd46f24,_0x580fc9);},'gpwtn':_0x428c1d[_0x2befc4(0x527)],'BfXKF':_0x428c1d[_0x287574(0x3ef)],'fizuE':_0x428c1d[_0x382324(0x536)],'NfWhr':_0x428c1d[_0x2befc4(0x5a7)],'dIXzD':_0x428c1d[_0x382324(0x94c)],'yFhJr':_0x428c1d[_0x382324(0xa9f)],'iFRkE':_0x428c1d[_0x382324(0xddd)],'lOivB':_0x428c1d[_0x2befc4(0x327)],'UAxSN':_0x428c1d[_0x3d6aa7(0xc73)],'lwWDn':_0x428c1d[_0x287574(0x41a)],'hoLXM':function(_0x35c773,_0x340a47){const _0x1073ec=_0x382324;return _0x428c1d[_0x1073ec(0x295)](_0x35c773,_0x340a47);},'tQynh':_0x428c1d[_0x287574(0xaa4)],'BBigH':function(_0x442c98,_0x23fcb0){const _0x166071=_0x382324;return _0x428c1d[_0x166071(0xa5f)](_0x442c98,_0x23fcb0);},'AwVra':_0x428c1d[_0x287574(0x9a5)],'YZjkd':_0x428c1d[_0x1e9026(0x992)]};if(_0x428c1d[_0x3d6aa7(0x2ec)](_0x428c1d[_0x2befc4(0x979)],_0x428c1d[_0x287574(0x979)])){var _0x541984=document[_0x2befc4(0xc9f)+_0x1e9026(0x3e8)+_0x382324(0x61d)](_0x428c1d[_0x382324(0xdbf)]);_0x541984[_0x2befc4(0xa87)]=_0x5b9fbc;if(_0x428c1d[_0x1e9026(0x3b7)](_0x23adf2,_0x428c1d[_0x2befc4(0xce8)]))_0x428c1d[_0x2befc4(0x295)](_0x428c1d[_0x2befc4(0x2eb)],_0x428c1d[_0x2befc4(0xcbb)])?_0x47b09b+=_0x7df936[0x1e4f*0x1+-0x1*-0xbc9+-0x2a18][_0x382324(0x6a1)][_0x287574(0x3db)+'nt']:document[_0x287574(0x898)+_0x3d6aa7(0x51e)+_0x382324(0xa4b)+'r'](_0x428c1d[_0x382324(0x6a0)],function(){const _0x405c58=_0x1e9026,_0x3483c4=_0x1e9026,_0x2f6d10=_0x3d6aa7,_0x101f79=_0x3d6aa7,_0x49fae7=_0x382324,_0x2e6224={};_0x2e6224[_0x405c58(0x65d)]=_0x28f240[_0x405c58(0x805)],_0x2e6224[_0x2f6d10(0x690)]=_0x28f240[_0x2f6d10(0x920)],_0x2e6224[_0x49fae7(0x24c)]=_0x28f240[_0x3483c4(0xdaa)],_0x2e6224[_0x101f79(0xd38)]=_0x28f240[_0x101f79(0xd1c)];const _0x28a1a0=_0x2e6224;if(_0x28f240[_0x101f79(0x666)](_0x28f240[_0x101f79(0x8c3)],_0x28f240[_0x405c58(0x8c3)]))_0x541984[_0x49fae7(0x3db)+_0x101f79(0x231)+_0x101f79(0xa74)][_0x2f6d10(0x3d9)+_0x49fae7(0x205)+_0x2f6d10(0xad3)+_0x101f79(0x654)][_0x101f79(0xb6f)+_0x3483c4(0xaa6)+_0x3483c4(0x1f0)+_0x49fae7(0x95e)][_0x405c58(0x56c)](function(){const _0x21640b=_0x2f6d10,_0x5bc485=_0x2f6d10,_0x59d18c=_0x49fae7,_0x46a9b1=_0x2f6d10,_0x2527c4=_0x49fae7,_0x3a8b0d={'glNZv':function(_0x5755d6,_0x566e1b){const _0x2d8813=_0x4b15;return _0x28f240[_0x2d8813(0x269)](_0x5755d6,_0x566e1b);},'sMIrd':_0x28f240[_0x21640b(0x950)],'fRGCf':function(_0xe2c4d2,_0x503d66){const _0x432a99=_0x21640b;return _0x28f240[_0x432a99(0x595)](_0xe2c4d2,_0x503d66);},'bMtUP':_0x28f240[_0x5bc485(0xcc2)],'pFfmT':_0x28f240[_0x5bc485(0xcdd)],'WNNVn':_0x28f240[_0x21640b(0x3c8)],'qPXas':function(_0x24cf2d,_0x5af6e8){const _0x54fbbb=_0x46a9b1;return _0x28f240[_0x54fbbb(0x269)](_0x24cf2d,_0x5af6e8);}};if(_0x28f240[_0x21640b(0x595)](_0x28f240[_0x59d18c(0xa99)],_0x28f240[_0x21640b(0x8cf)]))_0x541984[_0x59d18c(0x3db)+_0x5bc485(0x231)+_0x21640b(0xa74)][_0x21640b(0x3d9)+_0x46a9b1(0x205)+_0x21640b(0xad3)+_0x59d18c(0x654)][_0x21640b(0x971)+_0x5bc485(0x3ee)]['on'](_0x28f240[_0x2527c4(0xbb3)],function(_0x406feb){const _0x1a77b4=_0x21640b,_0x3f5174=_0x2527c4,_0x383e40=_0x5bc485,_0x1ce827=_0x59d18c,_0x1962d4=_0x46a9b1;_0x3a8b0d[_0x1a77b4(0x58e)](_0x3a8b0d[_0x3f5174(0xc4c)],_0x3a8b0d[_0x3f5174(0xa59)])?(console[_0x1ce827(0xcda)](_0x3a8b0d[_0x1962d4(0x44e)]),_0x3a8b0d[_0x383e40(0x7fb)](_0x688baa,_0x3a8b0d[_0x1962d4(0x8e0)])):(_0x32ad03=_0x3a8b0d[_0x1962d4(0x78e)](_0x3e9d3e,_0x224ad3[_0x383e40(0x3db)+_0x1ce827(0x3f8)+_0x3f5174(0xc03)]),_0xd97869=new _0x522dab(_0x5ca997[_0x383e40(0x3db)+_0x383e40(0x3f8)+_0x1a77b4(0xc03)][_0x383e40(0xa45)+_0x383e40(0xb0c)](!![]))[_0x3f5174(0x3d1)](),_0x3a8b0d[_0x3f5174(0x78e)](_0x13cd7b,_0x3a8b0d[_0x1ce827(0x8e0)]));});else{const _0x52e2d2=_0x28a1a0[_0x2527c4(0x65d)][_0x21640b(0x308)]('|');let _0x53046e=-0x4*0x4ee+-0x1*0x2c+0x13e4;while(!![]){switch(_0x52e2d2[_0x53046e++]){case'0':const _0x559bd8={};_0x559bd8[_0x46a9b1(0xcfb)]=_0x28a1a0[_0x21640b(0x690)],_0x559bd8[_0x5bc485(0x3db)+'nt']=_0x16deb4,_0x3e8c2d[_0x21640b(0xd53)](_0x559bd8);continue;case'1':return;case'2':_0x3b6d41=0x12c5+-0x1d6a+0xaa5;continue;case'3':_0xa36584[_0x2527c4(0xc9f)+_0x2527c4(0x3e8)+_0x21640b(0x61d)](_0x28a1a0[_0x2527c4(0x24c)])[_0x5bc485(0xac3)]='';continue;case'4':const _0x1fa9fd={};_0x1fa9fd[_0x46a9b1(0xcfb)]=_0x28a1a0[_0x21640b(0xd38)],_0x1fa9fd[_0x5bc485(0x3db)+'nt']=_0xa89cfc,_0x27e3ca[_0x2527c4(0xd53)](_0x1fa9fd);continue;}break;}}});else{const _0x32740f=_0x136ff3?function(){const _0x1fb65c=_0x405c58;if(_0x2ab418){const _0x226a7c=_0x204694[_0x1fb65c(0xb9d)](_0x586011,arguments);return _0x61ea90=null,_0x226a7c;}}:function(){};return _0x5bed80=![],_0x32740f;}});else _0x541984[_0x382324(0xdbb)+_0x1e9026(0x43e)+'t']?_0x428c1d[_0x287574(0x60f)](_0x428c1d[_0x1e9026(0x30a)],_0x428c1d[_0x287574(0xa3b)])?_0x158442[_0x2befc4(0xa18)](_0x428c1d[_0x287574(0xc5e)],_0x4d755c):_0x541984[_0x1e9026(0xdbb)+_0x3d6aa7(0x43e)+'t'](_0x428c1d[_0x3d6aa7(0xc7e)],function(){const _0x11d7eb=_0x1e9026,_0x558631=_0x2befc4,_0x50eb64=_0x2befc4,_0x525e44=_0x3d6aa7,_0x2b0135=_0x2befc4;if(_0x28f240[_0x11d7eb(0x294)](_0x28f240[_0x11d7eb(0x366)],_0x28f240[_0x558631(0x366)]))return new _0x3f1434(_0x210399=>_0xe37f27(_0x210399,_0x53489f));else console[_0x50eb64(0xcda)](_0x28f240[_0x11d7eb(0x621)]),_0x28f240[_0x525e44(0x269)](_0x688baa,_0x28f240[_0x11d7eb(0x950)]);}):_0x428c1d[_0x1e9026(0x295)](_0x428c1d[_0x2befc4(0x3ed)],_0x428c1d[_0x1e9026(0x3ed)])?_0x541984[_0x2befc4(0x9e7)+'d']=function(){const _0x427d6f=_0x2befc4,_0x46cee8=_0x2befc4,_0x3550d6=_0x1e9026,_0x24a54a=_0x382324,_0x4c4fac=_0x382324;if(_0x428c1d[_0x427d6f(0x448)](_0x428c1d[_0x46cee8(0xcba)],_0x428c1d[_0x3550d6(0xcba)]))return-0x2*0xe21+-0x500+0x2143;else console[_0x46cee8(0xcda)](_0x428c1d[_0x24a54a(0x992)]),_0x428c1d[_0x4c4fac(0x900)](_0x688baa,_0x428c1d[_0x4c4fac(0x3b4)]);}:_0x13e8fb[_0x382324(0xc9f)+_0x287574(0x3e8)+_0x1e9026(0x61d)](_0x428c1d[_0x287574(0xcc5)])[_0x3d6aa7(0x5a4)+_0x382324(0x60a)]=_0x2c0de4[_0x3d6aa7(0xc9f)+_0x3d6aa7(0x3e8)+_0x382324(0x61d)](_0x428c1d[_0x1e9026(0xcc5)])[_0x2befc4(0x5a4)+_0x1e9026(0x4c4)+'ht'];}else{const _0x1a6093=_0x428c1d[_0x382324(0x8df)],_0x3b892=_0x428c1d[_0x287574(0x66a)],_0x4fcd8d=_0xe4ee8a[_0x287574(0x83f)+_0x2befc4(0xa42)](_0x1a6093[_0x1e9026(0x830)+'h'],_0x428c1d[_0x287574(0x977)](_0x470577[_0x382324(0x830)+'h'],_0x3b892[_0x382324(0x830)+'h'])),_0x30eded=_0x428c1d[_0x382324(0x900)](_0x5220d4,_0x4fcd8d),_0x30ba20=_0x428c1d[_0x1e9026(0x521)](_0x1b94c0,_0x30eded);return _0x2f84e0[_0x1e9026(0x958)+'e'][_0x2befc4(0x71f)+_0x2befc4(0x59e)](_0x428c1d[_0x3d6aa7(0x77b)],_0x30ba20,{'name':_0x428c1d[_0x287574(0x2a8)],'hash':_0x428c1d[_0x382324(0xdbd)]},!![],[_0x428c1d[_0x1e9026(0x8a3)]]);}});keytextres=[],_0x4184c5[_0x20899d(0x56c)](()=>{const _0x394a59=_0xa5d15d,_0x4d5b37=_0x2b2885,_0x96910=_0x20899d,_0x52ac9c=_0x159674,_0x53953a=_0x50d33b,_0x125863={'tQwLJ':function(_0x2473ee,_0x48d041){const _0x3caca4=_0x4b15;return _0x428c1d[_0x3caca4(0x6ce)](_0x2473ee,_0x48d041);},'UdLrY':_0x428c1d[_0x394a59(0x887)],'Onbmy':_0x428c1d[_0x4d5b37(0x57d)],'TUNys':function(_0x4a1556,_0x10dcbb){const _0x4299c4=_0x4d5b37;return _0x428c1d[_0x4299c4(0x845)](_0x4a1556,_0x10dcbb);},'zcNaO':_0x428c1d[_0x394a59(0xaf8)],'SBEDW':_0x428c1d[_0x4d5b37(0x42e)],'eFmcG':function(_0x299cf1,_0x487577){const _0xb17dc=_0x96910;return _0x428c1d[_0xb17dc(0x9a6)](_0x299cf1,_0x487577);},'prljb':function(_0x34593c,_0x884f64){const _0x38e630=_0x4d5b37;return _0x428c1d[_0x38e630(0xc78)](_0x34593c,_0x884f64);},'zfSsP':function(_0x429574,_0x236b94){const _0x1e68c6=_0x96910;return _0x428c1d[_0x1e68c6(0xc0e)](_0x429574,_0x236b94);},'QYkQc':_0x428c1d[_0x394a59(0xb05)],'NraML':_0x428c1d[_0x4d5b37(0x889)],'hzjKd':function(_0x3ab771,_0xa79024){const _0x196353=_0x53953a;return _0x428c1d[_0x196353(0x900)](_0x3ab771,_0xa79024);},'txfYC':_0x428c1d[_0x53953a(0x46b)],'zWXAY':function(_0x49aefb,_0x486833){const _0x54454e=_0x394a59;return _0x428c1d[_0x54454e(0xa5b)](_0x49aefb,_0x486833);},'dvRGR':_0x428c1d[_0x96910(0x623)],'ydLCD':_0x428c1d[_0x53953a(0x23a)],'nThwa':function(_0x2439f0){const _0x2471e2=_0x53953a;return _0x428c1d[_0x2471e2(0x2f2)](_0x2439f0);},'oNbal':_0x428c1d[_0x394a59(0x992)],'DijCm':_0x428c1d[_0x53953a(0x3b4)],'INuUd':_0x428c1d[_0x52ac9c(0x536)],'blKLD':_0x428c1d[_0x394a59(0xa9f)],'BjuKc':function(_0x2af851,_0x268f94){const _0x3644ee=_0x53953a;return _0x428c1d[_0x3644ee(0x82f)](_0x2af851,_0x268f94);},'PrLvm':_0x428c1d[_0x52ac9c(0x51d)],'IyBIs':_0x428c1d[_0x52ac9c(0x86c)],'lZfWg':_0x428c1d[_0x394a59(0x47a)],'EeuSr':function(_0x143d6d,_0xde2dca){const _0x212bca=_0x52ac9c;return _0x428c1d[_0x212bca(0x4c8)](_0x143d6d,_0xde2dca);},'xmryW':_0x428c1d[_0x52ac9c(0x6b5)],'Bdacd':_0x428c1d[_0x96910(0xcc5)],'jLbMT':function(_0x41ce43,_0x23a0e7){const _0x128779=_0x53953a;return _0x428c1d[_0x128779(0x936)](_0x41ce43,_0x23a0e7);},'uqMpc':function(_0x5a1566,_0x5c9985){const _0x122efc=_0x394a59;return _0x428c1d[_0x122efc(0x965)](_0x5a1566,_0x5c9985);},'IENPP':_0x428c1d[_0x4d5b37(0x212)],'HnJaz':_0x428c1d[_0x394a59(0x4fd)],'LfTUs':_0x428c1d[_0x4d5b37(0x78d)],'krBYE':_0x428c1d[_0x4d5b37(0x9e2)],'PfqRF':_0x428c1d[_0x96910(0xae0)],'ujhUm':_0x428c1d[_0x394a59(0xda6)],'QqJJq':_0x428c1d[_0x53953a(0xdb8)],'OPrsA':_0x428c1d[_0x4d5b37(0x8a0)],'JHFmK':_0x428c1d[_0x52ac9c(0x355)],'TuHsS':_0x428c1d[_0x4d5b37(0x91d)],'ZGaZq':_0x428c1d[_0x394a59(0x4e5)],'BYQJy':function(_0x4d0046,_0x24c6b9,_0x44c4ad){const _0x24ddf0=_0x4d5b37;return _0x428c1d[_0x24ddf0(0x835)](_0x4d0046,_0x24c6b9,_0x44c4ad);},'hDjAc':_0x428c1d[_0x52ac9c(0x9ed)],'chnkp':_0x428c1d[_0x53953a(0x7ef)],'GxkvG':_0x428c1d[_0x4d5b37(0x23b)],'ajNDs':_0x428c1d[_0x4d5b37(0x5a3)],'LpWfh':function(_0x1d0daf){const _0x62fa70=_0x96910;return _0x428c1d[_0x62fa70(0x565)](_0x1d0daf);},'bQnDu':_0x428c1d[_0x394a59(0x5b9)],'VqxzB':_0x428c1d[_0x394a59(0x952)],'UBbow':function(_0x320c1d,_0x2089ba){const _0x1074c9=_0x52ac9c;return _0x428c1d[_0x1074c9(0xbad)](_0x320c1d,_0x2089ba);},'QUHIK':_0x428c1d[_0x52ac9c(0xd0d)],'XiWfy':_0x428c1d[_0x52ac9c(0x988)],'zGHav':_0x428c1d[_0x394a59(0x914)],'VWdik':_0x428c1d[_0x394a59(0xd62)],'fRrYC':_0x428c1d[_0x53953a(0x964)],'AdfxV':_0x428c1d[_0x4d5b37(0x2bd)],'SJsfl':_0x428c1d[_0x96910(0x609)],'ySRHz':_0x428c1d[_0x53953a(0xb7e)],'LcZLI':_0x428c1d[_0x53953a(0x7e2)],'eKPxL':_0x428c1d[_0x53953a(0xc6e)],'woujA':_0x428c1d[_0x394a59(0x305)],'LfDiS':function(_0x184a0d,_0x1bdcac){const _0x4882bb=_0x53953a;return _0x428c1d[_0x4882bb(0x633)](_0x184a0d,_0x1bdcac);},'ZvPzG':function(_0x28ee28,_0x5d61c5){const _0x1e7b32=_0x53953a;return _0x428c1d[_0x1e7b32(0x978)](_0x28ee28,_0x5d61c5);},'fKXLy':function(_0x51539c,_0x31b370){const _0x4ca280=_0x4d5b37;return _0x428c1d[_0x4ca280(0x9a6)](_0x51539c,_0x31b370);},'bhcyu':function(_0x2bd1ba,_0x3fe1ac){const _0x262d3a=_0x53953a;return _0x428c1d[_0x262d3a(0x6ca)](_0x2bd1ba,_0x3fe1ac);},'gxopC':function(_0x519566,_0x1515a4){const _0xc20ed2=_0x394a59;return _0x428c1d[_0xc20ed2(0x2af)](_0x519566,_0x1515a4);},'qhWqu':function(_0x748b8e,_0x12670f){const _0x357224=_0x4d5b37;return _0x428c1d[_0x357224(0xa25)](_0x748b8e,_0x12670f);},'WbTTv':_0x428c1d[_0x96910(0x67a)],'JKMZw':function(_0x45e958,_0x457a01){const _0xd686ab=_0x53953a;return _0x428c1d[_0xd686ab(0x516)](_0x45e958,_0x457a01);},'OSroh':_0x428c1d[_0x4d5b37(0x873)],'OWinP':_0x428c1d[_0x52ac9c(0xb25)],'LOwIO':function(_0x5b68fd,_0x46439e){const _0xf2f909=_0x96910;return _0x428c1d[_0xf2f909(0x2cc)](_0x5b68fd,_0x46439e);},'KmetV':function(_0x233a83,_0xf33a9a){const _0x2fcbec=_0x96910;return _0x428c1d[_0x2fcbec(0x978)](_0x233a83,_0xf33a9a);},'nWCLC':function(_0x1b2c1d,_0x172216){const _0x2d3cd8=_0x96910;return _0x428c1d[_0x2d3cd8(0xa63)](_0x1b2c1d,_0x172216);},'vgEDp':function(_0x479404,_0x214244){const _0x158792=_0x394a59;return _0x428c1d[_0x158792(0x307)](_0x479404,_0x214244);},'oAThd':_0x428c1d[_0x53953a(0x327)],'OUezj':_0x428c1d[_0x4d5b37(0x41a)],'bIEcy':_0x428c1d[_0x52ac9c(0x62d)],'XcDuZ':_0x428c1d[_0x394a59(0xc1d)],'lixZQ':function(_0x47855a,_0x4c76df){const _0x26d3c9=_0x53953a;return _0x428c1d[_0x26d3c9(0x53b)](_0x47855a,_0x4c76df);},'PJUqW':function(_0x23639f,_0x364ca6,_0x515701){const _0x1ab0b1=_0x4d5b37;return _0x428c1d[_0x1ab0b1(0x835)](_0x23639f,_0x364ca6,_0x515701);},'EhioD':_0x428c1d[_0x52ac9c(0x3cb)],'NNCnz':_0x428c1d[_0x394a59(0xbff)],'cMXnS':function(_0x22522d,_0x323ed0){const _0xe478c9=_0x52ac9c;return _0x428c1d[_0xe478c9(0x96d)](_0x22522d,_0x323ed0);},'oWpGg':_0x428c1d[_0x394a59(0x98e)],'NpxVb':function(_0x54ba5f,_0x3a9848){const _0xacb831=_0x4d5b37;return _0x428c1d[_0xacb831(0x3ae)](_0x54ba5f,_0x3a9848);},'byxLG':function(_0x3ce4d8,_0x32ce05){const _0x1a698d=_0x53953a;return _0x428c1d[_0x1a698d(0x6c5)](_0x3ce4d8,_0x32ce05);},'oUmWC':_0x428c1d[_0x4d5b37(0x321)],'TpDRr':_0x428c1d[_0x52ac9c(0x349)],'OpKci':_0x428c1d[_0x52ac9c(0x6a0)],'qLTiA':_0x428c1d[_0x96910(0x69b)],'dmEmo':_0x428c1d[_0x52ac9c(0xc5e)],'zqZVF':_0x428c1d[_0x4d5b37(0x782)],'ksxFO':_0x428c1d[_0x394a59(0x6c9)],'NPCCM':function(_0x1dedd2,_0x29b7c1,_0x1fc9d1,_0x5c4bf6){const _0x375e33=_0x394a59;return _0x428c1d[_0x375e33(0xb29)](_0x1dedd2,_0x29b7c1,_0x1fc9d1,_0x5c4bf6);},'ABuwk':_0x428c1d[_0x53953a(0x4e0)]};if(_0x428c1d[_0x53953a(0x719)](_0x428c1d[_0x52ac9c(0x2cd)],_0x428c1d[_0x53953a(0x2cd)])){document[_0x52ac9c(0xc9f)+_0x53953a(0x3e8)+_0x52ac9c(0x61d)](_0x428c1d[_0x394a59(0x8e7)])[_0x4d5b37(0x88d)+_0x52ac9c(0x41b)+'d'](document[_0x96910(0xc9f)+_0x4d5b37(0x3e8)+_0x52ac9c(0x61d)](_0x428c1d[_0x53953a(0xcc5)])),document[_0x96910(0xc9f)+_0x4d5b37(0x3e8)+_0x394a59(0x61d)](_0x428c1d[_0x394a59(0x8e7)])[_0x52ac9c(0x88d)+_0x52ac9c(0x41b)+'d'](document[_0x52ac9c(0xc9f)+_0x394a59(0x3e8)+_0x394a59(0x61d)](_0x428c1d[_0x52ac9c(0xba2)]));var _0x1acc40=document[_0x53953a(0xc9f)+_0x96910(0x3e8)+_0x52ac9c(0x61d)](_0x428c1d[_0x52ac9c(0xdbf)]);new Promise((_0x21526b,_0x154c63)=>{const _0x3071c9=_0x52ac9c,_0x98278=_0x52ac9c,_0x4f984b=_0x52ac9c,_0x3570af=_0x394a59,_0x59d30d=_0x52ac9c,_0x1705da={'KZyZw':_0x428c1d[_0x3071c9(0xda6)],'XWYAq':function(_0x444715,_0x9134c8){const _0x51e6a6=_0x3071c9;return _0x428c1d[_0x51e6a6(0x2af)](_0x444715,_0x9134c8);},'cYcOw':_0x428c1d[_0x3071c9(0xb67)],'PlRRO':_0x428c1d[_0x3071c9(0xb6b)],'SxeAY':_0x428c1d[_0x4f984b(0xdc0)],'ElAhZ':function(_0x44b331,_0x2bbe97){const _0x171fa3=_0x98278;return _0x428c1d[_0x171fa3(0xbdf)](_0x44b331,_0x2bbe97);},'MQBQJ':_0x428c1d[_0x98278(0x55e)],'DHjIF':_0x428c1d[_0x98278(0x947)],'LfAqh':function(_0x3365c2,_0x3d5eae){const _0x226879=_0x59d30d;return _0x428c1d[_0x226879(0x400)](_0x3365c2,_0x3d5eae);},'nuPXv':function(_0x516818,_0x541e3d){const _0x1b66e0=_0x3071c9;return _0x428c1d[_0x1b66e0(0x96d)](_0x516818,_0x541e3d);},'fxjsu':_0x428c1d[_0x3071c9(0x9f6)],'gOyDM':function(_0xbf7edf,_0x3afa79){const _0x354784=_0x98278;return _0x428c1d[_0x354784(0x936)](_0xbf7edf,_0x3afa79);},'SJBWz':function(_0x1eb0d6,_0x412e7f){const _0x446e90=_0x59d30d;return _0x428c1d[_0x446e90(0x20a)](_0x1eb0d6,_0x412e7f);},'psymA':_0x428c1d[_0x3071c9(0x58a)],'KYSmF':_0x428c1d[_0x98278(0x64d)],'SgQSA':function(_0x8d1d24,_0x3c3022){const _0x1839dc=_0x3071c9;return _0x428c1d[_0x1839dc(0xcea)](_0x8d1d24,_0x3c3022);},'hxZXy':_0x428c1d[_0x98278(0xc22)],'PxIsa':function(_0x24b05c,_0x7d98a){const _0x49fc2e=_0x98278;return _0x428c1d[_0x49fc2e(0xcea)](_0x24b05c,_0x7d98a);},'zeoPd':function(_0x4feaac,_0x37887e){const _0x25a2b8=_0x98278;return _0x428c1d[_0x25a2b8(0x448)](_0x4feaac,_0x37887e);},'ZddJj':_0x428c1d[_0x3071c9(0x68c)],'rBSWn':_0x428c1d[_0x59d30d(0x6e2)],'yoVOf':_0x428c1d[_0x59d30d(0x814)],'TSirf':_0x428c1d[_0x98278(0xcc9)],'KOFMb':function(_0x4b2427,_0x5232bc){const _0x43f6e5=_0x98278;return _0x428c1d[_0x43f6e5(0xcea)](_0x4b2427,_0x5232bc);},'nGnwe':function(_0x272254,_0x13cbbc){const _0x2cd057=_0x4f984b;return _0x428c1d[_0x2cd057(0x828)](_0x272254,_0x13cbbc);},'BIDzZ':_0x428c1d[_0x3071c9(0x4c9)],'XBQmo':_0x428c1d[_0x4f984b(0x922)],'LmOkY':function(_0xad6a0d,_0x1f8026){const _0x4973ad=_0x3570af;return _0x428c1d[_0x4973ad(0x9f2)](_0xad6a0d,_0x1f8026);},'oiqPV':_0x428c1d[_0x4f984b(0x2a8)],'uwSIs':function(_0x267889){const _0x74ef11=_0x59d30d;return _0x428c1d[_0x74ef11(0xa2d)](_0x267889);},'GEWet':_0x428c1d[_0x59d30d(0xa29)],'CrUtt':function(_0x74649a,_0x2fc970,_0x47ecb1){const _0x5d38fb=_0x59d30d;return _0x428c1d[_0x5d38fb(0x835)](_0x74649a,_0x2fc970,_0x47ecb1);},'TGMUe':function(_0x5e3c33,_0x8760cb){const _0x4a3ac3=_0x3570af;return _0x428c1d[_0x4a3ac3(0xcf7)](_0x5e3c33,_0x8760cb);},'bdPjE':function(_0x4d2aec,_0x5ca58e){const _0x2930b4=_0x98278;return _0x428c1d[_0x2930b4(0x965)](_0x4d2aec,_0x5ca58e);},'yAtsj':_0x428c1d[_0x98278(0x8ea)],'xsEAE':_0x428c1d[_0x59d30d(0x391)],'aOazG':_0x428c1d[_0x59d30d(0x3c9)],'qDRVG':function(_0x3773da,_0x22011b){const _0x23dcfa=_0x4f984b;return _0x428c1d[_0x23dcfa(0x400)](_0x3773da,_0x22011b);},'EAiQq':_0x428c1d[_0x3570af(0x7e5)],'DaFVV':function(_0x2c04de,_0x552c22){const _0x594252=_0x4f984b;return _0x428c1d[_0x594252(0x20a)](_0x2c04de,_0x552c22);},'rIpuu':_0x428c1d[_0x3570af(0x9b1)],'ZFxgf':_0x428c1d[_0x3570af(0xc67)],'IjaaS':function(_0x487b04,_0x4b3480){const _0x46a79f=_0x98278;return _0x428c1d[_0x46a79f(0x540)](_0x487b04,_0x4b3480);},'lOZtc':function(_0x4ca4b3,_0x51cd3c){const _0x452da5=_0x3071c9;return _0x428c1d[_0x452da5(0x977)](_0x4ca4b3,_0x51cd3c);},'jAXAf':_0x428c1d[_0x98278(0x79d)],'TgaFN':function(_0xee84bb,_0x4067b9){const _0x1d935f=_0x59d30d;return _0x428c1d[_0x1d935f(0xbad)](_0xee84bb,_0x4067b9);},'AwfqU':_0x428c1d[_0x3570af(0x3fd)],'cFqpy':_0x428c1d[_0x3071c9(0xbbd)],'UkpBK':_0x428c1d[_0x59d30d(0xbaa)],'QFKJZ':function(_0x21c443,_0x1122de){const _0x477d12=_0x59d30d;return _0x428c1d[_0x477d12(0x2ec)](_0x21c443,_0x1122de);},'cxkiC':_0x428c1d[_0x3570af(0xc98)],'Nloze':_0x428c1d[_0x59d30d(0xa98)],'ELwwr':_0x428c1d[_0x4f984b(0xc4f)],'UcmHm':_0x428c1d[_0x98278(0xdd2)],'WDVwp':function(_0xe9b10c,_0x4085c7){const _0x582c8f=_0x98278;return _0x428c1d[_0x582c8f(0x5ac)](_0xe9b10c,_0x4085c7);},'yxdfR':function(_0x313da5,_0x2e1cbf){const _0x1b05da=_0x4f984b;return _0x428c1d[_0x1b05da(0x35e)](_0x313da5,_0x2e1cbf);},'zpDAl':function(_0x5e9418,_0x1e2dab){const _0x45ca4c=_0x98278;return _0x428c1d[_0x45ca4c(0xd79)](_0x5e9418,_0x1e2dab);},'UBErI':_0x428c1d[_0x3071c9(0x2f0)],'RfDZW':function(_0x2f6fb4,_0x328c45){const _0x503cfe=_0x59d30d;return _0x428c1d[_0x503cfe(0x284)](_0x2f6fb4,_0x328c45);},'lGjmQ':_0x428c1d[_0x3570af(0x394)],'LJJdj':_0x428c1d[_0x59d30d(0x9ee)],'yphHO':_0x428c1d[_0x3570af(0x880)],'CtmfC':function(_0x583ed7,_0x90f29c){const _0x172313=_0x98278;return _0x428c1d[_0x172313(0x540)](_0x583ed7,_0x90f29c);},'idwcy':_0x428c1d[_0x3071c9(0xc16)],'bAAzx':function(_0x2ea97c,_0x4f1390){const _0x5e16f0=_0x98278;return _0x428c1d[_0x5e16f0(0xcab)](_0x2ea97c,_0x4f1390);},'SoPdG':_0x428c1d[_0x98278(0x22f)],'YCdkh':_0x428c1d[_0x3071c9(0x3b4)],'wAafH':function(_0x1e8f13,_0x2c739b){const _0x243fdb=_0x59d30d;return _0x428c1d[_0x243fdb(0x351)](_0x1e8f13,_0x2c739b);},'nJoLe':function(_0x47e2fa,_0x39a2c4){const _0x35afe4=_0x4f984b;return _0x428c1d[_0x35afe4(0xa25)](_0x47e2fa,_0x39a2c4);},'nqsil':function(_0x24982d,_0x5dd3d0){const _0x1adde3=_0x98278;return _0x428c1d[_0x1adde3(0x978)](_0x24982d,_0x5dd3d0);},'sfzAM':_0x428c1d[_0x59d30d(0x2a7)],'uwAoY':_0x428c1d[_0x4f984b(0x7f1)]};if(_0x428c1d[_0x4f984b(0x4c8)](_0x428c1d[_0x59d30d(0x61c)],_0x428c1d[_0x3071c9(0x3ac)]))_0x595e9d='';else{if(_0x428c1d[_0x4f984b(0x3b7)](_0x23adf2,_0x428c1d[_0x4f984b(0xce8)])){if(_0x428c1d[_0x3570af(0x448)](_0x428c1d[_0x98278(0x268)],_0x428c1d[_0x3071c9(0x5da)])){var _0x4fd718=_0x1acc40[_0x98278(0x3db)+_0x59d30d(0x231)+_0x59d30d(0xa74)][_0x59d30d(0x3d9)+_0x4f984b(0x205)+_0x98278(0xad3)+_0x98278(0x654)][_0x98278(0x5b4)+_0x98278(0x568)+'t'],_0x42e024=_0x4fd718[_0x3071c9(0xbae)+_0x3570af(0x6b3)],_0x3e5cdc=[];sentences=[];for(var _0x36ab7b=-0xb6+-0x23c5+0x14*0x1d3;_0x428c1d[_0x3570af(0xc0e)](_0x36ab7b,_0x42e024);_0x36ab7b++){if(_0x428c1d[_0x3570af(0x428)](_0x428c1d[_0x59d30d(0x480)],_0x428c1d[_0x3570af(0x2bb)]))return-(-0x1*-0x137e+0x1e2c+-0x1*0x31a9);else _0x3e5cdc[_0x98278(0xd53)](_0x4fd718[_0x59d30d(0xa27)+'ge'](_0x36ab7b));}Promise[_0x3071c9(0x2ed)](_0x3e5cdc)[_0x3071c9(0x56c)](function(_0x173470){const _0x20ad29=_0x59d30d,_0x38da0b=_0x4f984b,_0x5dc489=_0x98278,_0x598064=_0x59d30d,_0x456709=_0x3570af;if(_0x125863[_0x20ad29(0x302)](_0x125863[_0x20ad29(0x282)],_0x125863[_0x20ad29(0xd9a)])){var _0x3a5cd6=[],_0x40855f=[];for(var _0x16d727 of _0x173470){if(_0x125863[_0x598064(0xce2)](_0x125863[_0x456709(0x90e)],_0x125863[_0x598064(0xb33)])){let _0x47c26a=-0x26a2+0x104d+0x1655*0x1;for(let _0x43c3bb of _0x2d60f4){_0x47c26a+=_0x43c3bb[_0x5dc489(0x3db)+'nt'][_0x20ad29(0x830)+'h'];}return _0x47c26a;}else{const _0x5c2af4={};_0x5c2af4[_0x598064(0x73f)]=0x1,_0x4fd718[_0x598064(0x98b)]=_0x16d727[_0x5dc489(0x73b)+_0x20ad29(0x720)+'t'](_0x5c2af4),_0x3a5cd6[_0x38da0b(0xd53)](_0x16d727[_0x38da0b(0x551)+_0x456709(0x729)+_0x598064(0x890)]());const _0x1c5384={};_0x1c5384[_0x5dc489(0x73f)]=0x1,_0x40855f[_0x598064(0xd53)]([_0x16d727[_0x20ad29(0x73b)+_0x598064(0x720)+'t'](_0x1c5384),_0x125863[_0x456709(0x6a5)](_0x16d727[_0x598064(0x542)+_0x38da0b(0xa43)],-0xf*0x28c+0x59c+0x2099*0x1)]);}}return Promise[_0x38da0b(0x2ed)]([Promise[_0x5dc489(0x2ed)](_0x3a5cd6),_0x40855f]);}else _0x130d28=_0x5cc26d[_0x38da0b(0x3d1)](_0x424c5d)[_0x1705da[_0x456709(0x59c)]],_0x101ba0='';})[_0x4f984b(0x56c)](function(_0x991c3){const _0x731578=_0x3071c9,_0x40907f=_0x3570af,_0x5bf007=_0x4f984b,_0x4c1d22=_0x98278,_0x5b3f8e=_0x98278,_0x37285f={'vvdfF':function(_0x32d883,_0x3f162d){const _0x27f205=_0x4b15;return _0x1705da[_0x27f205(0x6f0)](_0x32d883,_0x3f162d);},'ryKUq':_0x1705da[_0x731578(0x204)],'ddCMt':function(_0x4cee94,_0x4509e4,_0x1f82ee){const _0x3dcca0=_0x731578;return _0x1705da[_0x3dcca0(0xa22)](_0x4cee94,_0x4509e4,_0x1f82ee);},'MTqeU':function(_0x46bc0a,_0x2296b4){const _0x26ff61=_0x731578;return _0x1705da[_0x26ff61(0x6ee)](_0x46bc0a,_0x2296b4);},'dIXty':_0x1705da[_0x731578(0x59c)],'gTdfS':function(_0x5e2615,_0x482f8a){const _0x49d160=_0x731578;return _0x1705da[_0x49d160(0x87d)](_0x5e2615,_0x482f8a);},'xnFKS':_0x1705da[_0x731578(0xa4d)]};if(_0x1705da[_0x40907f(0x5d6)](_0x1705da[_0x731578(0x842)],_0x1705da[_0x4c1d22(0x418)])){for(var _0x36be75=-0x11bc+-0x208c*0x1+0x3248;_0x1705da[_0x731578(0x31d)](_0x36be75,_0x991c3[-0x23c1+-0x22d6+-0x4697*-0x1][_0x731578(0x830)+'h']);++_0x36be75){if(_0x1705da[_0x5bf007(0x5d6)](_0x1705da[_0x4c1d22(0x9e5)],_0x1705da[_0x40907f(0x9e5)])){_0x37285f[_0x5b3f8e(0xb62)](_0x18cc53,_0x37285f[_0x4c1d22(0xcd1)]);return;}else{var _0x2ce234=_0x991c3[-0x1843*-0x1+-0x415+0x171*-0xe][_0x36be75];_0x4fd718[_0x5bf007(0x358)+'ge']=_0x991c3[-0x63b+-0x5*-0x362+-0x2*0x557][_0x36be75][0x1ca8+-0x8bd*-0x4+-0x3f9b],_0x4fd718[_0x4c1d22(0x98b)]=_0x991c3[-0x10b4+-0xc0a+0x21*0xdf][_0x36be75][-0xf4f*0x1+-0x26c1+0x3610];var _0x35335a=_0x2ce234[_0x5b3f8e(0xc42)],_0x579932='',_0x411682='',_0x3595dd='',_0x336785=_0x35335a[-0x1*-0xf4b+0x35*0xe+-0x1231][_0x731578(0x3ad)+_0x5b3f8e(0xdab)][-0x1f3b+-0x3*0x782+0x35c6],_0x567079=_0x35335a[-0x1129+0x5*-0x298+0x1e21][_0x5bf007(0x3ad)+_0x5bf007(0xdab)][0x1000+-0x2*0x3da+-0x848];for(var _0x4a4faf of _0x35335a){if(_0x1705da[_0x731578(0xd5f)](_0x1705da[_0x731578(0xa09)],_0x1705da[_0x5bf007(0x519)]))_0x37285f[_0x40907f(0xb9b)](_0x16c1d8,_0x270555,_0x37285f[_0x5b3f8e(0x32a)](_0x3b7cfd,-0x1aab+-0x8ad*0x1+0x2359*0x1));else{_0x1705da[_0x731578(0x31d)](_0x1705da[_0x5bf007(0x9bd)](_0x4fd718[_0x4c1d22(0x98b)][_0x731578(0x884)],0xf2f+-0xcb*0x7+-0x99f),_0x1705da[_0x5bf007(0x301)](_0x567079,_0x4a4faf[_0x4c1d22(0x3ad)+_0x731578(0xdab)][0x2670+-0xb9*-0x9+-0x2ced]))&&(_0x1705da[_0x5b3f8e(0x5d6)](_0x1705da[_0x5bf007(0x6d2)],_0x1705da[_0x4c1d22(0x6d2)])?_0x54949b+=_0x2b800c[_0x4b3825][0xff0+-0x5*0xb9+-0x629*0x2]:(sentences[_0x731578(0xd53)]([_0x4fd718[_0x5b3f8e(0x358)+'ge'],_0x579932,_0x411682,_0x3595dd]),_0x579932='',_0x411682=''));_0x567079=_0x4a4faf[_0x4c1d22(0x3ad)+_0x40907f(0xdab)][0x2232+0xc82+-0x7c8*0x6],_0x579932+=_0x4a4faf[_0x731578(0xda0)];if(/[\.\?\!。,?!]$/[_0x5bf007(0x81b)](_0x4a4faf[_0x40907f(0xda0)])){if(_0x1705da[_0x5bf007(0x4d6)](_0x1705da[_0x4c1d22(0x847)],_0x1705da[_0x5b3f8e(0x210)]))return-(-0x2485*0x1+0x7*0x2b9+0x1177);else sentences[_0x40907f(0xd53)]([_0x4fd718[_0x5bf007(0x358)+'ge'],_0x579932,_0x411682,_0x3595dd]),_0x579932='',_0x411682='';}if(_0x4fd718[_0x5bf007(0x98b)]&&_0x4fd718[_0x5b3f8e(0x98b)][_0x40907f(0x884)]&&_0x4fd718[_0x4c1d22(0x98b)][_0x731578(0x4df)+'t']){if(_0x1705da[_0x5bf007(0xd00)](_0x1705da[_0x731578(0x555)],_0x1705da[_0x731578(0x555)]))_0x338eb6=_0x3d6469[_0x40907f(0x3d1)](_0x2100d5)[_0x37285f[_0x4c1d22(0x951)]],_0x5ca73b='';else{if(_0x1705da[_0x4c1d22(0x31d)](_0x4a4faf[_0x731578(0x3ad)+_0x4c1d22(0xdab)][-0x9*0x3c2+-0x2*0xdce+0x3d72],_0x1705da[_0x731578(0x9bd)](_0x4fd718[_0x731578(0x98b)][_0x40907f(0x884)],-0x19b3+0x11*0x3a+0x15db)))_0x1705da[_0x4c1d22(0x6d5)](_0x1705da[_0x4c1d22(0x334)],_0x1705da[_0x5bf007(0xaec)])?(_0x383e06=_0x15cc7e[_0x731578(0x3d1)](_0x333e31)[_0x1705da[_0x731578(0x59c)]],_0x28db20=''):_0x411682='';else{if(_0x1705da[_0x4c1d22(0x5d6)](_0x1705da[_0x40907f(0x530)],_0x1705da[_0x4c1d22(0x460)]))_0x411682='';else try{_0x33649c=_0x21d8bd[_0x4c1d22(0x3d1)](_0x1705da[_0x5b3f8e(0xae6)](_0x1cde22,_0x5e5a5c))[_0x1705da[_0x40907f(0x59c)]],_0x2c34d5='';}catch(_0x2bf663){_0x501aa5=_0xeee40f[_0x5b3f8e(0x3d1)](_0x5c6f72)[_0x1705da[_0x5b3f8e(0x59c)]],_0x819c='';}}if(_0x1705da[_0x5b3f8e(0x8b0)](_0x4a4faf[_0x731578(0x3ad)+_0x731578(0xdab)][-0x80*-0x10+-0x3ec+-0x1*0x40f],_0x1705da[_0x5b3f8e(0x6fe)](_0x4fd718[_0x731578(0x98b)][_0x40907f(0x4df)+'t'],-0x15*-0x7f+0x5e6*-0x2+0x2*0xb2)))_0x1705da[_0x40907f(0x70a)](_0x1705da[_0x5b3f8e(0x668)],_0x1705da[_0x731578(0x668)])?_0x411682+='':_0x1b0f7f+=_0x4c1d22(0x6a4)+(_0x300712[_0x731578(0x73c)][_0x4c1d22(0x531)]||_0x89ce91[_0x4c1d22(0x53e)+_0x731578(0xcb5)+_0x5b3f8e(0x4f3)+'e'](_0x4e23bf)[_0x4c1d22(0xdc7)+_0x5b3f8e(0x3f4)+_0x4c1d22(0xd43)]||_0xba31fc[_0x4c1d22(0x53e)+_0x5b3f8e(0xcb5)+_0x731578(0x4f3)+'e'](_0x31fb5c)[_0x40907f(0x531)]);else{if(_0x1705da[_0x40907f(0x4a9)](_0x4a4faf[_0x5b3f8e(0x3ad)+_0x4c1d22(0xdab)][-0xd7*0x6+0x3*-0x3c4+0x105b],_0x1705da[_0x5b3f8e(0x6fe)](_0x1705da[_0x40907f(0xb6c)](_0x4fd718[_0x5b3f8e(0x98b)][_0x731578(0x4df)+'t'],-0x1d9a+-0x1a3c+-0x1bec*-0x2),0x156b*0x1+-0xf1d+-0x64b))){if(_0x1705da[_0x40907f(0x9c7)](_0x1705da[_0x731578(0xa1b)],_0x1705da[_0x40907f(0xa1b)]))_0x411682+='';else{if(_0x37285f[_0x40907f(0x877)](_0x5c73e9[_0x4c1d22(0x2d0)+'Of'](_0x52359a[_0x34cfc6]),-(0x823*0x2+-0x39*-0x47+-0x2014)))_0x1cad9d[_0x40907f(0xd6b)+'ft'](_0x5c4ac0[_0x5d21f4]);}}else _0x1705da[_0x4c1d22(0xa9c)](_0x1705da[_0x5b3f8e(0xb4a)],_0x1705da[_0x40907f(0x1ed)])?_0x411682+='':_0x1dc611+=_0x5d818a;}}}_0x3595dd=Math[_0x4c1d22(0xdad)](_0x1705da[_0x5b3f8e(0x1e9)](_0x4a4faf[_0x731578(0x3ad)+_0x5bf007(0xdab)][0xbdb+-0x12f7+0x721],_0x4a4faf[_0x731578(0x4df)+'t']));}}}}sentences[_0x5bf007(0x4a6)]((_0x33af18,_0x25b183)=>{const _0x715f87=_0x5b3f8e,_0x361903=_0x40907f,_0x543250=_0x4c1d22,_0xa12de5=_0x40907f,_0x18ab66=_0x5b3f8e,_0x3913bb={'QcybV':function(_0x38c3c5,_0x384ac8){const _0x4c110b=_0x4b15;return _0x1705da[_0x4c110b(0xae6)](_0x38c3c5,_0x384ac8);},'hmCjm':_0x1705da[_0x715f87(0xb04)],'xVUeu':_0x1705da[_0x361903(0x912)],'wPqif':_0x1705da[_0x361903(0x70c)]};if(_0x1705da[_0x361903(0xd00)](_0x1705da[_0x18ab66(0xbc7)],_0x1705da[_0x18ab66(0xc53)])){if(_0x1705da[_0xa12de5(0x24a)](_0x33af18[0x2*-0xcae+0x11c9*0x1+-0x793*-0x1],_0x25b183[-0x715+0x225e+-0x1b49]))return _0x1705da[_0x361903(0xa9c)](_0x1705da[_0x543250(0x226)],_0x1705da[_0x361903(0x226)])?_0x441a11:-(0x2162+-0x391+-0x1dd0);if(_0x1705da[_0x18ab66(0x78b)](_0x33af18[-0x45*0x51+0x42d*-0x2+0x1e2f],_0x25b183[0x2113+0xa12+0x1*-0x2b25])){if(_0x1705da[_0x18ab66(0x9c7)](_0x1705da[_0xa12de5(0xb95)],_0x1705da[_0x18ab66(0x81d)])){if(_0x2e5b6f){const _0x335a05=_0x1bfcd3[_0x18ab66(0xb9d)](_0x17f1fd,arguments);return _0x4c4f1e=null,_0x335a05;}}else return-0x1e11+-0x1c4f*-0x1+0x1*0x1c3;}if(_0x1705da[_0x18ab66(0x78b)](_0x33af18[0x7f5+-0x18*-0xbd+0x1*-0x19ab][_0x543250(0x830)+'h'],-0x1b95+-0x10cd+0x2c63)&&_0x1705da[_0x361903(0xa5c)](_0x25b183[-0x501+0x11f0+-0xced][_0x361903(0x830)+'h'],0xd8*0x17+0x1269+-0x25d0)&&_0x1705da[_0x715f87(0x24a)](_0x33af18[-0xdb*0x8+-0x2*0xcfb+0x348*0xa][-0x189*-0x18+-0x2446+-0x49*0x2],_0x25b183[-0x4ed+0x699*-0x5+0x25ec][0x1*-0x23c+0x20b2+-0x1e76*0x1]))return _0x1705da[_0x715f87(0x9c7)](_0x1705da[_0xa12de5(0xc24)],_0x1705da[_0x715f87(0xc24)])?-(0x23a3+0x1bf7+-0x1533*0x3):-(-0x1a27+-0xfa8+-0x1be*-0x18);if(_0x1705da[_0x18ab66(0x78b)](_0x33af18[0x1398+-0xbc8+-0x7ce][_0x18ab66(0x830)+'h'],0x1699+0x1d68*0x1+-0x4*0xd00)&&_0x1705da[_0x361903(0xa5c)](_0x25b183[-0xa74+-0x210f+0x2b85][_0x715f87(0x830)+'h'],0x67*-0x3+0x50e*-0x7+0x2498)&&_0x1705da[_0xa12de5(0x4a9)](_0x33af18[-0x6f6+0x17e1*-0x1+0x35*0x95][0xb97+0x21*0xc7+0x2a*-0xe3],_0x25b183[0x3*0x6d6+-0x13*-0x1f4+0x6*-0x99a][-0x1a49+-0xb*0x43+0x1d2a]))return _0x1705da[_0x18ab66(0x5d6)](_0x1705da[_0x715f87(0x552)],_0x1705da[_0xa12de5(0x27d)])?-0x9*-0x2af+0x4f1+-0x1d17:_0x378212[_0x543250(0x611)+_0x361903(0xbbb)]()[_0xa12de5(0x4cb)+'h'](hwvkIx[_0x715f87(0xc9a)])[_0x715f87(0x611)+_0x361903(0xbbb)]()[_0x361903(0xb57)+_0x361903(0xc43)+'r'](_0x47ecd2)[_0x361903(0x4cb)+'h'](hwvkIx[_0x361903(0xc9a)]);if(_0x1705da[_0xa12de5(0x24a)](_0x33af18[-0xd5*-0xa+-0x65d+-0x1f2],_0x25b183[-0x1319+-0x1779+0x2a95])){if(_0x1705da[_0x543250(0x9c7)](_0x1705da[_0x361903(0x9a3)],_0x1705da[_0x361903(0x1fb)]))(function(){return![];}[_0xa12de5(0xb57)+_0x715f87(0xc43)+'r'](PktYjf[_0x361903(0x9bc)](PktYjf[_0x715f87(0x37c)],PktYjf[_0x715f87(0xac2)]))[_0x18ab66(0xb9d)](PktYjf[_0x543250(0x881)]));else return-(0x1*-0x16b5+0x1de3+-0x1*0x72d);}if(_0x1705da[_0xa12de5(0x4b6)](_0x33af18[-0x4cd+-0x6e2*0x1+0x5d9*0x2],_0x25b183[0x15b7+0x246b+-0x3a1f])){if(_0x1705da[_0xa12de5(0x6c4)](_0x1705da[_0xa12de5(0xa8b)],_0x1705da[_0x361903(0xa53)]))_0x342eab='';else return-0x26f*0x5+0x2291+0x3f*-0x5b;}return 0x4*-0x10a+0x1417+0x1*-0xfef;}else{if(_0x551e3e){const _0x468562=_0x5d3529[_0xa12de5(0xb9d)](_0x3ea3a1,arguments);return _0x1f5b2b=null,_0x468562;}}}),modalele=[_0x1705da[_0x731578(0x356)]],sentencesContent='';for(let _0x1f8730=-0x2*0x62b+-0x21c8+0x2e1e;_0x1705da[_0x4c1d22(0x8b0)](_0x1f8730,sentences[_0x5b3f8e(0x830)+'h']);_0x1f8730++){if(_0x1705da[_0x5b3f8e(0xd01)](_0x1705da[_0x5b3f8e(0x625)],_0x1705da[_0x5bf007(0x625)])){_0x3584f0=_0x1705da[_0x5bf007(0x6f0)](_0x45c64a,_0xc454fb);const _0x23c031={};return _0x23c031[_0x5b3f8e(0x62b)]=_0x1705da[_0x5b3f8e(0x5cb)],_0x23d331[_0x5b3f8e(0x958)+'e'][_0x4c1d22(0x219)+'pt'](_0x23c031,_0x27486c,_0x146dff);}else sentencesContent+=sentences[_0x1f8730][0x1659+0x18e5*0x1+-0x1d*0x1a1];}const _0xff28f2={};_0xff28f2[_0x4c1d22(0x435)+_0x731578(0xcc1)+'t']=sentencesContent,_0xff28f2[_0x4c1d22(0x557)]=_0x1acc40[_0x40907f(0x3db)+_0x4c1d22(0x231)+_0x731578(0xa74)][_0x40907f(0x3d9)+_0x731578(0x205)+_0x5bf007(0xad3)+_0x4c1d22(0x654)][_0x40907f(0xb6d)+'e'],article=_0xff28f2,_0x1705da[_0x40907f(0x6f0)](_0x21526b,_0x1705da[_0x5bf007(0x915)]);}else _0x17bca5=_0x59e4cd[_0x5b3f8e(0x435)+_0x5bf007(0xcc1)+'t'],_0x3655a8[_0x4c1d22(0x83e)+'e'](),_0x1705da[_0x5bf007(0x928)](_0xceffe2);})[_0x4f984b(0x46c)](function(_0x26e29c){const _0x2fe4c7=_0x4f984b,_0x2988ab=_0x4f984b,_0x208514=_0x59d30d,_0x497374=_0x4f984b,_0x1ab65f=_0x59d30d;if(_0x1705da[_0x2fe4c7(0x5d6)](_0x1705da[_0x2fe4c7(0x2c3)],_0x1705da[_0x2988ab(0x2c8)]))console[_0x2988ab(0xa18)](_0x26e29c);else{if(_0x1705da[_0x497374(0x88e)](_0x1705da[_0x1ab65f(0xae6)](_0x1705da[_0x208514(0xae6)](_0x4ca64d,_0x4522a7[_0x3c2093]),'\x0a')[_0x497374(0x830)+'h'],-0xb1a*-0x1+0x1bb+-0xb45))_0x18c9d4=_0x1705da[_0x208514(0x499)](_0x1705da[_0x208514(0x9be)](_0x5b7c17,_0x3673de[_0x4abff3]),'\x0a');}});}else _0x4ad166+='';}else _0x428c1d[_0x3071c9(0x96d)](_0x428c1d[_0x98278(0x8f9)],_0x428c1d[_0x4f984b(0xb2f)])?(modalele=_0x428c1d[_0x98278(0x521)](eleparse,_0x1acc40[_0x59d30d(0x3db)+_0x4f984b(0x3f8)+_0x3570af(0xc03)]),article=new Readability(_0x1acc40[_0x3071c9(0x3db)+_0x98278(0x3f8)+_0x4f984b(0xc03)][_0x4f984b(0xa45)+_0x98278(0xb0c)](!![]))[_0x59d30d(0x3d1)](),_0x428c1d[_0x98278(0x53b)](_0x21526b,_0x428c1d[_0x59d30d(0x3b4)])):_0x3292f3[_0x98278(0xa18)](_0x4cb348);}})[_0x4d5b37(0x56c)](()=>{const _0x112b87=_0x4d5b37,_0xd1b68a=_0x52ac9c,_0x21c7f1=_0x96910,_0x33100e=_0x52ac9c,_0x3e3368=_0x52ac9c,_0x5e02ac={'xJKPc':_0x125863[_0x112b87(0x335)],'XxAJi':function(_0x589472,_0x34ff07){const _0x47e438=_0x112b87;return _0x125863[_0x47e438(0x2c2)](_0x589472,_0x34ff07);},'hfVkX':_0x125863[_0xd1b68a(0xb07)],'sYqTA':function(_0x36c7b0,_0x39514c){const _0x13d409=_0x112b87;return _0x125863[_0x13d409(0x614)](_0x36c7b0,_0x39514c);},'nSWMe':function(_0x9d6e92,_0xfa801c){const _0xd4a9c5=_0x112b87;return _0x125863[_0xd4a9c5(0x2e9)](_0x9d6e92,_0xfa801c);},'LOiKK':_0x125863[_0x21c7f1(0xc0d)],'GyMHP':_0x125863[_0x21c7f1(0xd12)],'DnKuv':function(_0x30c725,_0x4c65b6,_0xeae05d){const _0x572f2d=_0x112b87;return _0x125863[_0x572f2d(0x901)](_0x30c725,_0x4c65b6,_0xeae05d);},'Rblyt':_0x125863[_0x112b87(0x708)],'iSUhA':_0x125863[_0x3e3368(0x402)],'lKyKS':function(_0x5c44d8,_0x46b396){const _0x9ab592=_0xd1b68a;return _0x125863[_0x9ab592(0x832)](_0x5c44d8,_0x46b396);},'ytFVy':_0x125863[_0x3e3368(0xc3f)],'oBozd':_0x125863[_0x112b87(0xb15)],'wbpMT':_0x125863[_0x21c7f1(0x6dd)],'vZoRR':_0x125863[_0x3e3368(0x2a0)]};if(_0x125863[_0x33100e(0x72b)](_0x125863[_0x3e3368(0x93d)],_0x125863[_0x33100e(0x770)])){if(_0x209a05[_0xd1b68a(0x867)](_0x4781f0))return _0x5b6a0b;const _0x28293b=_0x4d59da[_0x33100e(0x308)](/[;,;、,]/),_0x1e9f42=_0x28293b[_0xd1b68a(0x4a5)](_0x2ee211=>'['+_0x2ee211+']')[_0x112b87(0x93a)]('\x20'),_0x125834=_0x28293b[_0x3e3368(0x4a5)](_0x25c1f6=>'['+_0x25c1f6+']')[_0x3e3368(0x93a)]('\x0a');_0x28293b[_0x3e3368(0x5b5)+'ch'](_0x50613e=>_0x242821[_0x21c7f1(0x7a0)](_0x50613e)),_0x168745='\x20';for(var _0xe5a374=_0x125863[_0xd1b68a(0x6a5)](_0x125863[_0x21c7f1(0xad7)](_0x1c1d94[_0xd1b68a(0x5ef)],_0x28293b[_0x3e3368(0x830)+'h']),-0x196+0x13fd+-0x1266);_0x125863[_0x33100e(0x9cb)](_0xe5a374,_0x45d453[_0xd1b68a(0x5ef)]);++_0xe5a374)_0x21d917+='[^'+_0xe5a374+']\x20';return _0x32b80d;}else{fulltext=article[_0x33100e(0x435)+_0xd1b68a(0xcc1)+'t'],fulltext=fulltext[_0x3e3368(0x785)+_0x3e3368(0x9b3)]('\x0a\x0a','\x0a')[_0x112b87(0x785)+_0x33100e(0x9b3)]('\x0a\x0a','\x0a');const _0x343149=/[?!;\?\n。………]/g;fulltext=fulltext[_0x21c7f1(0x308)](_0x343149),fulltext=fulltext[_0x3e3368(0x31e)+'r'](_0x4bdfa2=>{const _0xd9a587=_0xd1b68a,_0x3d1c27=_0x112b87,_0x49097d=_0x33100e,_0x1876c0=_0x21c7f1,_0x5694df=_0xd1b68a;if(_0x5e02ac[_0xd9a587(0x809)](_0x5e02ac[_0xd9a587(0x9f9)],_0x5e02ac[_0x49097d(0x9f9)]))_0xa58fa2=_0x5e02ac[_0x1876c0(0x1f4)];else{const _0x496b27=/^[0-9,\s]+$/;return!_0x496b27[_0x3d1c27(0x81b)](_0x4bdfa2);}}),fulltext=fulltext[_0x3e3368(0x31e)+'r'](function(_0x693057){const _0x1afcf3=_0x33100e,_0x2a5136=_0x33100e,_0x457b00=_0x3e3368,_0x1db6cb=_0x3e3368,_0x5d3692=_0x3e3368,_0x235b80={'TmnoD':function(_0x19debf,_0x3914ee){const _0x58ea86=_0x4b15;return _0x5e02ac[_0x58ea86(0xd41)](_0x19debf,_0x3914ee);},'HDqqE':function(_0xf99537,_0x3d1c07){const _0x582b34=_0x4b15;return _0x5e02ac[_0x582b34(0x594)](_0xf99537,_0x3d1c07);}};if(_0x5e02ac[_0x1afcf3(0x809)](_0x5e02ac[_0x2a5136(0xb96)],_0x5e02ac[_0x2a5136(0x8c6)]))return _0x693057&&_0x693057[_0x457b00(0x44c)]();else _0x49f0e8+=_0x235b80[_0x457b00(0x831)](_0x4294d2[_0x30fd2d],_0x417644[_0x9c4428]),_0x1143b1+=_0x235b80[_0x5d3692(0x7f2)](_0x18b882[_0x457f4e],0x2*-0xfe+-0x2ab*-0x1+-0x1*0xad),_0x5cba9b+=_0x235b80[_0x1db6cb(0x7f2)](_0x23d0aa[_0x303e16],-0xb*-0xc8+-0x2414+0x1b7e);}),optkeytext={'method':_0x125863[_0x33100e(0xa76)],'headers':headers,'body':JSON[_0x21c7f1(0xd73)+_0x112b87(0xcb0)]({'text':fulltext[_0x3e3368(0x93a)]('\x0a')})},_0x125863[_0x21c7f1(0xa7b)](fetchRetry,_0x125863[_0x112b87(0x6b8)],0x1*-0x161f+-0x1281+0x67*0x65,optkeytext)[_0x21c7f1(0x56c)](_0xe20b7a=>_0xe20b7a[_0x21c7f1(0x518)]())[_0x33100e(0x56c)](_0x560081=>{const _0x3712ea=_0x112b87,_0x2b50ad=_0xd1b68a,_0x3c5713=_0x21c7f1,_0x518076=_0x33100e,_0x123a32=_0x33100e,_0x16a61d={'wmnaJ':_0x125863[_0x3712ea(0x9ae)],'mFhLY':_0x125863[_0x2b50ad(0x2e4)],'oapIf':function(_0x3e1205,_0x4587cf){const _0x5e8aa5=_0x3712ea;return _0x125863[_0x5e8aa5(0x832)](_0x3e1205,_0x4587cf);},'tacHd':_0x125863[_0x2b50ad(0xab4)],'rLhdX':function(_0x59ffe6,_0x3aae3d){const _0x1ffe88=_0x3712ea;return _0x125863[_0x1ffe88(0xbd5)](_0x59ffe6,_0x3aae3d);},'jpDmE':_0x125863[_0x3c5713(0xc71)],'DsJDm':_0x125863[_0x2b50ad(0x5c8)],'CsKHR':function(_0x5643b4){const _0x2b6f0d=_0x3c5713;return _0x125863[_0x2b6f0d(0xb88)](_0x5643b4);},'xMrWY':_0x125863[_0x123a32(0x7a1)],'bmvxp':_0x125863[_0x518076(0xc3f)],'ICfRp':_0x125863[_0x518076(0x402)],'VddSQ':_0x125863[_0x3712ea(0x708)],'ZvGXI':function(_0x26cf02,_0x76bacd){const _0x3e904e=_0x3712ea;return _0x125863[_0x3e904e(0x237)](_0x26cf02,_0x76bacd);},'QOoeD':function(_0x1db58e,_0x4dba14){const _0x182677=_0x3712ea;return _0x125863[_0x182677(0xbd5)](_0x1db58e,_0x4dba14);},'HDoLQ':function(_0x2482a1,_0x4e62e4){const _0x2c30de=_0x518076;return _0x125863[_0x2c30de(0xbd5)](_0x2482a1,_0x4e62e4);},'DRsof':_0x125863[_0x3712ea(0x8c4)],'OLvsv':_0x125863[_0x518076(0xae7)],'cNzrp':function(_0x4d1758,_0x192829){const _0x2ca8be=_0x2b50ad;return _0x125863[_0x2ca8be(0x302)](_0x4d1758,_0x192829);},'Xmool':_0x125863[_0x518076(0x825)],'FIBeg':function(_0x512b9e,_0x23bb73){const _0x272190=_0x2b50ad;return _0x125863[_0x272190(0x72b)](_0x512b9e,_0x23bb73);},'UgDxl':_0x125863[_0x3c5713(0xcf6)],'nRzar':_0x125863[_0x3c5713(0x3d5)],'aDDOa':function(_0x3ac539,_0x1ac2ec){const _0x19a290=_0x3712ea;return _0x125863[_0x19a290(0x21d)](_0x3ac539,_0x1ac2ec);},'jSvqq':function(_0x13d92d,_0x2b7b91){const _0x101de7=_0x518076;return _0x125863[_0x101de7(0x3bf)](_0x13d92d,_0x2b7b91);},'NQeAT':_0x125863[_0x3712ea(0x2db)],'qFOGv':_0x125863[_0x518076(0xcfa)],'AwmWK':_0x125863[_0x2b50ad(0x374)],'PSFVG':function(_0x1bd997,_0x20ca88){const _0x1cd01c=_0x2b50ad;return _0x125863[_0x1cd01c(0xce2)](_0x1bd997,_0x20ca88);},'MeAxK':_0x125863[_0x3c5713(0xbcd)],'HYGpf':_0x125863[_0x518076(0xd6d)],'VXwOR':_0x125863[_0x3712ea(0x9f7)],'WeaRC':_0x125863[_0x3712ea(0xc0f)],'idcAA':_0x125863[_0x2b50ad(0xa8e)],'slcwx':_0x125863[_0x3c5713(0xc62)],'enjON':_0x125863[_0x518076(0x2be)],'tKMPj':_0x125863[_0x3712ea(0xadd)],'NNcxt':function(_0x262917,_0x36fc12,_0x1ea751){const _0x2226d6=_0x2b50ad;return _0x125863[_0x2226d6(0x901)](_0x262917,_0x36fc12,_0x1ea751);},'LWWqf':_0x125863[_0x2b50ad(0x63c)],'NoaKV':_0x125863[_0x123a32(0x64c)],'IiZDX':_0x125863[_0x3c5713(0x681)],'hZxkD':_0x125863[_0x3c5713(0xa7f)],'hTzLZ':function(_0x520697){const _0x5f5a43=_0x123a32;return _0x125863[_0x5f5a43(0x98d)](_0x520697);},'fmJIo':_0x125863[_0x123a32(0x8d1)],'yxeYs':_0x125863[_0x518076(0x3e5)],'qjrzn':function(_0x2b37b8,_0x4c442b){const _0x5345fe=_0x518076;return _0x125863[_0x5345fe(0x6a5)](_0x2b37b8,_0x4c442b);},'lqAyJ':function(_0x25d04f,_0xd3c2f0){const _0xfbc04c=_0x123a32;return _0x125863[_0xfbc04c(0xc13)](_0x25d04f,_0xd3c2f0);},'XPbjr':_0x125863[_0x518076(0xbc8)],'qqpOh':_0x125863[_0x518076(0x2c6)],'cdrEu':_0x125863[_0x3712ea(0x206)],'EgSzS':function(_0x29dfe0,_0x38225d){const _0x4740f7=_0x2b50ad;return _0x125863[_0x4740f7(0x6a5)](_0x29dfe0,_0x38225d);},'mKNJO':_0x125863[_0x3712ea(0xdcc)],'aIGIR':_0x125863[_0x3712ea(0xc1f)]};if(_0x125863[_0x123a32(0x302)](_0x125863[_0x518076(0x8ec)],_0x125863[_0x123a32(0x272)])){keytextres=_0x125863[_0x518076(0x832)](unique,_0x560081),promptWebpage=_0x125863[_0x2b50ad(0xbd5)](_0x125863[_0x123a32(0xbd5)](_0x125863[_0x518076(0xbd5)](_0x125863[_0x3712ea(0x7ec)],article[_0x518076(0x557)]),'\x0a'),_0x125863[_0x518076(0x62c)]);for(el in modalele){if(_0x125863[_0x123a32(0x302)](_0x125863[_0x2b50ad(0x593)],_0x125863[_0x2b50ad(0xd9d)])){if(_0x125863[_0x3712ea(0x86b)](_0x125863[_0x123a32(0xad6)](_0x125863[_0x3c5713(0x2b8)](promptWebpage,modalele[el]),'\x0a')[_0x123a32(0x830)+'h'],0x1*0x33e+0x184+0x332*-0x1))promptWebpage=_0x125863[_0x123a32(0x657)](_0x125863[_0x2b50ad(0xbe5)](promptWebpage,modalele[el]),'\x0a');}else LvQMCw[_0x518076(0x716)](_0x3aeff1,this,function(){const _0x53d13a=_0x3c5713,_0xdef32c=_0x3712ea,_0x2dde73=_0x123a32,_0x28ca94=_0x518076,_0x27e727=_0x518076,_0x2ee06e=new _0xe8b390(RqXMkP[_0x53d13a(0x85c)]),_0x4fc376=new _0x3234dc(RqXMkP[_0xdef32c(0xb74)],'i'),_0x4c7b1f=RqXMkP[_0x2dde73(0x2df)](_0x5150ef,RqXMkP[_0x28ca94(0xa7a)]);!_0x2ee06e[_0x27e727(0x81b)](RqXMkP[_0x53d13a(0x8d7)](_0x4c7b1f,RqXMkP[_0x53d13a(0x699)]))||!_0x4fc376[_0x53d13a(0x81b)](RqXMkP[_0x27e727(0x8d7)](_0x4c7b1f,RqXMkP[_0x28ca94(0x6bb)]))?RqXMkP[_0x28ca94(0x2df)](_0x4c7b1f,'0'):RqXMkP[_0x2dde73(0xb2c)](_0x2b17a3);})();}promptWebpage=_0x125863[_0x3c5713(0x740)](promptWebpage,_0x125863[_0x518076(0x751)]),keySentencesCount=-0x292*-0xb+-0x16ef*-0x1+-0x3335;for(st in keytextres){if(_0x125863[_0x3c5713(0xa55)](_0x125863[_0x2b50ad(0xa14)],_0x125863[_0x518076(0x9fe)])){if(_0x125863[_0x123a32(0x24d)](_0x125863[_0x2b50ad(0x2b8)](_0x125863[_0x3712ea(0xbe5)](promptWebpage,keytextres[st]),'\x0a')[_0x3712ea(0x830)+'h'],-0x21f8*0x1+-0x14e8+0x3b90))promptWebpage=_0x125863[_0x123a32(0x2dd)](_0x125863[_0x123a32(0x2fd)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x125863[_0x3c5713(0x21e)](keySentencesCount,0x1e21+0x97*-0x22+0x509*-0x2);}else{const _0x5afe89={'rZNfZ':_0x5e02ac[_0x518076(0x822)],'wParS':_0x5e02ac[_0x123a32(0x7ad)],'IyINi':function(_0x2d7b19,_0x3d48d0){const _0x4d8888=_0x3c5713;return _0x5e02ac[_0x4d8888(0xd29)](_0x2d7b19,_0x3d48d0);},'iALuB':_0x5e02ac[_0x2b50ad(0x494)]};_0x51ba26[_0x123a32(0x898)+_0x123a32(0x51e)+_0x3c5713(0xa4b)+'r'](_0x5e02ac[_0x3c5713(0xba1)],function(){const _0x1aa5e7=_0x123a32,_0x209936=_0x3712ea,_0x2b1116=_0x3712ea,_0x3cae4d=_0x3712ea,_0x473a52=_0x518076,_0x2ae3d8={'kFDVL':_0x5afe89[_0x1aa5e7(0xc66)],'kHFzD':function(_0x22b155,_0x5d0484){const _0x261fd4=_0x1aa5e7;return _0x5afe89[_0x261fd4(0x843)](_0x22b155,_0x5d0484);},'RliJb':_0x5afe89[_0x209936(0x687)]};_0x34cb81[_0x1aa5e7(0x3db)+_0x1aa5e7(0x231)+_0x209936(0xa74)][_0x473a52(0x3d9)+_0x2b1116(0x205)+_0x3cae4d(0xad3)+_0x2b1116(0x654)][_0x3cae4d(0xb6f)+_0x473a52(0xaa6)+_0x473a52(0x1f0)+_0x473a52(0x95e)][_0x1aa5e7(0x56c)](function(){const _0x1d0bcc=_0x2b1116,_0x1ebdf6=_0x2b1116,_0x2fc909=_0x209936,_0x5289df=_0x209936,_0x2cf7bf=_0x209936;_0x1accaa[_0x1d0bcc(0x3db)+_0x1d0bcc(0x231)+_0x2fc909(0xa74)][_0x1d0bcc(0x3d9)+_0x5289df(0x205)+_0x2fc909(0xad3)+_0x5289df(0x654)][_0x1ebdf6(0x971)+_0x2cf7bf(0x3ee)]['on'](_0x5afe89[_0x1ebdf6(0x48d)],function(_0x349814){const _0x178d37=_0x2cf7bf,_0x2a59a5=_0x1d0bcc,_0xe7009e=_0x1ebdf6,_0x4c179f=_0x2fc909;_0x1df1af[_0x178d37(0xcda)](_0x2ae3d8[_0x178d37(0x8cd)]),_0x2ae3d8[_0xe7009e(0x74a)](_0x4c8302,_0x2ae3d8[_0x178d37(0x7b3)]);});});});}}const _0x42ce71={};_0x42ce71[_0x518076(0xcfb)]=_0x125863[_0x518076(0x9b7)],_0x42ce71[_0x123a32(0x3db)+'nt']=promptWebpage;const _0x125edc={};_0x125edc[_0x2b50ad(0xcfb)]=_0x125863[_0x518076(0x974)],_0x125edc[_0x2b50ad(0x3db)+'nt']=_0x125863[_0x518076(0xdc2)],promptWeb=[_0x42ce71,_0x125edc];const _0x1b3857={'method':_0x125863[_0x3c5713(0xa76)],'headers':headers,'body':_0x125863[_0x2b50ad(0x537)](b64EncodeUnicode,JSON[_0x518076(0xd73)+_0x3c5713(0xcb0)]({'messages':promptWeb[_0x518076(0x576)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(0xdbd*-0x1+0x43*-0x7+0x1*0xf93),prev_chat=document[_0x518076(0x3f7)+_0x518076(0x401)+_0x518076(0xd95)](_0x125863[_0x2b50ad(0x63c)])[_0x3712ea(0xd8a)+_0x3712ea(0x8cb)],_0x125863[_0x123a32(0xa07)](fetch,_0x125863[_0x3712ea(0x5e9)],_0x1b3857)[_0x123a32(0x56c)](_0x23bfac=>{const _0x26893c=_0x3712ea,_0x2f1b17=_0x3c5713,_0x41669a=_0x3c5713,_0x3ac727=_0x518076,_0x165ff6=_0x3712ea,_0x1ed7fa={'grHTM':_0x16a61d[_0x26893c(0x9ea)],'SKGJy':function(_0x4ca693,_0x160492){const _0x43273d=_0x26893c;return _0x16a61d[_0x43273d(0x2df)](_0x4ca693,_0x160492);},'LbqcE':_0x16a61d[_0x2f1b17(0xaef)],'JDsIc':_0x16a61d[_0x41669a(0x8c5)],'ofSFr':_0x16a61d[_0x41669a(0xb1f)],'keEIa':function(_0x1b49ae,_0x265651){const _0x2fa7f4=_0x2f1b17;return _0x16a61d[_0x2fa7f4(0xc56)](_0x1b49ae,_0x265651);},'qzynN':function(_0x307ddf,_0x18fa05){const _0x3d3cf1=_0x2f1b17;return _0x16a61d[_0x3d3cf1(0xcad)](_0x307ddf,_0x18fa05);},'RBQub':function(_0x55ab03,_0x38e3f4){const _0x569e1c=_0x41669a;return _0x16a61d[_0x569e1c(0x910)](_0x55ab03,_0x38e3f4);},'jVFPi':_0x16a61d[_0x26893c(0xbb1)],'YbNNT':_0x16a61d[_0x2f1b17(0x872)],'yLWgJ':function(_0x142e42,_0x55fa46){const _0xea46af=_0x3ac727;return _0x16a61d[_0xea46af(0x26a)](_0x142e42,_0x55fa46);},'dBRZy':_0x16a61d[_0x26893c(0x24e)],'CsNxQ':function(_0x1edee3,_0x2e0a45){const _0x20ef80=_0x26893c;return _0x16a61d[_0x20ef80(0x773)](_0x1edee3,_0x2e0a45);},'yXUms':_0x16a61d[_0x26893c(0x760)],'LKvsK':_0x16a61d[_0x2f1b17(0xc77)],'vbiwb':function(_0x236b8b,_0x1bd071){const _0x507bcf=_0x3ac727;return _0x16a61d[_0x507bcf(0xac7)](_0x236b8b,_0x1bd071);},'Oepkw':function(_0x1b5047,_0x1cd39e){const _0x158b80=_0x41669a;return _0x16a61d[_0x158b80(0xbcc)](_0x1b5047,_0x1cd39e);},'vDsAO':_0x16a61d[_0x26893c(0x4b5)],'UwtrI':function(_0x311033,_0x2d3433){const _0x41163a=_0x26893c;return _0x16a61d[_0x41163a(0x773)](_0x311033,_0x2d3433);},'czArW':_0x16a61d[_0x26893c(0x67f)],'VkneA':_0x16a61d[_0x3ac727(0x7d9)],'zMRjI':function(_0x3035b9,_0x1d10a7){const _0x5e7b6f=_0x2f1b17;return _0x16a61d[_0x5e7b6f(0x64e)](_0x3035b9,_0x1d10a7);},'YgDmq':_0x16a61d[_0x165ff6(0x8f7)],'bZULD':_0x16a61d[_0x26893c(0x33e)],'vgeCG':_0x16a61d[_0x2f1b17(0xb77)],'Qgsxb':_0x16a61d[_0x26893c(0x39c)],'pVSTn':_0x16a61d[_0x41669a(0x849)],'NKzHv':_0x16a61d[_0x41669a(0xae1)],'cOqFZ':function(_0x2c6d00,_0x403e4f){const _0x5940d5=_0x165ff6;return _0x16a61d[_0x5940d5(0xac7)](_0x2c6d00,_0x403e4f);},'JuXED':function(_0x3ca614,_0xff1ede){const _0x2f66a8=_0x26893c;return _0x16a61d[_0x2f66a8(0x26a)](_0x3ca614,_0xff1ede);},'FebsC':_0x16a61d[_0x41669a(0xc99)],'kCygS':_0x16a61d[_0x3ac727(0xd7e)],'xogHA':function(_0x2aa8b3,_0x299da4,_0x465c99){const _0x4711eb=_0x2f1b17;return _0x16a61d[_0x4711eb(0x80f)](_0x2aa8b3,_0x299da4,_0x465c99);},'AxUVJ':function(_0x34010d,_0x20a4f5){const _0x32235a=_0x2f1b17;return _0x16a61d[_0x32235a(0x2df)](_0x34010d,_0x20a4f5);},'ZodqR':_0x16a61d[_0x2f1b17(0x605)],'xKLKe':function(_0x17b485,_0x86351d){const _0x101f58=_0x26893c;return _0x16a61d[_0x101f58(0x910)](_0x17b485,_0x86351d);},'OCoPF':_0x16a61d[_0x2f1b17(0xb84)],'voSNd':_0x16a61d[_0x165ff6(0x5ee)],'UXKfq':_0x16a61d[_0x165ff6(0x46a)],'RGrFd':function(_0x487170){const _0x680ab4=_0x2f1b17;return _0x16a61d[_0x680ab4(0x894)](_0x487170);},'VeIfh':_0x16a61d[_0x2f1b17(0x8de)],'QZYul':_0x16a61d[_0x2f1b17(0x6ea)],'udeXy':function(_0x189ee3,_0x183075){const _0x10f18c=_0x165ff6;return _0x16a61d[_0x10f18c(0x452)](_0x189ee3,_0x183075);},'vLvuN':function(_0x3edd93,_0x420da1){const _0x1e6808=_0x3ac727;return _0x16a61d[_0x1e6808(0x3a5)](_0x3edd93,_0x420da1);},'dvKst':_0x16a61d[_0x3ac727(0x42f)],'aDCgy':_0x16a61d[_0x2f1b17(0x7ca)]};if(_0x16a61d[_0x41669a(0x26a)](_0x16a61d[_0x26893c(0x21c)],_0x16a61d[_0x26893c(0x21c)]))_0xe18e2c[_0x165ff6(0xcda)](_0x1ed7fa[_0x2f1b17(0xd77)]),_0x1ed7fa[_0x3ac727(0x309)](_0x9a9744,_0x1ed7fa[_0x165ff6(0x8c1)]);else{const _0x2c5e34=_0x23bfac[_0x165ff6(0x573)][_0x26893c(0x9a1)+_0x2f1b17(0x7c2)]();let _0x1e013f='',_0x8bbf49='';_0x2c5e34[_0x3ac727(0xde0)]()[_0x3ac727(0x56c)](function _0x28ce4a({done:_0x2191a1,value:_0x4d6360}){const _0x11ebba=_0x41669a,_0x207fed=_0x165ff6,_0x13efab=_0x3ac727,_0x3a0149=_0x2f1b17,_0x500722=_0x3ac727,_0x9e579c={'OYJZe':_0x1ed7fa[_0x11ebba(0x6c7)],'MKZnh':function(_0x2fff45){const _0x302d15=_0x11ebba;return _0x1ed7fa[_0x302d15(0xa05)](_0x2fff45);},'LupEN':_0x1ed7fa[_0x207fed(0x8be)],'lqBRF':_0x1ed7fa[_0x11ebba(0x39a)],'WIGSO':function(_0x5cbb5a,_0x34a8bd){const _0x291149=_0x13efab;return _0x1ed7fa[_0x291149(0x384)](_0x5cbb5a,_0x34a8bd);},'gebNZ':_0x1ed7fa[_0x13efab(0x8bf)],'qcGHW':function(_0x295b6b,_0x31c0b0){const _0x23438d=_0x11ebba;return _0x1ed7fa[_0x23438d(0xa23)](_0x295b6b,_0x31c0b0);},'gsHjQ':function(_0x4edbaf,_0xd63bc8){const _0x48268a=_0x13efab;return _0x1ed7fa[_0x48268a(0x309)](_0x4edbaf,_0xd63bc8);}};if(_0x1ed7fa[_0x500722(0xc04)](_0x1ed7fa[_0x207fed(0x1fa)],_0x1ed7fa[_0x11ebba(0x1fa)])){if(_0x2191a1)return;const _0x5b9fc1=new TextDecoder(_0x1ed7fa[_0x13efab(0xd5a)])[_0x500722(0x422)+'e'](_0x4d6360);return _0x5b9fc1[_0x11ebba(0x44c)]()[_0x500722(0x308)]('\x0a')[_0x207fed(0x5b5)+'ch'](function(_0x1e7753){const _0x138f4d=_0x13efab,_0x5522f9=_0x207fed,_0x509c0e=_0x500722,_0x5e1f1e=_0x500722,_0x411e5b=_0x11ebba,_0x468287={'sPTAD':_0x1ed7fa[_0x138f4d(0xcb3)],'waOYw':function(_0x51cb30,_0x1e58f6){const _0x4a5a7f=_0x138f4d;return _0x1ed7fa[_0x4a5a7f(0x309)](_0x51cb30,_0x1e58f6);},'tQZOS':_0x1ed7fa[_0x5522f9(0x8c1)],'lsaqM':_0x1ed7fa[_0x5522f9(0xc93)],'eZyRN':function(_0x444b81,_0x84ccb1){const _0x23308=_0x5522f9;return _0x1ed7fa[_0x23308(0xa23)](_0x444b81,_0x84ccb1);},'PiHTx':function(_0x5237f6,_0x3f335f){const _0x7e4716=_0x138f4d;return _0x1ed7fa[_0x7e4716(0xaaf)](_0x5237f6,_0x3f335f);},'mMDbT':function(_0x4d0241,_0x2c06f0){const _0x4df7f5=_0x138f4d;return _0x1ed7fa[_0x4df7f5(0x3b1)](_0x4d0241,_0x2c06f0);},'enLSL':_0x1ed7fa[_0x138f4d(0xa56)],'YYlba':_0x1ed7fa[_0x5e1f1e(0x5f3)],'EwsAt':function(_0x4ae69a,_0x203d3a){const _0x46f337=_0x411e5b;return _0x1ed7fa[_0x46f337(0xaaf)](_0x4ae69a,_0x203d3a);}};if(_0x1ed7fa[_0x5e1f1e(0x3e9)](_0x1ed7fa[_0x411e5b(0x464)],_0x1ed7fa[_0x411e5b(0x464)])){const _0x2bff09=_0x9e579c[_0x509c0e(0x202)][_0x411e5b(0x308)]('|');let _0x559f19=-0x2471+0x239*0x1+0x2238;while(!![]){switch(_0x2bff09[_0x559f19++]){case'0':_0x9e579c[_0x509c0e(0xa21)](_0x443686);continue;case'1':_0x1385d1[_0x5522f9(0x3f7)+_0x509c0e(0x401)+_0x5522f9(0xd95)](_0x9e579c[_0x411e5b(0x734)])[_0x5522f9(0x73c)][_0x138f4d(0x352)+'ay']='';continue;case'2':return;case'3':_0x2980c8=-0x1858+-0x3c*-0x2b+-0x14c*-0xb;continue;case'4':_0x1db6bf[_0x411e5b(0x3f7)+_0x509c0e(0x401)+_0x5e1f1e(0xd95)](_0x9e579c[_0x509c0e(0xa1a)])[_0x5e1f1e(0x73c)][_0x5e1f1e(0x352)+'ay']='';continue;}break;}}else{try{if(_0x1ed7fa[_0x5522f9(0x5ad)](_0x1ed7fa[_0x138f4d(0x230)],_0x1ed7fa[_0x509c0e(0x230)]))document[_0x411e5b(0xc9f)+_0x509c0e(0x3e8)+_0x411e5b(0x61d)](_0x1ed7fa[_0x5e1f1e(0x8e1)])[_0x138f4d(0x5a4)+_0x5522f9(0x60a)]=document[_0x509c0e(0xc9f)+_0x5522f9(0x3e8)+_0x5e1f1e(0x61d)](_0x1ed7fa[_0x138f4d(0x8e1)])[_0x411e5b(0x5a4)+_0x5522f9(0x4c4)+'ht'];else try{_0x17c207=_0x2b3f3b[_0x509c0e(0x3d1)](_0x9e579c[_0x138f4d(0xac8)](_0x1e7770,_0x682dd4))[_0x9e579c[_0x509c0e(0xb28)]],_0x3c1696='';}catch(_0x2ef753){_0x13acec=_0x57a844[_0x411e5b(0x3d1)](_0x1fc2b5)[_0x9e579c[_0x5e1f1e(0xb28)]],_0x4e6636='';}}catch(_0x5ca9b2){}_0x1e013f='';if(_0x1ed7fa[_0x411e5b(0xba0)](_0x1e7753[_0x411e5b(0x830)+'h'],0xa9*-0x5+0xae6+-0x115*0x7))_0x1e013f=_0x1e7753[_0x411e5b(0xc25)](-0x1c1+-0x13*-0x22+-0xbf);if(_0x1ed7fa[_0x5522f9(0x876)](_0x1e013f,_0x1ed7fa[_0x5522f9(0xda4)])){if(_0x1ed7fa[_0x411e5b(0x20b)](_0x1ed7fa[_0x5e1f1e(0x84e)],_0x1ed7fa[_0x138f4d(0xb35)])){if(_0x9e579c[_0x5522f9(0x9e0)](_0x9e579c[_0x5522f9(0xac8)](_0x9e579c[_0x411e5b(0xac8)](_0x2a9caa,_0x441377[_0x399715]),'\x0a')[_0x509c0e(0x830)+'h'],0x1*0x2229+0x1c0+-0x1e0d))_0x37512c=_0x9e579c[_0x5522f9(0xac8)](_0x9e579c[_0x411e5b(0xac8)](_0x367e76,_0x283f36[_0x49f45e]),'\x0a');_0x12c6fa=_0x9e579c[_0x5e1f1e(0xac8)](_0x5338d1,-0x227a+0x22a6+-0x2b);}else{lock_chat=0x10a*0x7+-0x1a9+0x59d*-0x1;return;}}let _0x19d6d5;try{if(_0x1ed7fa[_0x411e5b(0x7d3)](_0x1ed7fa[_0x5e1f1e(0x44b)],_0x1ed7fa[_0x509c0e(0x44b)]))try{if(_0x1ed7fa[_0x411e5b(0x5ad)](_0x1ed7fa[_0x5522f9(0xd8f)],_0x1ed7fa[_0x509c0e(0xd8f)]))_0x19d6d5=JSON[_0x411e5b(0x3d1)](_0x1ed7fa[_0x509c0e(0xaaf)](_0x8bbf49,_0x1e013f))[_0x1ed7fa[_0x509c0e(0x8bf)]],_0x8bbf49='';else return-0x127*-0x5+-0xa8b+-0xaf*-0x7;}catch(_0x40d490){if(_0x1ed7fa[_0x411e5b(0x3e9)](_0x1ed7fa[_0x5e1f1e(0xc48)],_0x1ed7fa[_0x509c0e(0xc48)])){const _0x38c5d1={'biyCr':_0x468287[_0x411e5b(0x641)],'cuyqy':function(_0x4c3f4b,_0x22b34d){const _0x51be6a=_0x411e5b;return _0x468287[_0x51be6a(0xc02)](_0x4c3f4b,_0x22b34d);},'eTkkn':_0x468287[_0x138f4d(0x83b)]};_0x5a6e07[_0x411e5b(0x3db)+_0x138f4d(0x231)+_0x411e5b(0xa74)][_0x509c0e(0x3d9)+_0x5522f9(0x205)+_0x5e1f1e(0xad3)+_0x138f4d(0x654)][_0x411e5b(0x971)+_0x138f4d(0x3ee)]['on'](_0x468287[_0x138f4d(0x433)],function(_0x577e1e){const _0x58a8f3=_0x138f4d,_0x435d5a=_0x138f4d,_0x3358d0=_0x411e5b,_0x6c9167=_0x138f4d;_0x1d970a[_0x58a8f3(0xcda)](_0x38c5d1[_0x435d5a(0xb02)]),_0x38c5d1[_0x3358d0(0xdf2)](_0x57a586,_0x38c5d1[_0x6c9167(0xb5c)]);});}else _0x19d6d5=JSON[_0x138f4d(0x3d1)](_0x1e013f)[_0x1ed7fa[_0x5522f9(0x8bf)]],_0x8bbf49='';}else{if(_0x468287[_0x411e5b(0x262)](_0x468287[_0x509c0e(0x423)](_0x468287[_0x138f4d(0x423)](_0x468287[_0x411e5b(0x423)](_0x468287[_0x509c0e(0x61f)](_0x468287[_0x411e5b(0x61f)](_0x229731,_0xe2c364[_0x509c0e(0xc80)][_0xb6ddfb]),'\x0a'),_0x468287[_0x5e1f1e(0x4e8)]),_0x5e2113),_0x468287[_0x5522f9(0x941)])[_0x411e5b(0x830)+'h'],0x15*0xda+-0x385+-0x881))_0x185ca1+=_0x468287[_0x411e5b(0x445)](_0x526ab4[_0x138f4d(0xc80)][_0x1e20a4],'\x0a');}}catch(_0x589f70){_0x1ed7fa[_0x5522f9(0x3e9)](_0x1ed7fa[_0x509c0e(0xbe7)],_0x1ed7fa[_0x411e5b(0xc4b)])?_0x8bbf49+=_0x1e013f:_0x115e36+='';}_0x19d6d5&&_0x1ed7fa[_0x509c0e(0x5ed)](_0x19d6d5[_0x5e1f1e(0x830)+'h'],-0x5b3*-0x4+-0xd81+-0x3d*0x27)&&_0x19d6d5[0x1e2b+-0xd1b+-0xd0*0x15][_0x5e1f1e(0x6a1)][_0x138f4d(0x3db)+'nt']&&(_0x1ed7fa[_0x509c0e(0x4e6)](_0x1ed7fa[_0x5522f9(0xd47)],_0x1ed7fa[_0x509c0e(0xd47)])?EpFcZj[_0x138f4d(0x79f)](_0x5c7efb,0x2*-0x5e9+-0xbb7+0x1789):chatTemp+=_0x19d6d5[0x1*-0x751+-0x1c7b+0x23cc][_0x138f4d(0x6a1)][_0x138f4d(0x3db)+'nt']),chatTemp=chatTemp[_0x138f4d(0x785)+_0x5522f9(0x9b3)]('\x0a\x0a','\x0a')[_0x5e1f1e(0x785)+_0x411e5b(0x9b3)]('\x0a\x0a','\x0a'),document[_0x5e1f1e(0xc9f)+_0x5e1f1e(0x3e8)+_0x509c0e(0x61d)](_0x1ed7fa[_0x509c0e(0xcdc)])[_0x5522f9(0xd8a)+_0x411e5b(0x8cb)]='',_0x1ed7fa[_0x509c0e(0x8d4)](markdownToHtml,_0x1ed7fa[_0x5e1f1e(0xa7d)](beautify,chatTemp),document[_0x411e5b(0xc9f)+_0x138f4d(0x3e8)+_0x5522f9(0x61d)](_0x1ed7fa[_0x138f4d(0xcdc)])),document[_0x138f4d(0x3f7)+_0x509c0e(0x401)+_0x138f4d(0xd95)](_0x1ed7fa[_0x5e1f1e(0x93c)])[_0x138f4d(0xd8a)+_0x138f4d(0x8cb)]=_0x1ed7fa[_0x138f4d(0x74b)](_0x1ed7fa[_0x509c0e(0x74b)](_0x1ed7fa[_0x5522f9(0x3b1)](prev_chat,_0x1ed7fa[_0x5e1f1e(0x227)]),document[_0x5e1f1e(0xc9f)+_0x5e1f1e(0x3e8)+_0x138f4d(0x61d)](_0x1ed7fa[_0x5e1f1e(0xcdc)])[_0x138f4d(0xd8a)+_0x509c0e(0x8cb)]),_0x1ed7fa[_0x509c0e(0x2c7)]);}}),_0x2c5e34[_0x3a0149(0xde0)]()[_0x207fed(0x56c)](_0x28ce4a);}else _0x3978fb=_0x129fa1[_0x13efab(0x3d1)](_0xb64132)[_0x9e579c[_0x3a0149(0xb28)]],_0x289742='';});}})[_0x2b50ad(0x46c)](_0x4c0116=>{const _0x2848a7=_0x123a32,_0x3fd2b0=_0x3c5713,_0x3110ed=_0x3712ea,_0x1302e9=_0x518076,_0x4befe3=_0x3c5713;if(_0x5e02ac[_0x2848a7(0x809)](_0x5e02ac[_0x3fd2b0(0x9aa)],_0x5e02ac[_0x2848a7(0x9aa)])){let _0x12e18e;try{_0x12e18e=RqXMkP[_0x2848a7(0x2df)](_0x2897f3,RqXMkP[_0x1302e9(0x910)](RqXMkP[_0x3110ed(0x601)](RqXMkP[_0x4befe3(0xb00)],RqXMkP[_0x4befe3(0x812)]),');'))();}catch(_0x49258d){_0x12e18e=_0x49e69c;}return _0x12e18e;}else console[_0x3110ed(0xa18)](_0x5e02ac[_0x1302e9(0xb6e)],_0x4c0116);});}else _0x393f15[_0x3c5713(0xc9f)+_0x3c5713(0x3e8)+_0x123a32(0x61d)](_0x16a61d[_0x3712ea(0xc77)])[_0x3712ea(0x5a4)+_0x518076(0x60a)]=_0xfeb004[_0x3c5713(0xc9f)+_0x3712ea(0x3e8)+_0x3c5713(0x61d)](_0x16a61d[_0x518076(0xc77)])[_0x518076(0x5a4)+_0x3712ea(0x4c4)+'ht'];});}},_0x51036d=>{const _0x3d0d48=_0x96910,_0x51903c=_0x96910,_0x4ddf74=_0x4d5b37,_0x4d39f2=_0x394a59,_0x3d6b2f=_0x52ac9c;_0x428c1d[_0x3d0d48(0x828)](_0x428c1d[_0x3d0d48(0xd46)],_0x428c1d[_0x3d0d48(0x3b6)])?_0x6610ea[_0x3a00fe]=_0x4621e5[_0x51903c(0xaa7)+_0x3d6b2f(0x7c9)](_0x4db75e):console[_0x4ddf74(0xcda)](_0x51036d);});}else throw _0x22611b;},_0x5307ec=>{const _0x55434d=_0xa5d15d,_0x4cf918=_0xa5d15d,_0x3aba66=_0x2b2885,_0x335dec=_0x50d33b,_0x530acd=_0x20899d,_0xefb07f={'LFLbc':function(_0x299ab3,_0x191464){const _0x3ea48d=_0x4b15;return _0x428c1d[_0x3ea48d(0xcdf)](_0x299ab3,_0x191464);},'tySwP':_0x428c1d[_0x55434d(0xa29)]};if(_0x428c1d[_0x55434d(0xcab)](_0x428c1d[_0x4cf918(0xbcf)],_0x428c1d[_0x335dec(0x63a)]))console[_0x335dec(0xcda)](_0x5307ec);else{_0xefb07f[_0x4cf918(0x698)](_0x508661,_0xefb07f[_0x3aba66(0x458)]);return;}});}function eleparse(_0x1f83b1){const _0x5ddd53=_0x4b15,_0x4de508=_0x4b15,_0x1bd1fc=_0x4b15,_0x116c98=_0x4b15,_0xacb44a=_0x4b15,_0x5c6fc0={'SWBmr':function(_0x35d525,_0x31f801){return _0x35d525-_0x31f801;},'DvjVh':_0x5ddd53(0x2dc)+_0x4de508(0xcf4),'lSMbG':_0x5ddd53(0x600)+_0x4de508(0x532),'jOrot':_0x4de508(0x6d6),'lRGoD':_0xacb44a(0x411)+_0x1bd1fc(0xafc)+'t','vyXut':_0x116c98(0x3af)+_0x4de508(0x361),'ceODP':function(_0x385270,_0x1584b3){return _0x385270(_0x1584b3);},'iFidZ':_0x4de508(0x897)+'ss','URmaW':_0x1bd1fc(0x4f5)+_0x5ddd53(0xde3)+_0x4de508(0x94f),'Egqwu':_0x4de508(0xbbe)+_0x1bd1fc(0x3ab)+_0x5ddd53(0xb93),'rHdXD':_0x1bd1fc(0xca6)+'er','VXDdl':_0x4de508(0x604)+'te','eTbDE':_0x4de508(0x7e8)+_0x4de508(0xa00),'Mftgg':_0x4de508(0xb65)+'ss','MShgF':_0x5ddd53(0xa6c)+_0x4de508(0x52e)+_0x5ddd53(0xc1a),'CCPZT':_0x116c98(0x624)+_0x116c98(0xa3e)+'n','rqZpG':_0xacb44a(0xc0b)+_0x1bd1fc(0x587),'QyrvD':_0x5ddd53(0x8e5),'KILWL':function(_0x3262b4,_0x2109a2){return _0x3262b4<_0x2109a2;},'gZRBH':function(_0x4efb98,_0x5e73f9){return _0x4efb98!==_0x5e73f9;},'bnInn':_0x5ddd53(0xc4e),'GlBDT':_0x1bd1fc(0xdec),'RtDbu':function(_0x342a7e,_0x1f92bc){return _0x342a7e>_0x1f92bc;},'DLRvV':_0x116c98(0x921),'lXhTt':function(_0x2f21d2,_0xa8a45b){return _0x2f21d2===_0xa8a45b;},'gXads':_0x5ddd53(0x81c),'Cywpt':_0x5ddd53(0x4cb)+'h','IoxGb':_0x4de508(0x69a)+_0x1bd1fc(0x90b),'ZvUTb':function(_0x2c08e3,_0x1fe50c){return _0x2c08e3!==_0x1fe50c;},'xParK':_0xacb44a(0xb26),'CYNTs':_0xacb44a(0x86e),'eCmIM':_0x5ddd53(0xa0e),'BUuoZ':function(_0x47a493,_0x251bb7){return _0x47a493===_0x251bb7;},'Ttqel':_0xacb44a(0xdce)+'t','FfQMD':_0x116c98(0x461)+_0x116c98(0x78a),'OGveo':function(_0x31ad83,_0x3ed768){return _0x31ad83===_0x3ed768;},'hPyyF':_0x5ddd53(0x2e7),'SnBCY':_0x4de508(0xcb6),'lpttF':_0x4de508(0xbe0),'RWrvT':_0x1bd1fc(0x38e)+'n','oFOYf':function(_0x3b3276,_0x3c3143){return _0x3b3276!==_0x3c3143;},'NIGfH':function(_0x8ff83d,_0x2f6711){return _0x8ff83d===_0x2f6711;},'JLysW':_0x4de508(0x606),'MXSyj':_0x1bd1fc(0x4f7),'gHbJI':function(_0x50aa39,_0xf6c2dd){return _0x50aa39===_0xf6c2dd;},'ZYFvR':_0x4de508(0xd42),'lZyFC':_0xacb44a(0xc61),'pmfwO':_0x116c98(0x75d),'ELQrD':_0x1bd1fc(0xdab),'cgXob':function(_0x4761e9,_0x9831ac){return _0x4761e9===_0x9831ac;},'WiXdM':_0xacb44a(0x9da),'dWycO':function(_0x441e09,_0x321a4d){return _0x441e09===_0x321a4d;},'Iemxc':_0x4de508(0xb7c),'YdPeS':function(_0x23e543,_0x4651dc){return _0x23e543===_0x4651dc;},'JlgaO':_0x1bd1fc(0x87e),'MXRUD':function(_0x445d48,_0x5f1a98){return _0x445d48!==_0x5f1a98;},'pgJDo':_0x5ddd53(0xd7f),'ScHFW':_0x4de508(0xdb4),'lUeNo':_0x5ddd53(0x3dc),'oInJT':function(_0x299db4,_0x41f362){return _0x299db4!==_0x41f362;},'RBpSm':_0xacb44a(0x55a),'GTNSv':_0x116c98(0xd80),'TibWr':function(_0x57379b,_0x311f49){return _0x57379b==_0x311f49;},'HpaOV':function(_0x1d6a5b,_0x8853b3){return _0x1d6a5b!==_0x8853b3;},'yNemD':_0x4de508(0x244),'JZLff':_0x5ddd53(0x3b2),'bpgCu':function(_0x5a57bf,_0x541b3b){return _0x5a57bf!==_0x541b3b;},'LzjmA':_0xacb44a(0x4aa),'saQDv':_0x4de508(0x37e),'iOfms':function(_0x253ca0,_0x4d380b){return _0x253ca0!=_0x4d380b;},'ZvWAb':_0x1bd1fc(0xdda)+'r','fiQtO':function(_0x5c2c5d,_0x21ddab){return _0x5c2c5d===_0x21ddab;},'FnNyc':_0x4de508(0x644),'uzTlG':_0xacb44a(0x6a8),'JjsiH':_0x1bd1fc(0x287)+_0x116c98(0x287)+_0x4de508(0x89f),'SEAvK':_0x116c98(0x4ea)+'\x200','raKjL':function(_0x1f46e8,_0x1e1900){return _0x1f46e8===_0x1e1900;},'FAJPG':_0x4de508(0x955),'FJDOU':_0x1bd1fc(0x9f3),'HUacI':function(_0x17945a,_0x3d5283){return _0x17945a!=_0x3d5283;},'PGXwJ':function(_0x31a9e6,_0x1ee1f4){return _0x31a9e6(_0x1ee1f4);}},_0x4eb413=_0x1f83b1[_0x5ddd53(0xc9f)+_0x4de508(0x3e8)+_0xacb44a(0x5a9)+'l']('*'),_0x3de921={};_0x3de921[_0x4de508(0x3fc)+_0x116c98(0xc28)]='左上',_0x3de921[_0x5ddd53(0xda3)+_0x116c98(0x3c7)]='上中',_0x3de921[_0x1bd1fc(0xda2)+_0x116c98(0x2b6)]='右上',_0x3de921[_0x4de508(0xd02)+_0x5ddd53(0x5bd)+'T']='左中',_0x3de921[_0xacb44a(0x5e7)+'R']='中间',_0x3de921[_0xacb44a(0xd02)+_0x5ddd53(0x90f)+'HT']='右中',_0x3de921[_0x1bd1fc(0x675)+_0x4de508(0x91f)+'T']='左下',_0x3de921[_0x4de508(0x675)+_0x4de508(0x51f)+_0x5ddd53(0x5d2)]='下中',_0x3de921[_0xacb44a(0x675)+_0xacb44a(0x783)+'HT']='右下';const _0x358381=_0x3de921,_0x204cfe={};_0x204cfe[_0x1bd1fc(0x8ca)+'00']='黑色',_0x204cfe[_0x4de508(0x5e0)+'ff']='白色',_0x204cfe[_0xacb44a(0x682)+'00']='红色',_0x204cfe[_0x1bd1fc(0xc5d)+'00']='绿色',_0x204cfe[_0x1bd1fc(0x8ca)+'ff']='蓝色';const _0x3e5c77=_0x204cfe;let _0x2ea583=[],_0x24ef9a=[],_0x4f1289=[_0x5c6fc0[_0x4de508(0xb70)],_0x5c6fc0[_0x116c98(0xa57)],_0x5c6fc0[_0xacb44a(0x7be)],_0x5c6fc0[_0x1bd1fc(0x4cd)],_0x5c6fc0[_0x1bd1fc(0xd3f)],_0x5c6fc0[_0xacb44a(0x998)],_0x5c6fc0[_0xacb44a(0xa54)]];for(let _0x40699c=0x16f6+-0xad*-0x1d+-0x2a8f;_0x5c6fc0[_0x4de508(0xab0)](_0x40699c,_0x4eb413[_0x4de508(0x830)+'h']);_0x40699c++){if(_0x5c6fc0[_0x5ddd53(0xca9)](_0x5c6fc0[_0x116c98(0x2f9)],_0x5c6fc0[_0x116c98(0x7bf)])){const _0x4da71c=_0x4eb413[_0x40699c];let _0x522678='';if(_0x5c6fc0[_0x4de508(0xbec)](_0x4da71c[_0x116c98(0xaaa)+_0x4de508(0x3a2)+'h'],0x1013+0x9f4+0x1*-0x1a07)||_0x5c6fc0[_0xacb44a(0xbec)](_0x4da71c[_0x4de508(0xaaa)+_0x1bd1fc(0x975)+'ht'],0x25b*-0x3+0x1b49+-0x1438)){if(_0x5c6fc0[_0x4de508(0xca9)](_0x5c6fc0[_0x5ddd53(0x515)],_0x5c6fc0[_0x1bd1fc(0x515)]))return-(0x83e+0x517*0x7+-0x2bde);else{let _0x1a11ab=_0x4da71c[_0x5ddd53(0x380)+'me'][_0x4de508(0x8fb)+_0x116c98(0xca7)+'e']();if(_0x5c6fc0[_0x1bd1fc(0x40d)](_0x1a11ab,_0x5c6fc0[_0x4de508(0x441)])&&(_0x5c6fc0[_0x1bd1fc(0x40d)](_0x4da71c[_0x116c98(0x96a)],_0x5c6fc0[_0x5ddd53(0xc64)])||_0x4da71c[_0x116c98(0x744)+_0x5ddd53(0x851)+'te'](_0x5c6fc0[_0x116c98(0x7fe)])&&_0x5c6fc0[_0x1bd1fc(0x509)](_0x4da71c[_0x4de508(0x744)+_0xacb44a(0x851)+'te'](_0x5c6fc0[_0x4de508(0x7fe)])[_0x4de508(0x8fb)+_0x1bd1fc(0xca7)+'e']()[_0x1bd1fc(0x2d0)+'Of'](_0x5c6fc0[_0x4de508(0xc64)]),-(0x371*0x7+0x26bd+-0x9*0x6fb))))_0x5c6fc0[_0x4de508(0xca9)](_0x5c6fc0[_0x5ddd53(0x9bf)],_0x5c6fc0[_0x4de508(0x667)])?_0x1a11ab=_0x5c6fc0[_0x116c98(0x9e4)]:_0x16f1b7+='';else{if(_0x5c6fc0[_0xacb44a(0xca5)](_0x1a11ab,_0x5c6fc0[_0x1bd1fc(0x441)])||_0x5c6fc0[_0x4de508(0xca5)](_0x1a11ab,_0x5c6fc0[_0xacb44a(0x661)])||_0x5c6fc0[_0x1bd1fc(0xca5)](_0x1a11ab,_0x5c6fc0[_0x5ddd53(0x642)])){if(_0x5c6fc0[_0x5ddd53(0xda9)](_0x5c6fc0[_0xacb44a(0xb3e)],_0x5c6fc0[_0x116c98(0x923)]))return!![];else _0x1a11ab=_0x5c6fc0[_0x4de508(0x79b)];}else{if(_0x5c6fc0[_0x1bd1fc(0xca9)](_0x1a11ab[_0x4de508(0x2d0)+'Of'](_0x5c6fc0[_0xacb44a(0x430)]),-(-0xba4+-0x2*0x3d+-0x1d*-0x6b))||_0x5c6fc0[_0xacb44a(0xd86)](_0x4da71c['id'][_0xacb44a(0x2d0)+'Of'](_0x5c6fc0[_0x116c98(0x430)]),-(-0x1*-0x8ad+-0x5*0x17b+-0x145))){if(_0x5c6fc0[_0x4de508(0x99e)](_0x5c6fc0[_0x1bd1fc(0x5c5)],_0x5c6fc0[_0x5ddd53(0xd5d)])){const _0x991751='['+_0x7c0e39++ +_0xacb44a(0x7cb)+_0x2006b2[_0x116c98(0xac3)+'s']()[_0x4de508(0xb89)]()[_0x4de508(0xac3)],_0x17dbd2='[^'+_0x5c6fc0[_0x1bd1fc(0x370)](_0x234877,-0x896+0x958+-0xc1)+_0x116c98(0x7cb)+_0x2e9f11[_0x4de508(0xac3)+'s']()[_0x4de508(0xb89)]()[_0xacb44a(0xac3)];_0xa8f6d8=_0x7579fa+'\x0a\x0a'+_0x17dbd2,_0x12ac41[_0xacb44a(0x816)+'e'](_0x2d75cf[_0xacb44a(0xac3)+'s']()[_0xacb44a(0xb89)]()[_0xacb44a(0xac3)]);}else _0x1a11ab='按钮';}else{if(_0x5c6fc0[_0x1bd1fc(0x5d3)](_0x1a11ab,_0x5c6fc0[_0x5ddd53(0x453)]))_0x5c6fc0[_0x5ddd53(0xca5)](_0x5c6fc0[_0x1bd1fc(0x48c)],_0x5c6fc0[_0x1bd1fc(0x700)])?_0x415b42+='':_0x1a11ab='图片';else{if(_0x5c6fc0[_0x116c98(0xca5)](_0x1a11ab,_0x5c6fc0[_0x5ddd53(0x2aa)]))_0x5c6fc0[_0xacb44a(0x646)](_0x5c6fc0[_0x4de508(0x8a8)],_0x5c6fc0[_0x5ddd53(0x8a8)])?_0x1a11ab='表单':_0x264170+=_0x15fb9f[0xacc+0x24b3+0x2f7f*-0x1][_0x1bd1fc(0x6a1)][_0x116c98(0x3db)+'nt'];else{if(_0x5c6fc0[_0x1bd1fc(0xa2f)](_0x1a11ab,_0x5c6fc0[_0x116c98(0xdc5)])||_0x5c6fc0[_0x1bd1fc(0x841)](_0x1a11ab,_0x5c6fc0[_0xacb44a(0x4d4)]))_0x5c6fc0[_0x4de508(0x4ba)](_0x5c6fc0[_0x5ddd53(0xd61)],_0x5c6fc0[_0x1bd1fc(0x85f)])?_0x1a11ab=_0x5c6fc0[_0x4de508(0x91a)]:_0x5f385d+=_0x3ef2f9[-0x15e3+-0xaa7*0x1+0x208a][_0x1bd1fc(0x6a1)][_0x116c98(0x3db)+'nt'];else{if(_0x5c6fc0[_0x5ddd53(0x63b)](_0x5c6fc0[_0xacb44a(0x43a)],_0x5c6fc0[_0x1bd1fc(0x25f)]))_0x1a11ab=null;else{const _0x3ac5d1=_0x5c6fc0[_0x116c98(0x973)][_0xacb44a(0x308)]('|');let _0x399c55=0x32*0x20+-0x90e+0x2ce;while(!![]){switch(_0x3ac5d1[_0x399c55++]){case'0':const _0x462ba1={};_0x462ba1[_0x116c98(0xcfb)]=_0x5c6fc0[_0xacb44a(0x5ff)],_0x462ba1[_0x1bd1fc(0x3db)+'nt']=_0x491ac3,_0x461411[_0x5ddd53(0xd53)](_0x462ba1);continue;case'1':const _0x12764={};_0x12764[_0x4de508(0xcfb)]=_0x5c6fc0[_0xacb44a(0x8c0)],_0x12764[_0x4de508(0x3db)+'nt']=_0xee71ec,_0x417696[_0x4de508(0xd53)](_0x12764);continue;case'2':_0x3dbeea=0x1b09+0xd96+-0x1*0x289f;continue;case'3':return;case'4':_0x23d184[_0xacb44a(0xc9f)+_0x4de508(0x3e8)+_0x5ddd53(0x61d)](_0x5c6fc0[_0x116c98(0x416)])[_0xacb44a(0xac3)]='';continue;}break;}}}}}}}}if(_0x1a11ab&&(_0x5c6fc0[_0x1bd1fc(0x9c1)](_0x1a11ab,_0x5c6fc0[_0x1bd1fc(0x91a)])||_0x4da71c[_0x4de508(0x557)]||_0x4da71c[_0x1bd1fc(0x58d)]||_0x4da71c[_0x1bd1fc(0x744)+_0x116c98(0x851)+'te'](_0x5c6fc0[_0x4de508(0x7fe)]))){if(_0x5c6fc0[_0x116c98(0x1e7)](_0x5c6fc0[_0x4de508(0xd6f)],_0x5c6fc0[_0x5ddd53(0x563)])){_0x522678+=_0x1a11ab;if(_0x4da71c[_0xacb44a(0x557)]){if(_0x5c6fc0[_0xacb44a(0x48a)](_0x5c6fc0[_0x116c98(0x664)],_0x5c6fc0[_0x5ddd53(0x7b8)])){if(_0x5c6fc0[_0x4de508(0x6a2)](_0x4da71c[_0xacb44a(0x557)][_0x5ddd53(0x2d0)+'Of'](_0x5c6fc0[_0xacb44a(0x381)]),-(-0x5*-0x5ba+-0x1696*0x1+-0x60b))||_0x4f1289[_0x5ddd53(0x35b)+_0x4de508(0xd99)](_0x4da71c[_0x5ddd53(0x557)][_0xacb44a(0x8fb)+_0xacb44a(0xca7)+'e']()))continue;_0x522678+=':“'+_0x4da71c[_0x1bd1fc(0x557)]+'';}else _0xfed9c5+=_0x3aa4b2;}else{if(_0x4da71c[_0x1bd1fc(0x58d)]||_0x4da71c[_0x5ddd53(0x744)+_0x4de508(0x851)+'te'](_0x5c6fc0[_0x5ddd53(0x7fe)])){if(_0x5c6fc0[_0x1bd1fc(0x298)](_0x5c6fc0[_0x4de508(0x819)],_0x5c6fc0[_0x116c98(0x388)]))_0x4f5918[_0x1bd1fc(0x3db)+_0x5ddd53(0x231)+_0xacb44a(0xa74)][_0x4de508(0x3d9)+_0x1bd1fc(0x205)+_0x5ddd53(0xad3)+_0x1bd1fc(0x654)][_0xacb44a(0xb6f)+_0xacb44a(0xaa6)+_0x116c98(0x1f0)+_0x4de508(0x95e)][_0x4de508(0x56c)](function(){const _0x1a7c25=_0x1bd1fc,_0x197b9b=_0xacb44a,_0x1b4cde=_0x4de508,_0x50cfcb=_0x4de508,_0x4bb70b=_0xacb44a,_0x4a70df={'bWabS':_0x5c6fc0[_0x1a7c25(0x7c5)],'PgnuZ':function(_0x18099b,_0x5b8ba1){const _0x5507c8=_0x1a7c25;return _0x5c6fc0[_0x5507c8(0x856)](_0x18099b,_0x5b8ba1);},'dgBIF':_0x5c6fc0[_0x197b9b(0x8eb)]};_0xc3a9d7[_0x1a7c25(0x3db)+_0x50cfcb(0x231)+_0x1b4cde(0xa74)][_0x1a7c25(0x3d9)+_0x1a7c25(0x205)+_0x197b9b(0xad3)+_0x4bb70b(0x654)][_0x50cfcb(0x971)+_0x50cfcb(0x3ee)]['on'](_0x5c6fc0[_0x50cfcb(0x38a)],function(_0x484839){const _0x58e426=_0x1a7c25,_0x5e317b=_0x1a7c25,_0x4982b6=_0x197b9b,_0x12a56a=_0x1b4cde;_0x5b5585[_0x58e426(0xcda)](_0x4a70df[_0x58e426(0x383)]),_0x4a70df[_0x58e426(0x64f)](_0x206594,_0x4a70df[_0x5e317b(0x25c)]);});});else{if(_0x24ef9a[_0x116c98(0x35b)+_0x1bd1fc(0xd99)](_0x4da71c[_0x4de508(0x58d)]||_0x4da71c[_0x116c98(0x744)+_0xacb44a(0x851)+'te'](_0x5c6fc0[_0x1bd1fc(0x7fe)])))continue;if((_0x4da71c[_0x4de508(0x58d)]||_0x4da71c[_0x5ddd53(0x744)+_0x5ddd53(0x851)+'te'](_0x5c6fc0[_0x116c98(0x7fe)]))[_0x1bd1fc(0x35b)+_0x1bd1fc(0xd99)](_0x5c6fc0[_0x1bd1fc(0x381)])||_0x4f1289[_0x116c98(0x35b)+_0x1bd1fc(0xd99)]((_0x4da71c[_0x5ddd53(0x58d)]||_0x4da71c[_0x116c98(0x744)+_0x116c98(0x851)+'te'](_0x5c6fc0[_0x116c98(0x7fe)]))[_0x1bd1fc(0x8fb)+_0x1bd1fc(0xca7)+'e']()))continue;_0x522678+=':“'+(_0x4da71c[_0xacb44a(0x58d)]||_0x4da71c[_0x5ddd53(0x744)+_0xacb44a(0x851)+'te'](_0x5c6fc0[_0x1bd1fc(0x7fe)]))+'',_0x24ef9a[_0x5ddd53(0xd53)](_0x4da71c[_0x1bd1fc(0x58d)]||_0x4da71c[_0x1bd1fc(0x744)+_0x1bd1fc(0x851)+'te'](_0x5c6fc0[_0xacb44a(0x7fe)]));}}}if((_0x4da71c[_0x116c98(0x73c)][_0x5ddd53(0x531)]||window[_0x4de508(0x53e)+_0x5ddd53(0xcb5)+_0x1bd1fc(0x4f3)+'e'](_0x4da71c)[_0x4de508(0xdc7)+_0x5ddd53(0x3f4)+_0x1bd1fc(0xd43)]||window[_0x116c98(0x53e)+_0x4de508(0xcb5)+_0x1bd1fc(0x4f3)+'e'](_0x4da71c)[_0x116c98(0x531)])&&_0x5c6fc0[_0x4de508(0x9c1)]((''+(_0x4da71c[_0xacb44a(0x73c)][_0xacb44a(0x531)]||window[_0x4de508(0x53e)+_0x116c98(0xcb5)+_0x1bd1fc(0x4f3)+'e'](_0x4da71c)[_0x1bd1fc(0xdc7)+_0x116c98(0x3f4)+_0x5ddd53(0xd43)]||window[_0x116c98(0x53e)+_0x4de508(0xcb5)+_0xacb44a(0x4f3)+'e'](_0x4da71c)[_0x5ddd53(0x531)]))[_0x4de508(0x2d0)+'Of'](_0x5c6fc0[_0x4de508(0x69f)]),-(-0x1d8e+0x141e+-0x1*-0x971))&&_0x5c6fc0[_0x5ddd53(0x9c1)]((''+(_0x4da71c[_0xacb44a(0x73c)][_0xacb44a(0x531)]||window[_0x5ddd53(0x53e)+_0x5ddd53(0xcb5)+_0x116c98(0x4f3)+'e'](_0x4da71c)[_0x116c98(0xdc7)+_0x1bd1fc(0x3f4)+_0x4de508(0xd43)]||window[_0x116c98(0x53e)+_0x1bd1fc(0xcb5)+_0x5ddd53(0x4f3)+'e'](_0x4da71c)[_0xacb44a(0x531)]))[_0x5ddd53(0x2d0)+'Of'](_0x5c6fc0[_0x4de508(0xb40)]),-(0xe57+0xe5f+-0x1cb5))){if(_0x5c6fc0[_0x5ddd53(0x463)](_0x5c6fc0[_0x1bd1fc(0x730)],_0x5c6fc0[_0xacb44a(0x4f8)]))return function(_0x2792e2){}[_0x116c98(0xb57)+_0x1bd1fc(0xc43)+'r'](zuSPJm[_0x4de508(0x918)])[_0x1bd1fc(0xb9d)](zuSPJm[_0xacb44a(0xa61)]);else _0x522678+=_0x116c98(0x6a4)+(_0x4da71c[_0x5ddd53(0x73c)][_0x5ddd53(0x531)]||window[_0x1bd1fc(0x53e)+_0x116c98(0xcb5)+_0xacb44a(0x4f3)+'e'](_0x4da71c)[_0x5ddd53(0xdc7)+_0x5ddd53(0x3f4)+_0xacb44a(0xd43)]||window[_0xacb44a(0x53e)+_0x116c98(0xcb5)+_0x1bd1fc(0x4f3)+'e'](_0x4da71c)[_0x1bd1fc(0x531)]);}const _0x1fa83d=_0x5c6fc0[_0xacb44a(0x856)](getElementPosition,_0x4da71c);_0x522678+=_0x4de508(0x23f)+_0x1fa83d;}else{const _0x46011c=_0x8c073e[_0x1bd1fc(0xb57)+_0x5ddd53(0xc43)+'r'][_0xacb44a(0x330)+_0x116c98(0x96a)][_0x5ddd53(0xba3)](_0x31e262),_0x49b122=_0x346122[_0x11a735],_0x13062d=_0x7bb51c[_0x49b122]||_0x46011c;_0x46011c[_0x1bd1fc(0xb5a)+_0x4de508(0x6cf)]=_0x428bf1[_0x116c98(0xba3)](_0xba33f0),_0x46011c[_0xacb44a(0x611)+_0xacb44a(0xbbb)]=_0x13062d[_0x4de508(0x611)+_0x5ddd53(0xbbb)][_0xacb44a(0xba3)](_0x13062d),_0x4854fc[_0x49b122]=_0x46011c;}}}}if(_0x522678&&_0x5c6fc0[_0x116c98(0xc55)](_0x522678,''))_0x2ea583[_0x5ddd53(0xd53)](_0x522678);}else _0x114911[_0x5ddd53(0xcda)](_0xd25def);}return _0x5c6fc0[_0x1bd1fc(0x288)](unique,_0x2ea583);}function unique(_0x44f9db){const _0x1c5574=_0x4b15;return Array[_0x1c5574(0xc09)](new Set(_0x44f9db));}function getElementPosition(_0x2a52db){const _0x1fe514=_0x4b15,_0x1417b5=_0x4b15,_0x44e03e=_0x4b15,_0x46fd72=_0x4b15,_0x3566b0=_0x4b15,_0x56a7e8={'ObzvZ':_0x1fe514(0xc70)+_0x1fe514(0xb48)+'d','ujpKW':function(_0x32500f,_0x1804b2){return _0x32500f(_0x1804b2);},'RRDOy':_0x1417b5(0x897)+'ss','XQeGQ':function(_0x1842f6,_0x4a2a62){return _0x1842f6>_0x4a2a62;},'ZBNKz':function(_0x3e8edc,_0x7022cf){return _0x3e8edc(_0x7022cf);},'aEPAK':_0x1417b5(0x411)+_0x1417b5(0x547),'pcPZk':function(_0xfc589,_0x4adb3f){return _0xfc589+_0x4adb3f;},'tHTLo':_0x46fd72(0x8d3)+_0x1fe514(0x76b)+_0x1fe514(0xac0)+_0x44e03e(0x648)+_0x44e03e(0xb68)+_0x3566b0(0xcf0)+_0x44e03e(0x4c6)+_0x44e03e(0x6df)+_0x44e03e(0xded)+_0x46fd72(0xa60)+_0x44e03e(0x1e6),'CVRdg':function(_0x50ab06,_0x31602c){return _0x50ab06(_0x31602c);},'NOjNd':_0x1fe514(0xc8a)+_0x1417b5(0x2c5),'NMabn':function(_0x346925,_0x5a777c){return _0x346925/_0x5a777c;},'JkykP':function(_0xdc989a,_0x37bab5){return _0xdc989a+_0x37bab5;},'McaKQ':function(_0x297b67,_0x3b54cc){return _0x297b67<_0x3b54cc;},'qRDpA':function(_0x4efb6a,_0x10d16c){return _0x4efb6a!==_0x10d16c;},'nZLlM':_0x1417b5(0xd10),'tibOr':_0x44e03e(0x752),'FyOtU':function(_0x219e52,_0xc27aed){return _0x219e52/_0xc27aed;},'WTMqQ':function(_0x3c846a,_0x307703){return _0x3c846a*_0x307703;},'guCeP':function(_0x572cb0,_0x3226b3){return _0x572cb0!==_0x3226b3;},'hYKMB':_0x1fe514(0xb38),'rulmt':_0x1fe514(0x32e),'HJyii':_0x1fe514(0x911),'dMoqA':function(_0x55d954,_0x37ac4c){return _0x55d954<_0x37ac4c;},'HDUdo':function(_0x1da78e,_0x4d6a1f){return _0x1da78e/_0x4d6a1f;},'QCAdl':function(_0x4f4bb8,_0x10038c){return _0x4f4bb8!==_0x10038c;},'TrJvY':_0x1417b5(0x94b),'nQMwm':_0x1fe514(0xaae),'iACXx':function(_0x2ab288,_0x367a42){return _0x2ab288/_0x367a42;},'mICEM':function(_0x54d52d,_0x1a342e){return _0x54d52d*_0x1a342e;},'SvlYv':_0x1fe514(0x5c3),'tYGzA':_0x3566b0(0xb7b),'uekhn':_0x1fe514(0x963),'qFGgg':_0x1417b5(0x6d7)},_0x21cfa1=_0x2a52db[_0x1417b5(0xd7b)+_0x1417b5(0xd7d)+_0x46fd72(0x20f)+_0x46fd72(0xd8e)+'t'](),_0x93abec=_0x56a7e8[_0x46fd72(0x859)](_0x21cfa1[_0x1417b5(0xad4)],_0x56a7e8[_0x1417b5(0x962)](_0x21cfa1[_0x44e03e(0x884)],0x526+-0xd70+0x3b*0x24)),_0x152891=_0x56a7e8[_0x3566b0(0x208)](_0x21cfa1[_0x3566b0(0xad1)],_0x56a7e8[_0x3566b0(0x962)](_0x21cfa1[_0x46fd72(0x4df)+'t'],0x1bb0+0xd64+0x7*-0x5de));let _0x5f0995='';if(_0x56a7e8[_0x3566b0(0x65b)](_0x93abec,_0x56a7e8[_0x46fd72(0x962)](window[_0x3566b0(0xd8a)+_0x1fe514(0x2a5)],-0xd*-0x260+-0x199*0xf+-0x6e6)))_0x56a7e8[_0x46fd72(0x578)](_0x56a7e8[_0x3566b0(0x409)],_0x56a7e8[_0x1417b5(0x3de)])?_0x5f0995+='':_0x4fe25a=_0x1936af;else _0x56a7e8[_0x1fe514(0x467)](_0x93abec,_0x56a7e8[_0x1417b5(0xc31)](_0x56a7e8[_0x44e03e(0x8bb)](window[_0x46fd72(0xd8a)+_0x44e03e(0x2a5)],-0x8fa+0x3*-0x263+0x1025*0x1),-0x1*-0x377+-0x2fd+-0x11*0x7))?_0x56a7e8[_0x1fe514(0xd7c)](_0x56a7e8[_0x1417b5(0xa04)],_0x56a7e8[_0x46fd72(0xa04)])?(_0x53b4f1[_0x44e03e(0xcda)](_0x56a7e8[_0x44e03e(0x3d0)]),_0x56a7e8[_0x1417b5(0xdf4)](_0x28939d,_0x56a7e8[_0x3566b0(0xc0a)])):_0x5f0995+='':_0x56a7e8[_0x1417b5(0x578)](_0x56a7e8[_0x44e03e(0x5df)],_0x56a7e8[_0x46fd72(0x902)])?_0x5f0995+='':_0xcaad9='图片';if(_0x56a7e8[_0x1417b5(0x98a)](_0x152891,_0x56a7e8[_0x46fd72(0x8a7)](window[_0x1417b5(0xd8a)+_0x1fe514(0x4f4)+'t'],0x1606+0x15*0xb5+0x1c*-0x151)))_0x56a7e8[_0x3566b0(0x582)](_0x56a7e8[_0x3566b0(0xdc1)],_0x56a7e8[_0x1fe514(0x71e)])?_0x5f0995+='':_0x37bb9e+=_0x403f61[_0x46fd72(0xdbe)+_0x1fe514(0x541)+_0x3566b0(0x8aa)](_0x3e8206[_0x10b1e7]);else{if(_0x56a7e8[_0x46fd72(0x467)](_0x152891,_0x56a7e8[_0x1fe514(0x97d)](_0x56a7e8[_0x1fe514(0xa91)](window[_0x44e03e(0xd8a)+_0x1fe514(0x4f4)+'t'],-0x24b7*0x1+0x2695+-0x1dc),-0x12*-0x45+-0x1d62+0x3d*0x67))){if(_0x56a7e8[_0x1417b5(0x582)](_0x56a7e8[_0x1417b5(0xa82)],_0x56a7e8[_0x46fd72(0x273)]))_0x5f0995+='';else{if(_0x56a7e8[_0x44e03e(0x467)](_0x56a7e8[_0x3566b0(0xa3a)](_0x516c20,_0x14df94)[_0x44e03e(0x830)+'h'],0x25*-0xdd+-0x376+0x236c))_0xc4a53a[_0x3566b0(0xc9f)+_0x1417b5(0x3e8)+_0x3566b0(0x61d)](_0x56a7e8[_0x1417b5(0xaf3)])[_0x1fe514(0xd8a)+_0x1fe514(0x8cb)]+=_0x56a7e8[_0x46fd72(0x859)](_0x56a7e8[_0x1fe514(0x859)](_0x56a7e8[_0x1417b5(0x67e)],_0x56a7e8[_0x44e03e(0x3b9)](_0x1f90d6,_0x5d0ae7)),_0x56a7e8[_0x1fe514(0x697)]);}}else _0x56a7e8[_0x1417b5(0x578)](_0x56a7e8[_0x1417b5(0x630)],_0x56a7e8[_0x3566b0(0x7c6)])?_0x5f0995+='':_0x2fb378+=_0x97cb;}return _0x5f0995;}function stringToArrayBuffer(_0x22de71){const _0x381660=_0x4b15,_0x6794d1=_0x4b15,_0x5415fe=_0x4b15,_0x5a75c1=_0x4b15,_0x573ca7=_0x4b15,_0x56fbf4={};_0x56fbf4[_0x381660(0x55b)]=_0x6794d1(0x457)+':',_0x56fbf4[_0x381660(0xbdc)]=function(_0x2b7d99,_0x34e174){return _0x2b7d99===_0x34e174;},_0x56fbf4[_0x6794d1(0x8f1)]=_0x381660(0x99d),_0x56fbf4[_0x381660(0xaa0)]=_0x6794d1(0xaac),_0x56fbf4[_0x573ca7(0xb9a)]=function(_0x4c5b1f,_0x1e6070){return _0x4c5b1f<_0x1e6070;},_0x56fbf4[_0x573ca7(0x7d2)]=_0x6794d1(0xdca),_0x56fbf4[_0x6794d1(0x678)]=_0x381660(0x236);const _0x1ee560=_0x56fbf4;if(!_0x22de71)return;try{if(_0x1ee560[_0x5a75c1(0xbdc)](_0x1ee560[_0x573ca7(0x8f1)],_0x1ee560[_0x6794d1(0xaa0)]))_0x320e3a[_0x5415fe(0xa18)](_0x1ee560[_0x5a75c1(0x55b)],_0x26a0d9);else{var _0x49c38c=new ArrayBuffer(_0x22de71[_0x6794d1(0x830)+'h']),_0x4f89c8=new Uint8Array(_0x49c38c);for(var _0x587dc1=-0x3b*0x16+0x2083*-0x1+0x2595,_0x1b873f=_0x22de71[_0x5415fe(0x830)+'h'];_0x1ee560[_0x5415fe(0xb9a)](_0x587dc1,_0x1b873f);_0x587dc1++){_0x1ee560[_0x6794d1(0xbdc)](_0x1ee560[_0x573ca7(0x7d2)],_0x1ee560[_0x381660(0x678)])?_0x3807cb+='':_0x4f89c8[_0x587dc1]=_0x22de71[_0x5a75c1(0xaa7)+_0x573ca7(0x7c9)](_0x587dc1);}return _0x49c38c;}}catch(_0x450549){}}function arrayBufferToString(_0x3e0676){const _0x5266c6=_0x4b15,_0x1bf7ca=_0x4b15,_0x2c8162=_0x4b15,_0x2a6c57=_0x4b15,_0x4ab073=_0x4b15,_0x30c74={'ggAyT':_0x5266c6(0x3dc),'YxnOX':function(_0x2f4327,_0x12578f,_0x198f93){return _0x2f4327(_0x12578f,_0x198f93);},'DxxsK':_0x5266c6(0x7eb)+_0x5266c6(0x5f0),'zbWSV':_0x2a6c57(0x3ad),'PrsIb':function(_0x5ebe2b,_0x426e6d){return _0x5ebe2b===_0x426e6d;},'cxzYq':_0x2a6c57(0x7d4),'fiuxp':_0x5266c6(0x2b7),'uyKTi':function(_0x3e295b,_0x2c78ea){return _0x3e295b<_0x2c78ea;},'QweKK':_0x4ab073(0xad8)};try{if(_0x30c74[_0x2a6c57(0xaca)](_0x30c74[_0x4ab073(0x7ed)],_0x30c74[_0x5266c6(0x4a7)]))_0x5db14f=_0x30c74[_0x1bf7ca(0xde9)];else{var _0x559545=new Uint8Array(_0x3e0676),_0x3e1650='';for(var _0x288585=0x23bf+0xc22+-0x2fe1;_0x30c74[_0x2c8162(0xdaf)](_0x288585,_0x559545[_0x5266c6(0xd96)+_0x2a6c57(0x31c)]);_0x288585++){_0x30c74[_0x2c8162(0xaca)](_0x30c74[_0x1bf7ca(0xbfe)],_0x30c74[_0x1bf7ca(0xbfe)])?_0x3e1650+=String[_0x2c8162(0xdbe)+_0x5266c6(0x541)+_0x2c8162(0x8aa)](_0x559545[_0x288585]):_0x30c74[_0x4ab073(0x33f)](_0x3e5ca9,_0x2049bf,_0x24a8f1[_0x30c74[_0x2c8162(0x447)]][-0x860+-0x188d+0x20ed][_0x30c74[_0x1bf7ca(0x60d)]]);}return _0x3e1650;}}catch(_0x24c8c8){}}function importPrivateKey(_0x4dd06f){const _0x1dcfd3=_0x4b15,_0x4ce45d=_0x4b15,_0x498bdd=_0x4b15,_0x345b9e=_0x4b15,_0x1292de=_0x4b15,_0x67aa14={'xHKdb':_0x1dcfd3(0x919)+_0x1dcfd3(0x99f)+_0x4ce45d(0x39f)+_0x4ce45d(0x46e)+_0x345b9e(0x485)+'--','Uzggh':_0x498bdd(0x919)+_0x498bdd(0xa50)+_0x1292de(0x456)+_0x498bdd(0x56f)+_0x4ce45d(0x919),'cdMGY':function(_0x4468a9,_0x44f47a){return _0x4468a9-_0x44f47a;},'ClSDe':function(_0x2d071a,_0x5c54a9){return _0x2d071a(_0x5c54a9);},'mOBOx':_0x1dcfd3(0x6d9),'WfBKu':_0x1dcfd3(0xc95)+_0x1292de(0x21b),'XpjEt':_0x4ce45d(0xdcf)+'56','slTfo':_0x498bdd(0x219)+'pt'},_0x4b1d30=_0x67aa14[_0x498bdd(0x1e4)],_0x269c6d=_0x67aa14[_0x1292de(0xbb5)],_0x7ee684=_0x4dd06f[_0x345b9e(0x83f)+_0x1dcfd3(0xa42)](_0x4b1d30[_0x498bdd(0x830)+'h'],_0x67aa14[_0x1dcfd3(0x5de)](_0x4dd06f[_0x1dcfd3(0x830)+'h'],_0x269c6d[_0x345b9e(0x830)+'h'])),_0xd26ff5=_0x67aa14[_0x4ce45d(0x59b)](atob,_0x7ee684),_0x566a7c=_0x67aa14[_0x1292de(0x59b)](stringToArrayBuffer,_0xd26ff5);return crypto[_0x1dcfd3(0x958)+'e'][_0x1292de(0x71f)+_0x498bdd(0x59e)](_0x67aa14[_0x345b9e(0xb0a)],_0x566a7c,{'name':_0x67aa14[_0x4ce45d(0x33a)],'hash':_0x67aa14[_0x1dcfd3(0x635)]},!![],[_0x67aa14[_0x4ce45d(0xde8)]]);}function importPublicKey(_0x5036a7){const _0x84d6bf=_0x4b15,_0x40dc0e=_0x4b15,_0x35fae3=_0x4b15,_0x3e8508=_0x4b15,_0x286c24=_0x4b15,_0x26412c={'vbBLH':_0x84d6bf(0x457)+':','yZyuD':_0x84d6bf(0x411)+_0x35fae3(0xcf9),'NxbiW':function(_0x1afa92,_0x11c48e){return _0x1afa92<_0x11c48e;},'YiMFq':function(_0xdc765,_0x436dac){return _0xdc765+_0x436dac;},'bMICo':function(_0x57b6b3,_0x436f2f){return _0x57b6b3===_0x436f2f;},'sHzol':_0x35fae3(0x2cb),'KMhSE':_0x35fae3(0x382),'cjwpe':function(_0x20e4cb,_0x20da63){return _0x20e4cb!==_0x20da63;},'ZSoKO':_0x3e8508(0xd5b),'qUCuy':_0x84d6bf(0x622)+'es','cDYcN':_0x35fae3(0x4bd),'iFULv':_0x35fae3(0xdb5),'GbIDa':function(_0x38f5bb,_0x20aca1){return _0x38f5bb===_0x20aca1;},'XcBnw':_0x3e8508(0xaed),'ezUbY':_0x35fae3(0x2e6)+_0x3e8508(0x93e)+'+$','DsFKs':_0x3e8508(0x5be),'aPvzs':function(_0x2179fa,_0x3ce74b){return _0x2179fa!==_0x3ce74b;},'xbCGa':_0x3e8508(0xb4d),'fjJxk':_0x3e8508(0x2fc),'NxFSr':function(_0x483c6d,_0x2da02f){return _0x483c6d===_0x2da02f;},'vIBHq':_0x3e8508(0xc54),'ZCzkI':_0x40dc0e(0x3f5),'dSIir':_0x40dc0e(0x299),'ZjreZ':_0x35fae3(0x7db),'LAwXw':_0x40dc0e(0xb79),'ircjV':_0x40dc0e(0x870)+_0x40dc0e(0x289)+_0x35fae3(0xc76)+')','FPHrg':_0x35fae3(0x799)+_0x286c24(0xb23)+_0x3e8508(0x2b3)+_0x40dc0e(0x543)+_0x35fae3(0x59a)+_0x3e8508(0xd11)+_0x3e8508(0x7bb),'dcozN':function(_0x26a235,_0x5dcf0f){return _0x26a235(_0x5dcf0f);},'apqRh':_0x35fae3(0x81e),'qOOUp':function(_0x1ccdc4,_0x4ab4e1){return _0x1ccdc4+_0x4ab4e1;},'VKawx':_0x35fae3(0xd57),'elIjr':function(_0x347732,_0x3dcb35){return _0x347732+_0x3dcb35;},'kjNNZ':_0x286c24(0x81c),'hsNCw':function(_0x53c1c1,_0x2db4f1){return _0x53c1c1!==_0x2db4f1;},'vWfZn':_0x286c24(0xbbc),'ZVhDD':_0x84d6bf(0x84b),'qPtxi':function(_0x4d5ab7){return _0x4d5ab7();},'AJVAt':function(_0x5840e9,_0x14ae59,_0x178025){return _0x5840e9(_0x14ae59,_0x178025);},'JrsNJ':function(_0x543113,_0x2fec3e){return _0x543113+_0x2fec3e;},'GGJAX':_0x40dc0e(0x250)+_0x40dc0e(0x626)+_0x40dc0e(0x462)+_0x40dc0e(0x5bf)+_0x40dc0e(0x2c0)+_0x3e8508(0xd92)+_0x84d6bf(0xca1)+_0x286c24(0x35d)+'e=','jTRBQ':_0x40dc0e(0x49e),'ksHfo':function(_0x252886,_0x5a1c4c){return _0x252886===_0x5a1c4c;},'RBwGV':_0x35fae3(0x650),'LQJXS':function(_0x22befc,_0x55dcab,_0x5aec4f){return _0x22befc(_0x55dcab,_0x5aec4f);},'nwjur':function(_0x2f0560,_0x4b9de3){return _0x2f0560-_0x4b9de3;},'XQXwy':function(_0x3b1d72,_0x8c2da8){return _0x3b1d72!==_0x8c2da8;},'lmTnO':_0x3e8508(0x741),'ClDPI':_0x40dc0e(0x378),'lDtZj':_0x84d6bf(0x4a0),'LuXoR':_0x3e8508(0xc70)+_0x286c24(0xb48)+'d','Xrmoy':_0x40dc0e(0x897)+'ss','znouq':_0x286c24(0x9e7)+'d','iyHgT':_0x84d6bf(0xb1a),'AUSRl':_0x3e8508(0x7fa),'lXBDg':_0x286c24(0xce0),'oYmbn':_0x3e8508(0x243),'kDUIp':function(_0x6fb6c,_0x1e2b26){return _0x6fb6c(_0x1e2b26);},'wTKrt':_0x84d6bf(0xc95)+_0x35fae3(0x21b),'hdVrJ':_0x40dc0e(0xc6a)+_0x84d6bf(0x586)+_0x84d6bf(0xb17)+_0x40dc0e(0x61e),'xLaJK':_0x84d6bf(0xcf5)+_0x3e8508(0xd9c)+_0x286c24(0x34c)+_0x84d6bf(0xa28)+_0x40dc0e(0xc91)+_0x84d6bf(0x369)+'\x20)','qoApR':function(_0x1fd7fb,_0x55476e){return _0x1fd7fb<_0x55476e;},'BrTop':function(_0x4114c1,_0x332d4d){return _0x4114c1+_0x332d4d;},'NRAsM':_0x286c24(0xd13),'ZXelU':function(_0x4621ec,_0x2da6ee){return _0x4621ec===_0x2da6ee;},'duqKo':_0x286c24(0x522),'HLfZj':_0x40dc0e(0x8af),'YkTyX':function(_0xe9481d,_0x53a77f){return _0xe9481d(_0x53a77f);},'XmvdG':function(_0x3260dc,_0x567e4a){return _0x3260dc+_0x567e4a;},'cquht':function(_0x14e90c){return _0x14e90c();},'rDvFo':function(_0x3127c8,_0x3b4a66){return _0x3127c8!==_0x3b4a66;},'TKXlU':_0x35fae3(0x701),'LDrvk':_0x3e8508(0xb51),'kQpNf':_0x84d6bf(0xcda),'LkPqL':_0x35fae3(0x350),'ArAtq':_0x286c24(0xdc6),'SeXvk':_0x3e8508(0xa18),'ZKGzU':_0x286c24(0xc2e)+_0x286c24(0xb46),'PwyNP':_0x84d6bf(0xa7c),'KOTcE':_0x84d6bf(0xdd3),'dpEOL':function(_0x586b87,_0x2a7998){return _0x586b87!==_0x2a7998;},'kwSdp':_0x84d6bf(0xccd),'FitmH':_0x84d6bf(0x956),'MsfCS':function(_0x308873){return _0x308873();},'dgMng':function(_0xb1a21f){return _0xb1a21f();},'wKKKx':_0x286c24(0x919)+_0x35fae3(0x99f)+_0x35fae3(0xaee)+_0x40dc0e(0x1e1)+_0x40dc0e(0x79c)+'-','AbCxr':_0x286c24(0x919)+_0x40dc0e(0xa50)+_0x35fae3(0x9f8)+_0x84d6bf(0x6bf)+_0x3e8508(0xa77),'nbYho':function(_0x5d9a1c,_0x597eb2){return _0x5d9a1c(_0x597eb2);},'TlUoe':function(_0x2421cd,_0x3ef694){return _0x2421cd(_0x3ef694);},'LHRvw':_0x84d6bf(0xa8c),'khUvG':_0x35fae3(0xdcf)+'56','nKpIo':_0x40dc0e(0xd94)+'pt'},_0xfc2fab=(function(){const _0x58c585=_0x3e8508,_0x2125eb=_0x3e8508,_0x2efee1=_0x3e8508,_0x4ad3c6=_0x3e8508,_0x218631=_0x40dc0e,_0x3d7c4f={'DgWKZ':_0x26412c[_0x58c585(0x838)],'YJGQG':_0x26412c[_0x2125eb(0x6cc)],'PNYTQ':function(_0x2497ec,_0x5b978f){const _0xcb662a=_0x58c585;return _0x26412c[_0xcb662a(0x4bc)](_0x2497ec,_0x5b978f);},'slGSf':function(_0x58152a,_0x76ef48){const _0x5df99e=_0x2125eb;return _0x26412c[_0x5df99e(0x613)](_0x58152a,_0x76ef48);},'SguFY':function(_0x1ca2b7,_0x220dfb){const _0x206f75=_0x58c585;return _0x26412c[_0x206f75(0x8dd)](_0x1ca2b7,_0x220dfb);},'NlTQN':_0x26412c[_0x2125eb(0x57e)],'aXMpm':_0x26412c[_0x2125eb(0x5b7)],'MsQdv':function(_0x4134a3,_0x455361){const _0x2480c4=_0x58c585;return _0x26412c[_0x2480c4(0x5fa)](_0x4134a3,_0x455361);},'gFPVQ':_0x26412c[_0x218631(0xa78)],'qrZZN':_0x26412c[_0x4ad3c6(0x484)],'QQnzj':_0x26412c[_0x2efee1(0x66f)]};if(_0x26412c[_0x4ad3c6(0x5fa)](_0x26412c[_0x218631(0x32b)],_0x26412c[_0x2125eb(0x32b)]))_0x359082[_0x218631(0xa18)](_0x3d7c4f[_0x4ad3c6(0xb19)],_0x3dfe20);else{let _0x5786af=!![];return function(_0x2c743e,_0x545c7a){const _0x10ad36=_0x2125eb,_0x3b6057=_0x2efee1,_0x43e3d9=_0x2efee1,_0x227ce6=_0x58c585,_0x8a6e4e=_0x4ad3c6,_0x588715={'TXfaW':function(_0x4e398b,_0x1c6428){const _0xcc4ae5=_0x4b15;return _0x3d7c4f[_0xcc4ae5(0x30c)](_0x4e398b,_0x1c6428);},'wuOLP':_0x3d7c4f[_0x10ad36(0xdde)]};if(_0x3d7c4f[_0x3b6057(0x3b5)](_0x3d7c4f[_0x3b6057(0x44d)],_0x3d7c4f[_0x3b6057(0x44d)])){const _0x1510a1=_0x5786af?function(){const _0x159d7d=_0x43e3d9,_0xa1187f=_0x227ce6,_0x2a0ec9=_0x227ce6,_0xcd396=_0x10ad36,_0x76d848=_0x10ad36,_0x5bb76f={'hOfzk':_0x3d7c4f[_0x159d7d(0x2b0)],'vPvGF':function(_0x3adfea,_0x430b7e){const _0x4a9846=_0x159d7d;return _0x3d7c4f[_0x4a9846(0xa58)](_0x3adfea,_0x430b7e);},'IVNSj':function(_0x922be,_0x43a208){const _0x5c33f6=_0x159d7d;return _0x3d7c4f[_0x5c33f6(0x30c)](_0x922be,_0x43a208);},'vxQVn':function(_0x21f546,_0x1fdb44){const _0x54f9f6=_0x159d7d;return _0x3d7c4f[_0x54f9f6(0x30c)](_0x21f546,_0x1fdb44);},'AIBeM':function(_0x4e6d1a,_0x3c2dda){const _0x458a10=_0x159d7d;return _0x3d7c4f[_0x458a10(0x30c)](_0x4e6d1a,_0x3c2dda);}};if(_0x3d7c4f[_0xa1187f(0x3b5)](_0x3d7c4f[_0xa1187f(0x758)],_0x3d7c4f[_0x159d7d(0x209)]))_0x4c2efe[_0xcd396(0xc9f)+_0x2a0ec9(0x3e8)+_0x2a0ec9(0x61d)](_0x5bb76f[_0x2a0ec9(0x659)])[_0xcd396(0x5a4)+_0xa1187f(0x60a)]=_0x72e511[_0x76d848(0xc9f)+_0x2a0ec9(0x3e8)+_0xcd396(0x61d)](_0x5bb76f[_0xa1187f(0x659)])[_0x159d7d(0x5a4)+_0x2a0ec9(0x4c4)+'ht'];else{if(_0x545c7a){if(_0x3d7c4f[_0x2a0ec9(0xa95)](_0x3d7c4f[_0x76d848(0x2f6)],_0x3d7c4f[_0x159d7d(0x2f6)])){if(_0x5bb76f[_0x76d848(0x279)](_0x5bb76f[_0x2a0ec9(0x4ae)](_0x5bb76f[_0x76d848(0x5e6)](_0x46d090,_0x4e3119[_0x4e4029]),'\x0a')[_0xcd396(0x830)+'h'],-0x27f*0x2+-0x1e77+-0x1*-0x2825))_0x203851=_0x5bb76f[_0xa1187f(0x5c4)](_0x5bb76f[_0xcd396(0x5c4)](_0x122e5a,_0x12977e[_0x4d23fc]),'\x0a');_0x576969=_0x5bb76f[_0x159d7d(0x5c4)](_0x3d9eb3,0x1787+0x298*-0xe+-0x665*-0x2);}else{const _0x5b3143=_0x545c7a[_0xa1187f(0xb9d)](_0x2c743e,arguments);return _0x545c7a=null,_0x5b3143;}}}}:function(){};return _0x5786af=![],_0x1510a1;}else try{_0x9091af=_0x474252[_0x10ad36(0x3d1)](_0x588715[_0x227ce6(0x6b6)](_0x4c286b,_0x2f8e9b))[_0x588715[_0x43e3d9(0x6c6)]],_0x27b708='';}catch(_0x2f3945){_0x33ca6d=_0x3da338[_0x227ce6(0x3d1)](_0x378fad)[_0x588715[_0x10ad36(0x6c6)]],_0x1eaa28='';}};}}()),_0x9793d=_0x26412c[_0x84d6bf(0x3d4)](_0xfc2fab,this,function(){const _0x4d4872=_0x3e8508,_0x41ed17=_0x84d6bf,_0x30f38e=_0x286c24,_0x282199=_0x84d6bf,_0xf3197c=_0x3e8508;if(_0x26412c[_0x4d4872(0xa93)](_0x26412c[_0x41ed17(0x3e7)],_0x26412c[_0x30f38e(0x3e7)]))return _0x9793d[_0x30f38e(0x611)+_0x30f38e(0xbbb)]()[_0x4d4872(0x4cb)+'h'](_0x26412c[_0x30f38e(0xb58)])[_0x30f38e(0x611)+_0xf3197c(0xbbb)]()[_0x282199(0xb57)+_0x282199(0xc43)+'r'](_0x9793d)[_0x30f38e(0x4cb)+'h'](_0x26412c[_0x282199(0xb58)]);else{const _0x479c82=_0x2324ae[_0x41ed17(0xb9d)](_0x39c771,arguments);return _0x4567cf=null,_0x479c82;}});_0x26412c[_0x286c24(0x344)](_0x9793d);const _0x16c975=(function(){const _0x4f192b=_0x35fae3,_0x172733=_0x35fae3,_0x18d2ff=_0x40dc0e,_0x18a672=_0x3e8508,_0x3e9e5d=_0x84d6bf,_0x3b6c5f={'qNRDj':function(_0x5deea5,_0x827b08){const _0x33f9d4=_0x4b15;return _0x26412c[_0x33f9d4(0xc51)](_0x5deea5,_0x827b08);},'SMWgJ':_0x26412c[_0x4f192b(0x4ef)],'xMrbq':_0x26412c[_0x4f192b(0xb37)],'XREOm':function(_0xe02ebd,_0x2832ef){const _0x188072=_0x172733;return _0x26412c[_0x188072(0x5f1)](_0xe02ebd,_0x2832ef);},'wJdVr':_0x26412c[_0x18d2ff(0xc9b)],'ZVgjo':_0x26412c[_0x4f192b(0xd5c)]};if(_0x26412c[_0x172733(0xa93)](_0x26412c[_0x18a672(0x312)],_0x26412c[_0x3e9e5d(0xc75)]))_0x35c998=null;else{let _0x41ff56=!![];return function(_0x10f9fe,_0x17377e){const _0x4bd747=_0x4f192b,_0x66ba5=_0x18d2ff,_0x176d0f=_0x4f192b;if(_0x26412c[_0x4bd747(0x5fa)](_0x26412c[_0x66ba5(0xc11)],_0x26412c[_0x4bd747(0xc11)]))_0x53fd6e+=_0x53c7a2;else{const _0x3b2156=_0x41ff56?function(){const _0x122b6d=_0x4bd747,_0xcbfc68=_0x4bd747,_0x3864e5=_0x176d0f,_0x431bdd=_0x176d0f,_0x549117=_0x176d0f;if(_0x3b6c5f[_0x122b6d(0xd9e)](_0x3b6c5f[_0x122b6d(0xa32)],_0x3b6c5f[_0x122b6d(0xa02)])){if(_0x17377e){if(_0x3b6c5f[_0x431bdd(0xd32)](_0x3b6c5f[_0x431bdd(0x5ba)],_0x3b6c5f[_0xcbfc68(0xa34)]))return![];else{const _0x4995df=_0x17377e[_0xcbfc68(0xb9d)](_0x10f9fe,arguments);return _0x17377e=null,_0x4995df;}}}else _0x39f63b[_0x431bdd(0x990)]();}:function(){};return _0x41ff56=![],_0x3b2156;}};}}());(function(){const _0xe6a5aa=_0x286c24,_0x451fb0=_0x84d6bf,_0x1130f4=_0x286c24,_0x5def56=_0x35fae3,_0x197f89=_0x84d6bf,_0x1860d7={'upGEr':function(_0xae46,_0x34a3d5,_0xa7b8c1){const _0x31856d=_0x4b15;return _0x26412c[_0x31856d(0x9de)](_0xae46,_0x34a3d5,_0xa7b8c1);},'JtLMD':function(_0x209001,_0x46ac9d){const _0x32305a=_0x4b15;return _0x26412c[_0x32305a(0xcc8)](_0x209001,_0x46ac9d);},'zFYUX':_0x26412c[_0xe6a5aa(0x837)],'nSHJL':function(_0x427bef,_0x36cd23){const _0x580fb3=_0xe6a5aa;return _0x26412c[_0x580fb3(0xbac)](_0x427bef,_0x36cd23);},'yGaFk':_0x26412c[_0xe6a5aa(0x781)]};_0x26412c[_0xe6a5aa(0xc12)](_0x26412c[_0xe6a5aa(0xc45)],_0x26412c[_0x5def56(0xc45)])?_0x26412c[_0x5def56(0x3d4)](_0x16c975,this,function(){const _0x246ef7=_0x197f89,_0x30c3c6=_0x451fb0,_0xcea44d=_0xe6a5aa,_0x3c09ed=_0x197f89,_0x419898=_0xe6a5aa;if(_0x26412c[_0x246ef7(0x5f1)](_0x26412c[_0x246ef7(0x774)],_0x26412c[_0x246ef7(0x774)])){const _0x163ac8=new RegExp(_0x26412c[_0x30c3c6(0x8e3)]),_0x1558b1=new RegExp(_0x26412c[_0x30c3c6(0x1ff)],'i'),_0x4fecc6=_0x26412c[_0xcea44d(0xbac)](_0x222cbb,_0x26412c[_0x419898(0xa0d)]);if(!_0x163ac8[_0xcea44d(0x81b)](_0x26412c[_0x3c09ed(0x7d0)](_0x4fecc6,_0x26412c[_0x3c09ed(0xa69)]))||!_0x1558b1[_0x3c09ed(0x81b)](_0x26412c[_0x30c3c6(0x802)](_0x4fecc6,_0x26412c[_0x30c3c6(0x454)])))_0x26412c[_0x246ef7(0xab8)](_0x26412c[_0x419898(0x4e7)],_0x26412c[_0x3c09ed(0x4e7)])?_0x270c43='按钮':_0x26412c[_0x30c3c6(0xbac)](_0x4fecc6,'0');else{if(_0x26412c[_0x30c3c6(0x8dd)](_0x26412c[_0x419898(0x482)],_0x26412c[_0x30c3c6(0x482)]))_0x26412c[_0xcea44d(0x640)](_0x222cbb);else{_0x1e0594=_0x4769b6[_0x419898(0xcd2)](_0x392894)[-0x1acc+0x107b*-0x1+0x2b47],_0x1860d7[_0x30c3c6(0x83c)](_0x46b1d5,_0x1860d7[_0x246ef7(0x789)](_0x1860d7[_0xcea44d(0x2a2)],_0x1860d7[_0x419898(0x4dc)](_0x135b0d,_0x48f7e8)),_0x1860d7[_0x3c09ed(0x546)]);return;}}}else{if(_0x1cd9e5){const _0x1c0235=_0x15904c[_0x246ef7(0xb9d)](_0x1082ce,arguments);return _0x3036be=null,_0x1c0235;}}})():_0x211ef1+=_0x2a1b54[_0xe6a5aa(0x3db)+'nt'][_0x1130f4(0x830)+'h'];}());const _0x30b743=(function(){const _0x5aba7f=_0x3e8508,_0x26452b=_0x286c24,_0x11183f=_0x35fae3;if(_0x26412c[_0x5aba7f(0xa41)](_0x26412c[_0x26452b(0x570)],_0x26412c[_0x11183f(0x446)])){let _0x3c5598=!![];return function(_0x5a73e2,_0x56c3af){const _0x3d5fe3=_0x11183f,_0x4c898c=_0x11183f,_0x49d66d=_0x26452b,_0x2c111e=_0x11183f,_0x1c529d=_0x5aba7f,_0x2b34c2={'NWGXz':function(_0x19dc47,_0x34c93b){const _0x33fa6b=_0x4b15;return _0x26412c[_0x33fa6b(0x74e)](_0x19dc47,_0x34c93b);},'lcjDx':function(_0x4ebe6d,_0x5eed3a){const _0x413871=_0x4b15;return _0x26412c[_0x413871(0xbac)](_0x4ebe6d,_0x5eed3a);},'qoUEx':function(_0x563e8e,_0x2acc0a){const _0x2e848d=_0x4b15;return _0x26412c[_0x2e848d(0x613)](_0x563e8e,_0x2acc0a);},'Gwixv':_0x26412c[_0x3d5fe3(0x484)],'fPGpR':function(_0x58ffc1,_0x19ce78){const _0x357c46=_0x3d5fe3;return _0x26412c[_0x357c46(0xa41)](_0x58ffc1,_0x19ce78);},'aCdPY':_0x26412c[_0x4c898c(0x27b)],'NUStP':_0x26412c[_0x4c898c(0xa94)],'XLoxS':_0x26412c[_0x3d5fe3(0x1fc)],'ZjAhw':_0x26412c[_0x2c111e(0x538)],'mQWKs':_0x26412c[_0x4c898c(0xd1e)],'hCTnK':_0x26412c[_0x2c111e(0x3e6)]};if(_0x26412c[_0x1c529d(0xa41)](_0x26412c[_0x4c898c(0x803)],_0x26412c[_0x2c111e(0xadf)])){const _0xd1aab=_0x3c5598?function(){const _0x5bf13c=_0x2c111e,_0x292b67=_0x49d66d,_0x26b4ed=_0x2c111e,_0x15b860=_0x2c111e,_0x5e98d7=_0x4c898c,_0x968548={'qKbBx':function(_0x4e2b54,_0x1c8da0){const _0x4003dd=_0x4b15;return _0x2b34c2[_0x4003dd(0x48e)](_0x4e2b54,_0x1c8da0);},'uPqkI':_0x2b34c2[_0x5bf13c(0x739)]};if(_0x2b34c2[_0x292b67(0x31b)](_0x2b34c2[_0x26b4ed(0x685)],_0x2b34c2[_0x292b67(0x5d8)])){if(_0x56c3af){if(_0x2b34c2[_0x5bf13c(0x31b)](_0x2b34c2[_0x15b860(0x36a)],_0x2b34c2[_0x5bf13c(0x36a)]))try{_0x1c317a=_0x41f8ae[_0x5bf13c(0x3d1)](_0x968548[_0x5e98d7(0xa03)](_0x4aab89,_0x3154fd))[_0x968548[_0x292b67(0xb54)]],_0x51d553='';}catch(_0x2befb0){_0x17abc4=_0x59ad2d[_0x5e98d7(0x3d1)](_0x30ad51)[_0x968548[_0x26b4ed(0xb54)]],_0x5f5410='';}else{const _0x1585d5=_0x56c3af[_0x15b860(0xb9d)](_0x5a73e2,arguments);return _0x56c3af=null,_0x1585d5;}}}else{_0x5d4d4e=_0x2b34c2[_0x15b860(0x89e)](_0x50b433,0x9c2+-0x4bb*-0x1+0x67*-0x24);if(!_0x5cff8c)throw _0xa7096d;return _0x2b34c2[_0x26b4ed(0xde2)](_0x1206b7,-0x2073+0x1*0x33d+0x1f2a)[_0x5e98d7(0x56c)](()=>_0x1662f0(_0x1ed3e0,_0xd675e2,_0x429591));}}:function(){};return _0x3c5598=![],_0xd1aab;}else{const _0x6c4457={'ZBgry':_0x2b34c2[_0x3d5fe3(0x3a8)],'ZedxT':function(_0x39a18e,_0x2af96f){const _0x28710d=_0x1c529d;return _0x2b34c2[_0x28710d(0xde2)](_0x39a18e,_0x2af96f);},'zCpGY':_0x2b34c2[_0x3d5fe3(0x8e6)]};_0x3e439a[_0x1c529d(0xdbb)+_0x3d5fe3(0x43e)+'t'](_0x2b34c2[_0x1c529d(0x28c)],function(){const _0x1ea5c2=_0x2c111e,_0x592350=_0x4c898c,_0x2df2c7=_0x2c111e,_0x541fa7=_0x1c529d;_0x1d8bce[_0x1ea5c2(0xcda)](_0x6c4457[_0x592350(0x303)]),_0x6c4457[_0x2df2c7(0x645)](_0x15de0f,_0x6c4457[_0x592350(0x7fd)]);});}};}else _0x3c848b+='';}()),_0x56c119=_0x26412c[_0x35fae3(0x3d4)](_0x30b743,this,function(){const _0x2b5c60=_0x84d6bf,_0x34a996=_0x40dc0e,_0x531967=_0x286c24,_0x5ae24a=_0x84d6bf,_0x3237cf=_0x35fae3,_0x498704={'zaMcG':function(_0x326436,_0x233ba5){const _0x1c810b=_0x4b15;return _0x26412c[_0x1c810b(0x30f)](_0x326436,_0x233ba5);},'jBTrx':_0x26412c[_0x2b5c60(0x5ce)],'QjnEi':function(_0x56fe85,_0x5913f5){const _0x46ca26=_0x2b5c60;return _0x26412c[_0x46ca26(0xcc8)](_0x56fe85,_0x5913f5);},'nlIqY':_0x26412c[_0x2b5c60(0xbf6)],'UzkXS':_0x26412c[_0x531967(0xce3)],'rnOXj':function(_0x19496e,_0x225636){const _0x143057=_0x531967;return _0x26412c[_0x143057(0xcde)](_0x19496e,_0x225636);},'KIhQd':function(_0x16c07d,_0x17fbca){const _0x348d06=_0x531967;return _0x26412c[_0x348d06(0x802)](_0x16c07d,_0x17fbca);},'HxOPn':function(_0x3dc44f,_0x2ca56f){const _0x306263=_0x2b5c60;return _0x26412c[_0x306263(0xb73)](_0x3dc44f,_0x2ca56f);}};if(_0x26412c[_0x2b5c60(0xab8)](_0x26412c[_0x34a996(0x64a)],_0x26412c[_0x5ae24a(0x64a)]))try{_0x270e5c=_0x498704[_0x2b5c60(0x213)](_0x2f3b61,_0x122a2a);const _0x494b8={};return _0x494b8[_0x5ae24a(0x62b)]=_0x498704[_0x3237cf(0x6c3)],_0x4ad8e0[_0x531967(0x958)+'e'][_0x531967(0xd94)+'pt'](_0x494b8,_0x573fb4,_0x2b76d7);}catch(_0x44a8e1){}else{let _0x3d01b9;try{if(_0x26412c[_0x5ae24a(0x61a)](_0x26412c[_0x531967(0xa73)],_0x26412c[_0x2b5c60(0x1f5)])){const _0x39ba85=function(){const _0x414d63=_0x34a996,_0xeff72c=_0x3237cf,_0x21519f=_0x3237cf,_0x1deb79=_0x34a996,_0x67dbf2=_0x531967;let _0x40710c;try{_0x40710c=CDOiMf[_0x414d63(0x213)](_0x342328,CDOiMf[_0xeff72c(0x6c8)](CDOiMf[_0xeff72c(0x6c8)](CDOiMf[_0x21519f(0x56a)],CDOiMf[_0xeff72c(0xacf)]),');'))();}catch(_0x59ce00){_0x40710c=_0x33c9de;}return _0x40710c;},_0x266a06=iPEZfx[_0x531967(0x640)](_0x39ba85);_0x266a06[_0x3237cf(0x87c)+_0x2b5c60(0xd4f)+'l'](_0x2ecf55,0xf2b*-0x1+-0x8d7+0x27a2);}else{const _0x487eb6=_0x26412c[_0x5ae24a(0xd4d)](Function,_0x26412c[_0x5ae24a(0xb73)](_0x26412c[_0x34a996(0x68b)](_0x26412c[_0x2b5c60(0xbf6)],_0x26412c[_0x531967(0xce3)]),');'));_0x3d01b9=_0x26412c[_0x5ae24a(0x28e)](_0x487eb6);}}catch(_0x1ab105){if(_0x26412c[_0x5ae24a(0x318)](_0x26412c[_0x34a996(0xb80)],_0x26412c[_0x3237cf(0xbe3)]))_0x3d01b9=window;else{if(_0x498704[_0x5ae24a(0x507)](_0x498704[_0x34a996(0x6c8)](_0x498704[_0x3237cf(0x6c8)](_0x7604c0,_0x544e2b[_0x141cd7]),'\x0a')[_0x2b5c60(0x830)+'h'],0x8f*0x11+-0xc86+0x68b))_0x338b8f=_0x498704[_0x531967(0xcb4)](_0x498704[_0x5ae24a(0xbb2)](_0x3d672c,_0x464eef[_0x5e0bdc]),'\x0a');}}const _0x5c1eff=_0x3d01b9[_0x34a996(0x261)+'le']=_0x3d01b9[_0x3237cf(0x261)+'le']||{},_0x3103e9=[_0x26412c[_0x531967(0x818)],_0x26412c[_0x34a996(0x6c0)],_0x26412c[_0x34a996(0x70e)],_0x26412c[_0x531967(0x562)],_0x26412c[_0x3237cf(0x8b5)],_0x26412c[_0x3237cf(0x9dc)],_0x26412c[_0x531967(0x7c8)]];for(let _0x3ac06e=0x14dd+0x2f*0x25+-0x1ba8;_0x26412c[_0x5ae24a(0xcde)](_0x3ac06e,_0x3103e9[_0x3237cf(0x830)+'h']);_0x3ac06e++){if(_0x26412c[_0x531967(0x907)](_0x26412c[_0x2b5c60(0x826)],_0x26412c[_0x2b5c60(0x53c)])){const _0x37d2f6=_0x30b743[_0x5ae24a(0xb57)+_0x531967(0xc43)+'r'][_0x3237cf(0x330)+_0x2b5c60(0x96a)][_0x34a996(0xba3)](_0x30b743),_0x473623=_0x3103e9[_0x3ac06e],_0xe07d64=_0x5c1eff[_0x473623]||_0x37d2f6;_0x37d2f6[_0x3237cf(0xb5a)+_0x3237cf(0x6cf)]=_0x30b743[_0x2b5c60(0xba3)](_0x30b743),_0x37d2f6[_0x34a996(0x611)+_0x3237cf(0xbbb)]=_0xe07d64[_0x2b5c60(0x611)+_0x34a996(0xbbb)][_0x34a996(0xba3)](_0xe07d64),_0x5c1eff[_0x473623]=_0x37d2f6;}else return _0x1a4446[_0x3237cf(0xc09)](new _0x33d2a4(_0x1fe03e));}}});_0x26412c[_0x40dc0e(0xa64)](_0x56c119);const _0x465133=_0x26412c[_0x84d6bf(0x341)],_0x1fdec6=_0x26412c[_0x3e8508(0x997)],_0x401d8e=_0x5036a7[_0x40dc0e(0x83f)+_0x286c24(0xa42)](_0x465133[_0x40dc0e(0x830)+'h'],_0x26412c[_0x3e8508(0x74e)](_0x5036a7[_0x35fae3(0x830)+'h'],_0x1fdec6[_0x35fae3(0x830)+'h'])),_0x3029a8=_0x26412c[_0x84d6bf(0xbdb)](atob,_0x401d8e),_0xb2f2c7=_0x26412c[_0x3e8508(0x811)](stringToArrayBuffer,_0x3029a8);return crypto[_0x40dc0e(0x958)+'e'][_0x3e8508(0x71f)+_0x40dc0e(0x59e)](_0x26412c[_0x286c24(0x6f2)],_0xb2f2c7,{'name':_0x26412c[_0x35fae3(0x5ce)],'hash':_0x26412c[_0x35fae3(0x829)]},!![],[_0x26412c[_0x35fae3(0xa8f)]]);}function encryptDataWithPublicKey(_0x57f356,_0x313325){const _0xb105=_0x4b15,_0xfbe425=_0x4b15,_0x206cdf=_0x4b15,_0x4bebbe=_0x4b15,_0x5e99c0=_0x4b15,_0x1e6967={'hCyWe':_0xb105(0x622)+'es','OrhnS':function(_0x502d66,_0x41adf3){return _0x502d66===_0x41adf3;},'jtKnk':_0xfbe425(0xdd6),'VLhgJ':_0xfbe425(0x943),'ezMKF':function(_0x1ee065,_0x46bf3f){return _0x1ee065(_0x46bf3f);},'HBHOq':_0x4bebbe(0xc95)+_0x206cdf(0x21b)};try{if(_0x1e6967[_0x5e99c0(0x51b)](_0x1e6967[_0xfbe425(0xaea)],_0x1e6967[_0xfbe425(0x8dc)]))_0x392f98=_0x4fa912[_0xfbe425(0x3d1)](_0x557500)[_0x1e6967[_0x206cdf(0xa3d)]],_0x542ff7='';else{_0x57f356=_0x1e6967[_0xb105(0x767)](stringToArrayBuffer,_0x57f356);const _0x42a383={};return _0x42a383[_0xfbe425(0x62b)]=_0x1e6967[_0x4bebbe(0x90d)],crypto[_0x5e99c0(0x958)+'e'][_0x4bebbe(0xd94)+'pt'](_0x42a383,_0x313325,_0x57f356);}}catch(_0x2023eb){}}function _0x4b15(_0x18be6c,_0x222cbb){const _0x180174=_0x8d41();return _0x4b15=function(_0x84f3e7,_0x3a2c9c){_0x84f3e7=_0x84f3e7-(0x192c+0x2*0x44b+-0x1fe3);let _0xdf549=_0x180174[_0x84f3e7];return _0xdf549;},_0x4b15(_0x18be6c,_0x222cbb);}function decryptDataWithPrivateKey(_0x23666b,_0x2c39ca){const _0x5151ff=_0x4b15,_0x112d2d=_0x4b15,_0x190ab6=_0x4b15,_0x2b5b50=_0x4b15,_0x4ec1fb=_0x4b15,_0x52ec66={'LSCcq':function(_0x222667,_0xf40d8e){return _0x222667(_0xf40d8e);},'XrkqK':_0x5151ff(0xc95)+_0x112d2d(0x21b)};_0x23666b=_0x52ec66[_0x5151ff(0x407)](stringToArrayBuffer,_0x23666b);const _0xe9f92b={};return _0xe9f92b[_0x5151ff(0x62b)]=_0x52ec66[_0x5151ff(0x215)],crypto[_0x2b5b50(0x958)+'e'][_0x4ec1fb(0x219)+'pt'](_0xe9f92b,_0x2c39ca,_0x23666b);}const pubkey=_0x2239e4(0x919)+_0x2239e4(0x99f)+_0x51b305(0xaee)+_0x380db8(0x1e1)+_0x372c3c(0x79c)+_0x2239e4(0x5bb)+_0x51b305(0xae3)+_0x2239e4(0x37d)+_0x372c3c(0xaab)+_0x380db8(0xda5)+_0x372c3c(0xddb)+_0x2628a6(0x257)+_0x51b305(0xdeb)+_0x372c3c(0x7ce)+_0x51b305(0x88a)+_0x380db8(0xdd9)+_0x372c3c(0x2a3)+_0x380db8(0x50e)+_0x372c3c(0x315)+_0x380db8(0xaf7)+_0x51b305(0xdf1)+_0x2239e4(0xae2)+_0x2239e4(0x3df)+_0x372c3c(0x80a)+_0x2239e4(0x39d)+_0x51b305(0xc90)+_0x2628a6(0x663)+_0x372c3c(0x728)+_0x2628a6(0x44f)+_0x380db8(0xcae)+_0x2239e4(0x27c)+_0x51b305(0x3ba)+_0x51b305(0xa6e)+_0x2628a6(0xb13)+_0x372c3c(0xcb8)+_0x2239e4(0x8d0)+_0x372c3c(0x4c5)+_0x51b305(0xbfc)+_0x372c3c(0x9b5)+_0x380db8(0xacd)+_0x380db8(0xb8b)+_0x380db8(0xd5e)+_0x372c3c(0xbb4)+_0x380db8(0x710)+_0x51b305(0xa8d)+_0x372c3c(0x839)+_0x380db8(0xa75)+_0x2239e4(0x1f1)+_0x372c3c(0xb8e)+_0x2239e4(0x285)+_0x51b305(0x652)+_0x372c3c(0x549)+_0x51b305(0x694)+_0x2628a6(0x3a0)+_0x372c3c(0x7e6)+_0x2628a6(0xac5)+_0x51b305(0x581)+_0x372c3c(0x42d)+_0x372c3c(0xcbf)+_0x372c3c(0xabd)+_0x2239e4(0x64b)+_0x2628a6(0x6be)+_0x372c3c(0xd4e)+_0x380db8(0x820)+_0x372c3c(0x704)+_0x380db8(0x674)+_0x2239e4(0xc7b)+_0x372c3c(0xd22)+_0x2239e4(0x696)+_0x372c3c(0x9a0)+_0x2239e4(0xc14)+_0x2628a6(0xdb6)+_0x51b305(0x348)+_0x372c3c(0x8bc)+_0x2628a6(0x7b1)+_0x51b305(0x676)+_0x380db8(0x815)+_0x51b305(0xd6c)+_0x380db8(0x2b9)+_0x51b305(0x8f5)+_0x51b305(0xa89)+_0x372c3c(0x76d)+_0x372c3c(0x53a)+_0x51b305(0x488)+_0x2628a6(0x567)+_0x51b305(0x993)+_0x2239e4(0x345)+_0x2239e4(0x485)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x678870){const _0x46f70e=_0x2628a6,_0x3c68e0=_0x372c3c,_0x2b2ff6={'JvvOf':function(_0x442fdc,_0x5cbb77){return _0x442fdc(_0x5cbb77);},'UWnDn':function(_0x215850,_0x111325){return _0x215850(_0x111325);}};return _0x2b2ff6[_0x46f70e(0xac9)](btoa,_0x2b2ff6[_0x46f70e(0xa47)](encodeURIComponent,_0x678870));}var word_last=[],lock_chat=-0x26f8+0x153*0x1+-0x4f*-0x7a;function wait(_0x398911){return new Promise(_0x2ffa21=>setTimeout(_0x2ffa21,_0x398911));}function fetchRetry(_0x3c1e55,_0x3a1dc0,_0x1d10da={}){const _0x5aff7a=_0x2628a6,_0x22d492=_0x372c3c,_0x3abde6=_0x2239e4,_0xbaf4ae=_0x2628a6,_0x54f753=_0x2628a6,_0x207421={'NCAQA':function(_0x4d2de4,_0x97983f){return _0x4d2de4===_0x97983f;},'fjkaP':_0x5aff7a(0x5b6),'DHKhS':function(_0x3a0064,_0x537996){return _0x3a0064-_0x537996;},'QHILz':function(_0x4a3184,_0x389a1a){return _0x4a3184!==_0x389a1a;},'SViQD':_0x5aff7a(0x353),'IgavI':_0x22d492(0x86a),'IZmyT':function(_0x3bef4b,_0x717b63){return _0x3bef4b(_0x717b63);},'NYJnl':function(_0x3ce6ef,_0x18bb58,_0xcd7e85){return _0x3ce6ef(_0x18bb58,_0xcd7e85);}};function _0x465209(_0x57932b){const _0x364190=_0x5aff7a,_0x59ba5d=_0x22d492,_0x26955a=_0x22d492,_0x4646bd=_0x22d492,_0x952e3d=_0x3abde6;if(_0x207421[_0x364190(0xa38)](_0x207421[_0x59ba5d(0x7ee)],_0x207421[_0x59ba5d(0x7ee)])){triesLeft=_0x207421[_0x26955a(0x846)](_0x3a1dc0,-0xd97*-0x2+0x583*-0x1+0x5e*-0x3b);if(!triesLeft){if(_0x207421[_0x952e3d(0x968)](_0x207421[_0x952e3d(0x6e9)],_0x207421[_0x59ba5d(0x592)]))throw _0x57932b;else{_0x2f9373=-0x1ddf+-0x1*0x170f+0x34ee;return;}}return _0x207421[_0x4646bd(0x6ed)](wait,0x783*0x1+0x1f*-0xc5+-0x1*-0x124c)[_0x59ba5d(0x56c)](()=>fetchRetry(_0x3c1e55,triesLeft,_0x1d10da));}else _0x40128b='表单';}return _0x207421[_0x5aff7a(0xb45)](fetch,_0x3c1e55,_0x1d10da)[_0x22d492(0x46c)](_0x465209);}function send_webchat(_0x598ae6){const _0x58bc3a=_0x380db8,_0x21bbc1=_0x380db8,_0x469854=_0x2628a6,_0x908fac=_0x2239e4,_0x13d7d5=_0x380db8,_0x27e454={'AvYYx':function(_0x584777,_0x447525){return _0x584777>_0x447525;},'FvNjt':function(_0x410793,_0x340a3a,_0x28b7ac){return _0x410793(_0x340a3a,_0x28b7ac);},'dMsJJ':function(_0x40cef9,_0x1d3b98){return _0x40cef9+_0x1d3b98;},'UQoxY':_0x58bc3a(0x715)+_0x21bbc1(0x87b),'glsTH':function(_0x107bcc,_0x4922c6){return _0x107bcc+_0x4922c6;},'AFfgT':function(_0x24fdda,_0x5a93a2){return _0x24fdda+_0x5a93a2;},'uQPwG':function(_0x14a4a8,_0x2bdda8){return _0x14a4a8+_0x2bdda8;},'TmyMi':_0x21bbc1(0x7bd)+_0x21bbc1(0x794)+_0x21bbc1(0xd55)+_0x58bc3a(0x5d7)+_0x469854(0x523)+'\x22>','pljvN':_0x908fac(0x5fc),'OjkOF':_0x21bbc1(0x71c)+_0x469854(0xac0)+_0x58bc3a(0x29b)+_0x908fac(0xa7e),'UOFEA':function(_0x481c31,_0x52d690){return _0x481c31(_0x52d690);},'kQlxg':_0x21bbc1(0xb6a),'KRoQU':_0x908fac(0xd37)+'>','oSRxq':function(_0x4b49bb,_0xa5f9f0){return _0x4b49bb!==_0xa5f9f0;},'tWEOr':_0x908fac(0x6f1),'JNxSn':_0x21bbc1(0x75c),'bOgtR':_0x13d7d5(0x457)+':','tMzhe':function(_0x30e885,_0x55cae0){return _0x30e885(_0x55cae0);},'gSnFs':function(_0x3b4cbe,_0x530a91,_0x492fd8){return _0x3b4cbe(_0x530a91,_0x492fd8);},'nZCQt':_0x58bc3a(0x7eb)+_0x908fac(0x5f0),'cPFbp':_0x908fac(0x3ad),'gDsZa':_0x469854(0x4b1),'bcrth':_0x58bc3a(0x9fb),'VCtjs':function(_0x518b2a,_0x2a503c){return _0x518b2a===_0x2a503c;},'WRXtF':_0x13d7d5(0x28f),'MYCxb':_0x21bbc1(0x411)+_0x13d7d5(0xcf9),'dqwEJ':function(_0x1ad2a7,_0x2b9ff4){return _0x1ad2a7==_0x2b9ff4;},'xMHav':_0x58bc3a(0x22e)+']','ZJlHq':_0x908fac(0x67b),'EiVpg':_0x58bc3a(0x8b4),'WepiI':_0x58bc3a(0xc26)+_0x13d7d5(0xbf9),'LdRxF':_0x13d7d5(0x6d6),'wwKjG':_0x21bbc1(0x411)+_0x13d7d5(0xafc)+'t','vmhck':_0x21bbc1(0x600)+_0x908fac(0x532),'HebpU':_0x21bbc1(0xa39),'XFTrh':_0x13d7d5(0x695),'TcSbj':_0x58bc3a(0x6d1),'sCHyV':_0x908fac(0x622)+'es','Ryofx':function(_0x51b0d0,_0x4412e3){return _0x51b0d0===_0x4412e3;},'oduPe':_0x469854(0x38d),'mUDUX':_0x58bc3a(0xb82),'GoOyy':_0x908fac(0x425),'UtUyj':_0x469854(0xad0),'BLFyJ':_0x21bbc1(0x325),'JqBPb':_0x13d7d5(0x218)+'pt','ZGWdV':_0x908fac(0x7bd)+_0x13d7d5(0x794)+_0x21bbc1(0xd55)+_0x908fac(0x8e4)+_0x469854(0xc46),'kNPdp':_0x13d7d5(0x7cc)+_0x469854(0x5a0)+'l','kuAgU':_0x469854(0x7cc)+_0x908fac(0x4b0),'CQMEH':_0x58bc3a(0x4b0),'qyHDT':_0x13d7d5(0x7cc)+_0x13d7d5(0x961)+_0x58bc3a(0x7c3)+_0x21bbc1(0x560)+_0x58bc3a(0x7dd)+_0x908fac(0x75b)+_0x58bc3a(0xde1)+_0x21bbc1(0x259)+_0x469854(0xcbd)+_0x469854(0xc3b)+_0x469854(0x4db)+_0x58bc3a(0xc59)+_0x21bbc1(0x221)+_0x58bc3a(0x864)+_0x469854(0x7d5)+_0x908fac(0x9a2)+_0x21bbc1(0x688),'NgcEK':_0x13d7d5(0xcbc),'esZYh':_0x908fac(0x954),'QFGga':_0x58bc3a(0x8b1),'FjSMu':_0x908fac(0x427),'aFVKk':_0x58bc3a(0x7b7),'tuHyY':_0x58bc3a(0x99b),'hQDGQ':function(_0x3fae44,_0x3bc494){return _0x3fae44(_0x3bc494);},'LQQAZ':function(_0x2cbfdf,_0x292d2d){return _0x2cbfdf!==_0x292d2d;},'sRvxl':_0x908fac(0xb14),'vacci':function(_0x4058b4,_0x5233b5){return _0x4058b4<_0x5233b5;},'FRieW':function(_0x2a27b1,_0x353035){return _0x2a27b1+_0x353035;},'HWvWt':function(_0x532b9b,_0x114a1c){return _0x532b9b+_0x114a1c;},'Jcwxh':function(_0x1b215b,_0x3e78e2){return _0x1b215b+_0x3e78e2;},'FRvOP':_0x13d7d5(0x544)+'\x20','LNwVG':_0x908fac(0x9ec)+_0x908fac(0xacc)+_0x58bc3a(0xbeb)+_0x21bbc1(0x665)+_0x469854(0xc6d)+_0x908fac(0x535)+_0x13d7d5(0xb18)+_0x13d7d5(0x8b6)+_0x58bc3a(0xd3a)+_0x21bbc1(0x6f9)+_0x908fac(0x53f)+_0x908fac(0x47c)+_0x13d7d5(0xa3f)+_0x908fac(0x9c0)+'果:','DkPZx':_0x58bc3a(0x879)+'m','LkksQ':_0x21bbc1(0x9ce)+_0x469854(0x9d8)+_0x13d7d5(0xb1d)+_0x21bbc1(0x780)+_0x58bc3a(0xc87)+_0x58bc3a(0x934)+_0x13d7d5(0xd49)+_0x469854(0x60c)+_0x21bbc1(0x373)+_0x21bbc1(0x996)+_0x908fac(0x2ca)+_0x58bc3a(0xba6)+_0x469854(0xcdb)+_0x21bbc1(0x3a4)+_0x13d7d5(0xb34)+_0x58bc3a(0xb60)+_0x908fac(0xdb7),'MTOxD':_0x13d7d5(0x46f)+'\x0a','Libky':function(_0x18858d,_0x198962){return _0x18858d+_0x198962;},'ZYoyY':_0x21bbc1(0xde7)+_0x13d7d5(0xcd3),'UWPLC':_0x58bc3a(0x7b5),'YwyYa':function(_0x5e13da,_0x4830c1){return _0x5e13da(_0x4830c1);},'aQERb':function(_0x227607,_0x8e2da1,_0x38e163){return _0x227607(_0x8e2da1,_0x38e163);},'hWNpA':function(_0x3de5fc,_0x209549){return _0x3de5fc(_0x209549);},'HPyEN':function(_0x1c67ac,_0x1c8fe8){return _0x1c67ac+_0x1c8fe8;},'uLnFc':function(_0x10a6f3,_0x58ca47,_0xd56bd9){return _0x10a6f3(_0x58ca47,_0xd56bd9);},'aFTxs':_0x21bbc1(0x7cc)+_0x13d7d5(0x961)+_0x908fac(0x7c3)+_0x13d7d5(0x800)+_0x21bbc1(0x639)+_0x21bbc1(0x976),'yLqRH':function(_0x5a2e2f,_0x2e3dae){return _0x5a2e2f!=_0x2e3dae;},'YWTyV':function(_0x52e4a4,_0x538433){return _0x52e4a4===_0x538433;},'iYzbX':_0x469854(0x3f2),'umyJz':_0x908fac(0x29d),'ytrGk':function(_0x845f28,_0x48f554){return _0x845f28(_0x48f554);},'EqKod':_0x469854(0xcec)+_0x13d7d5(0xbe8)+'结束','Oosfv':_0x58bc3a(0x411),'vEXcO':function(_0xfac77,_0x1cbe15){return _0xfac77>_0x1cbe15;},'mSSSf':function(_0xe525c9,_0x529606){return _0xe525c9+_0x529606;},'mWnZT':_0x21bbc1(0xce6),'GdbAQ':_0x469854(0x389)+'\x0a','qOUZq':_0x21bbc1(0x5aa),'jCDYm':function(_0x42c7ff){return _0x42c7ff();},'KwfSf':function(_0x46af3d,_0x42e613,_0x4349ad){return _0x46af3d(_0x42e613,_0x4349ad);},'igzAk':_0x13d7d5(0x7cc)+_0x21bbc1(0x961)+_0x13d7d5(0x7c3)+_0x58bc3a(0xd0e)+_0x908fac(0xb4f)+'q=','BjBGd':function(_0x38d768,_0xdabc53){return _0x38d768(_0xdabc53);},'VLgzS':_0x58bc3a(0x84d)+_0x21bbc1(0xcf3)+_0x58bc3a(0xc49)+_0x21bbc1(0x34e)+_0x21bbc1(0x62a)+_0x469854(0x8d5)+_0x58bc3a(0x583)+_0x13d7d5(0x5fb)+_0x13d7d5(0x29c)+_0x21bbc1(0xb08)+_0x469854(0x4f1)+_0x58bc3a(0xd0c)+_0x13d7d5(0x29f)+_0x13d7d5(0x967)+'n'};if(_0x27e454[_0x908fac(0xbc9)](lock_chat,0x20db*-0x1+0x3b*-0x74+-0x3*-0x13dd)){if(_0x27e454[_0x908fac(0x3b3)](_0x27e454[_0x21bbc1(0xbef)],_0x27e454[_0x21bbc1(0x52a)]))return _0x27e454[_0x21bbc1(0x3d6)](_0x27e454[_0x21bbc1(0x408)](_0x4f0df6,_0x27e454[_0x469854(0x554)](_0x27e454[_0x21bbc1(0x554)](_0x10837f,'\x20'),_0x31b5e1),_0x1d7651),_0x27e454[_0x13d7d5(0x408)](_0x1510fb,_0x27e454[_0x13d7d5(0x554)](_0x27e454[_0x58bc3a(0x554)](_0x27a7c9,'\x20'),_0x528707),_0x485298))?-(-0xd2b+-0x474+0xbc*0x18):0x4d*-0x3e+-0x12e0+0x2587;else{_0x27e454[_0x21bbc1(0x6f8)](alert,_0x27e454[_0x58bc3a(0xcc6)]);return;}}lock_chat=0x8*-0x4f+0x22a2*0x1+0x2029*-0x1,knowledge=document[_0x908fac(0xc9f)+_0x13d7d5(0x3e8)+_0x908fac(0x61d)](_0x27e454[_0x21bbc1(0x939)])[_0x908fac(0xd8a)+_0x908fac(0x8cb)][_0x21bbc1(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x908fac(0x785)+'ce'](/<hr.*/gs,'')[_0x908fac(0x785)+'ce'](/<[^>]+>/g,'')[_0x13d7d5(0x785)+'ce'](/\n\n/g,'\x0a');if(_0x27e454[_0x21bbc1(0x718)](knowledge[_0x908fac(0x830)+'h'],0x1d52*-0x1+-0x1fa5+0x3e87))knowledge[_0x908fac(0xc25)](0x13*-0x3a+0x1cf8+0x171a*-0x1);knowledge+=_0x27e454[_0x21bbc1(0x607)](_0x27e454[_0x469854(0x8f3)](_0x27e454[_0x21bbc1(0x8a2)],original_search_query),_0x27e454[_0x908fac(0xc50)]);let _0x123b46=document[_0x908fac(0xc9f)+_0x58bc3a(0x3e8)+_0x908fac(0x61d)](_0x27e454[_0x58bc3a(0x26d)])[_0x469854(0xac3)];if(_0x598ae6){if(_0x27e454[_0x908fac(0xb39)](_0x27e454[_0x21bbc1(0x9b6)],_0x27e454[_0x13d7d5(0x9b6)])){const _0xda3f10=_0x1f28b9[_0x908fac(0xb9d)](_0x1bf620,arguments);return _0x1d0947=null,_0xda3f10;}else _0x123b46=_0x598ae6[_0x908fac(0x435)+_0x469854(0xcc1)+'t'],_0x598ae6[_0x908fac(0x83e)+'e'](),_0x27e454[_0x908fac(0x223)](chatmore);}if(_0x27e454[_0x469854(0xcc3)](_0x123b46[_0x58bc3a(0x830)+'h'],0xad7*0x3+0x1467*0x1+-0x34ec)||_0x27e454[_0x469854(0x718)](_0x123b46[_0x469854(0x830)+'h'],-0x2*0x76f+-0x2*-0xbcb+-0x82c))return;_0x27e454[_0x13d7d5(0xa10)](fetchRetry,_0x27e454[_0x13d7d5(0x629)](_0x27e454[_0x21bbc1(0x607)](_0x27e454[_0x908fac(0xb53)],_0x27e454[_0x13d7d5(0x2b5)](encodeURIComponent,_0x123b46)),_0x27e454[_0x469854(0xa83)]),0x38a+0x20d0+-0x2457)[_0x58bc3a(0x56c)](_0x243b78=>_0x243b78[_0x13d7d5(0x518)]())[_0x908fac(0x56c)](_0x5409c7=>{const _0x4ec001=_0x469854,_0x54d673=_0x58bc3a,_0x4e37cc=_0x469854,_0x56461a=_0x469854,_0x4196f1=_0x908fac,_0x44a369={'nxUyq':_0x27e454[_0x4ec001(0x95c)],'hNkQc':function(_0x27f134,_0x1d39b0){const _0x4bf2bd=_0x4ec001;return _0x27e454[_0x4bf2bd(0xc69)](_0x27f134,_0x1d39b0);},'FesMt':function(_0x4c9c81,_0x4e5331,_0x242d0a){const _0xc7b9f2=_0x4ec001;return _0x27e454[_0xc7b9f2(0x777)](_0x4c9c81,_0x4e5331,_0x242d0a);},'aQcdO':_0x27e454[_0x54d673(0xade)],'SoZaL':_0x27e454[_0x4e37cc(0xce4)],'ikVUp':function(_0x5edca8,_0x3aa3d0){const _0x26a70b=_0x54d673;return _0x27e454[_0x26a70b(0x683)](_0x5edca8,_0x3aa3d0);},'zVohs':_0x27e454[_0x54d673(0x242)],'tQIDW':_0x27e454[_0x4e37cc(0x6fc)],'HplNX':function(_0xe30345,_0x12eaaf){const _0x28f58d=_0x56461a;return _0x27e454[_0x28f58d(0x632)](_0xe30345,_0x12eaaf);},'ouTot':_0x27e454[_0x56461a(0x759)],'QhucP':_0x27e454[_0x4ec001(0xb0f)],'pJsGk':function(_0x40280d,_0x5ccdcc){const _0x54ffea=_0x56461a;return _0x27e454[_0x54ffea(0x3d6)](_0x40280d,_0x5ccdcc);},'vIvEN':function(_0x58baae,_0x4f7c7f){const _0x3a3130=_0x4196f1;return _0x27e454[_0x3a3130(0xcc3)](_0x58baae,_0x4f7c7f);},'YMtVt':_0x27e454[_0x56461a(0xa17)],'MtQXe':_0x27e454[_0x54d673(0x76f)],'pOHjW':_0x27e454[_0x4ec001(0x6e3)],'vVRww':_0x27e454[_0x54d673(0x281)],'gduEt':_0x27e454[_0x56461a(0x20d)],'UBOnT':_0x27e454[_0x4e37cc(0x26d)],'WPVmN':_0x27e454[_0x4196f1(0x7ea)],'LzhAU':_0x27e454[_0x4e37cc(0xa5d)],'IWbeN':_0x27e454[_0x54d673(0x6b7)],'tBSjx':_0x27e454[_0x4e37cc(0x787)],'yvMAS':function(_0xa51ab4,_0x41ebf6){const _0x5625ef=_0x4e37cc;return _0x27e454[_0x5625ef(0x554)](_0xa51ab4,_0x41ebf6);},'FeVlH':_0x27e454[_0x4e37cc(0xd87)],'oxZAj':function(_0x2653d,_0x100f07){const _0x252dad=_0x4ec001;return _0x27e454[_0x252dad(0x338)](_0x2653d,_0x100f07);},'KFtPh':_0x27e454[_0x4196f1(0x926)],'lFqKM':_0x27e454[_0x4196f1(0x4b3)],'PJMZL':function(_0x4742b3,_0xfb009b){const _0x4d843c=_0x4196f1;return _0x27e454[_0x4d843c(0x632)](_0x4742b3,_0xfb009b);},'MQmSR':_0x27e454[_0x4ec001(0xac6)],'haLJZ':_0x27e454[_0x4e37cc(0xb64)],'sqocu':_0x27e454[_0x56461a(0xd88)],'GViGK':_0x27e454[_0x54d673(0x45c)],'bPYIS':function(_0x422a83,_0x37fab4){const _0x3d1b46=_0x4ec001;return _0x27e454[_0x3d1b46(0x9cf)](_0x422a83,_0x37fab4);},'itwHX':_0x27e454[_0x4e37cc(0x634)],'sJwMN':_0x27e454[_0x4ec001(0x4ce)],'nexkx':_0x27e454[_0x4ec001(0x512)],'vuQqp':_0x27e454[_0x4e37cc(0xd1f)],'rOZrH':_0x27e454[_0x54d673(0xde5)],'jwCiA':_0x27e454[_0x4ec001(0x40c)],'bNWOb':_0x27e454[_0x56461a(0xd70)],'WewIl':_0x27e454[_0x4196f1(0x2c9)],'iZqHo':_0x27e454[_0x54d673(0x9ab)],'VvPwX':_0x27e454[_0x4ec001(0xc19)],'tYvbB':_0x27e454[_0x54d673(0xced)]};if(_0x27e454[_0x54d673(0x338)](_0x27e454[_0x4ec001(0x82a)],_0x27e454[_0x54d673(0xd9f)]))return-0x25b9+-0x170e+-0xa*-0x614;else{prompt=JSON[_0x56461a(0x3d1)](_0x27e454[_0x4e37cc(0x473)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x4ec001(0xb61)](_0x5409c7[_0x54d673(0x771)+_0x4e37cc(0xaba)][-0xbc7+-0x21e5+-0x4*-0xb6b][_0x4196f1(0x3db)+'nt'])[-0x3*0x729+0x21fb+-0xc7f])),prompt[_0x54d673(0xc6c)][_0x4e37cc(0x3a9)+_0x56461a(0x3f6)+_0x4196f1(0x386)+'y']=0x16a4+0x1efc+-0x359f,prompt[_0x54d673(0xc6c)][_0x4196f1(0x627)+_0x4196f1(0xd60)+'e']=0x2f6+-0x189d+0x15a7+0.9;for(st in prompt[_0x4e37cc(0xc80)]){if(_0x27e454[_0x56461a(0xb39)](_0x27e454[_0x4196f1(0x8ee)],_0x27e454[_0x54d673(0x8ee)]))_0x2fa391[_0x4e37cc(0xa18)](_0x44a369[_0x4ec001(0x77e)],_0x2e4fa1);else{if(_0x27e454[_0x4196f1(0x6ec)](_0x27e454[_0x56461a(0x579)](_0x27e454[_0x4ec001(0x6f6)](_0x27e454[_0x4ec001(0x6ab)](_0x27e454[_0x4196f1(0x554)](_0x27e454[_0x4196f1(0x8f3)](knowledge,prompt[_0x4e37cc(0xc80)][st]),'\x0a'),_0x27e454[_0x4e37cc(0x6e5)]),_0x123b46),_0x27e454[_0x56461a(0xdb9)])[_0x4e37cc(0x830)+'h'],0x3*-0x612+-0x198*0x17+0x3cba*0x1))knowledge+=_0x27e454[_0x4e37cc(0x6ab)](prompt[_0x4196f1(0xc80)][st],'\x0a');}}const _0xb37bd7={};_0xb37bd7[_0x4ec001(0xcfb)]=_0x27e454[_0x54d673(0xa2b)],_0xb37bd7[_0x4196f1(0x3db)+'nt']=_0x27e454[_0x4196f1(0x986)],prompt[_0x4ec001(0xc6c)][_0x56461a(0xa90)+_0x4e37cc(0x6b3)]=[_0xb37bd7,{'role':_0x27e454[_0x54d673(0x7ea)],'content':_0x27e454[_0x4e37cc(0x8f3)](_0x27e454[_0x4e37cc(0xca8)],knowledge)},{'role':_0x27e454[_0x56461a(0x20d)],'content':_0x27e454[_0x4e37cc(0xd44)](_0x27e454[_0x4196f1(0x6ab)](_0x27e454[_0x56461a(0x525)],_0x123b46),'')}],optionsweb={'method':_0x27e454[_0x4196f1(0x8a9)],'headers':headers,'body':_0x27e454[_0x54d673(0x486)](b64EncodeUnicode,JSON[_0x54d673(0xd73)+_0x4196f1(0xcb0)](prompt[_0x4e37cc(0xc6c)]))},document[_0x54d673(0xc9f)+_0x4ec001(0x3e8)+_0x4196f1(0x61d)](_0x27e454[_0x4196f1(0x45c)])[_0x56461a(0xd8a)+_0x56461a(0x8cb)]='',_0x27e454[_0x54d673(0x5d4)](markdownToHtml,_0x27e454[_0x4196f1(0xb5d)](beautify,_0x123b46),document[_0x54d673(0xc9f)+_0x4196f1(0x3e8)+_0x56461a(0x61d)](_0x27e454[_0x56461a(0x45c)])),chatTemp='',text_offset=-(-0x8dd*0x1+-0x10*-0x224+0x2*-0xcb1),prev_chat=document[_0x4e37cc(0x3f7)+_0x4ec001(0x401)+_0x56461a(0xd95)](_0x27e454[_0x4ec001(0x634)])[_0x56461a(0xd8a)+_0x4196f1(0x8cb)],prev_chat=_0x27e454[_0x56461a(0x8f3)](_0x27e454[_0x4196f1(0x953)](_0x27e454[_0x54d673(0x579)](prev_chat,_0x27e454[_0x56461a(0x5f6)]),document[_0x4e37cc(0xc9f)+_0x54d673(0x3e8)+_0x4196f1(0x61d)](_0x27e454[_0x56461a(0x45c)])[_0x54d673(0xd8a)+_0x54d673(0x8cb)]),_0x27e454[_0x56461a(0x512)]),_0x27e454[_0x56461a(0x439)](fetch,_0x27e454[_0x54d673(0x9b0)],optionsweb)[_0x56461a(0x56c)](_0x3e4f08=>{const _0x5d078e=_0x54d673,_0xc69b85=_0x56461a,_0x41403d=_0x56461a,_0x1c8aba=_0x4ec001,_0x4193ad=_0x4e37cc,_0x458316={'thTGK':function(_0x2db21e,_0x2af35c){const _0x433467=_0x4b15;return _0x44a369[_0x433467(0xbfa)](_0x2db21e,_0x2af35c);},'oBZfE':function(_0xfee3a0,_0x3d885f,_0x24f5f8){const _0x3e5e2e=_0x4b15;return _0x44a369[_0x3e5e2e(0x9ad)](_0xfee3a0,_0x3d885f,_0x24f5f8);},'UVHLr':_0x44a369[_0x5d078e(0x2d9)],'xwEGY':_0x44a369[_0xc69b85(0xc8b)],'GAtDB':function(_0x5e3eb6,_0x432623){const _0x1e0595=_0xc69b85;return _0x44a369[_0x1e0595(0xd20)](_0x5e3eb6,_0x432623);},'JGIkp':_0x44a369[_0x5d078e(0x5a8)],'VjCjs':_0x44a369[_0x41403d(0xa49)],'HDgmu':function(_0x10faf7,_0x555124){const _0x1907d1=_0x1c8aba;return _0x44a369[_0x1907d1(0x4e4)](_0x10faf7,_0x555124);},'eFRTJ':_0x44a369[_0x1c8aba(0xc40)],'lLfyG':_0x44a369[_0x41403d(0xa5e)],'YQBHZ':function(_0x3d1552,_0x263bf3){const _0x39cd51=_0x5d078e;return _0x44a369[_0x39cd51(0x31f)](_0x3d1552,_0x263bf3);},'UVQhJ':function(_0x3bb7ce,_0x4b1c4a){const _0x5d3631=_0x5d078e;return _0x44a369[_0x5d3631(0x853)](_0x3bb7ce,_0x4b1c4a);},'YZBZQ':_0x44a369[_0x41403d(0xc36)],'RHBKa':_0x44a369[_0x41403d(0x755)],'UiJcp':_0x44a369[_0xc69b85(0x5a6)],'tapzb':_0x44a369[_0xc69b85(0x2bc)],'fhxAQ':_0x44a369[_0x41403d(0x78f)],'lxoCr':_0x44a369[_0xc69b85(0x39b)],'NaWQS':_0x44a369[_0x41403d(0xd81)],'hmGmU':function(_0x4a340b,_0x54ede0){const _0x3497a9=_0x5d078e;return _0x44a369[_0x3497a9(0xd20)](_0x4a340b,_0x54ede0);},'pRpoA':_0x44a369[_0x4193ad(0x8f2)],'kmMWb':_0x44a369[_0x1c8aba(0x311)],'lqDbt':_0x44a369[_0x1c8aba(0x9ac)],'WgXvp':function(_0x4c373f,_0x5f19c3){const _0x5ba8a6=_0x4193ad;return _0x44a369[_0x5ba8a6(0xd63)](_0x4c373f,_0x5f19c3);},'QheEn':_0x44a369[_0x5d078e(0x615)],'OJDAg':function(_0x460865,_0xdf748e){const _0x4fd073=_0x41403d;return _0x44a369[_0x4fd073(0xb3c)](_0x460865,_0xdf748e);},'gFgOJ':_0x44a369[_0x5d078e(0x4d5)],'nxpLG':_0x44a369[_0x1c8aba(0x73e)],'ccWur':function(_0x4c5a8,_0x3e8521){const _0x138583=_0x1c8aba;return _0x44a369[_0x138583(0x70b)](_0x4c5a8,_0x3e8521);},'fEZTH':_0x44a369[_0xc69b85(0x476)],'zHOJd':_0x44a369[_0x41403d(0x3f0)],'oXVhT':_0x44a369[_0x5d078e(0x56e)],'VEXvq':_0x44a369[_0xc69b85(0x1ef)],'IeHXF':function(_0x3ed927,_0x352f0b){const _0x24b9c0=_0x1c8aba;return _0x44a369[_0x24b9c0(0x896)](_0x3ed927,_0x352f0b);},'sTLrn':_0x44a369[_0x4193ad(0x2f3)],'mrKqd':function(_0xa47c9b,_0xcf2bb6){const _0x539b5f=_0x5d078e;return _0x44a369[_0x539b5f(0xd63)](_0xa47c9b,_0xcf2bb6);},'jUdER':_0x44a369[_0x1c8aba(0x2ba)],'BRBeI':_0x44a369[_0x41403d(0x7a5)],'GIMNg':function(_0x6559ba,_0x27f24a){const _0x5d0d5f=_0x41403d;return _0x44a369[_0x5d0d5f(0xd63)](_0x6559ba,_0x27f24a);},'aVxgb':_0x44a369[_0x4193ad(0x7e0)],'dfAuz':_0x44a369[_0x5d078e(0x2e5)],'lMedx':function(_0x3786a5,_0x250b88){const _0x52b62f=_0x4193ad;return _0x44a369[_0x52b62f(0x896)](_0x3786a5,_0x250b88);},'fWZGp':function(_0x5bff07,_0x298d83){const _0x2fb137=_0x1c8aba;return _0x44a369[_0x2fb137(0xd63)](_0x5bff07,_0x298d83);},'BXjkf':_0x44a369[_0x5d078e(0x20c)],'hyRnH':function(_0x1df799,_0x1c7f50){const _0x52828e=_0x41403d;return _0x44a369[_0x52828e(0xd63)](_0x1df799,_0x1c7f50);},'BHuYx':_0x44a369[_0x41403d(0x7f9)],'hRdLS':function(_0x10994e,_0x5b3840){const _0x2ec8ea=_0x41403d;return _0x44a369[_0x2ec8ea(0xd20)](_0x10994e,_0x5b3840);},'IiIqv':_0x44a369[_0x5d078e(0xab1)],'IZTBB':_0x44a369[_0xc69b85(0x4b9)]};if(_0x44a369[_0x1c8aba(0x4e4)](_0x44a369[_0x41403d(0xb52)],_0x44a369[_0x5d078e(0x691)]))_0x59afb6+='';else{const _0x3f5a9c=_0x3e4f08[_0xc69b85(0x573)][_0x4193ad(0x9a1)+_0xc69b85(0x7c2)]();let _0x119f2a='',_0x7c1017='';_0x3f5a9c[_0x5d078e(0xde0)]()[_0x41403d(0x56c)](function _0xa08bd6({done:_0x425b6e,value:_0x11ee2a}){const _0x53af32=_0x41403d,_0x5293c8=_0x5d078e,_0x31d194=_0x4193ad,_0x4583f3=_0x1c8aba,_0x35692a=_0x1c8aba,_0xf6307d={'JzWwn':function(_0x50ba09,_0x3a098f){const _0x7f3b1e=_0x4b15;return _0x458316[_0x7f3b1e(0x5b8)](_0x50ba09,_0x3a098f);},'DBNTG':_0x458316[_0x53af32(0x38f)],'AjGpm':_0x458316[_0x5293c8(0x4ab)],'iBDGT':function(_0x5dca63,_0x5c9736){const _0x32f833=_0x5293c8;return _0x458316[_0x32f833(0x238)](_0x5dca63,_0x5c9736);},'fDwhL':_0x458316[_0x53af32(0x2d4)],'dAGwX':function(_0x4ee239,_0x2b00d1){const _0x2dd519=_0x31d194;return _0x458316[_0x2dd519(0xc57)](_0x4ee239,_0x2b00d1);},'GGpVN':function(_0x1f1620,_0x2d4d64){const _0x1ee07a=_0x53af32;return _0x458316[_0x1ee07a(0x224)](_0x1f1620,_0x2d4d64);},'kcJSC':_0x458316[_0x5293c8(0x649)],'Zyzim':function(_0x1afea2,_0x5bf0ab){const _0x3f76d7=_0x5293c8;return _0x458316[_0x3f76d7(0x7b4)](_0x1afea2,_0x5bf0ab);},'EjvMt':_0x458316[_0x31d194(0x33d)]};if(_0x458316[_0x31d194(0x7a3)](_0x458316[_0x31d194(0x88b)],_0x458316[_0x35692a(0x88b)]))_0x43674a[_0x4583f3(0xcda)](_0x11975b);else{if(_0x425b6e)return;const _0x53c3fa=new TextDecoder(_0x458316[_0x5293c8(0x909)])[_0x4583f3(0x422)+'e'](_0x11ee2a);return _0x53c3fa[_0x31d194(0x44c)]()[_0x35692a(0x308)]('\x0a')[_0x35692a(0x5b5)+'ch'](function(_0x44045d){const _0x3a4cb9=_0x5293c8,_0x4b91a1=_0x53af32,_0x2a358b=_0x35692a,_0x489c11=_0x31d194,_0x59c241=_0x5293c8,_0x47129d={'PbQTH':function(_0x383a98,_0x68a2ee){const _0x3276d8=_0x4b15;return _0x458316[_0x3276d8(0x238)](_0x383a98,_0x68a2ee);},'ougco':function(_0xd6202c,_0x2faa3a,_0xb4bf27){const _0xc1d7e5=_0x4b15;return _0x458316[_0xc1d7e5(0x855)](_0xd6202c,_0x2faa3a,_0xb4bf27);},'iqTry':_0x458316[_0x3a4cb9(0xc8e)],'DrsEr':_0x458316[_0x4b91a1(0x5ec)]};if(_0x458316[_0x2a358b(0xdc4)](_0x458316[_0x489c11(0xd78)],_0x458316[_0x2a358b(0x987)])){try{_0x458316[_0x489c11(0x3c2)](_0x458316[_0x3a4cb9(0x7c4)],_0x458316[_0x59c241(0x7c4)])?document[_0x59c241(0xc9f)+_0x489c11(0x3e8)+_0x4b91a1(0x61d)](_0x458316[_0x4b91a1(0x526)])[_0x59c241(0x5a4)+_0x2a358b(0x60a)]=document[_0x59c241(0xc9f)+_0x59c241(0x3e8)+_0x4b91a1(0x61d)](_0x458316[_0x489c11(0x526)])[_0x489c11(0x5a4)+_0x59c241(0x4c4)+'ht']:_0x12ba75+=_0x3363c3;}catch(_0x511bbc){}_0x119f2a='';if(_0x458316[_0x2a358b(0x772)](_0x44045d[_0x3a4cb9(0x830)+'h'],-0x11*0x15+-0x3*0x43f+0xe28))_0x119f2a=_0x44045d[_0x489c11(0xc25)](0x23d1+-0x1a44+0x3*-0x32d);if(_0x458316[_0x3a4cb9(0xa0c)](_0x119f2a,_0x458316[_0x489c11(0xa88)])){if(_0x458316[_0x2a358b(0xdc4)](_0x458316[_0x59c241(0x3d7)],_0x458316[_0x4b91a1(0x8a5)])){const _0x583eeb=_0x458316[_0x489c11(0x260)][_0x4b91a1(0x308)]('|');let _0x5c8c77=0x2262+-0x4*-0x7f6+-0x423a;while(!![]){switch(_0x583eeb[_0x5c8c77++]){case'0':return;case'1':const _0x378440={};_0x378440[_0x4b91a1(0xcfb)]=_0x458316[_0x4b91a1(0x598)],_0x378440[_0x59c241(0x3db)+'nt']=_0x123b46,word_last[_0x2a358b(0xd53)](_0x378440);continue;case'2':document[_0x2a358b(0xc9f)+_0x4b91a1(0x3e8)+_0x4b91a1(0x61d)](_0x458316[_0x4b91a1(0xadc)])[_0x489c11(0xac3)]='';continue;case'3':const _0x16a928={};_0x16a928[_0x59c241(0xcfb)]=_0x458316[_0x489c11(0xbc6)],_0x16a928[_0x3a4cb9(0x3db)+'nt']=chatTemp,word_last[_0x3a4cb9(0xd53)](_0x16a928);continue;case'4':lock_chat=0x6*-0x3e6+0x6f7+0x5*0x349;continue;}break;}}else _0x1d89c6+=_0x587fd4[0x232*-0x2+0x1a*-0xdf+-0x1b0a*-0x1][_0x4b91a1(0x6a1)][_0x2a358b(0x3db)+'nt'];}let _0x27d327;try{if(_0x458316[_0x4b91a1(0xbd3)](_0x458316[_0x3a4cb9(0xd66)],_0x458316[_0x4b91a1(0xa1c)]))try{_0x458316[_0x489c11(0xbd3)](_0x458316[_0x489c11(0x705)],_0x458316[_0x59c241(0x705)])?(_0xecf8a4=_0x29e708[_0x2a358b(0x3d1)](_0xf6307d[_0x59c241(0x48f)](_0x74ad26,_0x306b9a))[_0xf6307d[_0x489c11(0xa06)]],_0x3ad519=''):(_0x27d327=JSON[_0x3a4cb9(0x3d1)](_0x458316[_0x2a358b(0x932)](_0x7c1017,_0x119f2a))[_0x458316[_0x2a358b(0x38f)]],_0x7c1017='');}catch(_0x3b8251){if(_0x458316[_0x3a4cb9(0xabe)](_0x458316[_0x59c241(0x949)],_0x458316[_0x2a358b(0xdb2)])){if(_0x331beb)return _0x3a8119;else jCSafy[_0x59c241(0xde6)](_0x508aeb,0x26f9*0x1+-0x246c+-0x28d);}else _0x27d327=JSON[_0x59c241(0x3d1)](_0x119f2a)[_0x458316[_0x59c241(0x38f)]],_0x7c1017='';}else{const _0x401e27=_0x48a7b8?function(){const _0x209533=_0x2a358b;if(_0xf0e658){const _0x13df90=_0x54ec1d[_0x209533(0xb9d)](_0x275905,arguments);return _0x59c0a3=null,_0x13df90;}}:function(){};return _0x409ec6=![],_0x401e27;}}catch(_0x1ef13){_0x458316[_0x489c11(0x768)](_0x458316[_0x4b91a1(0xa30)],_0x458316[_0x489c11(0xa30)])?_0x7c1017+=_0x119f2a:_0x5f413a+=_0x337be4;}_0x27d327&&_0x458316[_0x4b91a1(0x772)](_0x27d327[_0x59c241(0x830)+'h'],-0x55f+-0xa7f+-0x1*-0xfde)&&_0x27d327[0x55+0x5d3+-0x628][_0x489c11(0x6a1)][_0x489c11(0x3db)+'nt']&&(_0x458316[_0x2a358b(0xbd3)](_0x458316[_0x489c11(0xcfe)],_0x458316[_0x3a4cb9(0x904)])?chatTemp+=_0x27d327[-0x2*-0x8e1+-0x9d3+-0x7ef][_0x4b91a1(0x6a1)][_0x59c241(0x3db)+'nt']:(_0x37143d=_0x52fef7[_0x4b91a1(0x785)+'ce'](_0xf6307d[_0x59c241(0x48f)](_0xf6307d[_0x489c11(0xd52)],_0xf6307d[_0x4b91a1(0x3d3)](_0x1b6e9c,_0x578c49)),_0x5be84c[_0x489c11(0xafd)+_0x59c241(0x6fa)][_0x4991b4]),_0x25aae1=_0x1bd990[_0x489c11(0x785)+'ce'](_0xf6307d[_0x489c11(0x48f)](_0xf6307d[_0x2a358b(0x9c3)],_0xf6307d[_0x2a358b(0x87f)](_0x3d9a35,_0x361e4c)),_0x398295[_0x4b91a1(0xafd)+_0x489c11(0x6fa)][_0x324260]),_0x3b2d85=_0x58e1ce[_0x489c11(0x785)+'ce'](_0xf6307d[_0x3a4cb9(0xd0b)](_0xf6307d[_0x2a358b(0xb47)],_0xf6307d[_0x4b91a1(0x3d3)](_0x4c5cf7,_0x2c7eb9)),_0x2523b4[_0x489c11(0xafd)+_0x2a358b(0x6fa)][_0x56cbb6]))),chatTemp=chatTemp[_0x489c11(0x785)+_0x2a358b(0x9b3)]('\x0a\x0a','\x0a')[_0x489c11(0x785)+_0x4b91a1(0x9b3)]('\x0a\x0a','\x0a'),document[_0x3a4cb9(0xc9f)+_0x2a358b(0x3e8)+_0x4b91a1(0x61d)](_0x458316[_0x489c11(0xb42)])[_0x4b91a1(0xd8a)+_0x489c11(0x8cb)]='',_0x458316[_0x4b91a1(0x855)](markdownToHtml,_0x458316[_0x4b91a1(0x994)](beautify,chatTemp),document[_0x2a358b(0xc9f)+_0x59c241(0x3e8)+_0x2a358b(0x61d)](_0x458316[_0x489c11(0xb42)])),document[_0x3a4cb9(0x3f7)+_0x59c241(0x401)+_0x2a358b(0xd95)](_0x458316[_0x59c241(0x790)])[_0x489c11(0xd8a)+_0x489c11(0x8cb)]=_0x458316[_0x2a358b(0x3d2)](_0x458316[_0x4b91a1(0x932)](_0x458316[_0x489c11(0x932)](prev_chat,_0x458316[_0x2a358b(0xc32)]),document[_0x59c241(0xc9f)+_0x59c241(0x3e8)+_0x4b91a1(0x61d)](_0x458316[_0x489c11(0xb42)])[_0x59c241(0xd8a)+_0x2a358b(0x8cb)]),_0x458316[_0x4b91a1(0xca4)]);}else{let _0x1eab05;_0xf6307d[_0x4b91a1(0x87f)](_0x1afd69,_0xf6307d[_0x3a4cb9(0x4c0)](_0xf6307d[_0x489c11(0x5ab)],_0x392539))[_0x59c241(0x56c)](_0x38911b=>_0x38911b[_0x3a4cb9(0x518)]())[_0x59c241(0x56c)](_0x536f1b=>{const _0x82eeef=_0x3a4cb9,_0xd883d4=_0x4b91a1,_0x2cf857=_0x4b91a1;_0x47129d[_0x82eeef(0xc20)](_0x478ba9,_0x12d456,_0x536f1b[_0x47129d[_0x82eeef(0x2ef)]][0x1*0x11c2+0x4*0x7f1+-0x3186][_0x47129d[_0x82eeef(0x506)]]);});return;}}),_0x3f5a9c[_0x4583f3(0xde0)]()[_0x4583f3(0x56c)](_0xa08bd6);}});}})[_0x4196f1(0x46c)](_0x32b107=>{const _0x3167ed=_0x4196f1,_0x125b73=_0x4e37cc,_0xfdf4a8=_0x56461a,_0x4ac0ee=_0x4196f1,_0x57a138=_0x4e37cc,_0x437a32={'TNWaS':_0x27e454[_0x3167ed(0x634)],'ZdQHT':function(_0x5514cf,_0xdb9775){const _0x40649d=_0x3167ed;return _0x27e454[_0x40649d(0x554)](_0x5514cf,_0xdb9775);},'QqZEs':function(_0x356005,_0x4cb8e9){const _0x4c4bac=_0x3167ed;return _0x27e454[_0x4c4bac(0x6ab)](_0x356005,_0x4cb8e9);},'fmxCs':function(_0x3a666b,_0x2468f3){const _0x52d91d=_0x3167ed;return _0x27e454[_0x52d91d(0x629)](_0x3a666b,_0x2468f3);},'Hnvcl':function(_0x16ff43,_0x25d42e){const _0x4d4cd4=_0x3167ed;return _0x27e454[_0x4d4cd4(0x8fd)](_0x16ff43,_0x25d42e);},'zzZDM':function(_0x27ff46,_0xefb844){const _0x342a02=_0x3167ed;return _0x27e454[_0x342a02(0x6ab)](_0x27ff46,_0xefb844);},'BEJvS':_0x27e454[_0x125b73(0x5f6)],'ppKQz':_0x27e454[_0x125b73(0x736)],'XCKeo':_0x27e454[_0x3167ed(0xc3c)],'bLrHG':function(_0x171137,_0x893db8){const _0xa73a0a=_0x125b73;return _0x27e454[_0xa73a0a(0x9cf)](_0x171137,_0x893db8);},'HanAL':_0x27e454[_0x4ac0ee(0x4fa)],'zpWbj':_0x27e454[_0xfdf4a8(0x512)]};_0x27e454[_0x57a138(0x683)](_0x27e454[_0xfdf4a8(0x3a6)],_0x27e454[_0x4ac0ee(0x931)])?console[_0x3167ed(0xa18)](_0x27e454[_0x4ac0ee(0x95c)],_0x32b107):_0x52d606[_0xfdf4a8(0x3f7)+_0x57a138(0x401)+_0x57a138(0xd95)](_0x437a32[_0x4ac0ee(0x58c)])[_0x57a138(0xd8a)+_0xfdf4a8(0x8cb)]=_0x437a32[_0x4ac0ee(0xb22)](_0x437a32[_0x3167ed(0xb22)](_0x437a32[_0xfdf4a8(0x5ae)](_0x437a32[_0x57a138(0x6fb)](_0x437a32[_0x3167ed(0xd17)](_0x437a32[_0x125b73(0x533)](_0x488989,_0x437a32[_0xfdf4a8(0x68d)]),_0x437a32[_0xfdf4a8(0x808)]),_0x437a32[_0x4ac0ee(0x36b)]),_0x437a32[_0x4ac0ee(0xd83)](_0x5b0cd7,_0x2770c6)),_0x437a32[_0xfdf4a8(0xb30)]),_0x437a32[_0x125b73(0xd69)]);});}});}function getContentLength(_0x4832bb){const _0xeabbba=_0x2239e4,_0x3ace8e=_0x380db8,_0x29d0c3=_0x2239e4,_0x3879aa=_0x380db8,_0x2639e9=_0x2628a6,_0xd6f70f={};_0xd6f70f[_0xeabbba(0x342)]=function(_0x34a7b7,_0x4c0916){return _0x34a7b7!==_0x4c0916;},_0xd6f70f[_0x3ace8e(0x5f2)]=_0x29d0c3(0x379);const _0x399ee8=_0xd6f70f;let _0x27ec87=0xcaf+0x1664+-0x2313;for(let _0x37aed0 of _0x4832bb){_0x399ee8[_0x29d0c3(0x342)](_0x399ee8[_0x3ace8e(0x5f2)],_0x399ee8[_0xeabbba(0x5f2)])?(_0x15bb7b[_0x2639e9(0xd53)]([_0xc7123f[_0x29d0c3(0x358)+'ge'],_0x2a1a1f,_0x57f01c,_0x510ddc]),_0x35ec86='',_0x3b275d=''):_0x27ec87+=_0x37aed0[_0xeabbba(0x3db)+'nt'][_0x2639e9(0x830)+'h'];}return _0x27ec87;}function trimArray(_0x50f29f,_0x4a7ae4){const _0x438810=_0x51b305,_0x1430bd=_0x380db8,_0x47649e=_0x372c3c,_0x37558a=_0x51b305,_0x5b73a4=_0x51b305,_0x176c85={'bnOIv':_0x438810(0xbe0),'ZLVvX':function(_0x13df50,_0x132a91){return _0x13df50>_0x132a91;},'oaDyu':function(_0x3d4db1,_0x5bea64){return _0x3d4db1(_0x5bea64);},'TmCbh':function(_0x451068,_0x44f590){return _0x451068===_0x44f590;},'XYAHD':_0x438810(0x296)};while(_0x176c85[_0x47649e(0xd76)](_0x176c85[_0x1430bd(0x8db)](getContentLength,_0x50f29f),_0x4a7ae4)){_0x176c85[_0x5b73a4(0x9e8)](_0x176c85[_0x47649e(0x22b)],_0x176c85[_0x5b73a4(0x22b)])?_0x50f29f[_0x37558a(0x990)]():_0x2ce30c=_0x176c85[_0x1430bd(0x717)];}}function send_modalchat(_0xb3a360,_0x1ae197){const _0x52f9d9=_0x372c3c,_0x1e7a16=_0x2239e4,_0x57de8b=_0x2239e4,_0x13bdc4=_0x2628a6,_0x354aec=_0x372c3c,_0x25ed30={'vkFCx':_0x52f9d9(0x622)+'es','DYnvS':function(_0x53750f,_0x42612d){return _0x53750f(_0x42612d);},'TkYsx':_0x52f9d9(0xc95)+_0x52f9d9(0x21b),'WtAWi':function(_0x49c05c,_0x2492ef){return _0x49c05c+_0x2492ef;},'nmvbS':function(_0x3f9125,_0x198bb7){return _0x3f9125!==_0x198bb7;},'wXwHk':_0x1e7a16(0x857),'zBYsP':function(_0x2248e2,_0x268b53){return _0x2248e2>_0x268b53;},'fnTUJ':function(_0x50812d,_0x30bf7e,_0x2b54db){return _0x50812d(_0x30bf7e,_0x2b54db);},'UseOs':function(_0x1a27d7,_0xed4061){return _0x1a27d7+_0xed4061;},'IiBIi':function(_0x335803,_0x37a140){return _0x335803+_0x37a140;},'ZbNvR':function(_0x428173,_0xb69dfd){return _0x428173!==_0xb69dfd;},'HVKkr':_0x354aec(0x6dc),'wuhhs':_0x354aec(0x733),'CzGLO':function(_0x36acc6,_0x39a2de){return _0x36acc6!==_0x39a2de;},'BxXTs':_0x1e7a16(0x7dc),'JyYcg':_0x13bdc4(0x81a),'eLPMu':function(_0x246a05,_0x5ed070){return _0x246a05+_0x5ed070;},'VtJyF':function(_0xf44414,_0x78d027){return _0xf44414>=_0x78d027;},'isVpS':_0x57de8b(0xb72)+_0x52f9d9(0xcb1)+_0x57de8b(0x655)+_0x13bdc4(0x27a)+_0x57de8b(0x96f)+_0x13bdc4(0x852)+_0x57de8b(0x833)+_0x354aec(0x77d)+_0x354aec(0x3e1)+_0x52f9d9(0x3bc)+_0x57de8b(0x38c)+_0x354aec(0x92f)+_0x13bdc4(0x4fe),'lRgYZ':function(_0x3414a8,_0x4c8d06){return _0x3414a8+_0x4c8d06;},'wKAxt':_0x1e7a16(0x7fc),'WYMBW':function(_0x30c8d9,_0x198395){return _0x30c8d9(_0x198395);},'YayhK':function(_0x34e9a8,_0x22eea0){return _0x34e9a8+_0x22eea0;},'hXGJN':_0x13bdc4(0x214)+_0x13bdc4(0x5f9)+'rl','fdTuC':function(_0x7f99f1,_0x52ea04){return _0x7f99f1(_0x52ea04);},'Qgzyz':function(_0x5714c8,_0x316c30){return _0x5714c8+_0x316c30;},'gXNYU':_0x57de8b(0x469)+_0x354aec(0x5f7)+_0x52f9d9(0x297),'sTWQs':function(_0x9f7271,_0x53926a){return _0x9f7271(_0x53926a);},'EImyM':_0x57de8b(0xd56)+_0x52f9d9(0x4b0),'tWksL':function(_0x341dd7,_0x50372c){return _0x341dd7(_0x50372c);},'QiqIQ':function(_0x29ee54,_0xacc1c5){return _0x29ee54(_0xacc1c5);},'rhnvs':function(_0x54e970,_0x1715fa){return _0x54e970+_0x1715fa;},'dGimN':_0x13bdc4(0x60e)+'rl','DnCoy':function(_0x310c8d,_0xfb8332){return _0x310c8d+_0xfb8332;},'xCFEZ':_0x57de8b(0x5ea)+_0x1e7a16(0x5f7)+_0x52f9d9(0x297),'usNlC':function(_0x13f920,_0x1ff174){return _0x13f920+_0x1ff174;},'dZmfw':_0x1e7a16(0xd56)+_0x57de8b(0x52f),'bAyQH':function(_0x44b50e,_0x1f9566){return _0x44b50e(_0x1f9566);},'kVJFD':_0x52f9d9(0x74c),'ZhqoK':function(_0xd4c065,_0x2c21f8){return _0xd4c065(_0x2c21f8);},'dZtCT':function(_0x466f87,_0x2fc25d){return _0x466f87+_0x2fc25d;},'lpKYF':_0x52f9d9(0x436),'CCVCL':_0x1e7a16(0xd56)+_0x52f9d9(0x7cc)+_0x1e7a16(0x5a0)+'l','yHGdQ':function(_0x46c1bf,_0x2d09af){return _0x46c1bf(_0x2d09af);},'DyNIU':function(_0x1213c2,_0x235738){return _0x1213c2(_0x235738);},'nIZcl':_0x1e7a16(0x960),'SZIOq':function(_0x17878f,_0x20cd62){return _0x17878f+_0x20cd62;},'khGzG':_0x52f9d9(0x892)+_0x13bdc4(0xa92)+_0x13bdc4(0x291),'Qqlic':function(_0x1f05e3,_0xb14474){return _0x1f05e3(_0xb14474);},'MwxeV':function(_0x1fb083,_0x5cac94){return _0x1fb083(_0x5cac94);},'BLBlY':function(_0x498f03,_0x5a5a49){return _0x498f03+_0x5a5a49;},'tIwnQ':_0x52f9d9(0x6f4)+'l','pKjuH':function(_0x52a1c2,_0x1f0307){return _0x52a1c2(_0x1f0307);},'rhKKw':_0x1e7a16(0x324)+'l','HBJJK':function(_0x13e31e,_0x276adc){return _0x13e31e(_0x276adc);},'pfopu':function(_0x42bf91,_0x3637b2){return _0x42bf91+_0x3637b2;},'NQkpp':function(_0x248b14,_0x5be216){return _0x248b14+_0x5be216;},'smCdy':_0x57de8b(0x493)+'l','iBQBm':function(_0x1b9879,_0x4c79c5){return _0x1b9879(_0x4c79c5);},'QjVdF':_0x13bdc4(0x87a)+_0x1e7a16(0xa92)+_0x13bdc4(0x291),'hnWbi':function(_0x29cee1,_0x1fa767){return _0x29cee1(_0x1fa767);},'heMvA':function(_0x3f9162,_0x5a68b9){return _0x3f9162(_0x5a68b9);},'ZPAdR':function(_0x2dacdf,_0x22f9e9){return _0x2dacdf+_0x22f9e9;},'jWRtM':_0x354aec(0xd56),'gWUAG':function(_0x546fdc,_0x333fbb){return _0x546fdc(_0x333fbb);},'CLPet':function(_0x24a1c8,_0x3b15d6){return _0x24a1c8(_0x3b15d6);},'LsVkR':_0x354aec(0xd07)+_0x13bdc4(0xa92)+_0x57de8b(0x291),'uaoBC':function(_0x438ec2,_0x2a4813){return _0x438ec2+_0x2a4813;},'XUvJf':function(_0x488218,_0x7c70f){return _0x488218+_0x7c70f;},'kqNMs':_0x354aec(0xd56)+_0x13bdc4(0x450)+_0x57de8b(0x5f9)+'rl','cTQpo':function(_0x5dc7c7,_0x495b27){return _0x5dc7c7(_0x495b27);},'NYuGT':function(_0x41f033,_0x162f1a){return _0x41f033(_0x162f1a);},'WTVeI':function(_0x20469a,_0x5f3fd5){return _0x20469a+_0x5f3fd5;},'zomus':_0x57de8b(0x233)+'rl','ouBRm':function(_0x2bb58e,_0x41522e){return _0x2bb58e+_0x41522e;},'xhjor':function(_0x4ee456,_0x1d9336){return _0x4ee456(_0x1d9336);},'lhXlJ':_0x1e7a16(0x5a2)+_0x57de8b(0x5f7)+_0x52f9d9(0x297),'WhLUE':function(_0x26cfbc,_0x4be1ea){return _0x26cfbc(_0x4be1ea);},'XcsAs':function(_0x50efd5,_0x1eafa6){return _0x50efd5(_0x1eafa6);},'FBhvn':function(_0x53bce2,_0x1726a9){return _0x53bce2+_0x1726a9;},'wPQis':_0x52f9d9(0xd1d)+'rl','KrxMD':function(_0x45f5a4,_0x513b98){return _0x45f5a4(_0x513b98);},'Sktyu':_0x57de8b(0xd56)+':','jTYnw':function(_0x5dcd88,_0x5e193e){return _0x5dcd88+_0x5e193e;},'ARJgz':function(_0x10923e,_0x5f1678){return _0x10923e(_0x5f1678);},'WjkxD':function(_0x581a88,_0x14a172){return _0x581a88+_0x14a172;},'rItWt':function(_0x211ae7,_0x2e3f3a){return _0x211ae7+_0x2e3f3a;},'uKMlR':function(_0x394b97,_0x495ff0){return _0x394b97(_0x495ff0);},'ZjShQ':_0x13bdc4(0x7cc)+_0x57de8b(0x5a0)+'l','HYYgn':function(_0x2db5b0,_0x21a65f){return _0x2db5b0(_0x21a65f);},'sgTqG':function(_0x57cc4e,_0x4b0093){return _0x57cc4e+_0x4b0093;},'uWURq':_0x52f9d9(0x7cc)+_0x354aec(0x4b0),'nbMVm':_0x1e7a16(0x4b0),'idtwr':function(_0x52872a,_0x394361){return _0x52872a(_0x394361);},'CQYQm':_0x52f9d9(0x457)+':','wjWRJ':_0x52f9d9(0xc70)+_0x57de8b(0xb48)+'d','dyxwY':_0x57de8b(0x897)+'ss','QZxxr':function(_0x372321,_0x189460){return _0x372321===_0x189460;},'vRKGT':_0x1e7a16(0x475),'bPDRC':_0x52f9d9(0xb16),'RHWWa':function(_0xb6f713,_0x289b2e){return _0xb6f713+_0x289b2e;},'jXQOI':function(_0xb39ac,_0x4ec635){return _0xb39ac+_0x4ec635;},'kSudP':_0x354aec(0x7e9),'vhZvu':function(_0x54b80f,_0x1771e3){return _0x54b80f===_0x1771e3;},'RNtYo':_0x1e7a16(0x9c6),'HctiP':_0x52f9d9(0x371),'KdSZt':function(_0x5cc0f3,_0x1b83e8){return _0x5cc0f3+_0x1b83e8;},'OEgUt':function(_0x5c1840){return _0x5c1840();},'hUzfy':function(_0x801cf5,_0x461dd){return _0x801cf5>_0x461dd;},'jxeqC':function(_0x14ca59,_0x19004c){return _0x14ca59+_0x19004c;},'gykvu':function(_0x43a7e6,_0x1e9f2a){return _0x43a7e6(_0x1e9f2a);},'ohAdC':_0x354aec(0xcec)+_0x1e7a16(0xbe8)+'结束','iLMFw':function(_0x48f45b,_0x2333fb){return _0x48f45b==_0x2333fb;},'zklyR':function(_0x187cf2,_0x598c19){return _0x187cf2+_0x598c19;},'SubQB':function(_0x24013e,_0x517da7){return _0x24013e+_0x517da7;},'ycHbb':function(_0xe45df8,_0x418dee){return _0xe45df8+_0x418dee;},'oiocd':function(_0x1af742,_0xf6210f){return _0x1af742(_0xf6210f);},'wundR':function(_0x508394,_0x22f43a){return _0x508394<_0x22f43a;},'GVIjS':function(_0x105dbc,_0xfaf443){return _0x105dbc!==_0xfaf443;},'YLgDW':_0x57de8b(0xab5),'VKorE':_0x13bdc4(0xb63),'kzraM':_0x1e7a16(0x954),'BYohp':function(_0x5d68df,_0x4bca5c){return _0x5d68df+_0x4bca5c;},'QRvSt':function(_0x4878f6,_0x19098a){return _0x4878f6===_0x19098a;},'cyRsx':_0x57de8b(0x29a),'ITMPt':_0x52f9d9(0x6af),'XfElB':_0x1e7a16(0x743),'lXwey':_0x57de8b(0x1fd),'wDSLr':_0x13bdc4(0x411)+_0x1e7a16(0xcf9),'blCvb':function(_0x18b2e6,_0x341da5){return _0x18b2e6>_0x341da5;},'LYRaR':_0x57de8b(0x22e)+']','kOEQM':_0x57de8b(0x6de),'DFiii':_0x52f9d9(0x73d),'GMixI':_0x1e7a16(0xa6d)+_0x57de8b(0xbf9),'Xdldh':_0x52f9d9(0x6d6),'rzFRr':_0x57de8b(0x411)+_0x52f9d9(0xafc)+'t','YziUO':_0x57de8b(0x600)+_0x354aec(0x532),'CLGJj':function(_0x3b7cd4,_0x2005b3){return _0x3b7cd4!==_0x2005b3;},'Zdfpi':_0x57de8b(0x1e8),'gQHQL':_0x1e7a16(0x9ba),'rIOfT':function(_0x27e9cf,_0x47c674){return _0x27e9cf+_0x47c674;},'NdoAn':function(_0x2dbf63,_0x3271a0){return _0x2dbf63===_0x3271a0;},'dfkGW':_0x13bdc4(0x47b),'oUUCh':_0x13bdc4(0xb94),'WAIsk':_0x52f9d9(0xaf1),'wIFHV':_0x354aec(0x26f),'ZLBPF':_0x52f9d9(0x218)+'pt','DIHET':function(_0x255308,_0x4e7bac,_0xbe3462){return _0x255308(_0x4e7bac,_0xbe3462);},'XFxDn':function(_0x24ead8,_0x5501db){return _0x24ead8(_0x5501db);},'vaQAt':_0x52f9d9(0x715)+_0x13bdc4(0x87b),'YsPXn':_0x13bdc4(0x7bd)+_0x13bdc4(0x794)+_0x1e7a16(0xd55)+_0x57de8b(0x8e4)+_0x13bdc4(0xc46),'ciGgs':_0x52f9d9(0xd37)+'>','BFdzR':_0x13bdc4(0x985),'jCekc':function(_0x180255,_0x43b32f){return _0x180255+_0x43b32f;},'DJGhq':_0x1e7a16(0xa1f),'wAxhw':_0x354aec(0xd97),'gWqbn':_0x354aec(0xcaa),'FaAIa':function(_0x13da1e,_0x180a5d){return _0x13da1e==_0x180a5d;},'QZpUo':function(_0x5da6cd,_0x5bd63e){return _0x5da6cd>_0x5bd63e;},'Btmnj':function(_0x32dddb,_0x11e812,_0x5a883d){return _0x32dddb(_0x11e812,_0x5a883d);},'zfDDf':function(_0x154c33,_0x20b452){return _0x154c33!=_0x20b452;},'KzRWQ':_0x13bdc4(0x3ea),'iKZMJ':function(_0x3ff032,_0x2e5695){return _0x3ff032+_0x2e5695;},'yCmoW':function(_0x54b42c,_0x1f2a3b){return _0x54b42c+_0x1f2a3b;},'NQlqB':_0x57de8b(0x411),'crWYf':_0x13bdc4(0x868)+_0x1e7a16(0x253),'SmpNO':_0x57de8b(0x389)+'\x0a','zNvKO':_0x57de8b(0xd74)+_0x52f9d9(0x3c4)+_0x354aec(0x88f)+_0x57de8b(0xa9e)+_0x354aec(0xb06),'unSMD':_0x354aec(0x2c0)+_0x52f9d9(0xd92)+_0x52f9d9(0xca1)+_0x13bdc4(0x35d)+'e=','rEyUL':function(_0x248589,_0x52f06e){return _0x248589===_0x52f06e;},'nFzpR':_0x57de8b(0x90c),'lRkxi':_0x13bdc4(0x9e9)+'','RlgSj':_0x13bdc4(0xc7d)+'\x0a','MvMsF':function(_0x8a57b2,_0x170e4){return _0x8a57b2<_0x170e4;},'MRael':function(_0x3e9487,_0x107c59){return _0x3e9487!==_0x107c59;},'XBfcn':_0x354aec(0x747),'bvRfy':function(_0x530b63,_0x5f07ce){return _0x530b63==_0x5f07ce;},'vzTZe':function(_0x40126c,_0x6c24e1){return _0x40126c+_0x6c24e1;},'VOolx':function(_0x5231ad,_0x5473a9){return _0x5231ad+_0x5473a9;},'lLgxv':function(_0x3b8344,_0x112e80){return _0x3b8344+_0x112e80;},'Xmsir':function(_0x2a7b65,_0x169b06){return _0x2a7b65+_0x169b06;},'XisdU':function(_0x5425c7,_0xddce1b){return _0x5425c7+_0xddce1b;},'oIrcS':function(_0x5bb7b7,_0x4a84db){return _0x5bb7b7+_0x4a84db;},'IwmiH':function(_0x7c0918,_0x458044){return _0x7c0918(_0x458044);},'RzFkF':function(_0x598719,_0x22e5bd){return _0x598719(_0x22e5bd);},'aDUNZ':_0x1e7a16(0x6ac),'eMQpN':_0x13bdc4(0x28b),'IhFqc':function(_0x47797b,_0x48eadf){return _0x47797b+_0x48eadf;},'MvxcA':_0x1e7a16(0xc5f),'VzNZT':_0x57de8b(0x561)+'\x0a','uGxEh':_0x1e7a16(0x706),'CXYmR':function(_0x275485,_0xaa5da3){return _0x275485+_0xaa5da3;},'NPMtU':function(_0x5575c7,_0x10ebf7){return _0x5575c7+_0x10ebf7;},'MkdNm':function(_0x27a54c,_0x3db201){return _0x27a54c+_0x3db201;},'XOjfM':function(_0x6611a4,_0x3f8c50){return _0x6611a4+_0x3f8c50;},'KmGiK':_0x1e7a16(0x69e)+'\x0a','iYWpF':function(_0x50aaa9,_0x525a24){return _0x50aaa9!==_0x525a24;},'divLe':_0x57de8b(0xa31),'SvMGh':_0x52f9d9(0x903),'TgJDV':function(_0x2ceaac,_0x4555e7){return _0x2ceaac<_0x4555e7;},'DeosK':function(_0xd9f577,_0x845665){return _0xd9f577+_0x845665;},'LsBCR':_0x13bdc4(0x879)+'m','ZpcvQ':_0x13bdc4(0x9ce)+_0x13bdc4(0x9d8)+_0x354aec(0xb1d)+_0x52f9d9(0x780)+_0x57de8b(0xc87)+_0x13bdc4(0x934)+'何人','sEYuA':function(_0x552c82,_0x43431f){return _0x552c82+_0x43431f;},'mVHuo':function(_0xe66b1f,_0x27ce72){return _0xe66b1f+_0x27ce72;},'NnLxo':_0x354aec(0x5cf),'DFwvo':_0x13bdc4(0x471)+_0x354aec(0xde4)+_0x57de8b(0x906),'yFKLL':_0x354aec(0x7b5),'faXan':function(_0x32c62c,_0x3e61e5){return _0x32c62c(_0x3e61e5);},'kuDdo':function(_0x514ef4,_0x195441){return _0x514ef4+_0x195441;},'AiTXT':function(_0x1b8b1f,_0x43d0ed){return _0x1b8b1f+_0x43d0ed;},'wMmUx':function(_0x94562b,_0x2926f6){return _0x94562b+_0x2926f6;},'ugOzJ':_0x52f9d9(0x7bd)+_0x52f9d9(0x794)+_0x354aec(0xd55)+_0x57de8b(0x5d7)+_0x52f9d9(0x523)+'\x22>','fadEv':function(_0x30f60a,_0x2d8a9e,_0x157354){return _0x30f60a(_0x2d8a9e,_0x157354);},'xshZc':_0x13bdc4(0x7cc)+_0x354aec(0x961)+_0x52f9d9(0x7c3)+_0x57de8b(0x800)+_0x57de8b(0x639)+_0x1e7a16(0x976)};let _0x116e43=document[_0x52f9d9(0xc9f)+_0x57de8b(0x3e8)+_0x1e7a16(0x61d)](_0x25ed30[_0x13bdc4(0xc44)])[_0x1e7a16(0xac3)];if(_0xb3a360){if(_0x25ed30[_0x1e7a16(0x737)](_0x25ed30[_0x57de8b(0x899)],_0x25ed30[_0x354aec(0x899)]))_0x116e43=_0xb3a360[_0x354aec(0x435)+_0x1e7a16(0xcc1)+'t'],_0xb3a360[_0x57de8b(0x83e)+'e']();else return 0x7*-0x23b+0x20b*0xe+0x67e*-0x2;}if(_0x25ed30[_0x57de8b(0x863)](_0x116e43[_0x354aec(0x830)+'h'],-0xf2d+-0xc37+0x1b64)||_0x25ed30[_0x13bdc4(0xba5)](_0x116e43[_0x13bdc4(0x830)+'h'],0x1d42+-0x1*-0x1885+0x353b*-0x1))return;_0x25ed30[_0x52f9d9(0x585)](trimArray,word_last,-0x2060+0x1b5*0x1+-0x4a9*-0x7);if(_0x25ed30[_0x57de8b(0xb69)](lock_chat,-0x32b+0x1*0xd61+-0xa36)){if(_0x25ed30[_0x13bdc4(0xc01)](_0x25ed30[_0x57de8b(0x620)],_0x25ed30[_0x57de8b(0x620)]))_0x101aef=_0x440caf[_0x354aec(0x435)+_0x52f9d9(0xcc1)+'t'],_0x16002a[_0x354aec(0x83e)+'e']();else{_0x25ed30[_0x57de8b(0x266)](alert,_0x25ed30[_0x1e7a16(0x7a9)]);return;}}lock_chat=-0x22ef*-0x1+0x1202+0x38*-0xf2;const _0x1e3d45=_0x25ed30[_0x1e7a16(0x41e)](_0x25ed30[_0x52f9d9(0x3fe)](_0x25ed30[_0x1e7a16(0xcd5)](document[_0x1e7a16(0xc9f)+_0x13bdc4(0x3e8)+_0x354aec(0x61d)](_0x25ed30[_0x354aec(0x8e2)])[_0x52f9d9(0xd8a)+_0x354aec(0x8cb)][_0x57de8b(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x57de8b(0x785)+'ce'](/<hr.*/gs,'')[_0x354aec(0x785)+'ce'](/<[^>]+>/g,'')[_0x52f9d9(0x785)+'ce'](/\n\n/g,'\x0a'),_0x25ed30[_0x13bdc4(0x5c7)]),search_queryquery),_0x25ed30[_0x1e7a16(0x7df)]);let _0x50a0f7;if(document[_0x13bdc4(0xc9f)+_0x13bdc4(0x3e8)+_0x52f9d9(0x61d)](_0x25ed30[_0x1e7a16(0x1f8)])[_0x1e7a16(0xa87)][_0x52f9d9(0x35b)+_0x13bdc4(0xd99)](_0x25ed30[_0x57de8b(0xb3a)])){if(_0x25ed30[_0x52f9d9(0x529)](_0x25ed30[_0x354aec(0x38b)],_0x25ed30[_0x1e7a16(0x38b)])){_0x50a0f7=_0x25ed30[_0x52f9d9(0x8f8)](_0x25ed30[_0x354aec(0xb86)](_0x25ed30[_0x13bdc4(0x368)],article[_0x13bdc4(0x557)]),'\x0a'),_0x50a0f7=_0x25ed30[_0x13bdc4(0xc9d)](_0x50a0f7,_0x25ed30[_0x13bdc4(0xbe1)]),sentences[_0x13bdc4(0x4a6)]((_0x3e021a,_0x38ebe8)=>{const _0x1f55c3=_0x13bdc4,_0x3f4dea=_0x1e7a16,_0x1db7a7=_0x52f9d9,_0x46b041=_0x57de8b,_0x44f8a7=_0x1e7a16,_0x4b1ff1={'KQRql':function(_0x28818d,_0x35e7a5){const _0x58dd7b=_0x4b15;return _0x25ed30[_0x58dd7b(0x970)](_0x28818d,_0x35e7a5);},'NAYpN':_0x25ed30[_0x1f55c3(0x703)]};if(_0x25ed30[_0x3f4dea(0x882)](_0x25ed30[_0x1f55c3(0x449)],_0x25ed30[_0x1f55c3(0x449)]))_0x46c0de=_0xdee15d[_0x44f8a7(0x3d1)](_0x3262e1)[_0x25ed30[_0x1f55c3(0x703)]],_0x4720a8='';else{if(_0x25ed30[_0x1f55c3(0x35c)](_0x25ed30[_0x1f55c3(0x754)](cosineSimilarity,_0x25ed30[_0x46b041(0x1e2)](_0x25ed30[_0x3f4dea(0x588)](_0x116e43,'\x20'),_0x1ae197),_0x3e021a[-0x2226+0x1*-0xe57+0x307e]),_0x25ed30[_0x46b041(0x754)](cosineSimilarity,_0x25ed30[_0x46b041(0x970)](_0x25ed30[_0x46b041(0x588)](_0x116e43,'\x20'),_0x1ae197),_0x38ebe8[0xcd1*-0x1+0x22a6+0xaea*-0x2]))){if(_0x25ed30[_0x44f8a7(0xc01)](_0x25ed30[_0x46b041(0xae9)],_0x25ed30[_0x3f4dea(0x201)]))return-(-0x20d3+-0x1d*-0xf1+0x587);else try{_0x4fdd7b=_0x58dff4[_0x1db7a7(0x3d1)](_0x4b1ff1[_0x3f4dea(0x80c)](_0x233879,_0xdc424))[_0x4b1ff1[_0x3f4dea(0x4e9)]],_0xfefb8b='';}catch(_0x5702a1){_0x21b1cd=_0x1f53e7[_0x44f8a7(0x3d1)](_0x383bf0)[_0x4b1ff1[_0x44f8a7(0x4e9)]],_0x1ab1e6='';}}else{if(_0x25ed30[_0x1db7a7(0x234)](_0x25ed30[_0x1db7a7(0x83a)],_0x25ed30[_0x3f4dea(0x277)]))return-0x1d5d+0x1cd9+0x85;else{_0x1544bc=_0x25ed30[_0x1f55c3(0x4be)](_0x1cdefa,_0x533621);const _0x5502c2={};return _0x5502c2[_0x46b041(0x62b)]=_0x25ed30[_0x1db7a7(0x94a)],_0x17036[_0x1db7a7(0x958)+'e'][_0x44f8a7(0xd94)+'pt'](_0x5502c2,_0x8cc88d,_0x34ca00);}}}});for(let _0xccee2b=0x216b+-0x619*-0x2+-0x2d9d;_0x25ed30[_0x354aec(0x5b2)](_0xccee2b,Math[_0x57de8b(0x6db)](-0x3*-0xadd+-0xde5+-0x12ac,sentences[_0x57de8b(0x830)+'h']));++_0xccee2b){if(_0x25ed30[_0x57de8b(0xb49)](_0x25ed30[_0x52f9d9(0xd8c)],_0x25ed30[_0x1e7a16(0xd8c)]))_0x3a340e=_0x4841d6[_0x57de8b(0x3d1)](_0x25ed30[_0x1e7a16(0x80b)](_0x35d205,_0x4c1fbd))[_0x25ed30[_0x354aec(0x703)]],_0xc339e4='';else{if(_0x25ed30[_0x1e7a16(0xb9c)](keytextres[_0x1e7a16(0x2d0)+'Of'](sentences[_0xccee2b][-0xecc+0x3*0xb85+-0x1*0x13c2]),-(-0x114d+0x21b4+0x2*-0x833)))keytextres[_0x52f9d9(0xd6b)+'ft'](_0x25ed30[_0x57de8b(0xca2)](_0x25ed30[_0x13bdc4(0xcee)](_0x25ed30[_0x1e7a16(0xb43)](_0x25ed30[_0x57de8b(0x61b)](_0x25ed30[_0x57de8b(0x4b4)](_0x25ed30[_0x13bdc4(0x43d)](_0x25ed30[_0x57de8b(0x4d2)](_0x25ed30[_0x57de8b(0xd30)]('',_0x25ed30[_0x13bdc4(0xdcd)](String,sentences[_0xccee2b][0x19c0+0x77f+0xb15*-0x3])),''),sentences[_0xccee2b][-0x1b8a*0x1+0x7*0x35f+0x3f3*0x1]),''),_0x25ed30[_0x57de8b(0x865)](String,sentences[_0xccee2b][-0xc62+-0x1*-0xf61+-0x2fc])),'行:'),sentences[_0xccee2b][-0x8ec*0x2+-0x1763+0x293c]),'\x0a'));}}}else _0x257c10=_0x71d392;}else{if(_0x25ed30[_0x52f9d9(0x91b)](_0x25ed30[_0x13bdc4(0x45f)],_0x25ed30[_0x1e7a16(0x505)])){_0x324be2=_0x42e508[_0x354aec(0x785)+_0x354aec(0x9b3)]('','(')[_0x57de8b(0x785)+_0x13bdc4(0x9b3)]('',')')[_0x1e7a16(0x785)+_0x52f9d9(0x9b3)](':\x20',':')[_0x1e7a16(0x785)+_0x57de8b(0x9b3)]('',':')[_0x52f9d9(0x785)+_0x1e7a16(0x9b3)](',\x20',',')[_0x57de8b(0x785)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x1da668=_0x554e96[_0x1e7a16(0xafd)+_0x57de8b(0x6fa)][_0x57de8b(0x830)+'h'];_0x25ed30[_0x1e7a16(0x35a)](_0x1da668,0x29*-0x1+0x208a+-0x2061);--_0x1da668){const _0xaf6ad2=_0x25ed30[_0x13bdc4(0xd15)][_0x354aec(0x308)]('|');let _0x3764e5=-0x1674+-0x2199+0x12af*0x3;while(!![]){switch(_0xaf6ad2[_0x3764e5++]){case'0':_0x4d8bbc=_0x3bee09[_0x57de8b(0x785)+_0x13bdc4(0x9b3)](_0x25ed30[_0x52f9d9(0x357)](_0x25ed30[_0x13bdc4(0x328)],_0x25ed30[_0x354aec(0x983)](_0x3a87f4,_0x1da668)),_0x25ed30[_0x1e7a16(0x575)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x1e7a16(0x57f)](_0x58a141,_0x1da668)));continue;case'1':_0x27d2b7=_0x29072d[_0x52f9d9(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0xc9d)](_0x25ed30[_0x52f9d9(0x8a1)],_0x25ed30[_0x57de8b(0xaa5)](_0x4d365d,_0x1da668)),_0x25ed30[_0x1e7a16(0x80b)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x13bdc4(0xaa5)](_0x29aafb,_0x1da668)));continue;case'2':_0x3012ba=_0x3cf4a0[_0x52f9d9(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x1e7a16(0x80b)](_0x25ed30[_0x57de8b(0x7de)],_0x25ed30[_0x1e7a16(0xb36)](_0x4ce044,_0x1da668)),_0x25ed30[_0x52f9d9(0x575)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x13bdc4(0x3ce)](_0x2a3ad2,_0x1da668)));continue;case'3':_0x4ac985=_0x4c0dd1[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x52f9d9(0x1eb)](_0x25ed30[_0x13bdc4(0x77a)],_0x25ed30[_0x52f9d9(0x4be)](_0x125ae8,_0x1da668)),_0x25ed30[_0x1e7a16(0x474)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x13bdc4(0x57f)](_0x247bfc,_0x1da668)));continue;case'4':_0xc2cf2f=_0x16d7b6[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0x1e2)](_0x25ed30[_0x354aec(0x6a6)],_0x25ed30[_0x354aec(0xb36)](_0x23c98b,_0x1da668)),_0x25ed30[_0x1e7a16(0x1eb)](_0x25ed30[_0x354aec(0x3c5)],_0x25ed30[_0x57de8b(0x4be)](_0xc15f96,_0x1da668)));continue;case'5':_0x5f0d8d=_0x51d7c6[_0x52f9d9(0x785)+_0x354aec(0x9b3)](_0x25ed30[_0x57de8b(0xa8a)](_0x25ed30[_0x57de8b(0x9db)],_0x25ed30[_0x52f9d9(0x57f)](_0x3165d8,_0x1da668)),_0x25ed30[_0x52f9d9(0x1e2)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x52f9d9(0x92b)](_0x4ae7cd,_0x1da668)));continue;case'6':_0x5022f6=_0x30bb6e[_0x1e7a16(0x785)+_0x52f9d9(0x9b3)](_0x25ed30[_0x1e7a16(0x1e2)](_0x25ed30[_0x354aec(0x33c)],_0x25ed30[_0x57de8b(0x983)](_0xe30199,_0x1da668)),_0x25ed30[_0x1e7a16(0x80b)](_0x25ed30[_0x354aec(0x3c5)],_0x25ed30[_0x52f9d9(0x689)](_0x197914,_0x1da668)));continue;case'7':_0x1ac9dd=_0x5d4dc2[_0x13bdc4(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0xbf5)](_0x25ed30[_0x1e7a16(0x8b3)],_0x25ed30[_0x13bdc4(0x92b)](_0x4b2c77,_0x1da668)),_0x25ed30[_0x57de8b(0x588)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x354aec(0xaa5)](_0x43e20a,_0x1da668)));continue;case'8':_0x5822b8=_0x10c914[_0x1e7a16(0x785)+_0x13bdc4(0x9b3)](_0x25ed30[_0x1e7a16(0xa8a)](_0x25ed30[_0x57de8b(0x96e)],_0x25ed30[_0x354aec(0x504)](_0x4a5633,_0x1da668)),_0x25ed30[_0x52f9d9(0x588)](_0x25ed30[_0x13bdc4(0x3c5)],_0x25ed30[_0x13bdc4(0xaeb)](_0x22e732,_0x1da668)));continue;case'9':_0x29269b=_0x318738[_0x1e7a16(0x785)+_0x354aec(0x9b3)](_0x25ed30[_0x1e7a16(0x970)](_0x25ed30[_0x57de8b(0xd18)],_0x25ed30[_0x52f9d9(0x57f)](_0x8133c2,_0x1da668)),_0x25ed30[_0x57de8b(0x80b)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x354aec(0xb36)](_0xae708d,_0x1da668)));continue;case'10':_0x53bdc8=_0xcf6e63[_0x354aec(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x1e7a16(0xb86)](_0x25ed30[_0x52f9d9(0xc65)],_0x25ed30[_0x1e7a16(0x750)](_0x319734,_0x1da668)),_0x25ed30[_0x57de8b(0xb86)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x1e7a16(0x6c1)](_0x6d6bb7,_0x1da668)));continue;case'11':_0x18494b=_0x99d0ae[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x13bdc4(0x8f8)](_0x25ed30[_0x1e7a16(0x9b2)],_0x25ed30[_0x13bdc4(0x251)](_0x2a1c37,_0x1da668)),_0x25ed30[_0x52f9d9(0xb86)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x57de8b(0x251)](_0x4430f4,_0x1da668)));continue;case'12':_0x62f955=_0x272c11[_0x1e7a16(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x1e7a16(0x1e2)](_0x25ed30[_0x13bdc4(0x2d3)],_0x25ed30[_0x1e7a16(0x3cc)](_0x1c4b20,_0x1da668)),_0x25ed30[_0x52f9d9(0x503)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x52f9d9(0xb36)](_0x559d0a,_0x1da668)));continue;case'13':_0x49a909=_0x68fc74[_0x1e7a16(0x785)+_0x13bdc4(0x9b3)](_0x25ed30[_0x354aec(0xc3a)](_0x25ed30[_0x13bdc4(0x72f)],_0x25ed30[_0x57de8b(0x4f6)](_0x24c381,_0x1da668)),_0x25ed30[_0x1e7a16(0xbf5)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x1e7a16(0xb36)](_0x58d81c,_0x1da668)));continue;case'14':_0x43b16e=_0x33fbb5[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0xa8a)](_0x25ed30[_0x13bdc4(0x95b)],_0x25ed30[_0x354aec(0x7a2)](_0x4f8ffd,_0x1da668)),_0x25ed30[_0x13bdc4(0xb86)](_0x25ed30[_0x13bdc4(0x3c5)],_0x25ed30[_0x354aec(0xd90)](_0x25ba44,_0x1da668)));continue;case'15':_0x360a02=_0x5a9269[_0x354aec(0x785)+_0x354aec(0x9b3)](_0x25ed30[_0x57de8b(0x3be)](_0x25ed30[_0x52f9d9(0xc3d)],_0x25ed30[_0x57de8b(0x65f)](_0x190a7b,_0x1da668)),_0x25ed30[_0x52f9d9(0xc3a)](_0x25ed30[_0x52f9d9(0x3c5)],_0x25ed30[_0x52f9d9(0x266)](_0x5cb9bd,_0x1da668)));continue;case'16':_0x31cedb=_0xb4279d[_0x354aec(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x13bdc4(0x8f8)](_0x25ed30[_0x13bdc4(0x9a9)],_0x25ed30[_0x1e7a16(0x251)](_0x572d2f,_0x1da668)),_0x25ed30[_0x57de8b(0xc9d)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x13bdc4(0x4be)](_0x1984dd,_0x1da668)));continue;case'17':_0x35a042=_0x13bea5[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0x3dd)](_0x25ed30[_0x57de8b(0x328)],_0x25ed30[_0x13bdc4(0xb36)](_0x4f3d13,_0x1da668)),_0x25ed30[_0x1e7a16(0xcd5)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x13bdc4(0x6c1)](_0x1c7068,_0x1da668)));continue;case'18':_0x3e9c5a=_0xd3f2eb[_0x1e7a16(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x1e7a16(0xbf5)](_0x25ed30[_0x354aec(0x42c)],_0x25ed30[_0x52f9d9(0x945)](_0x9ebc8d,_0x1da668)),_0x25ed30[_0x13bdc4(0xa8a)](_0x25ed30[_0x354aec(0x3c5)],_0x25ed30[_0x57de8b(0xb78)](_0x887445,_0x1da668)));continue;case'19':_0x3f61c7=_0x2117e0[_0x57de8b(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0x3bb)](_0x25ed30[_0x1e7a16(0x3eb)],_0x25ed30[_0x1e7a16(0x945)](_0x1b1c58,_0x1da668)),_0x25ed30[_0x1e7a16(0x8ed)](_0x25ed30[_0x354aec(0x3c5)],_0x25ed30[_0x57de8b(0x52c)](_0x20d364,_0x1da668)));continue;case'20':_0x3baa57=_0x4d2b03[_0x57de8b(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x1e7a16(0x588)](_0x25ed30[_0x354aec(0xc0c)],_0x25ed30[_0x52f9d9(0x92b)](_0x3a74ea,_0x1da668)),_0x25ed30[_0x354aec(0xbf5)](_0x25ed30[_0x1e7a16(0x3c5)],_0x25ed30[_0x57de8b(0x723)](_0x297f22,_0x1da668)));continue;case'21':_0x3fcee5=_0x16dc44[_0x354aec(0x785)+_0x1e7a16(0x9b3)](_0x25ed30[_0x354aec(0x588)](_0x25ed30[_0x1e7a16(0x8b3)],_0x25ed30[_0x52f9d9(0xc68)](_0x2bc99b,_0x1da668)),_0x25ed30[_0x57de8b(0x468)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x13bdc4(0x3cc)](_0x193020,_0x1da668)));continue;case'22':_0x14cea0=_0x2ae572[_0x52f9d9(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x52f9d9(0x3bb)](_0x25ed30[_0x52f9d9(0x487)],_0x25ed30[_0x52f9d9(0x8ce)](_0x365c92,_0x1da668)),_0x25ed30[_0x57de8b(0x1e2)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x57de8b(0x504)](_0x4a2114,_0x1da668)));continue;case'23':_0x4e4bfd=_0x57280f[_0x354aec(0x785)+_0x57de8b(0x9b3)](_0x25ed30[_0x57de8b(0x3bb)](_0x25ed30[_0x354aec(0xc1b)],_0x25ed30[_0x13bdc4(0x65f)](_0x4b2d16,_0x1da668)),_0x25ed30[_0x354aec(0x43d)](_0x25ed30[_0x354aec(0x3c5)],_0x25ed30[_0x354aec(0x982)](_0x58c184,_0x1da668)));continue;case'24':_0x484361=_0x33a951[_0x1e7a16(0x785)+_0x52f9d9(0x9b3)](_0x25ed30[_0x52f9d9(0x387)](_0x25ed30[_0x13bdc4(0x33c)],_0x25ed30[_0x1e7a16(0x7a2)](_0x22b398,_0x1da668)),_0x25ed30[_0x1e7a16(0x5e1)](_0x25ed30[_0x57de8b(0x3c5)],_0x25ed30[_0x52f9d9(0x2b1)](_0x143dcf,_0x1da668)));continue;}break;}}_0x3d290f=_0x25ed30[_0x57de8b(0x251)](_0x370bee,_0x1ab808);for(let _0x62ffaa=_0x498abb[_0x13bdc4(0xafd)+_0x1e7a16(0x6fa)][_0x52f9d9(0x830)+'h'];_0x25ed30[_0x57de8b(0x35a)](_0x62ffaa,0x3*-0xcbd+0xd75+0x18c2*0x1);--_0x62ffaa){_0x52ceab=_0x43935e[_0x13bdc4(0x785)+'ce'](_0x25ed30[_0x13bdc4(0xa8a)](_0x25ed30[_0x354aec(0x479)],_0x25ed30[_0x57de8b(0x74d)](_0x27df0c,_0x62ffaa)),_0x221b67[_0x354aec(0xafd)+_0x52f9d9(0x6fa)][_0x62ffaa]),_0x1a849f=_0x4a67e0[_0x13bdc4(0x785)+'ce'](_0x25ed30[_0x354aec(0x916)](_0x25ed30[_0x13bdc4(0x2ee)],_0x25ed30[_0x52f9d9(0x74d)](_0x26ec02,_0x62ffaa)),_0x55034f[_0x52f9d9(0xafd)+_0x354aec(0x6fa)][_0x62ffaa]),_0x437875=_0x577ac2[_0x13bdc4(0x785)+'ce'](_0x25ed30[_0x1e7a16(0x357)](_0x25ed30[_0x13bdc4(0x6cb)],_0x25ed30[_0x13bdc4(0xd9b)](_0x338f43,_0x62ffaa)),_0x3eb74d[_0x1e7a16(0xafd)+_0x1e7a16(0x6fa)][_0x62ffaa]);}return _0x24130c=_0x308424[_0x57de8b(0x785)+_0x52f9d9(0x9b3)]('[]',''),_0x55ac50=_0x2c6ef3[_0x13bdc4(0x785)+_0x1e7a16(0x9b3)]('((','('),_0x3865cc=_0x498df1[_0x1e7a16(0x785)+_0x1e7a16(0x9b3)]('))',')'),_0x5255f6=_0x3167dc[_0x13bdc4(0x785)+_0x52f9d9(0x9b3)]('(\x0a','\x0a'),_0xca2083;}else{_0x50a0f7=_0x25ed30[_0x1e7a16(0x80b)](_0x25ed30[_0x52f9d9(0xd30)](_0x25ed30[_0x52f9d9(0xc00)](_0x25ed30[_0x354aec(0x7d6)],article[_0x1e7a16(0x557)]),'\x0a'),_0x25ed30[_0x52f9d9(0xc60)]);for(el in modalele){if(_0x25ed30[_0x354aec(0x234)](_0x25ed30[_0x1e7a16(0xb9e)],_0x25ed30[_0x1e7a16(0xb9e)]))while(_0x25ed30[_0x13bdc4(0x35c)](_0x25ed30[_0x52f9d9(0xd90)](_0x2898f9,_0x15d44a),_0x4a90af)){_0x5a98f4[_0x1e7a16(0x990)]();}else{if(_0x25ed30[_0x1e7a16(0x5b2)](_0x25ed30[_0x13bdc4(0x7c1)](_0x25ed30[_0x57de8b(0x888)](_0x50a0f7,modalele[el]),'\x0a')[_0x57de8b(0x830)+'h'],0x6b7*0x1+0x1a22+0x1*-0x1d55))_0x50a0f7=_0x25ed30[_0x1e7a16(0x310)](_0x25ed30[_0x57de8b(0x468)](_0x50a0f7,modalele[el]),'\x0a');}}_0x50a0f7=_0x25ed30[_0x1e7a16(0x836)](_0x50a0f7,_0x25ed30[_0x354aec(0xc1e)]),fulltext[_0x13bdc4(0x4a6)]((_0x3bf144,_0x5d7e67)=>{const _0x4c4361=_0x57de8b,_0x29f433=_0x1e7a16,_0xbc68ed=_0x13bdc4,_0x5836aa=_0x57de8b,_0x556d7a=_0x13bdc4,_0x6432dd={'vCMaA':_0x25ed30[_0x4c4361(0xca3)],'LVoLw':function(_0x573ad4,_0x2af3eb){const _0x5a4da9=_0x4c4361;return _0x25ed30[_0x5a4da9(0xd9b)](_0x573ad4,_0x2af3eb);},'iuyAx':_0x25ed30[_0x29f433(0x7a8)]};if(_0x25ed30[_0x29f433(0x91b)](_0x25ed30[_0x5836aa(0x8d2)],_0x25ed30[_0x4c4361(0x5f5)]))_0x3482d4+=_0xadc121[-0x1*-0x1353+-0xd02+-0x651][_0xbc68ed(0x6a1)][_0x4c4361(0x3db)+'nt'];else{if(_0x25ed30[_0x4c4361(0x35c)](_0x25ed30[_0xbc68ed(0x754)](cosineSimilarity,_0x25ed30[_0xbc68ed(0x4b4)](_0x25ed30[_0x5836aa(0x7f5)](_0x116e43,'\x20'),_0x1ae197),_0x3bf144),_0x25ed30[_0x556d7a(0x754)](cosineSimilarity,_0x25ed30[_0x4c4361(0x3be)](_0x25ed30[_0xbc68ed(0x8f8)](_0x116e43,'\x20'),_0x1ae197),_0x5d7e67))){if(_0x25ed30[_0x4c4361(0x91b)](_0x25ed30[_0x556d7a(0x7af)],_0x25ed30[_0x556d7a(0x7af)]))return-(-0xbf*-0x20+0x110+-0x18ef);else _0x4f1c47[_0xbc68ed(0xa18)](_0x25ed30[_0x556d7a(0xd75)],_0x94aedd);}else{if(_0x25ed30[_0xbc68ed(0x711)](_0x25ed30[_0x29f433(0x40e)],_0x25ed30[_0x4c4361(0x54c)]))_0x59eb35[_0x29f433(0x9e7)+'d']=function(){const _0x3df905=_0x4c4361,_0x3a0f41=_0x5836aa,_0x5e3dc9=_0x556d7a,_0x433aab=_0x556d7a;_0x4752b8[_0x3df905(0xcda)](_0x6432dd[_0x3a0f41(0xc58)]),_0x6432dd[_0x3df905(0x2e3)](_0xb78fdd,_0x6432dd[_0x5e3dc9(0x89a)]);};else return 0xd6f+-0xac5+-0x3*0xe3;}}});for(let _0x5540f4=-0x80e+-0x59*0x24+0x1492;_0x25ed30[_0x52f9d9(0x929)](_0x5540f4,Math[_0x57de8b(0x6db)](-0x6ea*-0x2+0x1*-0x263d+-0xa9*-0x25,fulltext[_0x52f9d9(0x830)+'h']));++_0x5540f4){if(_0x25ed30[_0x13bdc4(0x55f)](_0x25ed30[_0x354aec(0x3ca)],_0x25ed30[_0x13bdc4(0x3ca)]))_0x512ee1=_0x35ba50[_0x354aec(0x3d1)](_0x25ed30[_0x52f9d9(0x684)](_0x3d8f6b,_0x25497c))[_0x25ed30[_0x1e7a16(0x703)]],_0x42f7eb='';else{if(_0x25ed30[_0x1e7a16(0x863)](keytextres[_0x57de8b(0x2d0)+'Of'](fulltext[_0x5540f4]),-(0x1361+0x1903+-0x2c63)))keytextres[_0x354aec(0xd6b)+'ft'](fulltext[_0x5540f4]);}}}}keySentencesCount=-0x573+-0x1aee+0x3*0xacb;for(st in keytextres){if(_0x25ed30[_0x52f9d9(0xcf2)](_0x25ed30[_0x57de8b(0x442)],_0x25ed30[_0x354aec(0x442)])){if(_0x25ed30[_0x1e7a16(0xc2b)](_0x25ed30[_0x13bdc4(0xc9d)](_0x25ed30[_0x354aec(0x4d2)](_0x50a0f7,keytextres[st]),'\x0a')[_0x13bdc4(0x830)+'h'],-0x428+-0x1c63+-0x1d*-0x153))_0x50a0f7=_0x25ed30[_0x354aec(0x94e)](_0x25ed30[_0x1e7a16(0xae5)](_0x50a0f7,keytextres[st]),'\x0a');keySentencesCount=_0x25ed30[_0x57de8b(0x468)](keySentencesCount,-0x1489+-0x4*-0x757+-0x8d2);}else IoiWQJ[_0x52f9d9(0x4d8)](_0x237d75);}const _0x44c9d3={};_0x44c9d3[_0x13bdc4(0xcfb)]=_0x25ed30[_0x13bdc4(0xa0a)],_0x44c9d3[_0x354aec(0x3db)+'nt']=_0x25ed30[_0x57de8b(0x354)];const _0x30f6d5={};_0x30f6d5[_0x52f9d9(0xcfb)]=_0x25ed30[_0x52f9d9(0xb1e)],_0x30f6d5[_0x57de8b(0x3db)+'nt']=_0x50a0f7,mes=[_0x44c9d3,_0x30f6d5],mes=mes[_0x1e7a16(0x576)+'t'](word_last),mes=mes[_0x1e7a16(0x576)+'t']([{'role':_0x25ed30[_0x52f9d9(0x612)],'content':_0x25ed30[_0x1e7a16(0xb3b)](_0x25ed30[_0x52f9d9(0x3a3)](_0x25ed30[_0x57de8b(0xb5f)],_0x116e43),_0x25ed30[_0x57de8b(0x72a)])}]);const _0x54ba8a={'method':_0x25ed30[_0x57de8b(0x92e)],'headers':headers,'body':_0x25ed30[_0x1e7a16(0x7da)](b64EncodeUnicode,JSON[_0x57de8b(0xd73)+_0x1e7a16(0xcb0)]({'messages':mes[_0x13bdc4(0x576)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x116e43=_0x116e43[_0x354aec(0x785)+_0x52f9d9(0x9b3)]('\x0a\x0a','\x0a')[_0x52f9d9(0x785)+_0x52f9d9(0x9b3)]('\x0a\x0a','\x0a'),document[_0x1e7a16(0xc9f)+_0x1e7a16(0x3e8)+_0x1e7a16(0x61d)](_0x25ed30[_0x354aec(0x5fd)])[_0x57de8b(0xd8a)+_0x354aec(0x8cb)]='',_0x25ed30[_0x57de8b(0x754)](markdownToHtml,_0x25ed30[_0x13bdc4(0x7da)](beautify,_0x116e43),document[_0x13bdc4(0xc9f)+_0x52f9d9(0x3e8)+_0x354aec(0x61d)](_0x25ed30[_0x354aec(0x5fd)])),chatTemp='',text_offset=-(-0x610+0x1e66+-0x1855),prev_chat=document[_0x1e7a16(0x3f7)+_0x354aec(0x401)+_0x57de8b(0xd95)](_0x25ed30[_0x57de8b(0x90a)])[_0x354aec(0xd8a)+_0x57de8b(0x8cb)],prev_chat=_0x25ed30[_0x57de8b(0x798)](_0x25ed30[_0x52f9d9(0xc07)](_0x25ed30[_0x57de8b(0x762)](prev_chat,_0x25ed30[_0x13bdc4(0x97e)]),document[_0x13bdc4(0xc9f)+_0x354aec(0x3e8)+_0x354aec(0x61d)](_0x25ed30[_0x52f9d9(0x5fd)])[_0x1e7a16(0xd8a)+_0x57de8b(0x8cb)]),_0x25ed30[_0x13bdc4(0x396)]),_0x25ed30[_0x57de8b(0xdc3)](fetch,_0x25ed30[_0x52f9d9(0xaf6)],_0x54ba8a)[_0x57de8b(0x56c)](_0x29e3bc=>{const _0x23711c=_0x1e7a16,_0x39a16b=_0x52f9d9,_0x32a321=_0x13bdc4,_0x3d9093=_0x57de8b,_0x19d640=_0x1e7a16,_0x461bdb={'OtODP':function(_0x5d8fc8,_0xa04efb){const _0x5bfada=_0x4b15;return _0x25ed30[_0x5bfada(0xd82)](_0x5d8fc8,_0xa04efb);},'EhxIr':_0x25ed30[_0x23711c(0x703)],'sAnHD':function(_0x32892b,_0x4909e2){const _0x4f8a5a=_0x23711c;return _0x25ed30[_0x4f8a5a(0x737)](_0x32892b,_0x4909e2);},'gKUhC':_0x25ed30[_0x23711c(0x854)],'fXZNK':_0x25ed30[_0x32a321(0x4f0)],'KMomH':_0x25ed30[_0x3d9093(0xcb7)],'nWlSB':_0x25ed30[_0x32a321(0xbfd)],'exfyz':_0x25ed30[_0x32a321(0x5af)],'isqlA':function(_0x3b3fa2,_0x26d15f){const _0x28a9df=_0x32a321;return _0x25ed30[_0x28a9df(0x317)](_0x3b3fa2,_0x26d15f);},'oitZP':function(_0x2fa086,_0x5d70d3){const _0x117fac=_0x23711c;return _0x25ed30[_0x117fac(0x42b)](_0x2fa086,_0x5d70d3);},'rKgqC':_0x25ed30[_0x3d9093(0x28d)],'FUfQk':function(_0x350285,_0x1a3934){const _0x560395=_0x3d9093;return _0x25ed30[_0x560395(0x737)](_0x350285,_0x1a3934);},'ZGZXh':_0x25ed30[_0x32a321(0xd33)],'iJxTA':_0x25ed30[_0x19d640(0xc15)],'dAxNu':_0x25ed30[_0x19d640(0x85d)],'Joxbb':_0x25ed30[_0x32a321(0x612)],'ZpqaA':_0x25ed30[_0x39a16b(0xc44)],'HPJQe':_0x25ed30[_0x32a321(0xb1e)],'OSdLa':function(_0x1136b3,_0x3fd040){const _0x39dc81=_0x3d9093;return _0x25ed30[_0x39dc81(0xccb)](_0x1136b3,_0x3fd040);},'EiZuZ':_0x25ed30[_0x23711c(0xcc4)],'gQUXN':function(_0x5d6571,_0x5b40b4){const _0x4db731=_0x39a16b;return _0x25ed30[_0x4db731(0xc01)](_0x5d6571,_0x5b40b4);},'TmduV':_0x25ed30[_0x23711c(0xb8d)],'IBXwG':function(_0x21ee7a,_0x5483ed){const _0xea8fbe=_0x39a16b;return _0x25ed30[_0xea8fbe(0xd24)](_0x21ee7a,_0x5483ed);},'VMzfj':function(_0x1cf89c,_0x312ce1){const _0x460b31=_0x39a16b;return _0x25ed30[_0x460b31(0xcf2)](_0x1cf89c,_0x312ce1);},'ArVUN':_0x25ed30[_0x32a321(0x256)],'GnXFy':_0x25ed30[_0x3d9093(0x653)],'Naqrt':_0x25ed30[_0x3d9093(0x33b)],'MGQuf':function(_0x4b8131,_0x2d0ec1){const _0x4a4e4c=_0x19d640;return _0x25ed30[_0x4a4e4c(0x91b)](_0x4b8131,_0x2d0ec1);},'vfMcl':_0x25ed30[_0x23711c(0x673)],'nmdDI':_0x25ed30[_0x39a16b(0x5fd)],'nGVTA':function(_0xa1430c,_0x47d01a,_0x33d823){const _0x86b7f4=_0x39a16b;return _0x25ed30[_0x86b7f4(0x283)](_0xa1430c,_0x47d01a,_0x33d823);},'GhPro':function(_0x4d7fda,_0x5cf668){const _0x22ed21=_0x39a16b;return _0x25ed30[_0x22ed21(0xd19)](_0x4d7fda,_0x5cf668);},'uItyT':_0x25ed30[_0x3d9093(0x90a)],'eqYSV':function(_0x43a558,_0x11060c){const _0x375900=_0x39a16b;return _0x25ed30[_0x375900(0x1eb)](_0x43a558,_0x11060c);},'QCjep':_0x25ed30[_0x32a321(0x22a)],'qLhIn':_0x25ed30[_0x3d9093(0x396)]};if(_0x25ed30[_0x39a16b(0x737)](_0x25ed30[_0x32a321(0xb24)],_0x25ed30[_0x23711c(0xb24)])){const _0x43d6fb=_0x29e3bc[_0x3d9093(0x573)][_0x3d9093(0x9a1)+_0x19d640(0x7c2)]();let _0x3d2f20='',_0x5077e9='';_0x43d6fb[_0x3d9093(0xde0)]()[_0x23711c(0x56c)](function _0x52ca3d({done:_0x4b7b91,value:_0x920576}){const _0x5a4160=_0x39a16b,_0x41d75e=_0x23711c,_0x19c47b=_0x23711c,_0x3aac96=_0x3d9093,_0x3cd779=_0x19d640,_0x4d5972={'eTQPl':function(_0x2dfaf5,_0x4c0702){const _0x44e00c=_0x4b15;return _0x25ed30[_0x44e00c(0xac1)](_0x2dfaf5,_0x4c0702);},'SQrjq':function(_0x51de54,_0x30afd9,_0x4963f9){const _0x2f090f=_0x4b15;return _0x25ed30[_0x2f090f(0x754)](_0x51de54,_0x30afd9,_0x4963f9);},'vMPEU':function(_0x4fede9,_0x3921f7){const _0x4224c5=_0x4b15;return _0x25ed30[_0x4224c5(0x1eb)](_0x4fede9,_0x3921f7);},'MyyzQ':function(_0x5f2786,_0x35498e){const _0x40a4e0=_0x4b15;return _0x25ed30[_0x40a4e0(0x84a)](_0x5f2786,_0x35498e);},'WUUey':function(_0x363ca1,_0x28ee82,_0x14d21a){const _0x35e16d=_0x4b15;return _0x25ed30[_0x35e16d(0x754)](_0x363ca1,_0x28ee82,_0x14d21a);},'ShAQt':function(_0x50498b,_0x40bb89){const _0x52e02b=_0x4b15;return _0x25ed30[_0x52e02b(0x511)](_0x50498b,_0x40bb89);},'Difwd':_0x25ed30[_0x5a4160(0x7a9)],'CMgRj':function(_0x488790,_0x524b2d){const _0x3245cd=_0x5a4160;return _0x25ed30[_0x3245cd(0x42b)](_0x488790,_0x524b2d);},'iCZpg':function(_0x2dd993,_0x2fba4f){const _0x50c8ad=_0x5a4160;return _0x25ed30[_0x50c8ad(0x60b)](_0x2dd993,_0x2fba4f);},'qayBb':function(_0x249713,_0x13519f){const _0x664579=_0x5a4160;return _0x25ed30[_0x664579(0x970)](_0x249713,_0x13519f);},'YSOFg':function(_0x359d2b,_0x32c877){const _0xea3eee=_0x5a4160;return _0x25ed30[_0xea3eee(0xc9d)](_0x359d2b,_0x32c877);},'UkQCW':function(_0x4d2cae,_0x533d3b){const _0x3ccabf=_0x5a4160;return _0x25ed30[_0x3ccabf(0xc9d)](_0x4d2cae,_0x533d3b);},'fHxGc':function(_0x3519c5,_0x380168){const _0x25a839=_0x5a4160;return _0x25ed30[_0x25a839(0xae5)](_0x3519c5,_0x380168);},'JTLrs':function(_0x53008e,_0x1e3829){const _0x91a21b=_0x5a4160;return _0x25ed30[_0x91a21b(0x67c)](_0x53008e,_0x1e3829);},'zRrrJ':function(_0x462e52,_0x14d91f){const _0x4bcaee=_0x5a4160;return _0x25ed30[_0x4bcaee(0x80b)](_0x462e52,_0x14d91f);},'aENia':function(_0x1e9449,_0x3fbfb4){const _0x1acbeb=_0x5a4160;return _0x25ed30[_0x1acbeb(0x7e1)](_0x1e9449,_0x3fbfb4);},'AsiTI':function(_0x1cfc97,_0x4e5cc0){const _0x1c47f3=_0x5a4160;return _0x25ed30[_0x1c47f3(0x929)](_0x1cfc97,_0x4e5cc0);}};if(_0x25ed30[_0x41d75e(0xcd4)](_0x25ed30[_0x41d75e(0xc05)],_0x25ed30[_0x3aac96(0xb11)])){if(_0x4b7b91)return;const _0x26ff4d=new TextDecoder(_0x25ed30[_0x41d75e(0x2e2)])[_0x41d75e(0x422)+'e'](_0x920576);return _0x26ff4d[_0x3aac96(0x44c)]()[_0x19c47b(0x308)]('\x0a')[_0x3cd779(0x5b5)+'ch'](function(_0x297399){const _0x3ab48e=_0x19c47b,_0x2f49e9=_0x3cd779,_0x166622=_0x3aac96,_0x3c9541=_0x3aac96,_0x1adb3a=_0x3cd779,_0x5114ae={'ehxzp':function(_0x1fa95d,_0x32e5e1){const _0x31ff2c=_0x4b15;return _0x461bdb[_0x31ff2c(0x359)](_0x1fa95d,_0x32e5e1);},'YjaAN':_0x461bdb[_0x3ab48e(0x8d8)]};if(_0x461bdb[_0x3ab48e(0x30b)](_0x461bdb[_0x2f49e9(0x4c2)],_0x461bdb[_0x3c9541(0x24f)]))return _0x4d5972[_0x3c9541(0x1f2)](_0x4d5972[_0x3ab48e(0x3e2)](_0x23e723,_0x4d5972[_0x2f49e9(0x8ab)](_0x4d5972[_0x166622(0x628)](_0xcf5831,'\x20'),_0x4854bc),_0x56ec41[0x20*-0xce+-0x13a1+-0x25*-0x13a]),_0x4d5972[_0x1adb3a(0x68f)](_0x1baf92,_0x4d5972[_0x2f49e9(0x628)](_0x4d5972[_0x166622(0x8ab)](_0x34dd14,'\x20'),_0x430c16),_0x2e95cc[0xd8d*-0x1+0x153b+0x189*-0x5]))?-(-0x2434+-0x1ded*0x1+0x2*0x2111):-0x2314*0x1+-0x3*-0x831+0xa82;else{try{if(_0x461bdb[_0x3c9541(0x30b)](_0x461bdb[_0x1adb3a(0x8b7)],_0x461bdb[_0x2f49e9(0x4d1)])){_0x4d5972[_0x2f49e9(0x9d5)](_0x43ac79,_0x4d5972[_0x166622(0xd0a)]);return;}else document[_0x1adb3a(0xc9f)+_0x2f49e9(0x3e8)+_0x2f49e9(0x61d)](_0x461bdb[_0x166622(0x726)])[_0x1adb3a(0x5a4)+_0x166622(0x60a)]=document[_0x3ab48e(0xc9f)+_0x166622(0x3e8)+_0x3ab48e(0x61d)](_0x461bdb[_0x2f49e9(0x726)])[_0x2f49e9(0x5a4)+_0x3ab48e(0x4c4)+'ht'];}catch(_0x4d4c54){}_0x3d2f20='';if(_0x461bdb[_0x3c9541(0x500)](_0x297399[_0x1adb3a(0x830)+'h'],0x8f*-0x3e+0x1dfc+0x4ac))_0x3d2f20=_0x297399[_0x1adb3a(0xc25)](-0xb05+0xfe6+-0x71*0xb);if(_0x461bdb[_0x2f49e9(0x3aa)](_0x3d2f20,_0x461bdb[_0x3c9541(0x9eb)])){if(_0x461bdb[_0x3c9541(0xbe9)](_0x461bdb[_0x2f49e9(0xd65)],_0x461bdb[_0x1adb3a(0x534)]))return _0x4a7944;else{const _0x59ec1d=_0x461bdb[_0x3ab48e(0xc18)][_0x3c9541(0x308)]('|');let _0x564ec6=-0x1fee+-0x176e+0x49d*0xc;while(!![]){switch(_0x59ec1d[_0x564ec6++]){case'0':return;case'1':const _0x449876={};_0x449876[_0x3c9541(0xcfb)]=_0x461bdb[_0x2f49e9(0xc74)],_0x449876[_0x2f49e9(0x3db)+'nt']=_0x116e43,word_last[_0x1adb3a(0xd53)](_0x449876);continue;case'2':document[_0x3ab48e(0xc9f)+_0x1adb3a(0x3e8)+_0x2f49e9(0x61d)](_0x461bdb[_0x2f49e9(0xaad)])[_0x166622(0xac3)]='';continue;case'3':lock_chat=0xdf8+-0x24d9+0x16e1;continue;case'4':const _0x3c0bcd={};_0x3c0bcd[_0x3c9541(0xcfb)]=_0x461bdb[_0x3ab48e(0xbb7)],_0x3c0bcd[_0x3c9541(0x3db)+'nt']=chatTemp,word_last[_0x3ab48e(0xd53)](_0x3c0bcd);continue;}break;}}}let _0x44eb57;try{if(_0x461bdb[_0x3c9541(0x597)](_0x461bdb[_0x2f49e9(0x4cf)],_0x461bdb[_0x3c9541(0x4cf)])){if(_0x4d5972[_0x1adb3a(0x608)](_0x5b74c2[_0x1adb3a(0x2d0)+'Of'](_0x39dc42[_0x31f229][-0x19b1+-0x19db*-0x1+-0x29]),-(0x400+-0x4ee*0x5+0x14a7)))_0x4444a5[_0x3c9541(0xd6b)+'ft'](_0x4d5972[_0x166622(0xa24)](_0x4d5972[_0x2f49e9(0xb85)](_0x4d5972[_0x3c9541(0xc81)](_0x4d5972[_0x3ab48e(0xc8d)](_0x4d5972[_0x1adb3a(0x7f0)](_0x4d5972[_0x166622(0x5c6)](_0x4d5972[_0x2f49e9(0xc6f)](_0x4d5972[_0x2f49e9(0x7f0)]('',_0x4d5972[_0x1adb3a(0x9d5)](_0x17d830,_0x53701b[_0xe0babd][0x605+-0xed1*-0x2+-0x23a7])),''),_0x9e7726[_0x8ff17f][-0x1*-0x3c5+0xc*0x50+-0x3*0x281]),''),_0x4d5972[_0x3c9541(0xb75)](_0x479d51,_0x50b0c5[_0x46625f][-0x162*0x7+0x18b6+0xf05*-0x1])),'行:'),_0x562f7e[_0x152001][0x3*-0x767+0x5d1*0x1+0x1065]),'\x0a'));}else try{if(_0x461bdb[_0x1adb3a(0x9b9)](_0x461bdb[_0x3ab48e(0x1fe)],_0x461bdb[_0x1adb3a(0x1fe)])){const _0x5a8de5=/^[0-9,\s]+$/;return!_0x5a8de5[_0x1adb3a(0x81b)](_0x531913);}else _0x44eb57=JSON[_0x166622(0x3d1)](_0x461bdb[_0x1adb3a(0xd3d)](_0x5077e9,_0x3d2f20))[_0x461bdb[_0x166622(0x8d8)]],_0x5077e9='';}catch(_0x5df6da){_0x461bdb[_0x3ab48e(0x347)](_0x461bdb[_0x3ab48e(0x385)],_0x461bdb[_0x166622(0x385)])?(_0x44eb57=JSON[_0x1adb3a(0x3d1)](_0x3d2f20)[_0x461bdb[_0x1adb3a(0x8d8)]],_0x5077e9=''):(_0x11c4e8=_0x16abca[_0x3ab48e(0x3d1)](_0x5114ae[_0x2f49e9(0x5dd)](_0x2edada,_0x37dab9))[_0x5114ae[_0x2f49e9(0xda8)]],_0x396260='');}}catch(_0x1dd62b){if(_0x461bdb[_0x3c9541(0x9b9)](_0x461bdb[_0x3ab48e(0x4b2)],_0x461bdb[_0x166622(0xb01)]))_0x5077e9+=_0x3d2f20;else{if(!_0x5a6296)return;try{var _0x239d12=new _0x2567f2(_0x2e97c2[_0x3ab48e(0x830)+'h']),_0x2d4ac8=new _0x2f6ad1(_0x239d12);for(var _0x7daf78=0x12c7+0x294+-0x155b,_0x1a21bd=_0x3f3451[_0x1adb3a(0x830)+'h'];_0x4d5972[_0x2f49e9(0x4e2)](_0x7daf78,_0x1a21bd);_0x7daf78++){_0x2d4ac8[_0x7daf78]=_0x16af28[_0x2f49e9(0xaa7)+_0x166622(0x7c9)](_0x7daf78);}return _0x239d12;}catch(_0x1ec39a){}}}_0x44eb57&&_0x461bdb[_0x1adb3a(0x500)](_0x44eb57[_0x3c9541(0x830)+'h'],-0xf8e+0x1*0x23f8+-0x146a)&&_0x44eb57[0x2418+0x16de+0x3af6*-0x1][_0x3c9541(0x6a1)][_0x2f49e9(0x3db)+'nt']&&(_0x461bdb[_0x1adb3a(0x769)](_0x461bdb[_0x2f49e9(0xcf8)],_0x461bdb[_0x1adb3a(0xcf8)])?chatTemp+=_0x44eb57[0x1233*-0x2+-0x874+0x2cda][_0x3ab48e(0x6a1)][_0x3c9541(0x3db)+'nt']:(_0x1fede0[_0x159a6b]=0x3bb*0x1+-0x11f3*-0x2+-0x27a1,_0x2c2b05[_0xbb1e3d]=-0x111*-0x24+-0x1*0x206a+-0x22*0x2d)),chatTemp=chatTemp[_0x2f49e9(0x785)+_0x3c9541(0x9b3)]('\x0a\x0a','\x0a')[_0x3c9541(0x785)+_0x3c9541(0x9b3)]('\x0a\x0a','\x0a'),document[_0x1adb3a(0xc9f)+_0x3ab48e(0x3e8)+_0x2f49e9(0x61d)](_0x461bdb[_0x2f49e9(0x6c2)])[_0x3ab48e(0xd8a)+_0x1adb3a(0x8cb)]='',_0x461bdb[_0x1adb3a(0x935)](markdownToHtml,_0x461bdb[_0x3c9541(0xbaf)](beautify,chatTemp),document[_0x1adb3a(0xc9f)+_0x1adb3a(0x3e8)+_0x2f49e9(0x61d)](_0x461bdb[_0x3ab48e(0x6c2)])),document[_0x166622(0x3f7)+_0x2f49e9(0x401)+_0x166622(0xd95)](_0x461bdb[_0x1adb3a(0x2e8)])[_0x3ab48e(0xd8a)+_0x1adb3a(0x8cb)]=_0x461bdb[_0x2f49e9(0x359)](_0x461bdb[_0x166622(0x359)](_0x461bdb[_0x166622(0xb21)](prev_chat,_0x461bdb[_0x166622(0x908)]),document[_0x2f49e9(0xc9f)+_0x2f49e9(0x3e8)+_0x3ab48e(0x61d)](_0x461bdb[_0x3ab48e(0x6c2)])[_0x1adb3a(0xd8a)+_0x2f49e9(0x8cb)]),_0x461bdb[_0x166622(0xc2a)]);}}),_0x43d6fb[_0x5a4160(0xde0)]()[_0x19c47b(0x56c)](_0x52ca3d);}else wsIIvb[_0x3cd779(0xbaf)](_0x1a70d3,'0');});}else return-(0x6b*0x4d+0xa53*0x1+-0x2a81);})[_0x354aec(0x46c)](_0x546525=>{const _0x25333d=_0x52f9d9,_0x58ddc9=_0x13bdc4,_0x4177f2=_0x1e7a16,_0x2c99c0=_0x1e7a16,_0x1fa068=_0x354aec;_0x25ed30[_0x25333d(0x91b)](_0x25ed30[_0x58ddc9(0x2a6)],_0x25ed30[_0x25333d(0x4cc)])?(_0x5e0018=_0x334f05[_0x25333d(0x3d1)](_0x25ed30[_0x4177f2(0x1ee)](_0x3aa06d,_0x427582))[_0x25ed30[_0x1fa068(0x703)]],_0x1db21c=''):console[_0x58ddc9(0xa18)](_0x25ed30[_0x2c99c0(0xd75)],_0x546525);});}function send_chat(_0x316d5b){const _0x17653f=_0x372c3c,_0x150eab=_0x2239e4,_0x5c01d2=_0x2628a6,_0x154f3c=_0x372c3c,_0xf0a5c9=_0x51b305,_0x24d152={'LUEFt':_0x17653f(0x81f)+_0x17653f(0x5a5)+_0x17653f(0x470)+_0x154f3c(0x322)+_0x5c01d2(0xd36)+_0xf0a5c9(0xd7a)+_0xf0a5c9(0xd84)+_0x154f3c(0x721)+_0x154f3c(0x925)+_0x150eab(0x316)+_0x5c01d2(0x895)+_0x154f3c(0xd23)+_0x5c01d2(0x54b),'sWbNC':function(_0x1126d6,_0x1dbd7c){return _0x1126d6+_0x1dbd7c;},'pWTYO':_0x17653f(0x960),'InjZE':function(_0x29655d,_0x1e538d){return _0x29655d(_0x1e538d);},'VRvuW':_0x150eab(0x214)+_0x5c01d2(0x5f9)+'rl','SBUBp':function(_0x35799d,_0x1152ab){return _0x35799d(_0x1152ab);},'UJeaM':function(_0x13c314,_0x110dbf){return _0x13c314+_0x110dbf;},'pVgZC':_0x150eab(0x5a2)+_0xf0a5c9(0x5f7)+_0x154f3c(0x297),'jsetJ':_0x154f3c(0x892)+_0x5c01d2(0xa92)+_0x154f3c(0x291),'zyMRa':function(_0xcc50cb,_0x2fc21d){return _0xcc50cb+_0x2fc21d;},'qrozC':function(_0x5f0bc3,_0x564b0f){return _0x5f0bc3(_0x564b0f);},'xWYrX':function(_0x313193,_0x529c8c){return _0x313193+_0x529c8c;},'lcegC':_0xf0a5c9(0x324)+'l','ybgmF':function(_0x51d748,_0x278455){return _0x51d748(_0x278455);},'UvhUa':function(_0xd253db,_0x360501){return _0xd253db(_0x360501);},'hKbvs':_0x5c01d2(0xd1d)+'rl','ZhHyp':function(_0x48a433,_0x47dd91){return _0x48a433(_0x47dd91);},'cbWoC':function(_0x341efc,_0x4f6d26){return _0x341efc+_0x4f6d26;},'xTQHG':_0xf0a5c9(0xd07)+_0x150eab(0xa92)+_0x17653f(0x291),'rSGlV':function(_0x26cd34,_0x305c3d){return _0x26cd34(_0x305c3d);},'qWFCj':function(_0x44c6a6,_0x8d3367){return _0x44c6a6(_0x8d3367);},'CaMQa':function(_0x340a27,_0x6bf67e){return _0x340a27+_0x6bf67e;},'tQYKh':_0x150eab(0x7fc),'ZozkY':function(_0x1b5092,_0x3eb83d){return _0x1b5092(_0x3eb83d);},'EjIRU':_0xf0a5c9(0x6f4)+'l','XzSEt':function(_0x4e956c,_0x4a893b){return _0x4e956c+_0x4a893b;},'KclpN':function(_0x1a897d,_0x1c86ad){return _0x1a897d+_0x1c86ad;},'zRqen':_0x5c01d2(0x87a)+_0x150eab(0xa92)+_0x154f3c(0x291),'QuzyT':function(_0x57a978,_0x3ffd56){return _0x57a978+_0x3ffd56;},'wetKA':_0x150eab(0xd56)+_0x154f3c(0x450)+_0x5c01d2(0x5f9)+'rl','aumza':_0x154f3c(0x74c),'KkhXa':function(_0x5b8670,_0x2af170){return _0x5b8670(_0x2af170);},'mpQrQ':function(_0x397b99,_0x3ef853){return _0x397b99+_0x3ef853;},'RxUvF':function(_0x596ab1,_0x3e3729){return _0x596ab1(_0x3e3729);},'ywuZT':_0x150eab(0x436),'oLgIh':function(_0x183471,_0x39eb89){return _0x183471(_0x39eb89);},'acwAS':function(_0x8a9c75,_0x5f02d3){return _0x8a9c75+_0x5f02d3;},'eGnkR':function(_0x106221,_0x3bf393){return _0x106221(_0x3bf393);},'TAheG':function(_0x50545f,_0x5d7689){return _0x50545f+_0x5d7689;},'acJGR':function(_0x9e7232,_0x391cc6){return _0x9e7232+_0x391cc6;},'kfQYH':_0x5c01d2(0xd56)+':','sibtg':function(_0x49c8ae,_0x3fa34d){return _0x49c8ae+_0x3fa34d;},'jBIZU':function(_0x4f7dbf,_0x31f9d7){return _0x4f7dbf(_0x31f9d7);},'GRnqG':_0x150eab(0xd56)+_0x5c01d2(0x7cc)+_0x150eab(0x5a0)+'l','FzEjr':function(_0x4dfc4c,_0x55b8dc){return _0x4dfc4c+_0x55b8dc;},'dxCoJ':function(_0x5dadb0,_0x2d2c87){return _0x5dadb0(_0x2d2c87);},'mmyNC':_0x154f3c(0x60e)+'rl','jLHmF':function(_0x24e2a0,_0x3b9a05){return _0x24e2a0(_0x3b9a05);},'KgnSG':function(_0x2b2423,_0x28da83){return _0x2b2423+_0x28da83;},'TLFbc':function(_0x353e64,_0x20d47a){return _0x353e64+_0x20d47a;},'vGgPd':function(_0x4ac20e,_0x2eaddb){return _0x4ac20e+_0x2eaddb;},'Elxhc':function(_0x10e085,_0x3a6bcb){return _0x10e085(_0x3a6bcb);},'wjwsV':function(_0x2036a6,_0x333278){return _0x2036a6+_0x333278;},'UtQJz':_0x154f3c(0xd56)+_0x154f3c(0x52f),'dVDUs':_0x150eab(0x493)+'l','taLrO':function(_0xdda80e,_0x38cf8f){return _0xdda80e(_0x38cf8f);},'avYUu':function(_0x30e1be,_0x43b714){return _0x30e1be(_0x43b714);},'YuKLc':function(_0x4088bd,_0x107347){return _0x4088bd+_0x107347;},'IpwEW':_0x5c01d2(0x233)+'rl','QpLZO':function(_0x56bd57,_0x56e8f1){return _0x56bd57(_0x56e8f1);},'hoZRf':_0x150eab(0xd56)+_0x150eab(0x4b0),'xjLHl':function(_0x238566,_0x5879b1){return _0x238566+_0x5879b1;},'yCjNW':function(_0x5b8607,_0x255cc2){return _0x5b8607+_0x255cc2;},'QNxZk':_0x154f3c(0x469)+_0xf0a5c9(0x5f7)+_0x17653f(0x297),'lPYPU':function(_0x1b2e6b,_0x4624d2){return _0x1b2e6b+_0x4624d2;},'uxhlW':function(_0x5ddaf0,_0x38fd5f){return _0x5ddaf0(_0x38fd5f);},'lTqwU':_0x154f3c(0xd56),'iELub':function(_0x34f658,_0xe2e4e8){return _0x34f658(_0xe2e4e8);},'nKKRF':function(_0x148f2e,_0x1fba24){return _0x148f2e+_0x1fba24;},'HzaVd':_0x5c01d2(0x5ea)+_0x154f3c(0x5f7)+_0x150eab(0x297),'OwwJN':function(_0x13f2fd,_0x51ba85){return _0x13f2fd+_0x51ba85;},'AQUDc':function(_0x403c8d,_0x22418b){return _0x403c8d!==_0x22418b;},'IJCTO':_0x150eab(0x55c),'YmhzA':_0x150eab(0xbf8),'ioJOj':function(_0x3d1306,_0x3957a8,_0x2dd2a9){return _0x3d1306(_0x3957a8,_0x2dd2a9);},'MDTug':_0xf0a5c9(0x7eb)+_0x5c01d2(0x5f0),'IemGS':_0x154f3c(0x3ad),'CmJKa':function(_0x26399a,_0x1818a1){return _0x26399a+_0x1818a1;},'TvyoU':_0x154f3c(0xc6a)+_0x17653f(0x586)+_0xf0a5c9(0xb17)+_0x5c01d2(0x61e),'pLoFj':_0x5c01d2(0xcf5)+_0x17653f(0xd9c)+_0x150eab(0x34c)+_0x17653f(0xa28)+_0x5c01d2(0xc91)+_0x17653f(0x369)+'\x20)','kPwhr':function(_0x13538f,_0x561552){return _0x13538f+_0x561552;},'luTaI':function(_0x3763fd){return _0x3763fd();},'ByLGo':_0x17653f(0xcda),'NfCjA':_0x154f3c(0x350),'wkYNf':_0xf0a5c9(0xdc6),'zyfTl':_0x150eab(0xa18),'YImhH':_0x5c01d2(0xc2e)+_0x154f3c(0xb46),'nAZSZ':_0x5c01d2(0xa7c),'kMgKU':_0xf0a5c9(0xdd3),'UFlnQ':function(_0x5527d6,_0x2b27c7){return _0x5527d6<_0x2b27c7;},'ntVHp':_0x154f3c(0x622)+'es','YphEf':_0xf0a5c9(0x715)+_0xf0a5c9(0x87b),'LZFOz':function(_0x4e1e1a,_0x47d971){return _0x4e1e1a+_0x47d971;},'DxBoe':_0x150eab(0x7bd)+_0x5c01d2(0x794)+_0x17653f(0xd55)+_0x17653f(0x5d7)+_0x150eab(0x523)+'\x22>','cKyNc':_0x17653f(0x5fc),'FMSMg':_0x5c01d2(0x71c)+_0x5c01d2(0xac0)+_0xf0a5c9(0x29b)+_0x154f3c(0xa7e),'VwmwZ':_0xf0a5c9(0x9e6),'mtRqi':_0xf0a5c9(0xb6a),'wsutI':_0x150eab(0xd37)+'>','gusNs':function(_0x1ec07a,_0x140f45){return _0x1ec07a===_0x140f45;},'HHSJM':_0x5c01d2(0xb90),'iXWeN':_0x154f3c(0x414),'JwISS':_0xf0a5c9(0xd09),'JiHIK':_0xf0a5c9(0x735),'Wgltc':_0x154f3c(0x411)+_0x17653f(0xcf9),'hyGQk':function(_0x2f3793,_0x8a5b99){return _0x2f3793>_0x8a5b99;},'iVtwu':function(_0x3cd605,_0x46f729){return _0x3cd605==_0x46f729;},'iCKzn':_0x154f3c(0x22e)+']','MrMjQ':function(_0x2b4fb8,_0x4b61a7){return _0x2b4fb8===_0x4b61a7;},'iOUXA':_0x17653f(0xd39),'rgGRz':_0x150eab(0x92a),'OqhYX':_0x5c01d2(0x2dc)+_0xf0a5c9(0xcf4),'aJAMC':_0x150eab(0x600)+_0x154f3c(0x532),'rZNKj':_0x154f3c(0x6d6),'VEylS':_0x150eab(0x411)+_0x17653f(0xafc)+'t','QmuXn':_0x150eab(0x264),'dLTst':_0x17653f(0xbd0),'PqhbQ':_0x154f3c(0xa67),'ZdAsn':function(_0x20135f,_0x317c0e){return _0x20135f+_0x317c0e;},'opFzN':_0xf0a5c9(0x4af),'qeAuL':_0x17653f(0xd6e),'tRqNZ':function(_0x3ca3c6,_0x425502){return _0x3ca3c6>_0x425502;},'BcXhm':function(_0x1e89a5,_0x37b9e7){return _0x1e89a5!==_0x37b9e7;},'arGUg':_0xf0a5c9(0x3fa),'DEKRF':_0x154f3c(0x218)+'pt','XoaKR':function(_0x167be7,_0x258825){return _0x167be7(_0x258825);},'CMQSD':function(_0x33c156,_0x1a42c0){return _0x33c156+_0x1a42c0;},'vXiiD':_0x150eab(0x7bd)+_0xf0a5c9(0x794)+_0x150eab(0xd55)+_0x150eab(0x8e4)+_0x154f3c(0xc46),'SPhRJ':_0x154f3c(0x457)+':','qVXfe':_0x150eab(0x938)+_0x154f3c(0xcff),'aEvbX':_0x150eab(0x753),'YeDNw':_0x5c01d2(0x395),'hizbb':_0xf0a5c9(0x954),'QTJgf':_0x17653f(0x7f8),'IHMsN':_0x154f3c(0x9d1),'XrCGl':_0x150eab(0xce7),'ZJTYJ':_0x154f3c(0x4c7)+'l','iHLCg':_0x5c01d2(0x813),'bIVUz':function(_0x19cd72,_0x213f64){return _0x19cd72===_0x213f64;},'nknZZ':_0x154f3c(0x7e3),'xmCQO':_0xf0a5c9(0xa1d),'sVpsI':function(_0x519a38,_0x35913c){return _0x519a38+_0x35913c;},'aQSJA':_0xf0a5c9(0x7cc)+_0xf0a5c9(0x961)+_0x154f3c(0x7c3)+_0x17653f(0x560)+_0xf0a5c9(0x7dd)+_0x5c01d2(0x75b)+_0x5c01d2(0xde1)+_0x154f3c(0x259)+_0x17653f(0xcbd)+_0x17653f(0xc3b)+_0x154f3c(0x4db)+_0x5c01d2(0xc59)+_0x5c01d2(0x221)+_0xf0a5c9(0x864)+_0x17653f(0x7d5)+_0x150eab(0x9a2)+_0x5c01d2(0x688),'nlOkj':function(_0x22ea44,_0x2ab518){return _0x22ea44!==_0x2ab518;},'hzGWK':_0x150eab(0x4f2),'kEXlJ':_0x150eab(0xb99),'jpJRP':_0x150eab(0x572),'GhSsU':function(_0x375869,_0x1f33d8){return _0x375869+_0x1f33d8;},'hlkIo':_0x150eab(0x250)+_0x154f3c(0x626)+_0x5c01d2(0x462)+_0x17653f(0x5bf)+_0x5c01d2(0x2c0)+_0x154f3c(0xd92)+_0xf0a5c9(0xca1)+_0xf0a5c9(0x35d)+'e=','OoMfH':function(_0x7eba36,_0x26b43e){return _0x7eba36(_0x26b43e);},'qbFMi':_0x154f3c(0x49e),'lDpPe':function(_0x442842,_0x40d76d,_0x821555){return _0x442842(_0x40d76d,_0x821555);},'DjffJ':_0x154f3c(0x590),'wvNOF':_0x154f3c(0xdef),'QbIcq':_0x5c01d2(0x417),'OiTqu':_0x17653f(0xa4c),'jEzWQ':_0x150eab(0xb2e),'kULXK':_0xf0a5c9(0x981),'nnbHR':_0x5c01d2(0xa26),'SevjQ':_0x154f3c(0x82e),'Yankg':_0x154f3c(0xc2d),'qouxK':_0x150eab(0x823),'KwdUH':_0xf0a5c9(0x2fb),'EMKUh':_0xf0a5c9(0x258),'dUKZH':_0x154f3c(0x49f),'nCJiu':_0x150eab(0xaa9),'knxqm':function(_0x485c89,_0x26babe){return _0x485c89(_0x26babe);},'KoCRI':function(_0x48b1f4,_0x583b50){return _0x48b1f4!=_0x583b50;},'ITqqZ':function(_0x23af14,_0x5542b3){return _0x23af14===_0x5542b3;},'uZrRs':_0x150eab(0x795),'dTdNE':_0x5c01d2(0xcec)+_0x17653f(0xbe8)+'结束','mxhIM':_0x17653f(0x411),'oHTUN':_0xf0a5c9(0x868)+_0x150eab(0x253),'EWWCg':_0x5c01d2(0x389)+'\x0a','hcIdJ':_0x154f3c(0x879)+'m','PjOrE':_0xf0a5c9(0x9ce)+_0x5c01d2(0x9d8)+_0xf0a5c9(0xb1d)+_0x5c01d2(0x780)+_0x17653f(0xc87)+_0x154f3c(0x934)+'何人','OrDXD':function(_0x2165fe,_0x24b9cd){return _0x2165fe+_0x24b9cd;},'zHvSo':_0xf0a5c9(0x5cf),'JvwCk':_0x154f3c(0x471)+_0x150eab(0xde4)+_0x150eab(0x906),'CGqSO':_0x5c01d2(0x7b5),'pGSJl':function(_0x252ecc,_0x5dacc3){return _0x252ecc+_0x5dacc3;},'HJKXU':function(_0x1f695f,_0x12d416){return _0x1f695f+_0x12d416;},'MtCbk':_0xf0a5c9(0x7cc)+_0x150eab(0x961)+_0x5c01d2(0x7c3)+_0x150eab(0x800)+_0x150eab(0x639)+_0x150eab(0x976)};let _0x4c0422=document[_0x150eab(0xc9f)+_0x150eab(0x3e8)+_0x17653f(0x61d)](_0x24d152[_0xf0a5c9(0xd27)])[_0xf0a5c9(0xac3)];if(_0x24d152[_0x154f3c(0xd21)](document[_0x17653f(0xc9f)+_0x150eab(0x3e8)+_0x154f3c(0x61d)](_0x24d152[_0x154f3c(0xd4b)])[_0xf0a5c9(0x73c)][_0xf0a5c9(0x352)+'ay'],_0x24d152[_0x17653f(0xa4e)])){if(_0x24d152[_0x154f3c(0xd25)](_0x24d152[_0x154f3c(0xc5b)],_0x24d152[_0x154f3c(0xb8f)])){const _0x1ec898=_0x24d152[_0x154f3c(0x913)][_0xf0a5c9(0x308)]('|');let _0x4fc079=-0xc08*-0x1+0x1456+-0x205e;while(!![]){switch(_0x1ec898[_0x4fc079++]){case'0':_0x3a8b42=_0x5dfbd5[_0xf0a5c9(0x785)+_0x17653f(0x9b3)](_0x24d152[_0x5c01d2(0x514)](_0x24d152[_0x150eab(0x37f)],_0x24d152[_0x17653f(0x924)](_0x37978c,_0x3153cd)),_0x24d152[_0x150eab(0x514)](_0x24d152[_0x17653f(0xc35)],_0x24d152[_0xf0a5c9(0x746)](_0xd898f,_0x42286a)));continue;case'1':_0x4d9954=_0x2a9111[_0x5c01d2(0x785)+_0x17653f(0x9b3)](_0x24d152[_0x5c01d2(0x807)](_0x24d152[_0x5c01d2(0x930)],_0x24d152[_0xf0a5c9(0x924)](_0x21b5c2,_0x1db285)),_0x24d152[_0x150eab(0x514)](_0x24d152[_0x154f3c(0xc35)],_0x24d152[_0x150eab(0x746)](_0x1d5129,_0x165a64)));continue;case'2':_0x56c431=_0xdab389[_0x150eab(0x785)+_0x150eab(0x9b3)](_0x24d152[_0xf0a5c9(0x514)](_0x24d152[_0xf0a5c9(0xdcb)],_0x24d152[_0x5c01d2(0x746)](_0x360a98,_0x5a9f97)),_0x24d152[_0x154f3c(0xa52)](_0x24d152[_0x154f3c(0xc35)],_0x24d152[_0x150eab(0x779)](_0x41cd2e,_0x41b2b4)));continue;case'3':_0x1e056f=_0x4f618a[_0x154f3c(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0x150eab(0x278)](_0x24d152[_0x154f3c(0xd2f)],_0x24d152[_0x17653f(0xa68)](_0x107c7f,_0x57a66e)),_0x24d152[_0x5c01d2(0x278)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x150eab(0x7f3)](_0x32fa60,_0x20fd4f)));continue;case'4':_0x52b946=_0x209eac[_0x17653f(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0x5c01d2(0x807)](_0x24d152[_0x150eab(0xce9)],_0x24d152[_0xf0a5c9(0x7b2)](_0x523d56,_0x5a39da)),_0x24d152[_0xf0a5c9(0x514)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x17653f(0xa68)](_0x3e080b,_0x19979c)));continue;case'5':_0x573979=_0x13b3c4[_0x5c01d2(0x785)+_0x154f3c(0x9b3)](_0x24d152[_0xf0a5c9(0x4fc)](_0x24d152[_0x17653f(0x517)],_0x24d152[_0x17653f(0x54d)](_0x1a8c8d,_0x3df607)),_0x24d152[_0x17653f(0x514)](_0x24d152[_0x150eab(0xc35)],_0x24d152[_0x5c01d2(0x2a9)](_0x1ebb44,_0x4986af)));continue;case'6':_0x1088b4=_0x1e9dbd[_0x150eab(0x785)+_0x154f3c(0x9b3)](_0x24d152[_0x5c01d2(0x390)](_0x24d152[_0x17653f(0x346)],_0x24d152[_0x154f3c(0x796)](_0x29e0e7,_0x5752c5)),_0x24d152[_0x154f3c(0xa52)](_0x24d152[_0x150eab(0xc35)],_0x24d152[_0xf0a5c9(0x2a9)](_0x2fa99a,_0x354e42)));continue;case'7':_0x48a75=_0x316911[_0x5c01d2(0x785)+_0x5c01d2(0x9b3)](_0x24d152[_0x5c01d2(0x807)](_0x24d152[_0x150eab(0xa08)],_0x24d152[_0x154f3c(0x779)](_0x484507,_0x2202f9)),_0x24d152[_0xf0a5c9(0x26c)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x17653f(0x2a9)](_0x317421,_0x1264cc)));continue;case'8':_0x3b2348=_0x18e78d[_0x150eab(0x785)+_0x17653f(0x9b3)](_0x24d152[_0x17653f(0xbe2)](_0x24d152[_0x5c01d2(0xd85)],_0x24d152[_0x150eab(0x796)](_0x47503f,_0x48d452)),_0x24d152[_0x150eab(0x514)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x17653f(0x796)](_0x3c6e81,_0x3fd0d5)));continue;case'9':_0x87999c=_0x51d8c2[_0x5c01d2(0x785)+_0x150eab(0x9b3)](_0x24d152[_0x154f3c(0x254)](_0x24d152[_0x17653f(0xc08)],_0x24d152[_0xf0a5c9(0x746)](_0x39f073,_0x4580b3)),_0x24d152[_0x154f3c(0xbe2)](_0x24d152[_0x150eab(0xc35)],_0x24d152[_0x5c01d2(0xa68)](_0x3879e4,_0x4a9961)));continue;case'10':_0x53adf3=_0x2ee3f0[_0x150eab(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0xf0a5c9(0x254)](_0x24d152[_0xf0a5c9(0xcce)],_0x24d152[_0x154f3c(0x69d)](_0x2cae20,_0x1ae22b)),_0x24d152[_0x150eab(0x7bc)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x150eab(0x738)](_0x301d48,_0x4419db)));continue;case'11':_0x477adf=_0x185584[_0xf0a5c9(0x785)+_0x17653f(0x9b3)](_0x24d152[_0x5c01d2(0x4fc)](_0x24d152[_0x150eab(0xafa)],_0x24d152[_0xf0a5c9(0x4f9)](_0x3876a1,_0x58d44b)),_0x24d152[_0x154f3c(0x3da)](_0x24d152[_0x154f3c(0xc35)],_0x24d152[_0xf0a5c9(0x4f9)](_0x2f1b64,_0xab2708)));continue;case'12':_0x59c8f1=_0x4502ea[_0xf0a5c9(0x785)+_0x5c01d2(0x9b3)](_0x24d152[_0x154f3c(0x26c)](_0x24d152[_0x154f3c(0xafa)],_0x24d152[_0x154f3c(0x972)](_0x57212c,_0x3bd451)),_0x24d152[_0x154f3c(0x2ab)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x17653f(0xa68)](_0x29a51c,_0x3b43a6)));continue;case'13':_0x1f0ba4=_0x4f2a94[_0x17653f(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0x154f3c(0x692)](_0x24d152[_0x150eab(0x477)],_0x24d152[_0x150eab(0x972)](_0x42132d,_0x455253)),_0x24d152[_0x5c01d2(0xa4a)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x17653f(0x662)](_0x4f3fbf,_0x938728)));continue;case'14':_0x396d60=_0x476a14[_0xf0a5c9(0x785)+_0x150eab(0x9b3)](_0x24d152[_0xf0a5c9(0x26c)](_0x24d152[_0x5c01d2(0x2f8)],_0x24d152[_0x150eab(0x7f3)](_0x2c34a9,_0x87a1b)),_0x24d152[_0x154f3c(0x6ad)](_0x24d152[_0x154f3c(0xc35)],_0x24d152[_0x150eab(0xcd0)](_0x4078a4,_0x37ca94)));continue;case'15':_0x1934db=_0x35cf60[_0x150eab(0x785)+_0x154f3c(0x9b3)](_0x24d152[_0x5c01d2(0x6ad)](_0x24d152[_0xf0a5c9(0xc2c)],_0x24d152[_0x154f3c(0x924)](_0x10773b,_0x57125c)),_0x24d152[_0x150eab(0x390)](_0x24d152[_0x150eab(0xc35)],_0x24d152[_0xf0a5c9(0xa19)](_0x2960e7,_0xdec43d)));continue;case'16':_0x3ae93f=_0x9c4390[_0x17653f(0x785)+_0x150eab(0x9b3)](_0x24d152[_0xf0a5c9(0x1f6)](_0x24d152[_0x150eab(0x346)],_0x24d152[_0x150eab(0x7b2)](_0xbfb8b2,_0x1fa7f8)),_0x24d152[_0x150eab(0x6f5)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x5c01d2(0x924)](_0x3fc11a,_0x48d29)));continue;case'17':_0x43e933=_0x133867[_0x154f3c(0x785)+_0x17653f(0x9b3)](_0x24d152[_0x150eab(0xa2e)](_0x24d152[_0x150eab(0xcce)],_0x24d152[_0x150eab(0x29e)](_0x5bc906,_0x48d32d)),_0x24d152[_0x17653f(0x7bc)](_0x24d152[_0x154f3c(0xc35)],_0x24d152[_0x154f3c(0xa68)](_0x322b63,_0xe72cba)));continue;case'18':_0x298ae0=_0x4f045b[_0x150eab(0x785)+_0x150eab(0x9b3)](_0x24d152[_0x17653f(0x286)](_0x24d152[_0xf0a5c9(0x37a)],_0x24d152[_0x17653f(0x796)](_0x276a10,_0x8786af)),_0x24d152[_0x154f3c(0x807)](_0x24d152[_0x17653f(0xc35)],_0x24d152[_0x17653f(0xcd0)](_0x1618a9,_0x27f00c)));continue;case'19':_0x575c15=_0x1fa17a[_0x154f3c(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0x5c01d2(0x4fc)](_0x24d152[_0xf0a5c9(0x270)],_0x24d152[_0x17653f(0x9c8)](_0x40decf,_0x581dad)),_0x24d152[_0x5c01d2(0x692)](_0x24d152[_0x17653f(0xc35)],_0x24d152[_0x17653f(0x50c)](_0x450558,_0x5b8ae7)));continue;case'20':_0x50eea1=_0x84e126[_0xf0a5c9(0x785)+_0x150eab(0x9b3)](_0x24d152[_0x150eab(0xb0b)](_0x24d152[_0x150eab(0xdf0)],_0x24d152[_0x5c01d2(0x29e)](_0x7e8966,_0x1a0c76)),_0x24d152[_0x150eab(0xa52)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x150eab(0xadb)](_0x5b4c79,_0x48020a)));continue;case'21':_0xf8a989=_0x26bc46[_0x154f3c(0x785)+_0x5c01d2(0x9b3)](_0x24d152[_0x150eab(0x254)](_0x24d152[_0x150eab(0xbb9)],_0x24d152[_0xf0a5c9(0x7b2)](_0x3c0ee8,_0x497331)),_0x24d152[_0x150eab(0xc83)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x5c01d2(0x29e)](_0x3528c3,_0x2d20af)));continue;case'22':_0xb2fb0e=_0x362e76[_0x150eab(0x785)+_0x150eab(0x9b3)](_0x24d152[_0x150eab(0x2fa)](_0x24d152[_0x154f3c(0x367)],_0x24d152[_0x150eab(0x54d)](_0x79fe23,_0x2ab2f0)),_0x24d152[_0xf0a5c9(0xd8d)](_0x24d152[_0x5c01d2(0xc35)],_0x24d152[_0x150eab(0x3a7)](_0x26b3c5,_0x3ac7d1)));continue;case'23':_0x483e38=_0x525baf[_0xf0a5c9(0x785)+_0xf0a5c9(0x9b3)](_0x24d152[_0xf0a5c9(0x4fc)](_0x24d152[_0x150eab(0xcb2)],_0x24d152[_0xf0a5c9(0xd26)](_0x499df1,_0x52f44c)),_0x24d152[_0xf0a5c9(0x7f7)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0x154f3c(0x738)](_0x12650a,_0x54ab4a)));continue;case'24':_0x36036e=_0x11e881[_0x5c01d2(0x785)+_0x5c01d2(0x9b3)](_0x24d152[_0x5c01d2(0x278)](_0x24d152[_0x150eab(0x844)],_0x24d152[_0x17653f(0x54d)](_0x3e9c95,_0x362ba8)),_0x24d152[_0x17653f(0x200)](_0x24d152[_0xf0a5c9(0xc35)],_0x24d152[_0xf0a5c9(0x972)](_0xa6cbcb,_0x457622)));continue;}break;}}else{let _0x5076c1;_0x24d152[_0x17653f(0x69d)](fetch,_0x24d152[_0x150eab(0xa97)](_0x24d152[_0x154f3c(0x398)],_0x4c0422))[_0x5c01d2(0x56c)](_0x2d8579=>_0x2d8579[_0x5c01d2(0x518)]())[_0x150eab(0x56c)](_0x1996e6=>{const _0x33d1cd=_0x150eab,_0x32c453=_0x17653f,_0x171651=_0x5c01d2,_0x411e22=_0x5c01d2,_0x31a383=_0x17653f;if(_0x24d152[_0x33d1cd(0xa70)](_0x24d152[_0x32c453(0x618)],_0x24d152[_0x32c453(0x4a4)]))_0x24d152[_0x33d1cd(0x616)](send_modalchat,_0x316d5b,_0x1996e6[_0x24d152[_0x411e22(0xd16)]][0x80*-0x24+-0xed*0x1f+0x5*0x957][_0x24d152[_0x411e22(0xab3)]]);else{const _0x23f351=_0x249c55?function(){const _0x5ac0c6=_0x31a383;if(_0x575258){const _0x32c972=_0x4f20cd[_0x5ac0c6(0xb9d)](_0x3be571,arguments);return _0x2706a5=null,_0x32c972;}}:function(){};return _0x14093c=![],_0x23f351;}});return;}}_0x316d5b&&(_0x24d152[_0x5c01d2(0x3d8)](_0x24d152[_0xf0a5c9(0x496)],_0x24d152[_0x17653f(0x496)])?_0x2b8084=uSysYB[_0x17653f(0x738)](_0x164304,uSysYB[_0x5c01d2(0xd51)](uSysYB[_0x5c01d2(0xd8d)](uSysYB[_0x150eab(0x337)],uSysYB[_0x17653f(0xafe)]),');'))():(_0x4c0422=_0x316d5b[_0x150eab(0x435)+_0xf0a5c9(0xcc1)+'t'],_0x316d5b[_0x150eab(0x83e)+'e']()));regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;if(_0x4c0422[_0x17653f(0xcd2)](regexpdf)){if(_0x24d152[_0x150eab(0x3d8)](_0x24d152[_0x17653f(0xcfd)],_0x24d152[_0xf0a5c9(0x8c2)])){pdf_url=_0x4c0422[_0x154f3c(0xcd2)](regexpdf)[0x13f0+0x205a+-0x344a],_0x24d152[_0x5c01d2(0x616)](modal_open,_0x24d152[_0x17653f(0x43f)](_0x24d152[_0xf0a5c9(0x6e1)],_0x24d152[_0x5c01d2(0x528)](encodeURIComponent,pdf_url)),_0x24d152[_0x154f3c(0xd98)]);return;}else{let _0x3b602c;try{const _0x48d066=uSysYB[_0x150eab(0x738)](_0x2872ef,uSysYB[_0x17653f(0x278)](uSysYB[_0x17653f(0xd6a)](uSysYB[_0x154f3c(0x337)],uSysYB[_0x5c01d2(0xafe)]),');'));_0x3b602c=uSysYB[_0x154f3c(0x8ff)](_0x48d066);}catch(_0x563869){_0x3b602c=_0x5503c1;}const _0x2a2590=_0x3b602c[_0x150eab(0x261)+'le']=_0x3b602c[_0xf0a5c9(0x261)+'le']||{},_0x3db73f=[uSysYB[_0x5c01d2(0x875)],uSysYB[_0x154f3c(0x48b)],uSysYB[_0x17653f(0x94d)],uSysYB[_0x154f3c(0x4b8)],uSysYB[_0x154f3c(0x66b)],uSysYB[_0x150eab(0x584)],uSysYB[_0x5c01d2(0x9cd)]];for(let _0x5b25ba=-0xecc*-0x2+-0x3cf+-0x19c9;uSysYB[_0xf0a5c9(0x7a7)](_0x5b25ba,_0x3db73f[_0xf0a5c9(0x830)+'h']);_0x5b25ba++){const _0x3406d8=_0x3fdad8[_0xf0a5c9(0xb57)+_0x5c01d2(0xc43)+'r'][_0x154f3c(0x330)+_0x154f3c(0x96a)][_0xf0a5c9(0xba3)](_0x9258b9),_0x5e24d4=_0x3db73f[_0x5b25ba],_0x1f8858=_0x2a2590[_0x5e24d4]||_0x3406d8;_0x3406d8[_0x5c01d2(0xb5a)+_0xf0a5c9(0x6cf)]=_0x833d6f[_0x150eab(0xba3)](_0x1f1a41),_0x3406d8[_0x150eab(0x611)+_0x17653f(0xbbb)]=_0x1f8858[_0x150eab(0x611)+_0xf0a5c9(0xbbb)][_0x5c01d2(0xba3)](_0x1f8858),_0x2a2590[_0x5e24d4]=_0x3406d8;}}}if(_0x24d152[_0xf0a5c9(0xd21)](_0x4c0422[_0x5c01d2(0x830)+'h'],-0x318*-0xb+0x2500+-0x4708)||_0x24d152[_0x5c01d2(0x999)](_0x4c0422[_0x5c01d2(0x830)+'h'],0x1706+0x1912+0x2*-0x17c6))return;_0x24d152[_0x150eab(0x5bc)](trimArray,word_last,0x1030+0x2680+-0x34bc);if(_0x4c0422[_0x5c01d2(0x35b)+_0x17653f(0xd99)]('你能')||_0x4c0422[_0x5c01d2(0x35b)+_0xf0a5c9(0xd99)]('讲讲')||_0x4c0422[_0xf0a5c9(0x35b)+_0x17653f(0xd99)]('扮演')||_0x4c0422[_0x5c01d2(0x35b)+_0x154f3c(0xd99)]('模仿')||_0x4c0422[_0xf0a5c9(0x35b)+_0x154f3c(0xd99)](_0x24d152[_0x150eab(0x99c)])||_0x4c0422[_0x154f3c(0x35b)+_0x17653f(0xd99)]('帮我')||_0x4c0422[_0x5c01d2(0x35b)+_0xf0a5c9(0xd99)](_0x24d152[_0x5c01d2(0xa85)])||_0x4c0422[_0x154f3c(0x35b)+_0x5c01d2(0xd99)](_0x24d152[_0x17653f(0x47e)])||_0x4c0422[_0xf0a5c9(0x35b)+_0x17653f(0xd99)]('请问')||_0x4c0422[_0x150eab(0x35b)+_0x150eab(0xd99)]('请给')||_0x4c0422[_0xf0a5c9(0x35b)+_0x17653f(0xd99)]('请你')||_0x4c0422[_0x17653f(0x35b)+_0xf0a5c9(0xd99)](_0x24d152[_0x154f3c(0x99c)])||_0x4c0422[_0x154f3c(0x35b)+_0x150eab(0xd99)](_0x24d152[_0x154f3c(0x406)])||_0x4c0422[_0xf0a5c9(0x35b)+_0x17653f(0xd99)](_0x24d152[_0x5c01d2(0x1df)])||_0x4c0422[_0x5c01d2(0x35b)+_0x154f3c(0xd99)](_0x24d152[_0x17653f(0x742)])||_0x4c0422[_0x150eab(0x35b)+_0x5c01d2(0xd99)](_0x24d152[_0xf0a5c9(0xb4c)])||_0x4c0422[_0x17653f(0x35b)+_0x150eab(0xd99)](_0x24d152[_0xf0a5c9(0xc21)])||_0x4c0422[_0xf0a5c9(0x35b)+_0xf0a5c9(0xd99)]('怎样')||_0x4c0422[_0x154f3c(0x35b)+_0x17653f(0xd99)]('给我')||_0x4c0422[_0x154f3c(0x35b)+_0xf0a5c9(0xd99)]('如何')||_0x4c0422[_0x154f3c(0x35b)+_0x17653f(0xd99)]('谁是')||_0x4c0422[_0x17653f(0x35b)+_0x150eab(0xd99)]('查询')||_0x4c0422[_0x5c01d2(0x35b)+_0xf0a5c9(0xd99)](_0x24d152[_0x17653f(0x55d)])||_0x4c0422[_0x150eab(0x35b)+_0x5c01d2(0xd99)](_0x24d152[_0x5c01d2(0xa9d)])||_0x4c0422[_0x17653f(0x35b)+_0x5c01d2(0xd99)](_0x24d152[_0x5c01d2(0x713)])||_0x4c0422[_0xf0a5c9(0x35b)+_0x150eab(0xd99)](_0x24d152[_0xf0a5c9(0x5db)])||_0x4c0422[_0x5c01d2(0x35b)+_0x17653f(0xd99)]('哪个')||_0x4c0422[_0x17653f(0x35b)+_0xf0a5c9(0xd99)]('哪些')||_0x4c0422[_0x5c01d2(0x35b)+_0x5c01d2(0xd99)](_0x24d152[_0x17653f(0xa6b)])||_0x4c0422[_0x17653f(0x35b)+_0xf0a5c9(0xd99)](_0x24d152[_0x5c01d2(0xb1b)])||_0x4c0422[_0x5c01d2(0x35b)+_0x150eab(0xd99)]('啥是')||_0x4c0422[_0x154f3c(0x35b)+_0x17653f(0xd99)]('为啥')||_0x4c0422[_0x17653f(0x35b)+_0x5c01d2(0xd99)]('怎么'))return _0x24d152[_0x5c01d2(0x861)](send_webchat,_0x316d5b);if(_0x24d152[_0xf0a5c9(0x860)](lock_chat,-0x1af*0x5+0x11ec+-0x32b*0x3)){if(_0x24d152[_0xf0a5c9(0x50b)](_0x24d152[_0x5c01d2(0x745)],_0x24d152[_0x17653f(0x745)])){_0x24d152[_0x150eab(0x50c)](alert,_0x24d152[_0x150eab(0xbe4)]);return;}else _0x131d3c=_0x3dabfb[_0x154f3c(0x3d1)](_0x24d152[_0x17653f(0x7bc)](_0x398bd5,_0x20338e))[_0x24d152[_0x150eab(0xc8f)]],_0x22346d='';}lock_chat=0x1b*-0x15+0x296*0x4+-0x820;const _0x5dc957=_0x24d152[_0x154f3c(0x43f)](_0x24d152[_0x5c01d2(0x278)](_0x24d152[_0x5c01d2(0x1f6)](document[_0x150eab(0xc9f)+_0xf0a5c9(0x3e8)+_0x150eab(0x61d)](_0x24d152[_0xf0a5c9(0x6f7)])[_0x150eab(0xd8a)+_0x154f3c(0x8cb)][_0x154f3c(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x150eab(0x785)+'ce'](/<hr.*/gs,'')[_0x154f3c(0x785)+'ce'](/<[^>]+>/g,'')[_0xf0a5c9(0x785)+'ce'](/\n\n/g,'\x0a'),_0x24d152[_0x150eab(0xbd6)]),search_queryquery),_0x24d152[_0x5c01d2(0x54e)]),_0x5c0504={};_0x5c0504[_0xf0a5c9(0xcfb)]=_0x24d152[_0x17653f(0xa72)],_0x5c0504[_0x17653f(0x3db)+'nt']=_0x24d152[_0xf0a5c9(0xd54)];const _0x475a37={};_0x475a37[_0x17653f(0xcfb)]=_0x24d152[_0x17653f(0xc33)],_0x475a37[_0x154f3c(0x3db)+'nt']=_0x5dc957;let _0x4ac488=[_0x5c0504,_0x475a37];_0x4ac488=_0x4ac488[_0x17653f(0x576)+'t'](word_last),_0x4ac488=_0x4ac488[_0x5c01d2(0x576)+'t']([{'role':_0x24d152[_0xf0a5c9(0x491)],'content':_0x24d152[_0xf0a5c9(0x4dd)](_0x24d152[_0x154f3c(0x6e8)](_0x24d152[_0x5c01d2(0xbcb)],_0x4c0422),_0x24d152[_0x154f3c(0xc38)])}]);const _0x5efd2a={'method':_0x24d152[_0x154f3c(0xb97)],'headers':headers,'body':_0x24d152[_0xf0a5c9(0x9c8)](b64EncodeUnicode,JSON[_0x5c01d2(0xd73)+_0x150eab(0xcb0)]({'messages':_0x4ac488[_0x5c01d2(0x576)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x4c0422=_0x4c0422[_0x17653f(0x785)+_0x154f3c(0x9b3)]('\x0a\x0a','\x0a')[_0x154f3c(0x785)+_0xf0a5c9(0x9b3)]('\x0a\x0a','\x0a'),document[_0x150eab(0xc9f)+_0x17653f(0x3e8)+_0x154f3c(0x61d)](_0x24d152[_0x5c01d2(0x39e)])[_0xf0a5c9(0xd8a)+_0x5c01d2(0x8cb)]='',_0x24d152[_0x154f3c(0x616)](markdownToHtml,_0x24d152[_0x17653f(0xa19)](beautify,_0x4c0422),document[_0x17653f(0xc9f)+_0x154f3c(0x3e8)+_0xf0a5c9(0x61d)](_0x24d152[_0x17653f(0x39e)])),chatTemp='',text_offset=-(0x2df+0x1f80+-0x225e*0x1),prev_chat=document[_0xf0a5c9(0x3f7)+_0x154f3c(0x401)+_0x17653f(0xd95)](_0x24d152[_0x5c01d2(0x70f)])[_0x150eab(0xd8a)+_0xf0a5c9(0x8cb)],prev_chat=_0x24d152[_0x154f3c(0xc23)](_0x24d152[_0x154f3c(0x807)](_0x24d152[_0xf0a5c9(0xa33)](prev_chat,_0x24d152[_0x154f3c(0x85b)]),document[_0xf0a5c9(0xc9f)+_0x5c01d2(0x3e8)+_0x17653f(0x61d)](_0x24d152[_0x154f3c(0x39e)])[_0x17653f(0xd8a)+_0xf0a5c9(0x8cb)]),_0x24d152[_0x5c01d2(0xbb6)]),_0x24d152[_0x154f3c(0x616)](fetch,_0x24d152[_0x17653f(0x23e)],_0x5efd2a)[_0x17653f(0x56c)](_0x5e7593=>{const _0x485e3e=_0xf0a5c9,_0x4e3a3a=_0x154f3c,_0x303822=_0xf0a5c9,_0x4b6735=_0x150eab,_0x4f5d9d=_0x5c01d2,_0x52ef53={'MAihy':_0x24d152[_0x485e3e(0x70f)],'EQjsk':function(_0x3dcfbc,_0x35fbd7){const _0x28d13f=_0x485e3e;return _0x24d152[_0x28d13f(0x286)](_0x3dcfbc,_0x35fbd7);},'pPDmZ':function(_0x1da551,_0x6d3211){const _0x54c4eb=_0x485e3e;return _0x24d152[_0x54c4eb(0x254)](_0x1da551,_0x6d3211);},'fmyZY':function(_0x5c100b,_0x2bf575){const _0x12132c=_0x485e3e;return _0x24d152[_0x12132c(0xca0)](_0x5c100b,_0x2bf575);},'ToUIu':_0x24d152[_0x485e3e(0x85b)],'mzAeg':_0x24d152[_0x303822(0x9d6)],'TNGUZ':_0x24d152[_0x4e3a3a(0x660)],'XwUrM':_0x24d152[_0x4f5d9d(0xbc4)],'OAocW':_0x24d152[_0x4f5d9d(0x75e)],'vjoDN':_0x24d152[_0x485e3e(0xbb6)],'sxNOl':function(_0x1b8c98,_0xc95296){const _0x4289c0=_0x485e3e;return _0x24d152[_0x4289c0(0x2fa)](_0x1b8c98,_0xc95296);},'ohbxT':_0x24d152[_0x4b6735(0xc8f)],'xCYoQ':function(_0x2bbcd5,_0x493bd4){const _0x218dbb=_0x485e3e;return _0x24d152[_0x218dbb(0xb59)](_0x2bbcd5,_0x493bd4);},'uTqRs':_0x24d152[_0x4b6735(0xb2a)],'mUHBP':_0x24d152[_0x485e3e(0x6bc)],'NDhwe':function(_0x5c7ea8,_0x4562a2){const _0x341219=_0x485e3e;return _0x24d152[_0x341219(0xa70)](_0x5c7ea8,_0x4562a2);},'mLMFI':_0x24d152[_0x303822(0x9a4)],'xppvq':_0x24d152[_0x303822(0xafb)],'pxSQw':_0x24d152[_0x4e3a3a(0x97f)],'KdobB':function(_0x47ea01,_0xdeae12){const _0x440444=_0x4f5d9d;return _0x24d152[_0x440444(0x225)](_0x47ea01,_0xdeae12);},'CWbyX':function(_0x566299,_0x4ba6da){const _0x2483da=_0x4b6735;return _0x24d152[_0x2483da(0xd21)](_0x566299,_0x4ba6da);},'ukhSP':_0x24d152[_0x485e3e(0x6a9)],'vqYrR':function(_0xa4679d,_0x1e587a){const _0x37e0eb=_0x303822;return _0x24d152[_0x37e0eb(0x6e7)](_0xa4679d,_0x1e587a);},'XnJkg':_0x24d152[_0x4f5d9d(0xb4e)],'ofPYs':_0x24d152[_0x485e3e(0x9a7)],'iJodw':_0x24d152[_0x303822(0xd48)],'LWWqT':_0x24d152[_0x4e3a3a(0xc33)],'xPZzn':_0x24d152[_0x485e3e(0x491)],'qCFnR':_0x24d152[_0x303822(0xd27)],'cSvyC':function(_0x5395a1,_0x384a19){const _0x38e661=_0x303822;return _0x24d152[_0x38e661(0x6e7)](_0x5395a1,_0x384a19);},'hQaHP':_0x24d152[_0x4f5d9d(0x8ae)],'yIPvn':function(_0x255b19,_0x4e22e0){const _0x5ce168=_0x485e3e;return _0x24d152[_0x5ce168(0xa70)](_0x255b19,_0x4e22e0);},'UAdem':_0x24d152[_0x4f5d9d(0x47d)],'FjTQA':_0x24d152[_0x4f5d9d(0x3f1)],'pYWPR':function(_0x2a499d,_0x1ae73e){const _0xafa730=_0x4b6735;return _0x24d152[_0xafa730(0x6e8)](_0x2a499d,_0x1ae73e);},'bPRXu':_0x24d152[_0x4f5d9d(0x52b)],'uhlEI':_0x24d152[_0x4e3a3a(0x539)],'gMKhz':function(_0x59b7f2,_0x1fc8f9){const _0x10b985=_0x303822;return _0x24d152[_0x10b985(0x999)](_0x59b7f2,_0x1fc8f9);},'gjtIi':function(_0x280b02,_0x29f453){const _0x59e826=_0x303822;return _0x24d152[_0x59e826(0x2d7)](_0x280b02,_0x29f453);},'TBvFd':_0x24d152[_0x303822(0xd3e)],'IjHum':_0x24d152[_0x4b6735(0x39e)],'UruwW':function(_0x55635a,_0x4f8ad5,_0x2544c7){const _0x447c81=_0x303822;return _0x24d152[_0x447c81(0x616)](_0x55635a,_0x4f8ad5,_0x2544c7);},'FpBOK':function(_0x3dfc6c,_0x51fda2){const _0x27adb6=_0x4b6735;return _0x24d152[_0x27adb6(0x2ad)](_0x3dfc6c,_0x51fda2);},'pgxUQ':function(_0x193621,_0x3504a4){const _0x3a7c30=_0x4f5d9d;return _0x24d152[_0x3a7c30(0x6a3)](_0x193621,_0x3504a4);},'liTcq':function(_0x49deb8,_0x19a4e9){const _0x3a6500=_0x4b6735;return _0x24d152[_0x3a6500(0x26c)](_0x49deb8,_0x19a4e9);},'jrJvS':_0x24d152[_0x4e3a3a(0x444)],'gYHyG':_0x24d152[_0x4e3a3a(0x8b8)],'TKgLu':_0x24d152[_0x4e3a3a(0x6e4)],'jdxDH':_0x24d152[_0x4f5d9d(0x4d0)],'pQTnT':_0x24d152[_0x4f5d9d(0x49a)],'dNSzz':_0x24d152[_0x4f5d9d(0x419)]};if(_0x24d152[_0x485e3e(0x6e7)](_0x24d152[_0x485e3e(0xa6f)],_0x24d152[_0x303822(0x72e)]))_0x4d6581[_0x4b6735(0x3f7)+_0x4b6735(0x401)+_0x4e3a3a(0xd95)](_0x52ef53[_0x4e3a3a(0x765)])[_0x4e3a3a(0xd8a)+_0x303822(0x8cb)]=_0x52ef53[_0x4f5d9d(0xaa3)](_0x52ef53[_0x485e3e(0xaa3)](_0x52ef53[_0x4e3a3a(0xaa3)](_0x52ef53[_0x4b6735(0x937)](_0x52ef53[_0x303822(0x290)](_0x52ef53[_0x4f5d9d(0x937)](_0x2d3e3e,_0x52ef53[_0x4e3a3a(0x4a3)]),_0x52ef53[_0x485e3e(0xdc8)]),_0x52ef53[_0x485e3e(0x2d8)]),_0x52ef53[_0x4f5d9d(0x5ca)]),_0x52ef53[_0x4b6735(0x722)]),_0x52ef53[_0x4e3a3a(0x76c)]);else{const _0x1fe0aa=_0x5e7593[_0x485e3e(0x573)][_0x4e3a3a(0x9a1)+_0x303822(0x7c2)]();let _0x205b53='',_0xcb2c52='';_0x1fe0aa[_0x4f5d9d(0xde0)]()[_0x4e3a3a(0x56c)](function _0x4d014a({done:_0xc12eb8,value:_0x2fc02e}){const _0x51d913=_0x485e3e,_0x582289=_0x303822,_0x1f6317=_0x303822,_0x38a5ad=_0x303822,_0x5ebe60=_0x303822,_0x182f2f={};_0x182f2f[_0x51d913(0xb5e)]=_0x52ef53[_0x51d913(0x5d9)],_0x182f2f[_0x1f6317(0x326)]=_0x52ef53[_0x1f6317(0xc7c)],_0x182f2f[_0x38a5ad(0x84f)]=_0x52ef53[_0x582289(0x77c)],_0x182f2f[_0x1f6317(0x8cc)]=_0x52ef53[_0x1f6317(0xd72)],_0x182f2f[_0x51d913(0x4ad)]=_0x52ef53[_0x51d913(0x364)];const _0x4da27a=_0x182f2f;if(_0x52ef53[_0x582289(0x927)](_0x52ef53[_0x582289(0x49d)],_0x52ef53[_0x1f6317(0x32f)])){if(_0xc12eb8)return;const _0x2e3b90=new TextDecoder(_0x52ef53[_0x582289(0xa20)])[_0x5ebe60(0x422)+'e'](_0x2fc02e);return _0x2e3b90[_0x51d913(0x44c)]()[_0x1f6317(0x308)]('\x0a')[_0x5ebe60(0x5b5)+'ch'](function(_0x182cfb){const _0x10af9a=_0x38a5ad,_0x5d8208=_0x582289,_0x8d14aa=_0x1f6317,_0x1bf697=_0x582289,_0x526ad5=_0x1f6317,_0x2bfb12={'ZMnUc':function(_0x181c6a,_0x2e883e){const _0x11911e=_0x4b15;return _0x52ef53[_0x11911e(0xbf4)](_0x181c6a,_0x2e883e);},'HPcAh':_0x52ef53[_0x10af9a(0x217)]};if(_0x52ef53[_0x10af9a(0x5e8)](_0x52ef53[_0x8d14aa(0xa3c)],_0x52ef53[_0x5d8208(0x9e1)]))_0x589cd2[_0x10af9a(0xa18)](_0x4da27a[_0x5d8208(0xb5e)],_0x544943);else{try{_0x52ef53[_0x1bf697(0xa81)](_0x52ef53[_0x526ad5(0x7a6)],_0x52ef53[_0x10af9a(0xd04)])?document[_0x8d14aa(0xc9f)+_0x5d8208(0x3e8)+_0x5d8208(0x61d)](_0x52ef53[_0x1bf697(0x50f)])[_0x10af9a(0x5a4)+_0x10af9a(0x60a)]=document[_0x1bf697(0xc9f)+_0x526ad5(0x3e8)+_0x5d8208(0x61d)](_0x52ef53[_0x526ad5(0x50f)])[_0x1bf697(0x5a4)+_0x10af9a(0x4c4)+'ht']:_0x3225fa+='';}catch(_0x1c505d){}_0x205b53='';if(_0x52ef53[_0x5d8208(0x393)](_0x182cfb[_0x526ad5(0x830)+'h'],0x1*-0x8a0+-0x1ab6+-0x4*-0x8d7))_0x205b53=_0x182cfb[_0x1bf697(0xc25)](-0x31a*-0x9+0x171*0x6+0x6*-0x617);if(_0x52ef53[_0x10af9a(0x333)](_0x205b53,_0x52ef53[_0x10af9a(0x375)])){if(_0x52ef53[_0x10af9a(0x9c2)](_0x52ef53[_0x526ad5(0x995)],_0x52ef53[_0x1bf697(0xdee)]))_0x3204b1[_0x15d4fb]++;else{const _0x5505a2=_0x52ef53[_0x1bf697(0x95a)][_0x1bf697(0x308)]('|');let _0x31d7bf=-0x151f+-0x2*0xebd+-0x3299*-0x1;while(!![]){switch(_0x5505a2[_0x31d7bf++]){case'0':const _0x1dc1d8={};_0x1dc1d8[_0x1bf697(0xcfb)]=_0x52ef53[_0x1bf697(0x77c)],_0x1dc1d8[_0x8d14aa(0x3db)+'nt']=chatTemp,word_last[_0x8d14aa(0xd53)](_0x1dc1d8);continue;case'1':const _0x1d677f={};_0x1d677f[_0x8d14aa(0xcfb)]=_0x52ef53[_0x526ad5(0x364)],_0x1d677f[_0x8d14aa(0x3db)+'nt']=_0x4c0422,word_last[_0x526ad5(0xd53)](_0x1d677f);continue;case'2':lock_chat=-0x1*-0x196f+0x16ed+-0x9ac*0x5;continue;case'3':return;case'4':document[_0x1bf697(0xc9f)+_0x8d14aa(0x3e8)+_0x5d8208(0x61d)](_0x52ef53[_0x1bf697(0xd72)])[_0x10af9a(0xac3)]='';continue;}break;}}}let _0xf3aea6;try{if(_0x52ef53[_0x5d8208(0x3bd)](_0x52ef53[_0x1bf697(0xbc0)],_0x52ef53[_0x8d14aa(0xbc0)]))try{if(_0x52ef53[_0x10af9a(0x766)](_0x52ef53[_0x8d14aa(0x377)],_0x52ef53[_0x1bf697(0x669)]))_0xf3aea6=JSON[_0x1bf697(0x3d1)](_0x52ef53[_0x526ad5(0x966)](_0xcb2c52,_0x205b53))[_0x52ef53[_0x5d8208(0x217)]],_0xcb2c52='';else{var _0x397e03=[],_0x1e457e=[];for(var _0x5973ae of _0x2e6041){const _0x29e23e={};_0x29e23e[_0x10af9a(0x73f)]=0x1,_0x4d0a01[_0x10af9a(0x98b)]=_0x5973ae[_0x1bf697(0x73b)+_0x10af9a(0x720)+'t'](_0x29e23e),_0x397e03[_0x526ad5(0xd53)](_0x5973ae[_0x10af9a(0x551)+_0x526ad5(0x729)+_0x526ad5(0x890)]());const _0x3f5bd4={};_0x3f5bd4[_0x5d8208(0x73f)]=0x1,_0x1e457e[_0x10af9a(0xd53)]([_0x5973ae[_0x526ad5(0x73b)+_0x10af9a(0x720)+'t'](_0x3f5bd4),_0x2bfb12[_0x526ad5(0x559)](_0x5973ae[_0x5d8208(0x542)+_0x10af9a(0xa43)],-0xb4f*-0x3+-0xb*0x30f+0x1*-0x47)]);}return _0x53c76e[_0x8d14aa(0x2ed)]([_0x3d5e74[_0x1bf697(0x2ed)](_0x397e03),_0x1e457e]);}}catch(_0x4a9344){if(_0x52ef53[_0x5d8208(0x5e8)](_0x52ef53[_0x1bf697(0x34b)],_0x52ef53[_0x1bf697(0x34b)]))_0xf3aea6=JSON[_0x1bf697(0x3d1)](_0x205b53)[_0x52ef53[_0x10af9a(0x217)]],_0xcb2c52='';else{const _0x444a68=_0x4da27a[_0x8d14aa(0x326)][_0x526ad5(0x308)]('|');let _0x4bda0b=-0x423+0x144b*-0x1+-0x6a*-0x3b;while(!![]){switch(_0x444a68[_0x4bda0b++]){case'0':const _0x1cdc63={};_0x1cdc63[_0x526ad5(0xcfb)]=_0x4da27a[_0x8d14aa(0x84f)],_0x1cdc63[_0x1bf697(0x3db)+'nt']=_0x7914e9,_0x4bd76b[_0x10af9a(0xd53)](_0x1cdc63);continue;case'1':_0x42f354=0x5c3+0x1929+0x1*-0x1eec;continue;case'2':_0x520634[_0x10af9a(0xc9f)+_0x526ad5(0x3e8)+_0x526ad5(0x61d)](_0x4da27a[_0x526ad5(0x8cc)])[_0x1bf697(0xac3)]='';continue;case'3':return;case'4':const _0x4de203={};_0x4de203[_0x5d8208(0xcfb)]=_0x4da27a[_0x10af9a(0x4ad)],_0x4de203[_0x10af9a(0x3db)+'nt']=_0x4af127,_0x98319d[_0x8d14aa(0xd53)](_0x4de203);continue;}break;}}}else _0x4c1944=_0xe2efc6[_0x526ad5(0x3d1)](_0x240f89)[_0x2bfb12[_0x1bf697(0x220)]],_0x248c4a='';}catch(_0x2175ad){if(_0x52ef53[_0x1bf697(0x9c2)](_0x52ef53[_0x8d14aa(0xc96)],_0x52ef53[_0x526ad5(0xc96)]))_0xcb2c52+=_0x205b53;else try{_0x28ef5=_0x40097b[_0x1bf697(0x3d1)](_0x2bfb12[_0x8d14aa(0x559)](_0x28f862,_0x447f3a))[_0x2bfb12[_0x10af9a(0x220)]],_0x578a1a='';}catch(_0x5c69ee){_0x4db4e4=_0xa965fb[_0x10af9a(0x3d1)](_0x20e5ca)[_0x2bfb12[_0x5d8208(0x220)]],_0x5c5855='';}}if(_0xf3aea6&&_0x52ef53[_0x5d8208(0x7e4)](_0xf3aea6[_0x526ad5(0x830)+'h'],0xc4+0x74*-0x1f+0xa*0x154)&&_0xf3aea6[-0x3*-0x513+0x1c1b+-0x2b54][_0x8d14aa(0x6a1)][_0x526ad5(0x3db)+'nt']){if(_0x52ef53[_0x5d8208(0x927)](_0x52ef53[_0x1bf697(0xd50)],_0x52ef53[_0x1bf697(0xd50)])){const _0x280585=_0x46a181[_0x8d14aa(0xb9d)](_0x2aeb94,arguments);return _0x38fe7c=null,_0x280585;}else chatTemp+=_0xf3aea6[0x1847+0x79a+-0x1*0x1fe1][_0x1bf697(0x6a1)][_0x10af9a(0x3db)+'nt'];}chatTemp=chatTemp[_0x1bf697(0x785)+_0x8d14aa(0x9b3)]('\x0a\x0a','\x0a')[_0x8d14aa(0x785)+_0x8d14aa(0x9b3)]('\x0a\x0a','\x0a'),document[_0x8d14aa(0xc9f)+_0x526ad5(0x3e8)+_0x5d8208(0x61d)](_0x52ef53[_0x1bf697(0x455)])[_0x5d8208(0xd8a)+_0x526ad5(0x8cb)]='',_0x52ef53[_0x1bf697(0x656)](markdownToHtml,_0x52ef53[_0x5d8208(0x8e9)](beautify,chatTemp),document[_0x8d14aa(0xc9f)+_0x526ad5(0x3e8)+_0x1bf697(0x61d)](_0x52ef53[_0x8d14aa(0x455)])),document[_0x526ad5(0x3f7)+_0x8d14aa(0x401)+_0x526ad5(0xd95)](_0x52ef53[_0x5d8208(0x765)])[_0x526ad5(0xd8a)+_0x1bf697(0x8cb)]=_0x52ef53[_0x526ad5(0x4bb)](_0x52ef53[_0x5d8208(0x966)](_0x52ef53[_0x1bf697(0x761)](prev_chat,_0x52ef53[_0x526ad5(0xcd8)]),document[_0x10af9a(0xc9f)+_0x526ad5(0x3e8)+_0x5d8208(0x61d)](_0x52ef53[_0x1bf697(0x455)])[_0x10af9a(0xd8a)+_0x5d8208(0x8cb)]),_0x52ef53[_0x1bf697(0x76c)]);}}),_0x1fe0aa[_0x5ebe60(0xde0)]()[_0x5ebe60(0x56c)](_0x4d014a);}else _0x3edee7=_0xb1c779[_0x38a5ad(0x435)+_0x51d913(0xcc1)+'t'],_0x27d4db[_0x1f6317(0x83e)+'e']();});}})[_0x5c01d2(0x46c)](_0x5b43c6=>{const _0x2e074d=_0x17653f,_0x1bcb34=_0x5c01d2,_0x23a2c2=_0x150eab,_0x49ddd6=_0x17653f,_0x4ba1fd=_0xf0a5c9,_0x2358a7={};_0x2358a7[_0x2e074d(0xbde)]=_0x24d152[_0x1bcb34(0x97f)];const _0x476ec3=_0x2358a7;_0x24d152[_0x23a2c2(0x2d7)](_0x24d152[_0x49ddd6(0xbf2)],_0x24d152[_0x1bcb34(0xbf2)])?_0x47509a[_0x1bcb34(0xc9f)+_0x4ba1fd(0x3e8)+_0x1bcb34(0x61d)](_0x476ec3[_0x4ba1fd(0xbde)])[_0x2e074d(0x5a4)+_0x49ddd6(0x60a)]=_0x230e92[_0x4ba1fd(0xc9f)+_0x4ba1fd(0x3e8)+_0x2e074d(0x61d)](_0x476ec3[_0x49ddd6(0xbde)])[_0x4ba1fd(0x5a4)+_0x2e074d(0x4c4)+'ht']:console[_0x23a2c2(0xa18)](_0x24d152[_0x2e074d(0x8b8)],_0x5b43c6);});}function replaceUrlWithFootnote(_0x374dd4){const _0x6182d=_0x2239e4,_0x491b1f=_0x372c3c,_0xd053c0=_0x2239e4,_0x5056f3=_0x2239e4,_0x4625d1=_0x51b305,_0x37cb53={};_0x37cb53[_0x6182d(0x7ff)]=function(_0x1a5b3c,_0x4301e4){return _0x1a5b3c!==_0x4301e4;},_0x37cb53[_0x6182d(0x336)]=_0xd053c0(0xabb),_0x37cb53[_0xd053c0(0x5cd)]=function(_0x2c891a,_0x4cd460){return _0x2c891a===_0x4cd460;},_0x37cb53[_0x5056f3(0xb55)]=_0x5056f3(0x558),_0x37cb53[_0x6182d(0x3c6)]=function(_0x7723d4,_0x1d0bda){return _0x7723d4+_0x1d0bda;},_0x37cb53[_0x491b1f(0xd45)]=function(_0x876c4,_0x572193){return _0x876c4-_0x572193;},_0x37cb53[_0x4625d1(0xb5b)]=function(_0x3342f4,_0x381009){return _0x3342f4<=_0x381009;},_0x37cb53[_0x4625d1(0xaf0)]=_0x6182d(0x457)+':',_0x37cb53[_0x6182d(0x267)]=function(_0x133cf6,_0x1484cb){return _0x133cf6>_0x1484cb;},_0x37cb53[_0x6182d(0xd08)]=function(_0x14585b,_0x50b030){return _0x14585b!==_0x50b030;},_0x37cb53[_0x5056f3(0x5e2)]=_0x491b1f(0x6e0),_0x37cb53[_0x491b1f(0xdf3)]=_0x6182d(0x6d4);const _0x1279d9=_0x37cb53,_0x59f4dc=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x224035=new Set(),_0x50824d=(_0x182721,_0x55827f)=>{const _0x260106=_0x491b1f,_0x53ccf6=_0x491b1f,_0x1f93b0=_0xd053c0,_0x18d5d7=_0x4625d1,_0x31b2fa=_0x491b1f;if(_0x1279d9[_0x260106(0x7ff)](_0x1279d9[_0x260106(0x336)],_0x1279d9[_0x1f93b0(0x336)]))return-0x1a9a+0x5ea+0x14b1;else{if(_0x224035[_0x53ccf6(0x867)](_0x55827f))return _0x1279d9[_0x31b2fa(0x5cd)](_0x1279d9[_0x260106(0xb55)],_0x1279d9[_0x1f93b0(0xb55)])?_0x182721:_0x3596b7&&_0x1cd717[_0x1f93b0(0x44c)]();const _0xf11388=_0x55827f[_0x1f93b0(0x308)](/[;,;、,]/),_0x331650=_0xf11388[_0x1f93b0(0x4a5)](_0x49837b=>'['+_0x49837b+']')[_0x260106(0x93a)]('\x20'),_0x391934=_0xf11388[_0x260106(0x4a5)](_0x46be9f=>'['+_0x46be9f+']')[_0x18d5d7(0x93a)]('\x0a');_0xf11388[_0x53ccf6(0x5b5)+'ch'](_0x6e4c22=>_0x224035[_0x18d5d7(0x7a0)](_0x6e4c22)),res='\x20';for(var _0x565c27=_0x1279d9[_0x1f93b0(0x3c6)](_0x1279d9[_0x53ccf6(0xd45)](_0x224035[_0x1f93b0(0x5ef)],_0xf11388[_0x18d5d7(0x830)+'h']),-0xed8+-0x1f1*0x7+0x1c70*0x1);_0x1279d9[_0x53ccf6(0xb5b)](_0x565c27,_0x224035[_0x53ccf6(0x5ef)]);++_0x565c27)res+='[^'+_0x565c27+']\x20';return res;}};let _0x5aa9c3=-0x724+-0x795*0x2+0x164f,_0x8fe4a6=_0x374dd4[_0x491b1f(0x785)+'ce'](_0x59f4dc,_0x50824d);while(_0x1279d9[_0x4625d1(0x267)](_0x224035[_0xd053c0(0x5ef)],0x5fe*0x4+0x1b7d+-0x3375)){if(_0x1279d9[_0x6182d(0xd08)](_0x1279d9[_0xd053c0(0x5e2)],_0x1279d9[_0x491b1f(0xdf3)])){const _0x2db3fc='['+_0x5aa9c3++ +_0x5056f3(0x7cb)+_0x224035[_0x4625d1(0xac3)+'s']()[_0x4625d1(0xb89)]()[_0xd053c0(0xac3)],_0x20c3df='[^'+_0x1279d9[_0x4625d1(0xd45)](_0x5aa9c3,-0xf*0x25e+0x1229*-0x1+0x35ac)+_0x6182d(0x7cb)+_0x224035[_0x491b1f(0xac3)+'s']()[_0x6182d(0xb89)]()[_0xd053c0(0xac3)];_0x8fe4a6=_0x8fe4a6+'\x0a\x0a'+_0x20c3df,_0x224035[_0x6182d(0x816)+'e'](_0x224035[_0x6182d(0xac3)+'s']()[_0x491b1f(0xb89)]()[_0x6182d(0xac3)]);}else _0x148482[_0x491b1f(0xa18)](_0x1279d9[_0x6182d(0xaf0)],_0xb4b732);}return _0x8fe4a6;}function beautify(_0x1f5a35){const _0x4687a0=_0x372c3c,_0x3e1feb=_0x2628a6,_0x5baf20=_0x2628a6,_0xbb5e1f=_0x380db8,_0x33a6e3=_0x380db8,_0x43e697={'YHxuK':function(_0x291022,_0x52d2e4){return _0x291022<_0x52d2e4;},'NgNco':function(_0x1cf391,_0x443b53){return _0x1cf391>=_0x443b53;},'yqHTS':function(_0x5cb3ab,_0x45414f){return _0x5cb3ab===_0x45414f;},'DZTvv':_0x4687a0(0xbd2),'HVOAp':_0x4687a0(0xa40)+_0x4687a0(0x6e6)+_0x4687a0(0x866)+_0xbb5e1f(0x3c1)+_0x5baf20(0xd28)+_0xbb5e1f(0x9f0)+_0x33a6e3(0x1f3)+_0x5baf20(0x45e)+_0x3e1feb(0xa2c)+_0x3e1feb(0x548)+_0xbb5e1f(0x216)+_0x4687a0(0x207)+_0x4687a0(0x82b),'yXAxS':function(_0x1e82c5,_0x2f80ae){return _0x1e82c5+_0x2f80ae;},'lruSJ':_0xbb5e1f(0x493)+'l','mpDjo':function(_0x9666fa,_0x31f30b){return _0x9666fa(_0x31f30b);},'ZmYGr':function(_0x25f017,_0x1b7f58){return _0x25f017+_0x1b7f58;},'tKeif':_0xbb5e1f(0x214)+_0x5baf20(0x5f9)+'rl','dVnFL':function(_0x198f20,_0x121f80){return _0x198f20(_0x121f80);},'aVKHA':function(_0x491960,_0x153611){return _0x491960+_0x153611;},'nrLhl':_0x4687a0(0xd56)+_0xbb5e1f(0x52f),'Ifxmc':function(_0x2c6922,_0x48f804){return _0x2c6922(_0x48f804);},'hYGic':function(_0x289791,_0x3a0b3f){return _0x289791+_0x3a0b3f;},'ogyfn':_0x4687a0(0x233)+'rl','DUwsy':function(_0xe15a72,_0x4e4049){return _0xe15a72(_0x4e4049);},'twwmz':function(_0x227d3f,_0x106c0b){return _0x227d3f+_0x106c0b;},'GFvOe':function(_0x20d5fe,_0x4e03a6){return _0x20d5fe+_0x4e03a6;},'IwIZM':_0x5baf20(0xd56)+_0x33a6e3(0x4b0),'xbbUd':function(_0x1e1861,_0x4d461b){return _0x1e1861(_0x4d461b);},'AeXzJ':_0x5baf20(0x5ea)+_0x33a6e3(0x5f7)+_0x4687a0(0x297),'yuPJg':function(_0x2d112e,_0xb0cc1){return _0x2d112e(_0xb0cc1);},'NlimX':function(_0xb9b74d,_0x66e660){return _0xb9b74d+_0x66e660;},'IDlbk':function(_0x37db43,_0x12ab33){return _0x37db43+_0x12ab33;},'lByFH':_0x33a6e3(0xd56)+_0x4687a0(0x450)+_0xbb5e1f(0x5f9)+'rl','WQxyV':function(_0x2ffa1a,_0x3191ee){return _0x2ffa1a(_0x3191ee);},'OmhRT':function(_0x24a0f5,_0x15962f){return _0x24a0f5+_0x15962f;},'JIXnZ':function(_0x212aac,_0x21a9cd){return _0x212aac(_0x21a9cd);},'cjNnJ':function(_0x2f0e2a,_0xd619d7){return _0x2f0e2a+_0xd619d7;},'DFOFG':_0x33a6e3(0x892)+_0x3e1feb(0xa92)+_0xbb5e1f(0x291),'FNCGq':function(_0x42bc09,_0x5c064c){return _0x42bc09+_0x5c064c;},'zjoTD':_0x3e1feb(0x6f4)+'l','lizWQ':function(_0x3b97e6,_0x4c6191){return _0x3b97e6+_0x4c6191;},'bUscG':function(_0x45373b,_0x3a05f4){return _0x45373b+_0x3a05f4;},'VveAE':_0x3e1feb(0x324)+'l','fSwcl':function(_0x2ceb45,_0x417131){return _0x2ceb45(_0x417131);},'hKijv':function(_0x3286b6,_0x54aac5){return _0x3286b6+_0x54aac5;},'aTybG':_0x33a6e3(0xd1d)+'rl','iLHnE':function(_0x4ff589,_0x3e4588){return _0x4ff589(_0x3e4588);},'UFuxh':function(_0x267cee,_0x4b1bf8){return _0x267cee(_0x4b1bf8);},'EENHS':function(_0x45c693,_0x26115e){return _0x45c693+_0x26115e;},'uWssO':_0x33a6e3(0x5a2)+_0x33a6e3(0x5f7)+_0x3e1feb(0x297),'UGCSm':function(_0x26a3f2,_0x3ca5cf){return _0x26a3f2(_0x3ca5cf);},'tMcOu':function(_0x33f46e,_0x33ca44){return _0x33f46e+_0x33ca44;},'oiBPU':_0x5baf20(0x74c),'VBZZl':function(_0x317756,_0x572e30){return _0x317756(_0x572e30);},'aKuJc':function(_0x4785ae,_0x2fba61){return _0x4785ae(_0x2fba61);},'pQcSm':function(_0x1e5b50,_0x2a4301){return _0x1e5b50+_0x2a4301;},'CBNAP':function(_0x618781,_0x52d294){return _0x618781+_0x52d294;},'bNRye':function(_0x6e2102,_0x4b961e){return _0x6e2102(_0x4b961e);},'ZMEcE':function(_0x51229b,_0x53011e){return _0x51229b+_0x53011e;},'hvVPU':_0x4687a0(0x436),'rTXqT':function(_0x4bba76,_0x3c897d){return _0x4bba76+_0x3c897d;},'SZTmK':function(_0x20ad4c,_0x29c62a){return _0x20ad4c(_0x29c62a);},'sAQpI':function(_0x2583dd,_0x28b588){return _0x2583dd+_0x28b588;},'PbwIV':_0x33a6e3(0xd56),'eMeEW':function(_0x2529f1,_0x41c6cb){return _0x2529f1(_0x41c6cb);},'Wncgv':function(_0x24df19,_0x509911){return _0x24df19+_0x509911;},'yfAMs':function(_0x161839,_0x1e8701){return _0x161839(_0x1e8701);},'HDDBe':_0xbb5e1f(0x7fc),'BRdHR':function(_0x1f67ba,_0x265013){return _0x1f67ba(_0x265013);},'pOIxq':function(_0x17fe3b,_0x41da65){return _0x17fe3b(_0x41da65);},'akGpN':function(_0xadf320,_0x13830a){return _0xadf320+_0x13830a;},'WKaGh':_0xbb5e1f(0x469)+_0x3e1feb(0x5f7)+_0x4687a0(0x297),'ZqrdJ':_0x33a6e3(0x60e)+'rl','eaKvj':function(_0x1c1788,_0x1af384){return _0x1c1788(_0x1af384);},'oQPeo':_0x4687a0(0x960),'bEhBC':function(_0x51cc07,_0x75ff70){return _0x51cc07+_0x75ff70;},'wXQmG':function(_0x1e5214,_0x336e5f){return _0x1e5214(_0x336e5f);},'JrOFf':function(_0x197124,_0x66a2b5){return _0x197124+_0x66a2b5;},'TtALA':_0x33a6e3(0xd56)+':','VMixC':function(_0x10934d,_0x10d589){return _0x10934d+_0x10d589;},'AuUqD':function(_0x128a26,_0xf6af6e){return _0x128a26+_0xf6af6e;},'OQpRC':function(_0x13e96c,_0x2f6ff4){return _0x13e96c(_0x2f6ff4);},'xuWtK':_0x4687a0(0x87a)+_0x5baf20(0xa92)+_0x5baf20(0x291),'uTRse':function(_0x492cc1,_0x222090){return _0x492cc1+_0x222090;},'WqrbS':function(_0x41c575,_0x6c1727){return _0x41c575(_0x6c1727);},'MZuWS':_0x33a6e3(0xd07)+_0x33a6e3(0xa92)+_0x3e1feb(0x291),'RNSIB':function(_0x100114,_0x1698f5){return _0x100114(_0x1698f5);},'uOWUu':function(_0x3d1c6a,_0x201347){return _0x3d1c6a(_0x201347);},'lTZhZ':_0xbb5e1f(0xd56)+_0x5baf20(0x7cc)+_0xbb5e1f(0x5a0)+'l','CYMXT':function(_0x23d1db,_0x398df0){return _0x23d1db+_0x398df0;},'bIiAP':function(_0x7dde40,_0x403cca){return _0x7dde40(_0x403cca);},'kuMIo':function(_0x1c92c5,_0x2496a9){return _0x1c92c5(_0x2496a9);},'KHlsW':function(_0x31ebdf,_0x5cb18c){return _0x31ebdf>=_0x5cb18c;},'INmgG':function(_0x306be9,_0x1e0066){return _0x306be9===_0x1e0066;},'hYUVU':_0xbb5e1f(0x228),'ONbIA':_0x4687a0(0x72d),'OsJfh':_0xbb5e1f(0x7cc)+_0x3e1feb(0x5a0)+'l','SmQjz':function(_0x320e5b,_0x4aa8a9){return _0x320e5b(_0x4aa8a9);},'FNkqd':_0xbb5e1f(0x7cc)+_0x3e1feb(0x4b0),'blNpw':function(_0x5cf15f,_0x53eec5){return _0x5cf15f+_0x53eec5;},'eJnso':_0x5baf20(0x4b0)};new_text=_0x1f5a35[_0x5baf20(0x785)+_0x3e1feb(0x9b3)]('','(')[_0x33a6e3(0x785)+_0x5baf20(0x9b3)]('',')')[_0x3e1feb(0x785)+_0x5baf20(0x9b3)](':\x20',':')[_0xbb5e1f(0x785)+_0x5baf20(0x9b3)]('',':')[_0x5baf20(0x785)+_0x3e1feb(0x9b3)](',\x20',',')[_0x5baf20(0x785)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x3702d8=prompt[_0x4687a0(0xafd)+_0x5baf20(0x6fa)][_0x3e1feb(0x830)+'h'];_0x43e697[_0x5baf20(0x776)](_0x3702d8,-0x1913+0x11a4+0xb*0xad);--_0x3702d8){if(_0x43e697[_0x5baf20(0x36e)](_0x43e697[_0x33a6e3(0x806)],_0x43e697[_0xbb5e1f(0x806)])){const _0x2c7ccb=_0x43e697[_0xbb5e1f(0x5cc)][_0xbb5e1f(0x308)]('|');let _0x23ebab=-0x21ce+-0x47b*0x7+-0xc9*-0x53;while(!![]){switch(_0x2c7ccb[_0x23ebab++]){case'0':new_text=new_text[_0xbb5e1f(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0xbb5e1f(0x66e)](_0x43e697[_0x33a6e3(0x989)],_0x43e697[_0xbb5e1f(0xa62)](String,_0x3702d8)),_0x43e697[_0x3e1feb(0x869)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0x3e1feb(0x7ac)](String,_0x3702d8)));continue;case'1':new_text=new_text[_0x4687a0(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0x3e1feb(0xab2)](_0x43e697[_0x4687a0(0xc4a)],_0x43e697[_0x5baf20(0x7ac)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0x869)](_0x43e697[_0x3e1feb(0xd14)],_0x43e697[_0x4687a0(0xc5a)](String,_0x3702d8)));continue;case'2':new_text=new_text[_0x3e1feb(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0x3e1feb(0xd8b)](_0x43e697[_0x4687a0(0x53d)],_0x43e697[_0x5baf20(0x6da)](String,_0x3702d8)),_0x43e697[_0x5baf20(0x27f)](_0x43e697[_0x3e1feb(0xd14)],_0x43e697[_0x3e1feb(0xa62)](String,_0x3702d8)));continue;case'3':new_text=new_text[_0xbb5e1f(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0x5baf20(0x680)](_0x43e697[_0x4687a0(0x75a)],_0x43e697[_0xbb5e1f(0xc5a)](String,_0x3702d8)),_0x43e697[_0x5baf20(0x66e)](_0x43e697[_0xbb5e1f(0xd14)],_0x43e697[_0xbb5e1f(0xd05)](String,_0x3702d8)));continue;case'4':new_text=new_text[_0x3e1feb(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0xbb5e1f(0xd8b)](_0x43e697[_0x33a6e3(0x942)],_0x43e697[_0x4687a0(0x420)](String,_0x3702d8)),_0x43e697[_0x5baf20(0x3f9)](_0x43e697[_0x5baf20(0xd14)],_0x43e697[_0x33a6e3(0xd05)](String,_0x3702d8)));continue;case'5':new_text=new_text[_0x3e1feb(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0x4687a0(0xa16)](_0x43e697[_0x3e1feb(0xace)],_0x43e697[_0x3e1feb(0xd2a)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0x4e1)](_0x43e697[_0x5baf20(0xd14)],_0x43e697[_0x33a6e3(0x9fa)](String,_0x3702d8)));continue;case'6':new_text=new_text[_0xbb5e1f(0x785)+_0x33a6e3(0x9b3)](_0x43e697[_0x4687a0(0x2ea)](_0x43e697[_0x33a6e3(0xc94)],_0x43e697[_0x5baf20(0x420)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0x3f9)](_0x43e697[_0x3e1feb(0xd14)],_0x43e697[_0x4687a0(0xa62)](String,_0x3702d8)));continue;case'7':new_text=new_text[_0x4687a0(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0x4687a0(0x229)](_0x43e697[_0x5baf20(0x566)],_0x43e697[_0x3e1feb(0x420)](String,_0x3702d8)),_0x43e697[_0x4687a0(0x21a)](_0x43e697[_0x5baf20(0xd14)],_0x43e697[_0x4687a0(0xd05)](String,_0x3702d8)));continue;case'8':new_text=new_text[_0x33a6e3(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0x5baf20(0x4a8)](_0x43e697[_0x4687a0(0x792)],_0x43e697[_0xbb5e1f(0x5eb)](String,_0x3702d8)),_0x43e697[_0x4687a0(0x84c)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0xbb5e1f(0xd2a)](String,_0x3702d8)));continue;case'9':new_text=new_text[_0xbb5e1f(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0x3e1feb(0x21a)](_0x43e697[_0xbb5e1f(0x58f)],_0x43e697[_0x33a6e3(0x788)](String,_0x3702d8)),_0x43e697[_0x33a6e3(0x680)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0x4687a0(0xdd4)](String,_0x3702d8)));continue;case'10':new_text=new_text[_0xbb5e1f(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0x33a6e3(0xbc5)](_0x43e697[_0x3e1feb(0xcb9)],_0x43e697[_0x33a6e3(0xda7)](String,_0x3702d8)),_0x43e697[_0x3e1feb(0xbc5)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0x5baf20(0x788)](String,_0x3702d8)));continue;case'11':new_text=new_text[_0x3e1feb(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0xbb5e1f(0x431)](_0x43e697[_0x5baf20(0x2d2)],_0x43e697[_0xbb5e1f(0x647)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0x3f9)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0x4687a0(0x9e3)](String,_0x3702d8)));continue;case'12':new_text=new_text[_0x3e1feb(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0x33a6e3(0x969)](_0x43e697[_0x33a6e3(0x2d2)],_0x43e697[_0x3e1feb(0xdd4)](String,_0x3702d8)),_0x43e697[_0x4687a0(0xa2a)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0x3e1feb(0xa0b)](String,_0x3702d8)));continue;case'13':new_text=new_text[_0x3e1feb(0x785)+_0x33a6e3(0x9b3)](_0x43e697[_0x3e1feb(0x6aa)](_0x43e697[_0x5baf20(0x36d)],_0x43e697[_0xbb5e1f(0xa0b)](String,_0x3702d8)),_0x43e697[_0x4687a0(0xa36)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0x33a6e3(0xd64)](String,_0x3702d8)));continue;case'14':new_text=new_text[_0x33a6e3(0x785)+_0x33a6e3(0x9b3)](_0x43e697[_0x4687a0(0x4fb)](_0x43e697[_0x33a6e3(0xc4d)],_0x43e697[_0xbb5e1f(0xd4a)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0x248)](_0x43e697[_0xbb5e1f(0xd14)],_0x43e697[_0x33a6e3(0x43b)](String,_0x3702d8)));continue;case'15':new_text=new_text[_0x33a6e3(0x785)+_0x5baf20(0x9b3)](_0x43e697[_0xbb5e1f(0x3f9)](_0x43e697[_0xbb5e1f(0x905)],_0x43e697[_0x5baf20(0xc9c)](String,_0x3702d8)),_0x43e697[_0x33a6e3(0x4e1)](_0x43e697[_0x3e1feb(0xd14)],_0x43e697[_0x3e1feb(0x2a1)](String,_0x3702d8)));continue;case'16':new_text=new_text[_0x5baf20(0x785)+_0x4687a0(0x9b3)](_0x43e697[_0x5baf20(0x73a)](_0x43e697[_0x5baf20(0x93f)],_0x43e697[_0xbb5e1f(0xa62)](String,_0x3702d8)),_0x43e697[_0xbb5e1f(0xd8b)](_0x43e697[_0x3e1feb(0xd14)],_0x43e697[_0xbb5e1f(0xdd4)](String,_0x3702d8)));continue;case'17':new_text=new_text[_0xbb5e1f(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0x33a6e3(0x4fb)](_0x43e697[_0x4687a0(0x4de)],_0x43e697[_0xbb5e1f(0xda7)](String,_0x3702d8)),_0x43e697[_0x3e1feb(0xa16)](_0x43e697[_0x5baf20(0xd14)],_0x43e697[_0x33a6e3(0xb7a)](String,_0x3702d8)));continue;case'18':new_text=new_text[_0x3e1feb(0x785)+_0x4687a0(0x9b3)](_0x43e697[_0x5baf20(0xd8b)](_0x43e697[_0xbb5e1f(0xb44)],_0x43e697[_0x4687a0(0xd05)](String,_0x3702d8)),_0x43e697[_0x33a6e3(0x7a4)](_0x43e697[_0xbb5e1f(0xd14)],_0x43e697[_0x4687a0(0xb20)](String,_0x3702d8)));continue;case'19':new_text=new_text[_0x33a6e3(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0x3e1feb(0x1ec)](_0x43e697[_0x4687a0(0xd58)],_0x43e697[_0x5baf20(0x9e3)](String,_0x3702d8)),_0x43e697[_0x3e1feb(0xd40)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0x4687a0(0x788)](String,_0x3702d8)));continue;case'20':new_text=new_text[_0x5baf20(0x785)+_0x3e1feb(0x9b3)](_0x43e697[_0x33a6e3(0x3cd)](_0x43e697[_0x3e1feb(0x905)],_0x43e697[_0x33a6e3(0x834)](String,_0x3702d8)),_0x43e697[_0x4687a0(0x248)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0xbb5e1f(0xd05)](String,_0x3702d8)));continue;case'21':new_text=new_text[_0xbb5e1f(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0xbb5e1f(0xa2a)](_0x43e697[_0x33a6e3(0xa71)],_0x43e697[_0x33a6e3(0x647)](String,_0x3702d8)),_0x43e697[_0x4687a0(0x28a)](_0x43e697[_0xbb5e1f(0xd14)],_0x43e697[_0x5baf20(0x5b1)](String,_0x3702d8)));continue;case'22':new_text=new_text[_0x33a6e3(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0x4687a0(0x28a)](_0x43e697[_0x4687a0(0x731)],_0x43e697[_0xbb5e1f(0x98f)](String,_0x3702d8)),_0x43e697[_0x5baf20(0xa2a)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0x33a6e3(0x643)](String,_0x3702d8)));continue;case'23':new_text=new_text[_0x3e1feb(0x785)+_0xbb5e1f(0x9b3)](_0x43e697[_0x4687a0(0xa16)](_0x43e697[_0x4687a0(0x7ba)],_0x43e697[_0xbb5e1f(0x647)](String,_0x3702d8)),_0x43e697[_0x33a6e3(0x86f)](_0x43e697[_0x4687a0(0xd14)],_0x43e697[_0xbb5e1f(0x8da)](String,_0x3702d8)));continue;case'24':new_text=new_text[_0x3e1feb(0x785)+_0x4687a0(0x9b3)](_0x43e697[_0x33a6e3(0x869)](_0x43e697[_0x33a6e3(0x36d)],_0x43e697[_0x5baf20(0x9fa)](String,_0x3702d8)),_0x43e697[_0x3e1feb(0x84c)](_0x43e697[_0x33a6e3(0xd14)],_0x43e697[_0x33a6e3(0xd64)](String,_0x3702d8)));continue;}break;}}else try{var _0x504656=new _0x2b489f(_0x4f8afe),_0x2f3db7='';for(var _0xb4a6ad=0x3*-0x655+0x37c+0xf83;_0x43e697[_0x33a6e3(0x550)](_0xb4a6ad,_0x504656[_0x33a6e3(0xd96)+_0xbb5e1f(0x31c)]);_0xb4a6ad++){_0x2f3db7+=_0x27aa43[_0x5baf20(0xdbe)+_0x33a6e3(0x541)+_0x5baf20(0x8aa)](_0x504656[_0xb4a6ad]);}return _0x2f3db7;}catch(_0x2a859e){}}new_text=_0x43e697[_0x33a6e3(0x465)](replaceUrlWithFootnote,new_text);for(let _0x44682f=prompt[_0x33a6e3(0xafd)+_0x4687a0(0x6fa)][_0x3e1feb(0x830)+'h'];_0x43e697[_0x4687a0(0xbf1)](_0x44682f,-0xddb*0x1+0x446*0x8+-0x1*0x1455);--_0x44682f){_0x43e697[_0x3e1feb(0x74f)](_0x43e697[_0x5baf20(0xab7)],_0x43e697[_0x5baf20(0x70d)])?(_0x4c993d[_0x4687a0(0xd53)]([_0x28d0c7[_0xbb5e1f(0x358)+'ge'],_0x3cdb4b,_0x450597,_0x497969]),_0x5e4597='',_0x141065=''):(new_text=new_text[_0xbb5e1f(0x785)+'ce'](_0x43e697[_0xbb5e1f(0x248)](_0x43e697[_0x5baf20(0x5f4)],_0x43e697[_0x5baf20(0xacb)](String,_0x44682f)),prompt[_0x4687a0(0xafd)+_0x33a6e3(0x6fa)][_0x44682f]),new_text=new_text[_0x4687a0(0x785)+'ce'](_0x43e697[_0x5baf20(0xa2a)](_0x43e697[_0x3e1feb(0xc39)],_0x43e697[_0x4687a0(0x647)](String,_0x44682f)),prompt[_0xbb5e1f(0xafd)+_0x4687a0(0x6fa)][_0x44682f]),new_text=new_text[_0x4687a0(0x785)+'ce'](_0x43e697[_0xbb5e1f(0x246)](_0x43e697[_0x33a6e3(0x397)],_0x43e697[_0x3e1feb(0x465)](String,_0x44682f)),prompt[_0xbb5e1f(0xafd)+_0x4687a0(0x6fa)][_0x44682f]));}return new_text=new_text[_0x4687a0(0x785)+_0xbb5e1f(0x9b3)]('[]',''),new_text=new_text[_0xbb5e1f(0x785)+_0x5baf20(0x9b3)]('((','('),new_text=new_text[_0x4687a0(0x785)+_0x5baf20(0x9b3)]('))',')'),new_text=new_text[_0x33a6e3(0x785)+_0x3e1feb(0x9b3)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x2239d6=_0x372c3c,_0x318500=_0x2628a6,_0x164a65=_0x2628a6,_0x7d7412=_0x380db8,_0x2143c7=_0x2628a6,_0x353d91={'FYmEh':function(_0x1f0564,_0xe6ecb6){return _0x1f0564+_0xe6ecb6;},'IsXjf':_0x2239d6(0x622)+'es','Znzbp':function(_0x2af47a,_0x312dec){return _0x2af47a===_0x312dec;},'NbaZG':_0x318500(0x3a1),'TmHoF':_0x2239d6(0x3b0),'onTnG':function(_0x124d29,_0x576513){return _0x124d29>_0x576513;},'oADGS':function(_0x19a30e,_0x1ade49){return _0x19a30e(_0x1ade49);},'wLrkd':_0x2239d6(0x411)+_0x318500(0x547),'PYIgR':function(_0x4aadd7,_0x1ae20b){return _0x4aadd7+_0x1ae20b;},'MFDfl':_0x2239d6(0x8d3)+_0x2239d6(0x76b)+_0x2143c7(0xac0)+_0x7d7412(0x648)+_0x318500(0xb68)+_0x2239d6(0xcf0)+_0x2239d6(0x4c6)+_0x2143c7(0x6df)+_0x164a65(0xded)+_0x7d7412(0xa60)+_0x164a65(0x1e6),'tSiIt':function(_0x8f3516,_0x3077e4){return _0x8f3516(_0x3077e4);},'vicpZ':_0x164a65(0xc8a)+_0x164a65(0x2c5),'Zcxvc':_0x2239d6(0x6ef),'DPEaY':_0x164a65(0x7b5),'EJXIN':function(_0x51875a,_0x398db2){return _0x51875a(_0x398db2);},'yiIWq':_0x7d7412(0x6d6),'yQjwX':function(_0x576822,_0x17d3cd){return _0x576822+_0x17d3cd;},'SXCpB':function(_0x3b900c,_0x16da8f){return _0x3b900c+_0x16da8f;},'PKtEL':function(_0x37f196,_0x2bfe49){return _0x37f196+_0x2bfe49;},'tLBSG':_0x2239d6(0x411),'qVLcm':_0x164a65(0x63e),'YgtrX':_0x7d7412(0x4a1)+'','nLnxh':_0x2143c7(0x948)+_0x318500(0x32c)+_0x164a65(0x1ea)+_0x2143c7(0x883)+_0x7d7412(0x44a)+_0x7d7412(0x222)+_0x7d7412(0x91e)+_0x2239d6(0x415)+_0x164a65(0x848)+_0x164a65(0xab9)+_0x2143c7(0x2bf)+_0x2239d6(0xbd4)+_0x164a65(0x553),'apkYO':function(_0x24726f,_0x40d5db){return _0x24726f!=_0x40d5db;},'jWXcD':function(_0x143c49,_0x2fe5b8,_0x30466f){return _0x143c49(_0x2fe5b8,_0x30466f);},'GwWed':_0x164a65(0x7cc)+_0x2239d6(0x961)+_0x2239d6(0x7c3)+_0x2239d6(0x800)+_0x2143c7(0x639)+_0x318500(0x976),'yBvQd':function(_0x276978,_0x3cc7c3){return _0x276978+_0x3cc7c3;}},_0x1bce60={'method':_0x353d91[_0x2239d6(0x9bb)],'headers':headers,'body':_0x353d91[_0x2143c7(0x7f6)](b64EncodeUnicode,JSON[_0x2143c7(0xd73)+_0x164a65(0xcb0)]({'messages':[{'role':_0x353d91[_0x318500(0x71a)],'content':_0x353d91[_0x164a65(0xbed)](_0x353d91[_0x7d7412(0x97a)](_0x353d91[_0x2239d6(0x443)](_0x353d91[_0x318500(0x693)](document[_0x164a65(0xc9f)+_0x2143c7(0x3e8)+_0x7d7412(0x61d)](_0x353d91[_0x164a65(0x878)])[_0x2239d6(0xd8a)+_0x7d7412(0x8cb)][_0x164a65(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x7d7412(0x785)+'ce'](/<hr.*/gs,'')[_0x2239d6(0x785)+'ce'](/<[^>]+>/g,'')[_0x318500(0x785)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x353d91[_0x2143c7(0x5c9)]),original_search_query),_0x353d91[_0x318500(0x495)])},{'role':_0x353d91[_0x2239d6(0x71a)],'content':_0x353d91[_0x318500(0xb66)]}][_0x2143c7(0x576)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x353d91[_0x2239d6(0x332)](document[_0x7d7412(0xc9f)+_0x318500(0x3e8)+_0x164a65(0x61d)](_0x353d91[_0x2143c7(0xb27)])[_0x164a65(0xd8a)+_0x2143c7(0x8cb)],''))return;_0x353d91[_0x7d7412(0x79e)](fetch,_0x353d91[_0x7d7412(0x376)],_0x1bce60)[_0x318500(0x56c)](_0x25d3dc=>_0x25d3dc[_0x7d7412(0x518)]())[_0x7d7412(0x56c)](_0x1dfc5b=>{const _0x1407f9=_0x318500,_0x5b84b2=_0x164a65,_0x3e17f0=_0x2239d6,_0x284447=_0x2239d6,_0x140081=_0x7d7412,_0x22a2b7={'PIcsz':function(_0xf13f05,_0x13ccde){const _0x533b81=_0x4b15;return _0x353d91[_0x533b81(0xd2d)](_0xf13f05,_0x13ccde);},'trILE':_0x353d91[_0x1407f9(0x40b)],'OYekT':_0x353d91[_0x1407f9(0xc72)],'dHccX':function(_0x459bf8,_0xe958d5){const _0x9f2268=_0x5b84b2;return _0x353d91[_0x9f2268(0xc17)](_0x459bf8,_0xe958d5);},'IdkmH':function(_0x53a8b7,_0x3220f6){const _0x173c22=_0x1407f9;return _0x353d91[_0x173c22(0xd31)](_0x53a8b7,_0x3220f6);},'hXvtj':_0x353d91[_0x3e17f0(0xb27)],'LHJmJ':function(_0x549132,_0x14d4b7){const _0x32b311=_0x3e17f0;return _0x353d91[_0x32b311(0xbed)](_0x549132,_0x14d4b7);},'KEBpi':_0x353d91[_0x284447(0x23d)],'BEBNg':function(_0x3981f8,_0x1f5505){const _0x3d2b67=_0x1407f9;return _0x353d91[_0x3d2b67(0x50a)](_0x3981f8,_0x1f5505);},'rzfyS':_0x353d91[_0x5b84b2(0xaf9)]};_0x353d91[_0x3e17f0(0xd2d)](_0x353d91[_0x284447(0xce1)],_0x353d91[_0x5b84b2(0xce1)])?JSON[_0x284447(0x3d1)](_0x1dfc5b[_0x3e17f0(0x622)+'es'][-0xd*0xa4+-0x1*-0x17eb+0xf97*-0x1][_0x140081(0xa90)+'ge'][_0x1407f9(0x3db)+'nt'][_0x3e17f0(0x785)+_0x284447(0x9b3)]('\x0a',''))[_0x140081(0x5b5)+'ch'](_0x6d3945=>{const _0x19cfc4=_0x1407f9,_0x58f80b=_0x1407f9,_0x8246a1=_0x140081,_0xbdc477=_0x1407f9,_0x29a28c=_0x284447;if(_0x22a2b7[_0x19cfc4(0xd67)](_0x22a2b7[_0x19cfc4(0xc79)],_0x22a2b7[_0x8246a1(0x323)]))_0x59b22a+=_0x2f0834[-0xc24+-0x21d7+-0x95*-0x4f][_0x19cfc4(0x6a1)][_0x58f80b(0x3db)+'nt'];else{if(_0x22a2b7[_0x58f80b(0x97b)](_0x22a2b7[_0x8246a1(0x724)](String,_0x6d3945)[_0x19cfc4(0x830)+'h'],-0x2666+-0x67a*-0x1+0x1ff1))document[_0x29a28c(0xc9f)+_0x58f80b(0x3e8)+_0x19cfc4(0x61d)](_0x22a2b7[_0x19cfc4(0x59d)])[_0x58f80b(0xd8a)+_0x58f80b(0x8cb)]+=_0x22a2b7[_0x19cfc4(0x651)](_0x22a2b7[_0x29a28c(0x651)](_0x22a2b7[_0x29a28c(0x513)],_0x22a2b7[_0xbdc477(0x276)](String,_0x6d3945)),_0x22a2b7[_0x29a28c(0x65a)]);}}):(_0x5673c5=_0x4a726c[_0x140081(0x3d1)](_0x353d91[_0x284447(0xa5a)](_0x111d17,_0x5aef3a))[_0x353d91[_0x5b84b2(0x306)]],_0x2300a3='');})[_0x2143c7(0x46c)](_0x2c9a55=>console[_0x7d7412(0xa18)](_0x2c9a55)),chatTextRawPlusComment=_0x353d91[_0x2143c7(0x490)](chatTextRaw,'\x0a\x0a'),text_offset=-(0xb43+-0x1*-0x123b+-0x1d7d);}let chatTextRaw='',text_offset=-(-0xe2f+-0xb45+0x1975);const _0x5c4ade={};_0x5c4ade[_0x2239e4(0x891)+_0x372c3c(0x263)+'pe']=_0x2239e4(0x5b3)+_0x2628a6(0x9df)+_0x380db8(0x79a)+'n';const headers=_0x5c4ade;let prompt=JSON[_0x2628a6(0x3d1)](atob(document[_0x51b305(0xc9f)+_0x2628a6(0x3e8)+_0x372c3c(0x61d)](_0x372c3c(0x218)+'pt')[_0x372c3c(0x435)+_0x2239e4(0xcc1)+'t']));chatTextRawIntro='',text_offset=-(0x1*0x110c+-0xd*-0x153+0x1*-0x2242);const _0x46a938={};_0x46a938[_0x372c3c(0xcfb)]=_0x51b305(0x879)+'m',_0x46a938[_0x2628a6(0x3db)+'nt']=_0x372c3c(0x466)+_0x51b305(0x933)+_0x380db8(0x6ff)+_0x372c3c(0xa35)+_0x372c3c(0x365)+_0x380db8(0x22c)+original_search_query+(_0x2239e4(0x545)+_0x372c3c(0x6ba)+_0x2628a6(0xd59)+'');const _0x367136={};_0x367136[_0x51b305(0xcfb)]=_0x51b305(0x6d6),_0x367136[_0x2628a6(0x3db)+'nt']=_0x2239e4(0xde7)+_0x380db8(0x26b)+_0x2628a6(0xa80)+_0x380db8(0x4b7)+_0x51b305(0xb50)+'';const optionsIntro={'method':_0x372c3c(0x7b5),'headers':headers,'body':b64EncodeUnicode(JSON[_0x2628a6(0xd73)+_0x2239e4(0xcb0)]({'messages':[_0x46a938,_0x367136][_0x51b305(0x576)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x2628a6(0x7cc)+_0x51b305(0x961)+_0x2239e4(0x7c3)+_0x372c3c(0x800)+_0x51b305(0x639)+_0x51b305(0x976),optionsIntro)[_0x380db8(0x56c)](_0x47174a=>{const _0x4edbdb=_0x372c3c,_0x25f069=_0x2628a6,_0x3c44b6=_0x2239e4,_0x3cde5c=_0x380db8,_0x24203b=_0x2239e4,_0x40803e={'FBNvr':function(_0x2b8dda,_0x4309d5){return _0x2b8dda>_0x4309d5;},'efRdQ':function(_0x4b9f2c,_0x5712db){return _0x4b9f2c==_0x5712db;},'lyuFI':_0x4edbdb(0x22e)+']','FSpoX':_0x25f069(0x7b5),'JkxFH':function(_0x4202b6,_0x401824){return _0x4202b6(_0x401824);},'bsVcl':function(_0x4fa725,_0x34650e,_0x14a730){return _0x4fa725(_0x34650e,_0x14a730);},'QuLIi':_0x4edbdb(0x7cc)+_0x25f069(0x961)+_0x4edbdb(0x7c3)+_0x3cde5c(0x800)+_0x24203b(0x639)+_0x3c44b6(0x976),'lpGdt':function(_0x5e7234,_0x58f5a9){return _0x5e7234+_0x58f5a9;},'wUInH':_0x25f069(0x622)+'es','AShlC':function(_0x118968,_0x1f049a){return _0x118968(_0x1f049a);},'yfrue':_0x3c44b6(0x715)+_0x4edbdb(0x9cc),'wIOle':_0x24203b(0x870)+_0x3cde5c(0x289)+_0x25f069(0xc76)+')','dJdvG':_0x25f069(0x799)+_0x3cde5c(0xb23)+_0x3c44b6(0x2b3)+_0x25f069(0x543)+_0x25f069(0x59a)+_0x25f069(0xd11)+_0x4edbdb(0x7bb),'TBarv':function(_0x225969,_0x1407d8){return _0x225969(_0x1407d8);},'vjBlE':_0x3cde5c(0x81e),'yCLxT':function(_0x320cbc,_0x118688){return _0x320cbc+_0x118688;},'mxqVy':_0x3cde5c(0xd57),'vzrLO':_0x24203b(0x81c),'xevRA':function(_0x702333,_0x54bf62){return _0x702333(_0x54bf62);},'peCNi':function(_0x3b44bd){return _0x3b44bd();},'UJmwG':function(_0x3eec6e,_0x4cae01){return _0x3eec6e-_0x4cae01;},'jDwQE':function(_0x1e42a1,_0xea1851){return _0x1e42a1<=_0xea1851;},'YTpiN':function(_0x4abcad,_0x389e69){return _0x4abcad>_0x389e69;},'rcUZF':function(_0x4ebc0b,_0x3e230a){return _0x4ebc0b===_0x3e230a;},'BFjCx':_0x3cde5c(0x732),'SGpMH':_0x3c44b6(0x5d0),'cIaRO':_0x4edbdb(0x672)+_0x24203b(0x893),'yUSDg':_0x25f069(0x715)+_0x25f069(0x51a),'qKSEh':_0x4edbdb(0x715)+_0x3cde5c(0x9d9)+_0x3cde5c(0xddf),'qbbwD':function(_0x4f71e0,_0xc6a6c6){return _0x4f71e0!==_0xc6a6c6;},'haklT':_0x3c44b6(0xdd5),'tYhUW':_0x25f069(0x58b),'vvNED':_0x3c44b6(0x1e0),'BYpgs':_0x3cde5c(0xa13),'IKKZW':function(_0x1e6eba,_0x5bc389,_0x3f86cb){return _0x1e6eba(_0x5bc389,_0x3f86cb);},'yDOWX':_0x4edbdb(0xa44),'uvPoC':function(_0x5a090f,_0x4fa8d3){return _0x5a090f>_0x4fa8d3;},'sNSas':_0x24203b(0x954),'TxHyl':_0x24203b(0x457)+':','SlVTs':_0x24203b(0x411)+_0x3cde5c(0x547),'LZYKM':_0x4edbdb(0x600)+_0x4edbdb(0x532),'FCXPE':_0x3cde5c(0x411),'ceUsL':_0x3c44b6(0x6d6),'cQnLN':_0x25f069(0xaa8)+'','uVrDc':_0x3c44b6(0x275)+_0x24203b(0x4ee)+_0x25f069(0xc88)+_0x4edbdb(0xaff)+_0x3c44b6(0xde4)+_0x25f069(0x7b0)+_0x4edbdb(0x339)+_0x3cde5c(0x8fc)},_0x126fe4=_0x47174a[_0x25f069(0x573)][_0x25f069(0x9a1)+_0x25f069(0x7c2)]();let _0x5a5b04='',_0x2829a6='';_0x126fe4[_0x25f069(0xde0)]()[_0x25f069(0x56c)](function _0x343f83({done:_0x34219d,value:_0x56372f}){const _0x15aeca=_0x4edbdb,_0x44e4d4=_0x4edbdb,_0x7a25cb=_0x25f069,_0x16c625=_0x4edbdb,_0x5a62db=_0x25f069,_0x2534d4={'NuWxe':_0x40803e[_0x15aeca(0x2a4)],'VgUAq':_0x40803e[_0x15aeca(0x293)],'ieDTy':function(_0x1a5a16,_0x2c9a47){const _0x317f47=_0x44e4d4;return _0x40803e[_0x317f47(0x75f)](_0x1a5a16,_0x2c9a47);},'UkzPU':_0x40803e[_0x7a25cb(0x34a)],'CkZvG':function(_0x1f1188,_0x25ace3){const _0x4d388c=_0x44e4d4;return _0x40803e[_0x4d388c(0x4bf)](_0x1f1188,_0x25ace3);},'DnMdA':_0x40803e[_0x44e4d4(0x5e3)],'ttVmA':_0x40803e[_0x15aeca(0x43c)],'CpKLz':function(_0x25ae6b,_0xfbc364){const _0x10aa2d=_0x5a62db;return _0x40803e[_0x10aa2d(0x748)](_0x25ae6b,_0xfbc364);},'UAisj':function(_0x12f0b1){const _0x12242f=_0x7a25cb;return _0x40803e[_0x12242f(0xa9b)](_0x12f0b1);},'OERAF':function(_0x4fea9,_0x2db5be){const _0x2574ab=_0x16c625;return _0x40803e[_0x2574ab(0x304)](_0x4fea9,_0x2db5be);},'LaAGO':function(_0xc44758,_0x1870d1){const _0x5d4a28=_0x15aeca;return _0x40803e[_0x5d4a28(0x7c0)](_0xc44758,_0x1870d1);},'LAszp':function(_0x1a2b78,_0x5742c0){const _0x19d83d=_0x7a25cb;return _0x40803e[_0x19d83d(0xd91)](_0x1a2b78,_0x5742c0);},'RaBlj':function(_0x53d347,_0x356f6d){const _0x103208=_0x44e4d4;return _0x40803e[_0x103208(0xb41)](_0x53d347,_0x356f6d);},'GpGUK':_0x40803e[_0x44e4d4(0xa84)],'CpHaJ':function(_0x5f12d0,_0x544f8c){const _0xa7418f=_0x5a62db;return _0x40803e[_0xa7418f(0xcc7)](_0x5f12d0,_0x544f8c);},'lCsFV':_0x40803e[_0x16c625(0xa66)],'mINJi':_0x40803e[_0x7a25cb(0x8ad)],'QvSEk':_0x40803e[_0x5a62db(0xb10)],'UIILR':_0x40803e[_0x7a25cb(0x478)],'BjyCU':_0x40803e[_0x16c625(0x69c)],'IXhMv':function(_0xeb77ee,_0x53000b){const _0x1123b0=_0x5a62db;return _0x40803e[_0x1123b0(0x712)](_0xeb77ee,_0x53000b);},'GsoLv':_0x40803e[_0x16c625(0x757)],'VwSHf':_0x40803e[_0x15aeca(0xd4c)],'oitHF':_0x40803e[_0x44e4d4(0x4c3)],'CyAoq':_0x40803e[_0x15aeca(0xb7f)],'jGQYY':_0x40803e[_0x5a62db(0x9f4)],'OLwkR':function(_0x1a7964,_0x4e1049,_0x23f406){const _0x22002c=_0x5a62db;return _0x40803e[_0x22002c(0x54f)](_0x1a7964,_0x4e1049,_0x23f406);},'mvEbL':_0x40803e[_0x44e4d4(0x8bd)],'hMCqQ':function(_0x5a6e17,_0x17b4b6){const _0x2a52f8=_0x44e4d4;return _0x40803e[_0x2a52f8(0x274)](_0x5a6e17,_0x17b4b6);},'tbznq':_0x40803e[_0x5a62db(0x8a4)],'vgplx':_0x40803e[_0x16c625(0xbba)],'cmgcr':_0x40803e[_0x44e4d4(0x4ca)],'hTlwp':_0x40803e[_0x44e4d4(0x2ac)],'Hqkoq':_0x40803e[_0x7a25cb(0x498)],'mCqAc':_0x40803e[_0x16c625(0x980)],'RCAPv':_0x40803e[_0x44e4d4(0xc47)],'XhsDm':function(_0x31788f,_0x45f8d8){const _0x3b0248=_0x15aeca;return _0x40803e[_0x3b0248(0x4bf)](_0x31788f,_0x45f8d8);},'oRKPl':_0x40803e[_0x44e4d4(0x340)],'hBPwA':_0x40803e[_0x7a25cb(0xbca)],'wjuQf':_0x40803e[_0x5a62db(0x8f0)]};if(_0x34219d)return;const _0x12bce2=new TextDecoder(_0x40803e[_0x16c625(0x8a4)])[_0x44e4d4(0x422)+'e'](_0x56372f);return _0x12bce2[_0x44e4d4(0x44c)]()[_0x5a62db(0x308)]('\x0a')[_0x5a62db(0x5b5)+'ch'](function(_0x49c8dc){const _0x31f30e=_0x16c625,_0xb2841d=_0x15aeca,_0x52a4d8=_0x5a62db,_0x40568a=_0x5a62db,_0x1c1b2e=_0x15aeca;_0x5a5b04='';if(_0x40803e[_0x31f30e(0x31a)](_0x49c8dc[_0x31f30e(0x830)+'h'],-0x1*0x1bd8+0xa7d+0x1*0x1161))_0x5a5b04=_0x49c8dc[_0xb2841d(0xc25)](-0x1d3b+-0xf48+0x2c89);if(_0x40803e[_0xb2841d(0xb41)](_0x5a5b04,_0x40803e[_0x52a4d8(0xa84)])){text_offset=-(-0x1c50+-0x17e7+0x3438);const _0x123ae4={'method':_0x40803e[_0x40568a(0x2ac)],'headers':headers,'body':_0x40803e[_0x1c1b2e(0x6eb)](b64EncodeUnicode,JSON[_0xb2841d(0xd73)+_0x52a4d8(0xcb0)](prompt[_0xb2841d(0xc6c)]))};_0x40803e[_0x40568a(0xb87)](fetch,_0x40803e[_0x52a4d8(0x8f0)],_0x123ae4)[_0x1c1b2e(0x56c)](_0x8f2064=>{const _0x3810e8=_0x1c1b2e,_0x34cfa8=_0x31f30e,_0x5028ce=_0xb2841d,_0x3ce5f4=_0x40568a,_0x570b09=_0x40568a,_0x476b6f={'SQLvH':_0x2534d4[_0x3810e8(0x51c)],'FHhdL':_0x2534d4[_0x34cfa8(0x591)],'MeIIe':function(_0x58b1c1,_0x48f7dd){const _0x5ec43f=_0x34cfa8;return _0x2534d4[_0x5ec43f(0x6cd)](_0x58b1c1,_0x48f7dd);},'CaNyC':_0x2534d4[_0x3810e8(0xa48)],'YFkUg':function(_0x27dee5,_0x364f75){const _0x52f432=_0x34cfa8;return _0x2534d4[_0x52f432(0xb8a)](_0x27dee5,_0x364f75);},'zTibj':_0x2534d4[_0x3810e8(0xbbf)],'GqnRm':_0x2534d4[_0x5028ce(0x8fe)],'Xfsqz':function(_0x5072ca,_0x2527b0){const _0x2caef6=_0x3ce5f4;return _0x2534d4[_0x2caef6(0x432)](_0x5072ca,_0x2527b0);},'lcGFW':function(_0x109ddb){const _0x31c772=_0x570b09;return _0x2534d4[_0x31c772(0x62f)](_0x109ddb);},'QoLlx':function(_0x39f2a9,_0xaba4a8){const _0x13162c=_0x5028ce;return _0x2534d4[_0x13162c(0xbf7)](_0x39f2a9,_0xaba4a8);},'RAIQD':function(_0x65aa86,_0x26d7a0){const _0x5bc292=_0x3ce5f4;return _0x2534d4[_0x5bc292(0x6fd)](_0x65aa86,_0x26d7a0);},'tcnwX':function(_0x39ba6b,_0x471770){const _0x353b04=_0x3810e8;return _0x2534d4[_0x353b04(0x98c)](_0x39ba6b,_0x471770);},'NCStY':function(_0x3e72af,_0x4566fb){const _0xa66e55=_0x5028ce;return _0x2534d4[_0xa66e55(0x80e)](_0x3e72af,_0x4566fb);},'sLfVc':_0x2534d4[_0x570b09(0xd2b)],'RHSTH':function(_0x33e334,_0x57ffae){const _0xb81d1a=_0x34cfa8;return _0x2534d4[_0xb81d1a(0x984)](_0x33e334,_0x57ffae);},'Tjsxd':_0x2534d4[_0x3810e8(0xb03)],'qMmkm':_0x2534d4[_0x3ce5f4(0x265)],'RHIbB':_0x2534d4[_0x5028ce(0x50d)],'LxhbV':_0x2534d4[_0x5028ce(0x959)],'FrKNH':_0x2534d4[_0x3ce5f4(0xc7f)],'tWMvD':function(_0x1f3e57,_0x5d5d20){const _0x5232c9=_0x3810e8;return _0x2534d4[_0x5232c9(0x80d)](_0x1f3e57,_0x5d5d20);},'ZqXxi':_0x2534d4[_0x5028ce(0x8d9)],'bmMvz':_0x2534d4[_0x3810e8(0x9fc)],'UlRor':_0x2534d4[_0x3ce5f4(0x249)],'MhhRU':_0x2534d4[_0x34cfa8(0x6d3)],'zJLIe':_0x2534d4[_0x3ce5f4(0xb8c)],'EhNMD':function(_0x10594f,_0x4fa17a,_0x46d541){const _0x230532=_0x5028ce;return _0x2534d4[_0x230532(0xd71)](_0x10594f,_0x4fa17a,_0x46d541);},'YnOio':_0x2534d4[_0x3810e8(0xbc3)],'JKUCL':function(_0x2f9995,_0x4c42a7){const _0x11fc8e=_0x3ce5f4;return _0x2534d4[_0x11fc8e(0x45b)](_0x2f9995,_0x4c42a7);},'LuJjH':_0x2534d4[_0x3810e8(0x501)],'DGgxg':_0x2534d4[_0x3810e8(0xdd7)],'icCcU':_0x2534d4[_0x5028ce(0x946)],'LUrbm':function(_0x525a83){const _0x28d935=_0x3ce5f4;return _0x2534d4[_0x28d935(0x62f)](_0x525a83);},'wazYa':_0x2534d4[_0x3810e8(0xccf)],'JwpAw':_0x2534d4[_0x3810e8(0x8f4)],'lMHkH':_0x2534d4[_0x570b09(0xb0e)],'ySrRT':_0x2534d4[_0x34cfa8(0xb3f)],'VpLgB':function(_0x4760ca,_0x1d1f86){const _0x170eb1=_0x3810e8;return _0x2534d4[_0x170eb1(0x67d)](_0x4760ca,_0x1d1f86);},'nhboS':_0x2534d4[_0x5028ce(0xcaf)],'qdppQ':_0x2534d4[_0x34cfa8(0xd68)],'VwBlv':_0x2534d4[_0x570b09(0x319)]},_0x285036=_0x8f2064[_0x34cfa8(0x573)][_0x34cfa8(0x9a1)+_0x3ce5f4(0x7c2)]();let _0x369941='',_0x7809c4='';_0x285036[_0x3ce5f4(0xde0)]()[_0x3810e8(0x56c)](function _0x480db1({done:_0x4e34fb,value:_0x57fff3}){const _0xfc0057=_0x3810e8,_0x55f6b9=_0x3810e8,_0x33e081=_0x570b09,_0x202e07=_0x570b09,_0x1a6840=_0x570b09,_0x11db3d={'YvHOY':_0x476b6f[_0xfc0057(0x564)],'qIilb':_0x476b6f[_0xfc0057(0xcf1)],'ZRTZY':function(_0x3fa2f0,_0x5b2e30){const _0x27ecd5=_0x55f6b9;return _0x476b6f[_0x27ecd5(0x957)](_0x3fa2f0,_0x5b2e30);},'BwXER':_0x476b6f[_0x33e081(0xbd7)],'hdiMN':function(_0x5ece78,_0x1f2dde){const _0x264301=_0x55f6b9;return _0x476b6f[_0x264301(0x47f)](_0x5ece78,_0x1f2dde);},'FkGGL':_0x476b6f[_0x33e081(0x24b)],'dnCBl':_0x476b6f[_0x55f6b9(0x804)],'XoZLD':function(_0x219976,_0x36dedc){const _0xb67cf5=_0xfc0057;return _0x476b6f[_0xb67cf5(0x1f7)](_0x219976,_0x36dedc);},'zjVOr':function(_0x1bfdba){const _0x32dfea=_0x55f6b9;return _0x476b6f[_0x32dfea(0x8c7)](_0x1bfdba);},'YKXPD':function(_0x4372f2,_0x31ba7f){const _0xc13937=_0xfc0057;return _0x476b6f[_0xc13937(0xabc)](_0x4372f2,_0x31ba7f);},'HLjDL':function(_0x3b96c7,_0x1c5ce5){const _0x22eae3=_0xfc0057;return _0x476b6f[_0x22eae3(0x5c2)](_0x3b96c7,_0x1c5ce5);},'IHxjP':function(_0x66203b,_0x2daeaa){const _0x42c983=_0x33e081;return _0x476b6f[_0x42c983(0x68a)](_0x66203b,_0x2daeaa);},'OgIuI':function(_0x313f34,_0x48c348){const _0xdadadc=_0x55f6b9;return _0x476b6f[_0xdadadc(0xc30)](_0x313f34,_0x48c348);},'pyQTt':_0x476b6f[_0x1a6840(0x314)],'tjuOO':function(_0x269ab7,_0x2f33b3){const _0x2a4cec=_0x33e081;return _0x476b6f[_0x2a4cec(0x5c1)](_0x269ab7,_0x2f33b3);},'WvXeQ':_0x476b6f[_0x202e07(0x7cd)],'vGLiD':_0x476b6f[_0x33e081(0xbd9)],'lRELi':_0x476b6f[_0x55f6b9(0x63d)],'SANzZ':_0x476b6f[_0x1a6840(0xba9)],'wVpMM':_0x476b6f[_0x202e07(0xb2b)],'JVyLw':function(_0x5f1a58,_0x59e187){const _0x52346d=_0xfc0057;return _0x476b6f[_0x52346d(0x96b)](_0x5f1a58,_0x59e187);},'FZAcV':_0x476b6f[_0x1a6840(0x569)],'oXYAg':_0x476b6f[_0x1a6840(0x56b)],'rFuwC':_0x476b6f[_0x33e081(0x686)],'MlngJ':_0x476b6f[_0x1a6840(0xdd0)],'fbVvR':_0x476b6f[_0x33e081(0x23c)],'UahDO':function(_0x443f6c,_0x361778,_0x1066a){const _0x4fa0a3=_0xfc0057;return _0x476b6f[_0x4fa0a3(0x4ff)](_0x443f6c,_0x361778,_0x1066a);},'wjbQP':_0x476b6f[_0x202e07(0xae8)],'cbhTc':function(_0x177ff4,_0x58e33a){const _0xaf5ed9=_0x1a6840;return _0x476b6f[_0xaf5ed9(0x2b2)](_0x177ff4,_0x58e33a);},'camym':_0x476b6f[_0x55f6b9(0x9af)],'VPNvT':_0x476b6f[_0x33e081(0x65e)],'nBvQY':function(_0x565444,_0x22b0b3){const _0x22ace6=_0x202e07;return _0x476b6f[_0x22ace6(0xc30)](_0x565444,_0x22b0b3);},'ZMrAd':_0x476b6f[_0x33e081(0x5b0)],'Znxpe':function(_0x5edc08){const _0x278398=_0x33e081;return _0x476b6f[_0x278398(0x5d1)](_0x5edc08);},'kDUJD':_0x476b6f[_0x55f6b9(0x6d0)],'LqUbp':_0x476b6f[_0x1a6840(0x9ca)],'nmYYS':_0x476b6f[_0x202e07(0xc8c)],'RXLnr':_0x476b6f[_0x33e081(0x603)],'wjvCK':function(_0x36a5cc,_0x11201c){const _0x226d66=_0xfc0057;return _0x476b6f[_0x226d66(0xaf4)](_0x36a5cc,_0x11201c);},'wYoPC':_0x476b6f[_0x55f6b9(0x68e)],'MtPwD':_0x476b6f[_0xfc0057(0x235)],'CYrpy':function(_0x454fb9,_0x3be19b,_0x14348b){const _0x3483f0=_0x55f6b9;return _0x476b6f[_0x3483f0(0x4ff)](_0x454fb9,_0x3be19b,_0x14348b);},'XCevU':_0x476b6f[_0x55f6b9(0xc29)]};if(_0x4e34fb)return;const _0x90a2ad=new TextDecoder(_0x476b6f[_0xfc0057(0x9af)])[_0x202e07(0x422)+'e'](_0x57fff3);return _0x90a2ad[_0x1a6840(0x44c)]()[_0xfc0057(0x308)]('\x0a')[_0x1a6840(0x5b5)+'ch'](function(_0x2a014f){const _0x1516fa=_0xfc0057,_0x4d5be2=_0x202e07,_0x36ec99=_0x55f6b9,_0x5d8ab4=_0xfc0057,_0x21df1b=_0x55f6b9;_0x369941='';if(_0x11db3d[_0x1516fa(0x313)](_0x2a014f[_0x4d5be2(0x830)+'h'],0x25*0x6c+-0x24fe+0x1568))_0x369941=_0x2a014f[_0x4d5be2(0xc25)](-0x172d*-0x1+0x18eb+0x15*-0x24a);if(_0x11db3d[_0x4d5be2(0x46d)](_0x369941,_0x11db3d[_0x1516fa(0x670)])){document[_0x36ec99(0xc9f)+_0x5d8ab4(0x3e8)+_0x4d5be2(0x61d)](_0x11db3d[_0x4d5be2(0xc85)])[_0x1516fa(0xd8a)+_0x21df1b(0x8cb)]='',_0x11db3d[_0x1516fa(0x5c0)](chatmore);const _0x31ca20={'method':_0x11db3d[_0x4d5be2(0x41c)],'headers':headers,'body':_0x11db3d[_0x5d8ab4(0x9d3)](b64EncodeUnicode,JSON[_0x5d8ab4(0xd73)+_0x36ec99(0xcb0)]({'messages':[{'role':_0x11db3d[_0x5d8ab4(0x497)],'content':_0x11db3d[_0x5d8ab4(0x483)](document[_0x5d8ab4(0xc9f)+_0x5d8ab4(0x3e8)+_0x21df1b(0x61d)](_0x11db3d[_0x36ec99(0x756)])[_0x36ec99(0xd8a)+_0x21df1b(0x8cb)][_0x4d5be2(0x785)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x21df1b(0x785)+'ce'](/<hr.*/gs,'')[_0x5d8ab4(0x785)+'ce'](/<[^>]+>/g,'')[_0x1516fa(0x785)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x11db3d[_0x4d5be2(0x3ff)],'content':_0x11db3d[_0x1516fa(0x483)](_0x11db3d[_0x36ec99(0x413)](_0x11db3d[_0x36ec99(0x596)],original_search_query),_0x11db3d[_0x36ec99(0xc3e)])}][_0x1516fa(0x576)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x11db3d[_0x5d8ab4(0xa4f)](fetch,_0x11db3d[_0x36ec99(0x255)],_0x31ca20)[_0x1516fa(0x56c)](_0x2b0b30=>{const _0x3ed660=_0x36ec99,_0x14ffe9=_0x5d8ab4,_0x1bb008=_0x4d5be2,_0x1b7500=_0x4d5be2,_0x55a807=_0x5d8ab4,_0x37eb66={'bakyf':_0x11db3d[_0x3ed660(0x778)],'SkvzH':_0x11db3d[_0x14ffe9(0x41f)],'FhpYb':function(_0x56b382,_0x7f00d2){const _0xf8c6c3=_0x3ed660;return _0x11db3d[_0xf8c6c3(0x440)](_0x56b382,_0x7f00d2);},'xiErU':_0x11db3d[_0x14ffe9(0xd06)],'fijeH':function(_0x41b48b,_0x90541e){const _0x470b19=_0x1bb008;return _0x11db3d[_0x470b19(0x483)](_0x41b48b,_0x90541e);},'aoRDq':_0x11db3d[_0x1bb008(0xa01)],'SXDPd':_0x11db3d[_0x1bb008(0xa6a)],'IvvLV':function(_0x5ed90c,_0x779680){const _0x34a744=_0x3ed660;return _0x11db3d[_0x34a744(0x9d3)](_0x5ed90c,_0x779680);},'ZEAmR':function(_0x1d5a4f){const _0x16419f=_0x3ed660;return _0x11db3d[_0x16419f(0x6a7)](_0x1d5a4f);},'Yscnm':function(_0x4aac2a,_0xd55627){const _0x146834=_0x1bb008;return _0x11db3d[_0x146834(0xbb8)](_0x4aac2a,_0xd55627);},'FpMnh':function(_0x128d6a,_0x5400f9){const _0xc9b11c=_0x3ed660;return _0x11db3d[_0xc9b11c(0x85e)](_0x128d6a,_0x5400f9);},'vBDEK':function(_0x7fd821,_0x5213cc){const _0x4cee0a=_0x55a807;return _0x11db3d[_0x4cee0a(0x313)](_0x7fd821,_0x5213cc);},'NlLPk':function(_0x1c1a59,_0x3395ea){const _0x5f12c8=_0x3ed660;return _0x11db3d[_0x5f12c8(0x571)](_0x1c1a59,_0x3395ea);},'CbdNq':_0x11db3d[_0x1b7500(0x670)],'debAS':function(_0x2150c7,_0x4697ab){const _0x5da8eb=_0x1bb008;return _0x11db3d[_0x5da8eb(0x8a6)](_0x2150c7,_0x4697ab);},'LAeWo':_0x11db3d[_0x3ed660(0xcd9)],'thWRQ':_0x11db3d[_0x14ffe9(0xc7a)],'nonCR':_0x11db3d[_0x1b7500(0xc97)],'YmeoB':_0x11db3d[_0x1b7500(0x89c)],'rODTR':_0x11db3d[_0x55a807(0xcac)],'GWidO':function(_0x33fcbb,_0x20ca87){const _0x2a7afd=_0x3ed660;return _0x11db3d[_0x2a7afd(0x36f)](_0x33fcbb,_0x20ca87);},'tERSJ':_0x11db3d[_0x1bb008(0x4d9)],'TQlhz':function(_0x3f0969,_0x4324b5){const _0x16865a=_0x3ed660;return _0x11db3d[_0x16865a(0x8a6)](_0x3f0969,_0x4324b5);},'WsNCn':_0x11db3d[_0x14ffe9(0x9dd)],'ceBlm':function(_0xec4217,_0x802394){const _0x4a5d69=_0x1bb008;return _0x11db3d[_0x4a5d69(0x483)](_0xec4217,_0x802394);},'iSWsa':_0x11db3d[_0x3ed660(0xa65)],'PIBMu':_0x11db3d[_0x55a807(0x57c)],'uacXz':_0x11db3d[_0x14ffe9(0xbce)],'sCvDC':function(_0x1dc026,_0x337515,_0x2b1da1){const _0x5a3e5b=_0x3ed660;return _0x11db3d[_0x5a3e5b(0x793)](_0x1dc026,_0x337515,_0x2b1da1);},'qrHqi':function(_0x1361cc,_0x4ddb92){const _0x4f4a6d=_0x1b7500;return _0x11db3d[_0x4f4a6d(0x440)](_0x1361cc,_0x4ddb92);},'PRCXm':_0x11db3d[_0x55a807(0xc86)],'tOxRa':function(_0x1b0f58,_0x2bc776){const _0x4d7aed=_0x1bb008;return _0x11db3d[_0x4d7aed(0x2b4)](_0x1b0f58,_0x2bc776);},'eMHJE':_0x11db3d[_0x14ffe9(0x9c4)]},_0x154d61=_0x2b0b30[_0x55a807(0x573)][_0x1bb008(0x9a1)+_0x14ffe9(0x7c2)]();let _0x55c429='',_0x3a03fe='';_0x154d61[_0x3ed660(0xde0)]()[_0x3ed660(0x56c)](function _0x2c85ff({done:_0x11b1d5,value:_0x3034e9}){const _0x555fbb=_0x3ed660,_0x1402f5=_0x3ed660,_0x342a26=_0x1bb008,_0x494805=_0x3ed660,_0x329132=_0x3ed660,_0x224f05={'rSMlY':function(_0x517aa0,_0x2558b1){const _0x280675=_0x4b15;return _0x37eb66[_0x280675(0xb2d)](_0x517aa0,_0x2558b1);},'KSONK':function(_0x2678cb,_0x33faea){const _0x22a51e=_0x4b15;return _0x37eb66[_0x22a51e(0xd34)](_0x2678cb,_0x33faea);}};if(_0x11b1d5)return;const _0x47224a=new TextDecoder(_0x37eb66[_0x555fbb(0x5a1)])[_0x555fbb(0x422)+'e'](_0x3034e9);return _0x47224a[_0x1402f5(0x44c)]()[_0x342a26(0x308)]('\x0a')[_0x342a26(0x5b5)+'ch'](function(_0x2609a1){const _0x4aac04=_0x342a26,_0x2bf51b=_0x342a26,_0x4db11a=_0x555fbb,_0x194928=_0x329132,_0x4e2d3e=_0x555fbb,_0x190b7b={'lgfMB':_0x37eb66[_0x4aac04(0x602)],'pqorv':_0x37eb66[_0x4aac04(0x93b)],'wvagv':function(_0x1e491a,_0x5206a9){const _0x1677e2=_0x4aac04;return _0x37eb66[_0x1677e2(0x6b0)](_0x1e491a,_0x5206a9);},'Grcan':_0x37eb66[_0x4db11a(0x96c)],'yljcX':function(_0x36acf4,_0xf4fb2f){const _0x1dfe9d=_0x4aac04;return _0x37eb66[_0x1dfe9d(0x7ae)](_0x36acf4,_0xf4fb2f);},'QqwDm':_0x37eb66[_0x2bf51b(0xab6)],'yZZCd':function(_0x3c554c,_0x7640a0){const _0x4bb3fe=_0x4aac04;return _0x37eb66[_0x4bb3fe(0x7ae)](_0x3c554c,_0x7640a0);},'MfZVn':_0x37eb66[_0x4e2d3e(0x2d6)],'nzkfJ':function(_0xa10f16,_0x5029ee){const _0x3ac23f=_0x4db11a;return _0x37eb66[_0x3ac23f(0x26e)](_0xa10f16,_0x5029ee);},'VoEbo':function(_0x1bf8f6){const _0x3f9b8d=_0x4db11a;return _0x37eb66[_0x3f9b8d(0xceb)](_0x1bf8f6);},'QSrfg':function(_0x45e180,_0x45e1c1){const _0x20ccd9=_0x4db11a;return _0x37eb66[_0x20ccd9(0xd34)](_0x45e180,_0x45e1c1);},'pRZKA':function(_0x4c87f2,_0x5f0bc8){const _0xf0d741=_0x2bf51b;return _0x37eb66[_0xf0d741(0x2f5)](_0x4c87f2,_0x5f0bc8);},'JzjFX':function(_0x87e534,_0x56fd0a){const _0x3b8b12=_0x4db11a;return _0x37eb66[_0x3b8b12(0x26e)](_0x87e534,_0x56fd0a);},'XizNO':function(_0xf59728,_0x2ce5f1){const _0x45d297=_0x4db11a;return _0x37eb66[_0x45d297(0x26e)](_0xf59728,_0x2ce5f1);}};_0x55c429='';if(_0x37eb66[_0x4aac04(0x840)](_0x2609a1[_0x194928(0x830)+'h'],-0x95+-0xb*-0x30d+0x13*-0x1bc))_0x55c429=_0x2609a1[_0x4db11a(0xc25)](-0x6b*-0x3f+0x2*0xf82+-0x3953);if(_0x37eb66[_0x194928(0xddc)](_0x55c429,_0x37eb66[_0x4e2d3e(0x763)])){if(_0x37eb66[_0x4db11a(0x707)](_0x37eb66[_0x4e2d3e(0x2de)],_0x37eb66[_0x4db11a(0xbb0)]))_0x648d62+='';else{const _0x5e0c1b=_0x37eb66[_0x4e2d3e(0xd03)][_0x4e2d3e(0x308)]('|');let _0x3f7330=0x149d+0x10f3+-0x2590;while(!![]){switch(_0x5e0c1b[_0x3f7330++]){case'0':lock_chat=0x1ce3+-0x20e4+0x401*0x1;continue;case'1':_0x37eb66[_0x194928(0xceb)](proxify);continue;case'2':return;case'3':document[_0x4db11a(0x3f7)+_0x4aac04(0x401)+_0x2bf51b(0xd95)](_0x37eb66[_0x194928(0x679)])[_0x4db11a(0x73c)][_0x194928(0x352)+'ay']='';continue;case'4':document[_0x194928(0x3f7)+_0x4db11a(0x401)+_0x194928(0xd95)](_0x37eb66[_0x2bf51b(0x78c)])[_0x194928(0x73c)][_0x4db11a(0x352)+'ay']='';continue;}break;}}}let _0xe83b31;try{if(_0x37eb66[_0x2bf51b(0x9d7)](_0x37eb66[_0x194928(0xccc)],_0x37eb66[_0x4db11a(0xccc)])){const _0x1204ee=new _0x1dbcdd(PDHOVA[_0x4db11a(0x6f3)]),_0x258a19=new _0x537e9d(PDHOVA[_0x4db11a(0x45d)],'i'),_0x3fe876=PDHOVA[_0x2bf51b(0x4d3)](_0x420f86,PDHOVA[_0x4e2d3e(0x343)]);!_0x1204ee[_0x2bf51b(0x81b)](PDHOVA[_0x4db11a(0x76e)](_0x3fe876,PDHOVA[_0x2bf51b(0x636)]))||!_0x258a19[_0x4e2d3e(0x81b)](PDHOVA[_0x4aac04(0x8f6)](_0x3fe876,PDHOVA[_0x4db11a(0xa37)]))?PDHOVA[_0x2bf51b(0x3c3)](_0x3fe876,'0'):PDHOVA[_0x4db11a(0xdb3)](_0x58c654);}else try{if(_0x37eb66[_0x4db11a(0xb1c)](_0x37eb66[_0x4db11a(0x66d)],_0x37eb66[_0x4db11a(0x66d)]))_0xe83b31=JSON[_0x4e2d3e(0x3d1)](_0x37eb66[_0x2bf51b(0xdd1)](_0x3a03fe,_0x55c429))[_0x37eb66[_0x4aac04(0x9ef)]],_0x3a03fe='';else{const _0x3312ad=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0xa3d0c4=new _0x5314f8(),_0x4b9ab6=(_0x31c207,_0x36ce92)=>{const _0x5248fd=_0x4e2d3e,_0x9a4af3=_0x2bf51b,_0x47e774=_0x194928,_0x3b11cd=_0x2bf51b,_0x23a612=_0x194928;if(_0xa3d0c4[_0x5248fd(0x867)](_0x36ce92))return _0x31c207;const _0x2746c1=_0x36ce92[_0x9a4af3(0x308)](/[;,;、,]/),_0x49df26=_0x2746c1[_0x9a4af3(0x4a5)](_0x271f5b=>'['+_0x271f5b+']')[_0x5248fd(0x93a)]('\x20'),_0x2a4240=_0x2746c1[_0x5248fd(0x4a5)](_0x50e6b1=>'['+_0x50e6b1+']')[_0x9a4af3(0x93a)]('\x0a');_0x2746c1[_0x5248fd(0x5b5)+'ch'](_0x2d3c59=>_0xa3d0c4[_0x3b11cd(0x7a0)](_0x2d3c59)),_0x2eb46c='\x20';for(var _0x2a48f0=_0x190b7b[_0x3b11cd(0x76e)](_0x190b7b[_0x9a4af3(0x520)](_0xa3d0c4[_0x5248fd(0x5ef)],_0x2746c1[_0x5248fd(0x830)+'h']),0x244f+0x1060+-0x34ae);_0x190b7b[_0x23a612(0x489)](_0x2a48f0,_0xa3d0c4[_0x9a4af3(0x5ef)]);++_0x2a48f0)_0x43ae43+='[^'+_0x2a48f0+']\x20';return _0x582e2f;};let _0x42f578=-0x17cd+0x17cc+0x2,_0x346abe=_0x3d1c5d[_0x4db11a(0x785)+'ce'](_0x3312ad,_0x4b9ab6);while(_0x224f05[_0x194928(0xc5c)](_0xa3d0c4[_0x2bf51b(0x5ef)],-0x3*-0x32c+0x1*0x1aa5+-0x2429)){const _0x570607='['+_0x42f578++ +_0x4e2d3e(0x7cb)+_0xa3d0c4[_0x194928(0xac3)+'s']()[_0x4e2d3e(0xb89)]()[_0x194928(0xac3)],_0x54397e='[^'+_0x224f05[_0x2bf51b(0x8c9)](_0x42f578,-0x2*-0x6c3+0x2b*-0xc5+0x1392)+_0x2bf51b(0x7cb)+_0xa3d0c4[_0x4db11a(0xac3)+'s']()[_0x4e2d3e(0xb89)]()[_0x4aac04(0xac3)];_0x346abe=_0x346abe+'\x0a\x0a'+_0x54397e,_0xa3d0c4[_0x4e2d3e(0x816)+'e'](_0xa3d0c4[_0x4e2d3e(0xac3)+'s']()[_0x4db11a(0xb89)]()[_0x4e2d3e(0xac3)]);}return _0x346abe;}}catch(_0x48923f){if(_0x37eb66[_0x4aac04(0x9d7)](_0x37eb66[_0x2bf51b(0x89d)],_0x37eb66[_0x194928(0x89d)])){const _0x256709={};_0x256709[_0x4aac04(0x73f)]=0x1,_0x15c9a7[_0x194928(0x98b)]=_0x30893d[_0x4e2d3e(0x73b)+_0x194928(0x720)+'t'](_0x256709),_0x3e8b19[_0x4db11a(0xd53)](_0x529351[_0x4db11a(0x551)+_0x4e2d3e(0x729)+_0x194928(0x890)]());const _0x24ce9c={};_0x24ce9c[_0x4db11a(0x73f)]=0x1,_0x154c8c[_0x2bf51b(0xd53)]([_0x54ed4d[_0x2bf51b(0x73b)+_0x194928(0x720)+'t'](_0x24ce9c),_0x190b7b[_0x2bf51b(0x8f6)](_0x2107d8[_0x4db11a(0x542)+_0x4db11a(0xa43)],-0x252b+-0x13d3*-0x1+-0x1*-0x1159)]);}else _0xe83b31=JSON[_0x4db11a(0x3d1)](_0x55c429)[_0x37eb66[_0x194928(0x9ef)]],_0x3a03fe='';}}catch(_0x1e97ea){if(_0x37eb66[_0x4db11a(0xb1c)](_0x37eb66[_0x2bf51b(0xa11)],_0x37eb66[_0x4aac04(0xa11)]))_0x3a03fe+=_0x55c429;else return _0x190b7b[_0x2bf51b(0x211)](_0x14e647,_0x190b7b[_0x4e2d3e(0x71d)](_0x11d936,_0xe88167));}_0xe83b31&&_0x37eb66[_0x194928(0x840)](_0xe83b31[_0x194928(0x830)+'h'],-0x132+0xfd5+0x4e1*-0x3)&&_0xe83b31[-0xa81*0x1+-0x1aa0+0x5*0x76d][_0x4e2d3e(0x6a1)][_0x4e2d3e(0x3db)+'nt']&&(chatTextRawPlusComment+=_0xe83b31[0x212f+-0x21d*-0xb+-0x1*0x386e][_0x194928(0x6a1)][_0x194928(0x3db)+'nt']),_0x37eb66[_0x194928(0xc92)](markdownToHtml,_0x37eb66[_0x194928(0xb56)](beautify,chatTextRawPlusComment),document[_0x4db11a(0x3f7)+_0x4aac04(0x401)+_0x4aac04(0xd95)](_0x37eb66[_0x4e2d3e(0x8b2)]));}),_0x154d61[_0x342a26(0xde0)]()[_0x329132(0x56c)](_0x2c85ff);});})[_0x21df1b(0x46c)](_0x306496=>{const _0x56aa3c=_0x5d8ab4,_0x341b1d=_0x36ec99;console[_0x56aa3c(0xa18)](_0x11db3d[_0x56aa3c(0x438)],_0x306496);});return;}let _0x40722b;try{try{_0x40722b=JSON[_0x4d5be2(0x3d1)](_0x11db3d[_0x5d8ab4(0x483)](_0x7809c4,_0x369941))[_0x11db3d[_0x36ec99(0xa65)]],_0x7809c4='';}catch(_0x1f75a0){_0x40722b=JSON[_0x4d5be2(0x3d1)](_0x369941)[_0x11db3d[_0x5d8ab4(0xa65)]],_0x7809c4='';}}catch(_0x542ea4){_0x7809c4+=_0x369941;}_0x40722b&&_0x11db3d[_0x1516fa(0x2b4)](_0x40722b[_0x5d8ab4(0x830)+'h'],0x1309+0xc0c+0x49*-0x6d)&&_0x40722b[0x146e+-0x42*0x4d+0x4*-0x25][_0x36ec99(0x6a1)][_0x36ec99(0x3db)+'nt']&&(chatTextRaw+=_0x40722b[-0x21e5*-0x1+-0x1601+0x2*-0x5f2][_0x5d8ab4(0x6a1)][_0x4d5be2(0x3db)+'nt']),_0x11db3d[_0x21df1b(0xa4f)](markdownToHtml,_0x11db3d[_0x21df1b(0x440)](beautify,chatTextRaw),document[_0x4d5be2(0x3f7)+_0x36ec99(0x401)+_0x5d8ab4(0xd95)](_0x11db3d[_0x4d5be2(0xc86)]));}),_0x285036[_0x1a6840(0xde0)]()[_0x1a6840(0x56c)](_0x480db1);});})[_0x31f30e(0x46c)](_0x55d86f=>{const _0x4775b=_0x40568a,_0x5c1d82=_0x1c1b2e;console[_0x4775b(0xa18)](_0x2534d4[_0x5c1d82(0xdd7)],_0x55d86f);});return;}let _0x82588c;try{try{_0x82588c=JSON[_0x31f30e(0x3d1)](_0x40803e[_0x52a4d8(0x40a)](_0x2829a6,_0x5a5b04))[_0x40803e[_0xb2841d(0x4c3)]],_0x2829a6='';}catch(_0x1e8df8){_0x82588c=JSON[_0xb2841d(0x3d1)](_0x5a5b04)[_0x40803e[_0x31f30e(0x4c3)]],_0x2829a6='';}}catch(_0x403a57){_0x2829a6+=_0x5a5b04;}_0x82588c&&_0x40803e[_0x31f30e(0x31a)](_0x82588c[_0xb2841d(0x830)+'h'],0x1d*-0x2d+0xd*0x1a6+-0x1055)&&_0x82588c[-0x1*0x24fb+0x283*0x5+0x186c][_0xb2841d(0x6a1)][_0x52a4d8(0x3db)+'nt']&&(chatTextRawIntro+=_0x82588c[0xbdc*0x2+-0x5*-0x13+-0x7*0x371][_0x40568a(0x6a1)][_0xb2841d(0x3db)+'nt']),_0x40803e[_0x31f30e(0xb87)](markdownToHtml,_0x40803e[_0x52a4d8(0x85a)](beautify,_0x40803e[_0x1c1b2e(0x40a)](chatTextRawIntro,'\x0a')),document[_0x1c1b2e(0x3f7)+_0xb2841d(0x401)+_0x52a4d8(0xd95)](_0x40803e[_0x52a4d8(0x599)]));}),_0x126fe4[_0x5a62db(0xde0)]()[_0x16c625(0x56c)](_0x343f83);});})[_0x2239e4(0x46c)](_0x1c75b3=>{const _0xad9036=_0x2628a6,_0x1cb3c0=_0x2239e4,_0x23286a=_0x2628a6,_0x3103f8=_0x2239e4,_0x2791c1={};_0x2791c1[_0xad9036(0xcd7)]=_0xad9036(0x457)+':';const _0x46c6a6=_0x2791c1;console[_0x1cb3c0(0xa18)](_0x46c6a6[_0x23286a(0xcd7)],_0x1c75b3);});function _0x222cbb(_0x51b343){const _0x4bc214=_0x380db8,_0x5ed77f=_0x2239e4,_0x339bb8=_0x2628a6,_0xbac52b=_0x51b305,_0x284ae9=_0x372c3c,_0x39756b={'XpSgs':function(_0x294803,_0x5bfe18){return _0x294803===_0x5bfe18;},'gmYJy':_0x4bc214(0xd73)+'g','qvGTy':_0x5ed77f(0xbbe)+_0x5ed77f(0x3ab)+_0xbac52b(0xb93),'AMznT':_0x284ae9(0xca6)+'er','LqFBe':function(_0x4d8058,_0x9e5052){return _0x4d8058!==_0x9e5052;},'hEpHc':function(_0x33c941,_0x4148b6){return _0x33c941+_0x4148b6;},'Fwpya':function(_0x1b6621,_0x4a2c11){return _0x1b6621/_0x4a2c11;},'waSlE':_0x4bc214(0x830)+'h','lYKvS':function(_0xf8a4f1,_0x1b7053){return _0xf8a4f1===_0x1b7053;},'lIKWk':function(_0x42f9e1,_0x17468c){return _0x42f9e1%_0x17468c;},'UZasp':function(_0x273f57,_0x35b552){return _0x273f57+_0x35b552;},'XjLrr':_0x4bc214(0x2d1),'RSPVt':_0xbac52b(0x589),'XgheD':_0x339bb8(0x7ab)+'n','ouRQL':function(_0x54eaac,_0x35f49d){return _0x54eaac+_0x35f49d;},'mznRS':_0x339bb8(0xa0f)+_0x4bc214(0x9ff)+'t','DirIA':function(_0xd1aab7,_0x2199b9){return _0xd1aab7(_0x2199b9);},'ofjlp':function(_0x2d214f,_0xb40a6c){return _0x2d214f(_0xb40a6c);}};function _0x5b9ba5(_0xade0c3){const _0x2e3597=_0x4bc214,_0x39a486=_0x5ed77f,_0xe2b338=_0x339bb8,_0x24b8c8=_0x4bc214,_0x1fad1c=_0x339bb8;if(_0x39756b[_0x2e3597(0xd35)](typeof _0xade0c3,_0x39756b[_0x2e3597(0x580)]))return function(_0x1a06ea){}[_0x2e3597(0xb57)+_0x2e3597(0xc43)+'r'](_0x39756b[_0x2e3597(0x638)])[_0xe2b338(0xb9d)](_0x39756b[_0xe2b338(0x25e)]);else _0x39756b[_0x2e3597(0x1e5)](_0x39756b[_0x2e3597(0xb32)]('',_0x39756b[_0x39a486(0xd3c)](_0xade0c3,_0xade0c3))[_0x39756b[_0x39a486(0x3c0)]],-0x7*0x45+0x268b+0x24a7*-0x1)||_0x39756b[_0xe2b338(0x86d)](_0x39756b[_0x24b8c8(0x65c)](_0xade0c3,-0x26a3+-0x12ed+0x39a4),-0x5*-0x207+-0x347+-0x6dc)?function(){return!![];}[_0x1fad1c(0xb57)+_0x1fad1c(0xc43)+'r'](_0x39756b[_0x24b8c8(0x239)](_0x39756b[_0x24b8c8(0x92c)],_0x39756b[_0xe2b338(0xbdd)]))[_0x1fad1c(0xd1a)](_0x39756b[_0x2e3597(0x3e4)]):function(){return![];}[_0x2e3597(0xb57)+_0x39a486(0xc43)+'r'](_0x39756b[_0x24b8c8(0x82c)](_0x39756b[_0xe2b338(0x92c)],_0x39756b[_0x24b8c8(0xbdd)]))[_0x1fad1c(0xb9d)](_0x39756b[_0x2e3597(0xd2e)]);_0x39756b[_0xe2b338(0x801)](_0x5b9ba5,++_0xade0c3);}try{if(_0x51b343)return _0x5b9ba5;else _0x39756b[_0x284ae9(0xae4)](_0x5b9ba5,0xcab+-0x3b*-0xa3+-0x1*0x323c);}catch(_0x443c6c){}}
</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()