searxng/searx/webapp.py
Joseph Cheung 17d112d98f c
2023-03-06 02:19:09 +08:00

2122 lines
380 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
from timeit import default_timer
from html import escape
from io import StringIO
import typing
from typing import List, Dict, Iterable
import urllib
import urllib.parse
from urllib.parse import urlencode, unquote
import httpx
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
import flask
from flask import (
Flask,
render_template,
url_for,
make_response,
redirect,
send_from_directory,
)
from flask.wrappers import Response
from flask.json import jsonify
from flask_babel import (
Babel,
gettext,
format_decimal,
)
from searx import (
logger,
get_setting,
settings,
searx_debug,
)
from searx import infopage
from searx.data import ENGINE_DESCRIPTIONS
from searx.results import Timing, UnresponsiveEngine
from searx.settings_defaults import OUTPUT_FORMATS
from searx.settings_loader import get_default_settings_path
from searx.exceptions import SearxParameterException
from searx.engines import (
OTHER_CATEGORY,
categories,
engines,
engine_shortcuts,
)
from searx.webutils import (
UnicodeWriter,
highlight_content,
get_static_files,
get_result_templates,
get_themes,
prettify_url,
new_hmac,
is_hmac_of,
is_flask_run_cmdline,
group_engines_in_tab,
searxng_l10n_timespan,
)
from searx.webadapter import (
get_search_query_from_webapp,
get_selected_categories,
)
from searx.utils import (
html_to_text,
gen_useragent,
dict_subset,
match_language,
)
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
from searx.query import RawTextQuery
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
from searx.plugins.oa_doi_rewrite import get_doi_resolver
from searx.preferences import (
Preferences,
ValidationException,
)
from searx.answerers import (
answerers,
ask,
)
from searx.metrics import (
get_engines_stats,
get_engine_errors,
get_reliabilities,
histogram,
counter,
)
from searx.flaskfix import patch_application
from searx.locales import (
LOCALE_NAMES,
RTL_LOCALES,
localeselector,
locales_initialize,
)
# renaming names from searx imports ...
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
from searx.languages import language_codes as languages
from searx.redisdb import initialize as redis_initialize
from searx.search import SearchWithPlugins, initialize as search_initialize
from searx.network import stream as http_stream, set_context_network_name
from searx.search.checker import get_result as checker_get_result
logger = logger.getChild('webapp')
# check secret_key
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
sys.exit(1)
# about static
logger.debug('static directory is %s', settings['ui']['static_path'])
static_files = get_static_files(settings['ui']['static_path'])
# about templates
logger.debug('templates directory is %s', settings['ui']['templates_path'])
default_theme = settings['ui']['default_theme']
templates_path = settings['ui']['templates_path']
themes = get_themes(templates_path)
result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),
}
# Flask app
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
app.secret_key = settings['server']['secret_key']
timeout_text = gettext('timeout')
parsing_error_text = gettext('parsing error')
http_protocol_error_text = gettext('HTTP protocol error')
network_error_text = gettext('network error')
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
exception_classname_to_text = {
None: gettext('unexpected crash'),
'timeout': timeout_text,
'asyncio.TimeoutError': timeout_text,
'httpx.TimeoutException': timeout_text,
'httpx.ConnectTimeout': timeout_text,
'httpx.ReadTimeout': timeout_text,
'httpx.WriteTimeout': timeout_text,
'httpx.HTTPStatusError': gettext('HTTP error'),
'httpx.ConnectError': gettext("HTTP connection error"),
'httpx.RemoteProtocolError': http_protocol_error_text,
'httpx.LocalProtocolError': http_protocol_error_text,
'httpx.ProtocolError': http_protocol_error_text,
'httpx.ReadError': network_error_text,
'httpx.WriteError': network_error_text,
'httpx.ProxyError': gettext("proxy error"),
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
'KeyError': parsing_error_text,
'json.decoder.JSONDecodeError': parsing_error_text,
'lxml.etree.ParserError': parsing_error_text,
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
}
class ExtendedRequest(flask.Request):
"""This class is never initialized and only used for type checking."""
preferences: Preferences
errors: List[str]
user_plugins: List[Plugin]
form: Dict[str, str]
start_time: float
render_time: float
timings: List[Timing]
request = typing.cast(ExtendedRequest, flask.request)
def get_locale():
locale = localeselector()
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
return locale
babel = Babel(app, locale_selector=get_locale)
def _get_browser_language(req, lang_list):
for lang in req.headers.get("Accept-Language", "en").split(","):
if ';' in lang:
lang = lang.split(';')[0]
if '-' in lang:
lang_parts = lang.split('-')
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
locale = match_language(lang, lang_list, fallback=None)
if locale is not None:
return locale
return 'en'
def _get_locale_rfc5646(locale):
"""Get locale name for <html lang="...">
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
For example "zh-TW" is detected but not "zh-Hant-TW".
This function returns a locale without the subtag.
"""
parts = locale.split('-')
return parts[0].lower() + '-' + parts[-1].upper()
# code-highlighter
@app.template_filter('code_highlighter')
def code_highlighter(codelines, language=None):
if not language:
language = 'text'
try:
# find lexer by programming language
lexer = get_lexer_by_name(language, stripall=True)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
# if lexer is not found, using default one
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''
tmp_code = ''
last_line = None
line_code_start = None
# parse lines
for line, code in codelines:
if not last_line:
line_code_start = line
# new codeblock is detected
if last_line is not None and last_line + 1 != line:
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
# reset conditions for next codepart
tmp_code = ''
line_code_start = line
# add codepart
tmp_code += code + '\n'
# update line
last_line = line
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
return html_code
def get_result_template(theme_name: str, template_name: str):
themed_path = theme_name + '/result_templates/' + template_name
if themed_path in result_templates:
return themed_path
return 'result_templates/' + template_name
def custom_url_for(endpoint: str, **values):
suffix = ""
if endpoint == 'static' and values.get('filename'):
file_hash = static_files.get(values['filename'])
if not file_hash:
# try file in the current theme
theme_name = request.preferences.get_value('theme')
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
file_hash = static_files.get(filename_with_theme)
if file_hash:
values['filename'] = filename_with_theme
if get_setting('ui.static_use_hash') and file_hash:
suffix = "?" + file_hash
if endpoint == 'info' and 'locale' not in values:
locale = request.preferences.get_value('locale')
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
locale = _INFO_PAGES.locale_default
values['locale'] = locale
return url_for(endpoint, **values) + suffix
def morty_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not settings['result_proxy']['url']:
return url
url_params = dict(mortyurl=url)
if settings['result_proxy']['key']:
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
def image_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not request.preferences.get_value('image_proxy'):
return url
if url.startswith('data:image/'):
# 50 is an arbitrary number to get only the beginning of the image.
partial_base64 = url[len('data:image/') : 50].split(';')
if (
len(partial_base64) == 2
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
and partial_base64[1].startswith('base64,')
):
return url
return None
if settings['result_proxy']['url']:
return morty_proxify(url)
h = new_hmac(settings['server']['secret_key'], url.encode())
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
def get_translations():
return {
# when there is autocompletion
'no_item_found': gettext('No item found'),
# /preferences: the source of the engine description (wikipedata, wikidata, website)
'Source': gettext('Source'),
# infinite scroll
'error_loading_next_page': gettext('Error loading the next page'),
}
def _get_enable_categories(all_categories: Iterable[str]):
disabled_engines = request.preferences.engines.get_disabled()
enabled_categories = set(
# pylint: disable=consider-using-dict-items
category
for engine_name in engines
for category in engines[engine_name].categories
if (engine_name, category) not in disabled_engines
)
return [x for x in all_categories if x in enabled_categories]
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
path = parsed_url.path
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
path = unquote(path.replace("/", " "))
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
def get_client_settings():
req_pref = request.preferences
return {
'autocomplete_provider': req_pref.get_value('autocomplete'),
'autocomplete_min': get_setting('search.autocomplete_min'),
'http_method': req_pref.get_value('method'),
'infinite_scroll': req_pref.get_value('infinite_scroll'),
'translations': get_translations(),
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
'theme_static_path': custom_url_for('static', filename='themes/simple'),
}
def render(template_name: str, **kwargs):
kwargs['client_settings'] = str(
base64.b64encode(
bytes(
json.dumps(get_client_settings()),
encoding='utf-8',
)
),
encoding='utf-8',
)
# values from the HTTP requests
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
kwargs['cookies'] = request.cookies
kwargs['errors'] = request.errors
# values from the preferences
kwargs['preferences'] = request.preferences
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
kwargs['theme'] = request.preferences.get_value('theme')
kwargs['method'] = request.preferences.get_value('method')
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
kwargs['categories'] = _get_enable_categories(categories.keys())
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
# i18n
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
locale = request.preferences.get_value('locale')
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
if locale in RTL_LOCALES and 'rtl' not in kwargs:
kwargs['rtl'] = True
if 'current_language' not in kwargs:
kwargs['current_language'] = match_language(
request.preferences.get_value('language'), settings['search']['languages']
)
# values from settings
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
kwargs['instance_name'] = get_setting('general.instance_name')
kwargs['searx_version'] = VERSION_STRING
kwargs['searx_git_url'] = GIT_URL
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
kwargs['get_setting'] = get_setting
kwargs['get_pretty_url'] = get_pretty_url
# values from settings: donation_url
donation_url = get_setting('general.donation_url')
if donation_url is True:
donation_url = custom_url_for('info', pagename='donate')
kwargs['donation_url'] = donation_url
# helpers to create links to other pages
kwargs['url_for'] = custom_url_for # override url_for function in templates
kwargs['image_proxify'] = image_proxify
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
kwargs['cache_url'] = settings['ui']['cache_url']
kwargs['get_result_template'] = get_result_template
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
kwargs['opensearch_url'] = (
url_for('opensearch')
+ '?'
+ urlencode(
{
'method': request.preferences.get_value('method'),
'autocomplete': request.preferences.get_value('autocomplete'),
}
)
)
# scripts from plugins
kwargs['scripts'] = set()
for plugin in request.user_plugins:
for script in plugin.js_dependencies:
kwargs['scripts'].add(script)
# styles from plugins
kwargs['styles'] = set()
for plugin in request.user_plugins:
for css in plugin.css_dependencies:
kwargs['styles'].add(css)
start_time = default_timer()
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
return result
@app.before_request
def pre_request():
request.start_time = default_timer() # pylint: disable=assigning-non-slot
request.render_time = 0 # pylint: disable=assigning-non-slot
request.timings = [] # pylint: disable=assigning-non-slot
request.errors = [] # pylint: disable=assigning-non-slot
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
user_agent = request.headers.get('User-Agent', '').lower()
if 'webkit' in user_agent and 'android' in user_agent:
preferences.key_value_settings['method'].value = 'GET'
request.preferences = preferences # pylint: disable=assigning-non-slot
try:
preferences.parse_dict(request.cookies)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings, please edit your preferences'))
# merge GET, POST vars
# request.form
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
for k, v in request.args.items():
if k not in request.form:
request.form[k] = v
if request.form.get('preferences'):
preferences.parse_encoded_data(request.form['preferences'])
else:
try:
preferences.parse_dict(request.form)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings'))
# language is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("language"):
language = _get_browser_language(request, settings['search']['languages'])
preferences.parse_dict({"language": language})
logger.debug('set language %s (from browser)', preferences.get_value("language"))
# locale is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("locale"):
locale = _get_browser_language(request, LOCALE_NAMES.keys())
preferences.parse_dict({"locale": locale})
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
# request.user_plugins
request.user_plugins = [] # pylint: disable=assigning-non-slot
allowed_plugins = preferences.plugins.get_enabled()
disabled_plugins = preferences.plugins.get_disabled()
for plugin in plugins:
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
request.user_plugins.append(plugin)
@app.after_request
def add_default_headers(response: flask.Response):
# set default http headers
for header, value in settings['server']['default_http_headers'].items():
if header in response.headers:
continue
response.headers[header] = value
return response
@app.after_request
def post_request(response: flask.Response):
total_time = default_timer() - request.start_time
timings_all = [
'total;dur=' + str(round(total_time * 1000, 3)),
'render;dur=' + str(round(request.render_time * 1000, 3)),
]
if len(request.timings) > 0:
timings = sorted(request.timings, key=lambda t: t.total)
timings_total = [
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
]
timings_load = [
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
for i, t in enumerate(timings)
if t.load
]
timings_all = timings_all + timings_total + timings_load
# response.headers.add('Server-Timing', ', '.join(timings_all))
return response
def index_error(output_format: str, error_message: str):
if output_format == 'json':
return Response(json.dumps({'error': error_message}), mimetype='application/json')
if output_format == 'csv':
response = Response('', mimetype='application/csv')
cont_disp = 'attachment;Filename=searx.csv'
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=[],
q=request.form['q'] if 'q' in request.form else '',
number_of_results=0,
error_message=error_message,
)
return Response(response_rss, mimetype='text/xml')
# html
request.errors.append(gettext('search error'))
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
@app.route('/', methods=['GET', 'POST'])
def index():
"""Render index page."""
# redirect to search if there's a query in the request
if request.form.get('q'):
query = ('?' + request.query_string.decode()) if request.query_string else ''
return redirect(url_for('search') + query, 308)
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
current_locale = request.preferences.get_value("locale"),
# fmt: on
)
@app.route('/healthz', methods=['GET'])
def health():
return Response('OK', mimetype='text/plain')
@app.route('/keytext', methods=['POST'])
def keytext():
res = []
text = request.json['text']
tr4s = TextRank4Sentence()
tr4s.analyze(text=text, lower=True, source = 'all_filters')
for item in tr4s.get_key_sentences(num=15):
res.append(item.sentence)
return Response(json.dumps(res), mimetype='application/json')
@app.route('/search', methods=['GET', 'POST'])
def search():
"""Search query in q and return results.
Supported outputs: html, json, csv, rss.
"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# output_format
output_format = request.form.get('format', 'html')
if output_format not in OUTPUT_FORMATS:
output_format = 'html'
if output_format not in settings['search']['formats']:
flask.abort(403)
# check if there is query (not None and not an empty string)
if not request.form.get('q'):
if output_format == 'html':
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
return index_error(output_format, 'No query'), 400
# search
search_query = None
raw_text_query = None
result_container = None
original_search_query = ""
search_type = "搜索网页"
net_search = True
net_search_str = 'true'
prompt = ""
add_system = '[]'
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
try:
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
return render('404.html'), 404
try:
original_search_query = search_query.query
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
if len(search_query.query)>5 and "谁是" in search_query.query:
search_query.query = search_query.query.replace("谁是","")
if len(search_query.query)>5 and "是谁" in search_query.query:
search_query.query = search_query.query.replace("是谁","")
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
prompt = search_query.query + "\n对以上问题生成一个Google搜索词\n"
search_type = '任务'
net_search = False
net_search_str = 'false'
elif len(original_search_query)>10:
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","","详细关键词"]来表述'
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
if "今年" in prompt or "今天" in prompt:
now = datetime.datetime.now()
prompt = prompt.replace("今年",now.strftime('%Y年'))
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d'))
gpt = ""
gpt_url = "https://api.openai.com/v1/chat/completions"
gpt_headers = {
"Authorization": "Bearer "+os.environ['GPTKEY'],
"Content-Type": "application/json",
}
gpt_data = {
"model": "gpt-3.5-turbo",
"messages": [{"role":"user","content":prompt}],
"max_tokens": 256,
"temperature": 0.9,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": False
}
gpt_json={}
if prompt and prompt !='' :
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
gpt_json = gpt_response.json()
if 'choices' in gpt_json:
gpt = gpt_json['choices'][0]['message']['content']
if search_type == '任务':
for word in gpt.split('\n'):
if word != "":
gpt = word.replace("\"","").replace("\'","").replace("","").replace("","").replace("","").replace("","")
break
if gpt!="":
search_query.query = gpt
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
else:
gpt_judge = []
for tmpj in gpt.split():
try:
gpt_judge = json.loads(tmpj)
except:pass
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
search_query.query = gpt_judge[2]
search_type = gpt_judge[0]
net_search = True
net_search_str = 'true'
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
search_type = gpt_judge[0]
net_search = False
net_search_str = 'false'
except Exception as ee:
logger.exception(ee, exc_info=True)
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
result_container = search.search()
except SearxParameterException as e:
logger.exception('search error: SearxParameterException')
return index_error(output_format, e.message), 400
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
return index_error(output_format, gettext('No item found')), 500
# results
results = result_container.get_ordered_results()
number_of_results = result_container.results_number()
if number_of_results < result_container.results_length():
number_of_results = 0
# OPENAI GPT
raws = []
try:
url_pair = []
url_proxy = {}
prompt = ""
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
for res in results:
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
except:pass
for res in results:
if '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'].replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")))
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
res['content'] = res['content'].replace(" "," ")
res['content'] = res['content'].replace("Translate Tweet. ","")
res['content'] = res['content'].replace("Learn more ","")
res['content'] = res['content'].replace("Translate Tweet.","")
res['content'] = res['content'].replace("Retweeted.","Reposted.")
res['content'] = res['content'].replace("Learn more.","")
res['content'] = res['content'].replace("Show replies.","")
res['content'] = res['content'].replace("See new Tweets. ","")
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
res['content'] = res['content'].replace("Twitter for Android · ","")
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
raws.insert(0,tmp_prompt)
else: raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
if prompt != "":
gpt = ""
gpt_url = "https://search.kg/completions"
gpt_headers = {
"Content-Type": "application/json",
}
if '搜索' not in search_type:
gpt_data = {
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
else:
gpt_data = {
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
<div id="modal" class="modal">
<div id="modal-title" class="modal-title">网页速览<span>
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
</div>
<div class="modal-input-content" id="modal-input-content">
<div id="iframe-wrapper">
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
<div id='readability-reader' style='display:none'></div>
</div>
</div>
</div>
<script>
// 1. 获取元素
var modal = document.querySelector('.modal');
var closeBtn = document.querySelector('#closebtn');
var title = document.querySelector('#modal-title');
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
// 3. 点击 closeBtn 就隐藏 mask 和 modal
closeBtn.addEventListener('click', function () {
modal.style.display = 'none';
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
document.querySelector("#readability-reader").innerHTML = '';
try{iframe.removeAttribute('src');}catch(e){}
})
// 4. 开始拖拽
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
modal.addEventListener('mousedown', function (e) {
var x = e.pageX - modal.offsetLeft;
var y = e.pageY - modal.offsetTop;
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move)
function move(e) {
modal.style.left = e.pageX - x + 'px';
modal.style.top = e.pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
modal.addEventListener('touchstart', function (e) {
var x = e.touches[0].pageX - modal.offsetLeft;
var y = e.touches[0].pageY - modal.offsetTop;
document.addEventListener('touchmove', move)
function move(e) {
modal.style.left = e.touches[0].pageX - x + 'px';
modal.style.top = e.touches[0].pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('touchend', function () {
document.removeEventListener('touchmove ', move);
})
})
</script>
<style>
.modal-header {
width: 100%;
text-align: center;
height: 30px;
font-size: 24px;
line-height: 30px;
}
.modal {
display: none;
width: 45%;
position: fixed;
left: 32%;
top: 50%;
background: var(--color-header-background);
z-index: 10001;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 50em) {
.modal {
width: 85%;
left: 50%;
top: 50%;
}
}
.modal-title {
width: 100%;
margin: 10px 0px 0px 0px;
text-align: center;
line-height: 40px;
height: 40px;
font-size: 18px;
position: relative;
cursor: move;
}
.modal-button {
width: 50%;
margin: 30px auto 0px auto;
line-height: 40px;
font-size: 14px;
border: #ebebeb 1px solid;
text-align: center;
}
.modal-button a {
display: block;
}
.modal-input input.list-input {
float: left;
line-height: 35px;
height: 35px;
width: 350px;
border: #ebebeb 1px solid;
text-indent: 5px;
}
.modal-input {
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.modal-input label {
float: left;
width: 90px;
padding-right: 10px;
text-align: right;
line-height: 35px;
height: 35px;
font-size: 14px;
}
.modal-title span {
position: absolute;
right: 0px;
top: -15px;
}
#chat_talk {
width: 100%;
max-height: 30vh;
position: relative;
overflow: scroll;
padding-top: 1em;
}
#iframe-wrapper {
width: 100%;
height: 40vh;
position: relative;
overflow: hidden; /* 防止滚动条溢出 */
}
#iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
#iframe-wrapper div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
.closebtn{
width: 25px;
height: 25px;
display: inline-block;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
}
.closebtn::before, .closebtn::after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 12px;
right: 2px;
background: #999;
cursor: pointer;
}
.closebtn::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.closebtn::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
<div id="chat_talk"></div>
<div id="chat_continue" style="display:none">
<div id="chat_more" style="display:none"></div>
<hr>
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
<button id="chat_send" onclick='send_chat()' style="
width: 75%;
display: block;
margin: auto;
margin-top: .8em;
border-radius: .8rem;
height: 2em;
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
color: #fff;
border: none;
cursor: pointer;
">发送</button>
</div>
</div>
<style>
.chat_answer {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 3em 0.5em 0;
padding: 8px 12px;
color: white;
background: rgba(27,74,239,0.7);
}
.chat_question {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 0 0.5em 3em;
padding: 8px 12px;
color: black;
background: rgba(245, 245, 245, 0.7);
}
button.btn_more {
min-height: 30px;
text-align: left;
background: rgb(209, 219, 250);
border-radius: 8px;
overflow: hidden;
box-sizing: border-box;
padding: 0px 12px;
margin: 1px;
cursor: pointer;
font-weight: 500;
line-height: 28px;
border: 1px solid rgb(18, 59, 182);
color: rgb(18, 59, 182);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
box-shadow: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(17, 16, 16, 0.13);
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
box-shadow: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(211, 173, 209, 0.4);
}
</style>
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
# gpt_json = gpt_response.json()
# if 'choices' in gpt_json:
# gpt = gpt_json['choices'][0]['text']
# gpt = gpt.replace("简报:","").replace("简报:","")
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
# rgpt = gpt
if gpt and gpt!="":
if original_search_query != search_query.query:
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
gpt = gpt + r'''<style>
a.footnote {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 600;
vertical-align: top;
top: 0px;
margin: 1px 1px;
min-width: 14px;
height: 14px;
border-radius: 3px;
color: rgb(18, 59, 182);
background: rgb(209, 219, 250);
outline: transparent solid 1px;
}
</style>
<script src="/static/themes/magi/Readability-readerable.js"></script>
<script src="/static/themes/magi/Readability.js"></script>
<script src="/static/themes/magi/markdown.js"></script>
<script src="/static/themes/magi/stop_words.js"></script>
<script>
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
const search_type = "''' + search_type + r'''"
const net_search = ''' + net_search_str + r'''
const add_system = ''' + add_system +r'''
</script><script>
const _0x434b27=_0x2881,_0x3264df=_0x2881,_0x3434be=_0x2881,_0x13ebe9=_0x2881,_0x108b35=_0x2881;(function(_0x3e05ad,_0x5419e3){const _0x2ae35e=_0x2881,_0x178a9e=_0x2881,_0x139964=_0x2881,_0x142ccc=_0x2881,_0x1413c7=_0x2881,_0x169041=_0x3e05ad();while(!![]){try{const _0x196ea4=parseInt(_0x2ae35e(0xcd9))/(-0x23cb+0x2*-0x634+0x3034)*(-parseInt(_0x2ae35e(0x46d))/(0x1529+-0xc61*0x1+-0x463*0x2))+parseInt(_0x178a9e(0x857))/(0x221c+0x16f*-0xb+-0x1254)+parseInt(_0x2ae35e(0x9ec))/(-0xb*-0x379+-0xe97+-0x1798)*(parseInt(_0x178a9e(0x8b1))/(-0x4e*-0x3f+0x2c5*-0x8+0x2fb))+-parseInt(_0x142ccc(0x3f3))/(-0x135a+0x31*-0x22+0x19e2)+-parseInt(_0x142ccc(0x540))/(0xcf*0x17+0x181e+-0x2ab0)*(parseInt(_0x1413c7(0x98c))/(0x1*-0x31a+-0x3*0xcc7+0x3c5*0xb))+parseInt(_0x1413c7(0x5f5))/(0xec3+0x255a+0x2*-0x1a0a)+parseInt(_0x1413c7(0x660))/(0xbc3+0x2164+-0x2d1d)*(parseInt(_0x1413c7(0x600))/(-0x1*-0x1813+-0x22cf+0xac7));if(_0x196ea4===_0x5419e3)break;else _0x169041['push'](_0x169041['shift']());}catch(_0x2b48b2){_0x169041['push'](_0x169041['shift']());}}}(_0x1e10,0x194fd+0xfc97b+-0x64f96));function proxify(){const _0x27dd16=_0x2881,_0x20e4f7=_0x2881,_0x270e42=_0x2881,_0x24ec33=_0x2881,_0x335c96=_0x2881,_0x4811b9={'nMrRJ':_0x27dd16(0x8e4)+':','klAEx':function(_0x84238f,_0x220878){return _0x84238f===_0x220878;},'VOpvO':_0x20e4f7(0x468),'HfWmm':function(_0x39e60e,_0xa76dd8,_0x5859bc){return _0x39e60e(_0xa76dd8,_0x5859bc);},'INdIl':function(_0x14a569,_0x1759b4){return _0x14a569+_0x1759b4;},'gTvQI':_0x27dd16(0x296)+_0x24ec33(0x3af),'UDPmj':function(_0x48bf9f,_0x6b9d93){return _0x48bf9f>=_0x6b9d93;},'XsEHi':function(_0x33e16f,_0x580868){return _0x33e16f===_0x580868;},'WbvXu':_0x24ec33(0x259),'chXTz':_0x24ec33(0x605)+_0x24ec33(0xab5),'jNYXb':function(_0x11ac19,_0x37e935){return _0x11ac19(_0x37e935);},'RthPx':function(_0x48183c,_0x1caa12){return _0x48183c!==_0x1caa12;},'MNcsB':_0x27dd16(0x8fe),'rBhGv':_0x335c96(0x5b7),'HHads':function(_0x410fa0,_0x562d8a){return _0x410fa0+_0x562d8a;},'yWkDF':function(_0xa76132,_0x5e330c){return _0xa76132(_0x5e330c);},'vqoAA':function(_0x561f30,_0x330e81){return _0x561f30+_0x330e81;},'LgGfK':function(_0x18b711,_0x1ad670){return _0x18b711+_0x1ad670;},'RLyiT':function(_0x1b488e,_0x1f6c90){return _0x1b488e+_0x1f6c90;},'eLobO':_0x20e4f7(0x1f0),'rtCwJ':function(_0xc223f2,_0x46b09e){return _0xc223f2+_0x46b09e;}};for(let _0x1303ba=Object[_0x27dd16(0xb1c)](prompt[_0x270e42(0xcc5)+_0x20e4f7(0xb35)])[_0x270e42(0x58b)+'h'];_0x4811b9[_0x24ec33(0x419)](_0x1303ba,-0x6a*-0x2d+0x1360+0xa*-0x3cd);--_0x1303ba){if(_0x4811b9[_0x27dd16(0x342)](_0x4811b9[_0x24ec33(0x367)],_0x4811b9[_0x24ec33(0x367)])){if(document[_0x20e4f7(0x4f9)+_0x335c96(0x354)+_0x27dd16(0x778)](_0x4811b9[_0x24ec33(0x1df)](_0x4811b9[_0x24ec33(0x54f)],_0x4811b9[_0x335c96(0x413)](String,_0x4811b9[_0x27dd16(0x1df)](_0x1303ba,-0x110*-0x15+-0x2*0xa41+-0x1cd))))){if(_0x4811b9[_0x20e4f7(0x817)](_0x4811b9[_0x27dd16(0x92c)],_0x4811b9[_0x270e42(0x669)])){let _0x5f46b6=document[_0x24ec33(0x4f9)+_0x27dd16(0x354)+_0x20e4f7(0x778)](_0x4811b9[_0x270e42(0x3d5)](_0x4811b9[_0x270e42(0x54f)],_0x4811b9[_0x270e42(0xbd4)](String,_0x4811b9[_0x270e42(0x3d5)](_0x1303ba,-0x89f*0x1+-0x1072+0x1*0x1912))))[_0x27dd16(0x1f0)];if(!_0x5f46b6||!prompt[_0x335c96(0xcc5)+_0x27dd16(0xb35)][_0x5f46b6])continue;const _0x2923de=prompt[_0x335c96(0xcc5)+_0x20e4f7(0xb35)][_0x5f46b6];document[_0x27dd16(0x4f9)+_0x27dd16(0x354)+_0x270e42(0x778)](_0x4811b9[_0x335c96(0x1df)](_0x4811b9[_0x27dd16(0x54f)],_0x4811b9[_0x20e4f7(0xbd4)](String,_0x4811b9[_0x27dd16(0xcca)](_0x1303ba,-0x2*-0xb24+0x1*0x226d+0xbf*-0x4c))))[_0x24ec33(0x463)+'ck']=function(){const _0x2a3524=_0x335c96,_0x3ecdfa=_0x24ec33,_0x1e69f3=_0x27dd16,_0x5a52c4=_0x270e42,_0x1d3e5c=_0x270e42,_0x2c5119={};_0x2c5119[_0x2a3524(0x1e1)]=_0x4811b9[_0x2a3524(0x8e0)];const _0x4f56b1=_0x2c5119;_0x4811b9[_0x2a3524(0x98a)](_0x4811b9[_0x5a52c4(0xb2e)],_0x4811b9[_0x1e69f3(0xb2e)])?_0x4811b9[_0x1e69f3(0x525)](modal_open,_0x2923de,_0x4811b9[_0x1d3e5c(0x1df)](_0x1303ba,0x261+0x169c+-0x18fc)):_0x47ccec[_0x5a52c4(0x65f)](_0x4f56b1[_0x3ecdfa(0x1e1)],_0x548d02);},document[_0x24ec33(0x4f9)+_0x335c96(0x354)+_0x335c96(0x778)](_0x4811b9[_0x270e42(0xc8b)](_0x4811b9[_0x27dd16(0x54f)],_0x4811b9[_0x24ec33(0x413)](String,_0x4811b9[_0x24ec33(0x247)](_0x1303ba,-0x25ff+0xd*-0x6+0x264e))))[_0x270e42(0x193)+_0x24ec33(0x510)+_0x20e4f7(0x3fb)](_0x4811b9[_0x27dd16(0x56c)]),document[_0x27dd16(0x4f9)+_0x20e4f7(0x354)+_0x27dd16(0x778)](_0x4811b9[_0x270e42(0xc8b)](_0x4811b9[_0x27dd16(0x54f)],_0x4811b9[_0x335c96(0xbd4)](String,_0x4811b9[_0x20e4f7(0x7eb)](_0x1303ba,-0x1988+0x48b+0x14fe))))[_0x270e42(0x193)+_0x24ec33(0x510)+_0x270e42(0x3fb)]('id');}else _0x1f0755+=_0x4c1052[0x2006+-0x9c2+-0x1644][_0x270e42(0x1f7)][_0x270e42(0xb29)+'nt'];}}else _0x4a8359[_0x27dd16(0x4f9)+_0x335c96(0x354)+_0x270e42(0x778)](_0x4811b9[_0x20e4f7(0x5bd)])[_0x20e4f7(0xbba)+_0x270e42(0x1a9)]=_0x8ffad7[_0x27dd16(0x4f9)+_0x270e42(0x354)+_0x20e4f7(0x778)](_0x4811b9[_0x20e4f7(0x5bd)])[_0x270e42(0xbba)+_0x27dd16(0x593)+'ht'];}}const _load_wasm_jieba=async()=>{const _0x273c7a=_0x2881,_0x24cbdd=_0x2881,_0x43cd06=_0x2881,_0x55e48b=_0x2881,_0x15e0a5=_0x2881,_0x23ce18={'QeyCW':function(_0x272802,_0x492c1c){return _0x272802!==_0x492c1c;},'KpejT':_0x273c7a(0xcce)+_0x273c7a(0x6ae)+_0x273c7a(0xc7e)+_0x273c7a(0x511)+_0x15e0a5(0x52e)+_0x24cbdd(0x90f)+_0x24cbdd(0xa6c)+'s','SMqpw':function(_0x15d794){return _0x15d794();}};if(_0x23ce18[_0x55e48b(0xbfc)](window[_0x43cd06(0x3a3)],undefined))return;const {default:_0x59aa58,cut:_0x285b79}=await import(_0x23ce18[_0x15e0a5(0x4b7)]),_0x2c923a=await _0x23ce18[_0x273c7a(0x835)](_0x59aa58);return window[_0x15e0a5(0x3a3)]=_0x285b79,_0x2c923a;};_load_wasm_jieba();function cosineSimilarity(_0x36e909,_0x6ebd9a){const _0x380e8c=_0x2881,_0x1d32e6=_0x2881,_0x46d22f=_0x2881,_0x3afca4=_0x2881,_0x1798ff=_0x2881,_0x346b80={'uxnLE':_0x380e8c(0x991)+'es','NlhBr':_0x1d32e6(0x8e4)+':','EzcVR':_0x380e8c(0x9a6)+_0x380e8c(0x95e)+_0x46d22f(0xb87)+')','syWXf':_0x3afca4(0x24e)+_0x46d22f(0x249)+_0x3afca4(0x895)+_0x46d22f(0xcd2)+_0x3afca4(0x981)+_0x46d22f(0x784)+_0x1d32e6(0x80b),'BZjfp':function(_0x148349,_0x1a79c3){return _0x148349(_0x1a79c3);},'gDvmw':_0x46d22f(0x88b),'wWXkc':function(_0xfafa2,_0x82102a){return _0xfafa2+_0x82102a;},'aewJG':_0x380e8c(0x16d),'dqcON':_0x3afca4(0x326),'htWnH':function(_0x106c5b,_0x47e3e9){return _0x106c5b(_0x47e3e9);},'pZUug':function(_0x22f048){return _0x22f048();},'Sskvu':function(_0x227619,_0x34abe4,_0x3c2f0e){return _0x227619(_0x34abe4,_0x3c2f0e);},'sTZGW':function(_0x32378c,_0x5f0167,_0x272c3c){return _0x32378c(_0x5f0167,_0x272c3c);},'IVAsf':function(_0x12fb2a,_0x360b35,_0x4dc632){return _0x12fb2a(_0x360b35,_0x4dc632);},'SnQUz':function(_0x7f71e5,_0x16c17d){return _0x7f71e5!==_0x16c17d;},'RxfQC':_0x3afca4(0x183),'pzXmA':_0x46d22f(0xbbf),'JycPf':_0x3afca4(0xccc),'cSAOL':_0x1d32e6(0x575),'Lwmji':function(_0xf9e4c5,_0x4d51d7){return _0xf9e4c5!==_0x4d51d7;},'ByREH':_0x1798ff(0xa0b),'DEsvF':function(_0x340dba,_0x48dbaf){return _0x340dba*_0x48dbaf;},'gousi':function(_0x41340d,_0x3809f8){return _0x41340d**_0x3809f8;},'giGCA':function(_0x2321a3,_0x1564f0){return _0x2321a3/_0x1564f0;},'DdcSd':function(_0x404e3b,_0x4261cb){return _0x404e3b*_0x4261cb;}};keywordList=_0x346b80[_0x46d22f(0x8e9)](cut,_0x36e909[_0x3afca4(0x906)+_0x3afca4(0x958)+'e'](),!![]),keywordList=keywordList[_0x1798ff(0x82b)+'r'](_0x55327c=>!stop_words[_0x1d32e6(0x670)+_0x1798ff(0x9a0)](_0x55327c)),sentenceList=_0x346b80[_0x1d32e6(0x3f0)](cut,_0x6ebd9a[_0x380e8c(0x906)+_0x46d22f(0x958)+'e'](),!![]),sentenceList=sentenceList[_0x1798ff(0x82b)+'r'](_0x5c6cbc=>!stop_words[_0x46d22f(0x670)+_0x3afca4(0x9a0)](_0x5c6cbc));const _0x1773b7=new Set(keywordList[_0x1798ff(0xade)+'t'](sentenceList)),_0x2cd2e0={},_0x5771c3={};for(const _0xb542d3 of _0x1773b7){_0x346b80[_0x1798ff(0x3f9)](_0x346b80[_0x3afca4(0x25d)],_0x346b80[_0x46d22f(0x25d)])?(_0xcf2f64=_0x57a160[_0x1d32e6(0x7f0)](_0x4576bd)[_0x346b80[_0x1798ff(0x29a)]],_0x4ed5a4=''):(_0x2cd2e0[_0xb542d3]=-0x1*-0x117f+0xc38+-0x1db7,_0x5771c3[_0xb542d3]=-0x132*0x7+-0x3d*-0x7f+-0x15e5);}for(const _0x57a4c5 of keywordList){if(_0x346b80[_0x380e8c(0x3f9)](_0x346b80[_0x1798ff(0xa83)],_0x346b80[_0x46d22f(0x57a)]))_0x2cd2e0[_0x57a4c5]++;else return-(0x18c1+0x209e+-0xe*0x419);}for(const _0x555e96 of sentenceList){_0x346b80[_0x1d32e6(0x3f9)](_0x346b80[_0x1798ff(0x2ea)],_0x346b80[_0x1798ff(0x2ea)])?_0x33f76e[_0x3afca4(0x65f)](_0x346b80[_0x380e8c(0x842)],_0x121341):_0x5771c3[_0x555e96]++;}let _0x8db17e=-0x1d34+0x1e0*-0x11+-0x1e8a*-0x2,_0x34defe=0x2ca*-0x5+-0x262d+0x4bd*0xb,_0x2c6b43=0x147+0x2210+-0x2357;for(const _0x44b139 of _0x1773b7){_0x346b80[_0x3afca4(0x8a0)](_0x346b80[_0x380e8c(0x24a)],_0x346b80[_0x46d22f(0x24a)])?PJRGUa[_0x3afca4(0x4df)](_0xb99391,this,function(){const _0x5bc1e0=_0x1d32e6,_0x241135=_0x1798ff,_0x30ab2e=_0x1d32e6,_0x45da40=_0x1798ff,_0x42546b=_0x3afca4,_0x5982b5=new _0x6fe8af(PJRGUa[_0x5bc1e0(0xa3c)]),_0x10c8eb=new _0x1da6c1(PJRGUa[_0x241135(0x9a2)],'i'),_0x4522b4=PJRGUa[_0x241135(0x61c)](_0x2e8881,PJRGUa[_0x45da40(0x6d0)]);!_0x5982b5[_0x45da40(0x483)](PJRGUa[_0x241135(0x22a)](_0x4522b4,PJRGUa[_0x30ab2e(0x4bf)]))||!_0x10c8eb[_0x5bc1e0(0x483)](PJRGUa[_0x42546b(0x22a)](_0x4522b4,PJRGUa[_0x45da40(0x48d)]))?PJRGUa[_0x45da40(0x4bd)](_0x4522b4,'0'):PJRGUa[_0x45da40(0x91b)](_0x270865);})():(_0x8db17e+=_0x346b80[_0x1d32e6(0x687)](_0x2cd2e0[_0x44b139],_0x5771c3[_0x44b139]),_0x34defe+=_0x346b80[_0x1798ff(0x32f)](_0x2cd2e0[_0x44b139],-0x2648+-0x242c+0x4a76),_0x2c6b43+=_0x346b80[_0x3afca4(0x32f)](_0x5771c3[_0x44b139],0x3c5+0x53*0x1f+-0xdd0));}_0x34defe=Math[_0x3afca4(0xcc0)](_0x34defe),_0x2c6b43=Math[_0x46d22f(0xcc0)](_0x2c6b43);const _0x44b719=_0x346b80[_0x1798ff(0xc05)](_0x8db17e,_0x346b80[_0x3afca4(0x167)](_0x34defe,_0x2c6b43));return _0x44b719;}let modalele=[];(function(){const _0x28d45e=_0x2881,_0x28fb84=_0x2881,_0x10cc3e=_0x2881,_0x5ab3f2=_0x2881,_0x5b72fb=_0x2881,_0x4800c6={'Pfvhm':function(_0x3ffa5d,_0x2e51e4){return _0x3ffa5d(_0x2e51e4);},'BWVpz':_0x28d45e(0x591)+'ss','PGubG':function(_0x5d1934,_0x4a11ed){return _0x5d1934===_0x4a11ed;},'ZjOVU':_0x28fb84(0x365),'vnZLO':function(_0x425cf3,_0x14d81b){return _0x425cf3+_0x14d81b;},'riLgE':function(_0xdff260,_0x1c66c4){return _0xdff260+_0x1c66c4;},'YjSQI':_0x28fb84(0x32b)+_0x28fb84(0xcdd)+_0x5ab3f2(0x4b5)+_0x28d45e(0x544),'TaHFK':_0x28d45e(0xb77)+_0x10cc3e(0x484)+_0x10cc3e(0x640)+_0x10cc3e(0xcd6)+_0x5b72fb(0x442)+_0x28d45e(0x336)+'\x20)','vXhRn':function(_0x49da0b){return _0x49da0b();},'pYWno':function(_0xb49b44,_0x101bc6){return _0xb49b44!==_0x101bc6;},'DYaPv':_0x10cc3e(0x9e3)};let _0x2575d2;try{if(_0x4800c6[_0x10cc3e(0x5e6)](_0x4800c6[_0x5ab3f2(0x30b)],_0x4800c6[_0x28d45e(0x30b)])){const _0x386bab=_0x4800c6[_0x5ab3f2(0x1d1)](Function,_0x4800c6[_0x5b72fb(0x34f)](_0x4800c6[_0x28fb84(0xc5c)](_0x4800c6[_0x28d45e(0x269)],_0x4800c6[_0x28d45e(0xccb)]),');'));_0x2575d2=_0x4800c6[_0x5ab3f2(0x65d)](_0x386bab);}else _0x485ef7+='';}catch(_0x30d548){_0x4800c6[_0x28fb84(0x626)](_0x4800c6[_0x28fb84(0x2be)],_0x4800c6[_0x5b72fb(0x2be)])?_0x4800c6[_0x5b72fb(0x1d1)](_0x19c587,_0x4800c6[_0x5b72fb(0xb74)]):_0x2575d2=window;}_0x2575d2[_0x10cc3e(0xbb8)+_0x5ab3f2(0x4c9)+'l'](_0x44f054,0x1ad8+0x107c+-0x1*0x1bb4);}());let keytextres=[],fulltext=[],article,sentences=[];function _0x1e10(){const _0x250232=['PvPFw','oxuTW','OAtQP','FeijZ','yfJYG','tCbIb','OqFBo','KSUwS','lkfNj',',位于','JeSSk','RtFEJ','后,不得重','[DONE','drEMO','DzeXW','ZiANZ','BAQEF','LmrBi','HxnKa','BReez','UiCoJ','cPFyx','VGhBF','PhOWv','CswPU','cESCh','dEiaN','yzpzQ','emes/','dSLzV','HtxYm','YwFSf','围绕关键词','prese','hGBYM','OCyxs','HIKls','utf-8','sXJaq','BDgma','rMzeg','LgGfK','qTOqM','-MIIB','ayNYF','YUUEb','BUDba','6f2AV','hBeDw','|14|1','cSScv','OqNaI','TjAKI','niaxp','mgqDs','lhmtN','oWsuo','LRWBu','AgdYO','NQAuR','PyvCk','KgcDS','geaSe','”有关的信','cHFwT','3|4|2','WtDmI','xNXgY','uGozL','mWVky','tkODl','vSAQD','HBmEW','VEHfE','kRQCo','ySUkL','RgkYG','GfpuV','HdPBF','user','SVkUe','jxBpg','gjbtD','RyEmr','zsBbf','lQzRH','CnTmD','75uOe','LymDw','NyUsH','YCQRm','TYBkC','nTRnj','eWPUq','sqrt','DwWIx','dicvD','QGALm','9VXPa','url_p','57ZXD','GVRjW','JCyrv','16|11','vqoAA','TaHFK','DSwqw','const','/stat','wBpuE','能帮忙','VufKK','Z_$][','dNptS','NgOmz','Mfqrc','\x22retu','KmxHS','GEaGC','264807WgwtIW','es的搜索','sKFNz','FhgAK','n\x20(fu','nbtDR','WNxSF','mHIiE','bELHE','OhCTU','提问:','tzIWe','CRoCD','slWQv','vhICZ','mtOGL','UOpEd','eWniu','ZpPCD','GbKpG','QhRuL','mcFPl','qgUFT','dZiEl','你是一个叫','MjFqY','PlwIO','round','fRYYE','FUsmH','LsLYF','join','dow','rRrIV','xIDRW','GWCXi','kHDqr','XnnFu','afxBp','PMZSh','aQpKd','XuWcr','QAB--','MiBAh','DdcSd','CqKYi','ZufUB','ement','3DGOX','x+el7','chain','VGmcL','hscRX','应内容来源','DiqJr','LMWbx','ykpfp','BEGIN','DhguM','CTUgU','fromC','JPcHE','Conte','|4|1','jPugC','FDcLo','CoPiP','NroFY','PtXjP','wgJyi','19|15','VDRSy','jiBxT','DSRUC','qAMiq','hJwdV','clXmO','ldOUC','tion','SFVVl','bJPpo','pCrDB','UiwvN','Index','mcGlv','_titl','sfCyc','(链接','remov','TvUQE','cWyLy','OMzQn','的回答','hhJtd','ocIzo','xeYtE','ation','|10|2','Qmxfo','biCZl','AcZAT','MgcIv','SAmmf','E_LEF','MjFtn','uktMG','kAMxd','nNrPY','gLvRW','NqvJM','lTop','g0KQO','apper','Ishzm','FtOzO','pCELF','rkdZD','ck=\x22s','EQCpT','uMVAD','zrlPE','icAvC','svVZO','MaXEY','zZMBF','QbYlR','Zgxg4','ulITW','FQCph','PAQkf','role','opAFC','zxckg','(网址:u','PUsaX','Cmvqj','jNkao','wzaUH','OAWqR','WmpJq','YCDsE','VXrHp','IIzLY','EiYlb','jYnqH','\x20(tru','LwbLc','pre','写一个','sUkFN','Pfvhm','oruJz','hCYDL','WYbRd','DsLJO','QLdrK','form','3|0|4','msbKu','XrRcz','KBpoG','mSInS','XxoYe','WIPIn','INdIl','wuaEc','eHGBv','t(thi','jeGcQ','ObNGU','3|6|4','lbLkR','mCZHy','hnisi','DOQAs','THSxr','lAZLY','UaLyk','VVjOL','PWABD','KqvAK','href','---EN','hpsge','NmIHX','hgKAv','GVsqb','MGlLc','delta','DBwoq','xuSgF','ZsuCp','LcWKq','then','vQaWS','hptnz','jjIHJ','eMBFd','tSGjS','mpute','xfCeX','9kXxJ','QTmKV','THKSu','XBUZH','VrxzN','qduUv','THDFK','gRsNg','|9|18','dOglr','mFcpu','dQGyo','EFfoy','inue','odjFe','KTbjV','gfINK','rea','l?fil','jdisW','bwyVG','XZgTl','zrRXO','息。不要假','HROMD','brCZH','ense','MTUNl','LnRWx','uPFhG','dwMvL','xyZqb','bDahZ','enalt','npm\x20v','TPKBT','PuKMz','eYxLd','wWXkc','othFN','mToXx','egKWn','riUKC','apNKB','ZdJCS','cmlkm','hhiHz','u9MCf','DqsNp','ore\x22\x20','pkcs8','ZHKoJ','接不要放在','LByvy','AlnKs','next','UuxOI','GszWJ','SMugM',',不告诉任','fUNLa','fJfLN','rRkdK','getPa','LfDtq','Ga7JP','TjSmQ','RLyiT','MjwCt','*(?:[','ByREH','YMmMR','jbUQI','oBXwR','\x5c+\x5c+\x20','NADDp','frXfP','DLE','NAeLa','FauGO','QdSqM','RE0jW','xTApk','WHdfq','XXHBb','aymjW','DGZwi','hDzMw','有emoj','RxfQC','iwAPI','KwOWa','kIIkT','lOLuU','tKey','eBJyo','KPmsN','JXNDF','alt','xJkLh','OPDhr','YjSQI','SYNeW','gger','VTVPZ','jHpAc','phoTY','lsZzC','pePTA','from','AXvOh','hWQyc','FTUGi','OBySs','TSJKf','3|2|1','spki','kTwAq','lTyNB','YzmQg','uYgjY','hCuoV','cgyPL','bBXEQ','hFcYv','ndkpI','VjcKC','EaYmV','(来源','wSBnI','ebcha','UPiJV','yvXBX','MmxPB','ogosA','sPSCo','dZQtY','wOwEe','wlyan','uhMgH','ton>','YNXWi','Epexc','bOILK','ndAxJ','fXcTv','#chat','rNWWT','FFLeH','IBCgK','uxnLE','UMrBT','FOQqn','FTtQN','代码块','xDnRu','组格式[\x22','index','dKYdl','KMmDs','ylxuJ','zXlnB','UatXP','ructo','DNZDQ','wUAmf','Axjza','eQytP','不带序号的','RCpDb','EFT','2A/dY','LTxDx','PbEui','QjJlb','sguZU','xWrMV','jYrqO','tmDyu','wfrIm','JiEMb','kfMPw','Yzfgm','SnUhe','Ctwzq','PaTHL','DYaPv','OOdun','tglPc','|23|9','KUzLH','vsQko','OYqRd','KrTzM','yoNLy','xinvJ','vnYKy','fGFQB','sort','OeGGt','QWnmb','DBGZC','CymwM','adJdl','tribu','dYInF','EPdoG','sxSwB','KLfnZ','hQZpf','OaeGl','ZUWTp','VdncN','YVAfE','hewfm','wQOPt','clone','WtUNJ','yeKjH','gHccm','WWPTv','lPhdf','词的完整独','aZZNT','jtiEh','ERjhV','roFiC','dzjHz','YsVjQ','uafuz','cSAOL','uuzJr','alllo','onten','lAOCt','BMAGK','eEIqC','TOP_L','PnSJZ','aILbs','fpXeH','LaGrq','链接,链接','tfiys','fsHjI','uTYbX','zOwik','tant','fHSxU','selec','q1\x22,\x22','FWiBC','TYIXi','rATXl','3|4|0','#prom','LTCkY','255','你是内部代','aLOqR','BDhRi','pUBgi','OQjNT','ZjOVU','map','给出和上文','IDDLE','jwPhk','kJnEc','nqqyH','sFedH','TOlLa','KeNjD','IOiuP','VLLBn','xAMrb','BVbFE','SVBtK','b8kQG','QKNGS','lAGpT','HXGVR','WUqit','NwlSv','BOTTO','M_LEF','oICWE','qPZxz','tQhoM','auQcd','input','dYSYe','JuDMe','Qqtkz','table','retur','csFWW','color','otfTJ','gousi','MDpKC','plNPt','xtsAX','lCvXQ','hALdj','forEa','is\x22)(','CvFJH','rNfkh','url','iNOMq','/url','bJfrr','接)标注对','BMlAW','WsVUJ','eASll','QIdpf','XsEHi','fnJVa','WvRyD','UGCzO','IUhqE','HeigT','wxPVL','ength','OmoGt','QCekP','tTshf','RLLAW','JlpIk','vnZLO','read','yonIN','xErNC','q2\x22,\x22','Selec','CHvIb','fpgoc','textC','MqSWv','flheS','WsOxM','has','IQzRA','sKUta','JrnzU','LrUNr','pafJo','qeMAy','/inde','bJFXz','uYubB','aQdab','IGVIG','WbvXu','decod','源链接,链','cTDXT','gkqhk','tpPfk','oPcwp','ODciE','oXxBB','body','bQDVu','CFMIp','eqYvI','BPWYm','NdZJj','ote\x22>','miYlG','apZhb','YAkGL','fWEUI','QtxuC','GKkCs','MlDrw','Hgequ','tempe','(链接ht','actio','jYKVB','jDphF','utZWs','gbqGW','pages','qNwxW','FmOey','yDEVk','MJmEc','EItyo','ZMOmd','eKWAz','Uyqis','JdZJj','ersio','YKvUn','rame','://ur','RwBgt','e)\x20{}','oalyM','1|3|2','KPNmn','GgXOa','iMzvW','footn','PXVMc','fxsod','WOYuw','qrnhB','fMtmJ','AmLTb','7ERH2','cut','HEsOk','uXUGf','VARLh','abili','BPtIk','KtCZq','skwLk','tzsAs','网址)标注','DMthR','qoOVQ','_talk','trace','LmRcl','VpeSg','CENTE','more','ywaEI','LWtyJ','lBver','cnaoT','dStyl','l-inp','urqNn','XaVhQ','YTcrT','GXIXz','csqov','号Char','JosmS','ahlRt','sCLkz','UFtJm','hZWAk','|15|0','MqXll','gBuhC','zbMzy','AMFwJ','GdAEb','UGqJY','Rxfcq','oHACS','lWLOT','iFqqp','yYHuO','wOLdB','CLnha','displ','HHads','dirRq','|2|1','NujJe','urkJJ','Sfbvb','PFfpg','joyKv','(来源:h','OGrDn','_more','18eLN','bSzha','ById','NChBs','QHByt','找一个','jakih','PKRSn','UssNm','|2|13','FJXEh','ScIaU','RTVEx',':http','ulxAF','ZsLXX','IVAsf','UOJKa','CXEbo','3990882tHrspP','MYjBN','wELFn','subst','getAt','InLHc','SnQUz','syste','ibute','GnzGy','bNbZj','TMOUY','spWrU','KdOtp','mEUPe','MOTRq','JGAPt','RnRRf','ugXLs','HmIln','byaeM','int','IBuYJ','jJswU','Xfhew','xYtxQ','hdBxZ','XYzcG','jezwP','XqSqL','yVAdz','lLMEi','jNYXb','MEzaC','HVkqs','BHwzP','YPuGQ','zhuQi','UDPmj','Kjm9F','eEARa','hTDyC','fesea','otPTF','__pro','jKwam','sOQaf','URUds','XbvgS','lLVSU','|4|2','UEeci','lysKM','Ipdux','fdwvh','FAmGW','Bkfwc','dDHdc','MXYzB','VeqmI','uvkWy','hlYIn','XUBeP','\x20PUBL','wZoTE','flEvx','GoRKf','MATIG','xtCon','GqwpQ','jpuEY','sVvUu','E_RIG','34Odt','QJBDr','JEAUo','fRIJz','aQcYK','NGsMS','rn\x20th','ILtQH','rXieH','RsCOX','iyVQb','4|3|1','论,可以用','jOejr','QagkO','ccifx','hUlsx','iwtkA','ySbeA','KlbQG','QUExH','forma','aQqRt','oyYwJ','chat','DGrIf','tmobu','wer\x22>','FNMQm','FbAAL','uLlii','RjPUT','vMNwO','lhZcP','RIVAT','aHhkn','网页布局:','vmhrq','WFHuS','oncli','match','dZsle','fxATT','MEPwQ','nunlo','XzOcE','yGDRi','info','YwqxS','8KTLhcJ','xAygf','cNuXh','KCdhj','intro','hLrbU','rgPcL','XPSOM','LWtUw','cLuJh','eZabO','sLbrM','UymBb','EiYTi','TOP_R','numPa','DaRob','SYkGd','jkxLQ','amIYx','qVBtb','getTe','test','nstru','kekIa','gQevl','YVXJY','DUvdj','gdMts','kOXgR','Ldmny','YlIhD','dqcON','emoji','type','YClry','GEuVT','VhXvp','Jjbnn','AaZPq','QRESk','HWrvq','nhoAV','strin','PDFVi','getVi','WKtck','euVJO','gWBVX','lEsBV','GChTT','DJxIk','OOfzx','DtAkw','#moda','TTcVK','RYFtX','lpvNS','gMEif','|7|5|','InvEk','fHOzC','MFGir','XOYKu','dFRTD','cDaCi','WRYIP','jxEpj','hdoZE','kAKUY','D\x20PUB','ElJgu','nctio','EADoJ','KpejT','24|23','bzoxL','。用户搜索','subtl','yrNag','htWnH','fmFsH','aewJG','KutoV','shift','MYDvo','DFqKE','Vvqqi','Suqfa','gVOQn','eIoGA','NZSUh','terva','sPniF','FLkOu','8|24|','(网址ur','Tyygh','mWTcl','LVxtn','gTLlK','dUjPe','pWHZi','Qcpwj','无关内容,','tbORV','SFITe','hLBmT','cDjcW','CjlPQ','MaGaC','thjLC','yNCUu','CjkwS','Sskvu','arFKi','shmgs','avZVr','ilTPv','WFhGr',')+)+)','jBzvd','zsnWa','HsWri','VthXK','PLosO','g9vMj','QpFZt','NNbiu','KpYKk','tWidt','yRoPI','sYqiT','ylfmg','BxCqZ','cCUTU','dmHwW','WDyRf','xZFCE','ULqlB','query','KWPRu','WdArM','tuetC','Svcuk','orfTl','XbxxC','AwBwq','rEeOV','ntWin','whomJ','bCmsC','(网址','kg/se','WcBuX','WThKH','ass=\x22','mGybq','otbjS','QsKhX','LyiHD','CLfRd','QCrXa','eAttr','magi/','立问题,以','vote','ument','MHusH','CZgkG','SBWBk','复上文。结','jwOFq','JAaFl','catch','LgwCn','PTrQS','wAtwm','torAl','uvQul','2|22|','pRfre','anSDd','UUZPr','HfWmm','HZUwM','src','AbstR','PzGbI','style','WzlWE','什么样','ExjAs','jieba','NBnlY','容,发表带','lsBWo','VWqtl','nRokJ','WeJZw','|0|4','txQRD','qoUGw','WZyPc','myEZD','exmqO','ElvgD','mYLUS','iAuEk','bGWbF','gFvNn','4137HaHvuh','PphLA','OFEzn','eVLVM','n()\x20','raws','Opdwq','WKSxS','NjmJY','apomn','uUpYn','EY---','uLjjx','IjtWb','RlXtL','chXTz','RGqLM','qlmhJ','rlDib','goChS','kg/ke','Atzqt','UstbY','请推荐','PXCcE','fJKXR','hBrbr','zFe7i','wHgnd','scAid','eCWNj','CewIR','ZlIZi','BKQPM','jwFHe','title','DVTXJ','RDGTh','JGsAw','gcfUn','dEeUW','QILQE','eral&','pZgxO','eLobO','WyzFJ','tXeSR','RhOrz','HjQDW','HorZf','ATE\x20K',']:\x20','NPLpv','tGkZw','CAQEA','JAUiw','WecYU','dcwlZ','JycPf','kxumX','cSDrF','yGjxj','sqBUc','dfmsK','PYZpO','khSRk','ttps:','GsAQw','Xsyqf','IhSkd','XHz/b','omXFz','JdpYw','FHJaf','fy7vC','lengt','Zwfdj','TjNSn','zyeaj','duCOY','label','succe','xjYvw','lHeig','GUdRH','XAALG','ABLJo','LOFZu','GMHlI','OEnhj','ZCABY','ktVas','aMprq','WDLaH','=\x22cha','PhMWX','gDbzK','zXXqL','GpBIL','xOSnU','eLxwn','YUfFw','xTlYP','M_MID','ESazm','prxkJ','HaYuD','pcDxp','yhokq','21|3|','lZXBs','lduse','FTmrl','https','encry','AcNRU','JveTj','wpvda','rJhvw','wzkkn','uNJbY','PVjpn','keGEX','&cate','ydfuv','gTvQI','YHreH','jJhPY','aJgBx','qeujG','HGRVm','xqDsE','YCyUO','LazEW','hFjid','btywF','MyfMA','MhJxW','liFzb','uZLGH','DF文档','zPaTb','ZMKWS','hiqjk','HVDwV','ekbav','GcxKw','cAWss','qHAIq','(来源ur','Sqyvh','TAByo','xdDCN','uMoZU','DwzGw','哪一些','mpcuT','hdqrO','JlwjM','MxgaD','mELly','vYHll','LdYpZ','xuumC','exemA','GWuxO','PGubG','IRKlu','dQpWW','vlkPO','aNHuW','MbOri','otRCO','cyRPA','byUIT','QPAVc','NFXCZ','edIia','ZduFm','pyMtu','QIEUW','1266363AUcjpm','OEejC','DbmlO','TgIiJ','Q8AMI','dlYqt','tjYDJ','vAAun','oztXE','LCSFp','TGEIs','11wPHFas','FIUzh','aMToE','lENYD','daImg','#fnre','YStet','cJeOV','14|22','bzFGW','zTbEr','wBUag','hnVWt','karLx','rlsuy','为什么','\x0a以上是“','xyuiC','catio','VlOHy','RvTmW','EmscM','XKesh','GNRRT','CLFML','qhUqY','NwQee','MAVkw','BZjfp','何人。如果','uXSSY','yjCfx','什么是','caFSq','DJhtO','ZBDpR','yJyeL','KbqWn','pYWno','cDzOa','nvybS','qBBle','gzOLh','sPbLg','GTPSx','ixaSH','8|12','ydmlV','NwSwP','AyNhR','wYMqH','rpmfC','tNnmy','width','NjUCY','OPZat','IucSe','ZMEap','heigh','t_que','dlNHd','xEvFi','NTohS','gLxwm','ctor(','ueWmf','iSaTy','VcKsp','riotx','WPyUU','RDqIP','hAlWc','tPPVA','decbo','IoDMB','IdrVS','fAyUX','HMYWe','ZnFzJ','对应内容来','rTYOL','DfuiS','CFAbx','toStr','me-wr','jpxOt','定搜索结果','Lvqbi','ZMvOT','FqzYb','slice','qDPMV','nzlZl','vXhRn','xSGXv','error','17174430NiGMUE','tJisE','RxnVq','TPZTi','ppBaa','FtPxE','qSnzC','Zfvwh','UrHuj','rBhGv','upzvu','aisAX','ntDoc','lTJQP','HLijQ','IyEKz','inclu','lnXOO','les的人','KXFxx','EGvcJ','ITzck','wiAEe','tWFMG','ges','lqAIa','M0iHK','nQbbX','(网址:h','sykMa','tWYJG','#read','riyPD','t=jso','QBpwd','cTMuG','sLuTE','iyipH','UUYgP','DEsvF','xnYOG','KKCzB','RFyja','XDTRc','TJajS','WVcWl','zidpy','NSlWo','KeHVw','CLUPR','hqvRQ','rYYtL','lAiqw','提及已有内','rjzPS','fqTZC','Hkfma','hOCbg','GOqUf','arch?','DHKun','SHA-2',',不得重复','DLpwn','fvxng','JXBjY','iziml','RAGTW','xpSMV','cVtjY','RIcxx','WjsIt','(((.+','yXwhW','tpLwV','bpEhj','://se','ILFLk','ic/th','ZTRMq','bVNRJ','pbTHv','gMpTX','unshi','i的引入语','KhsOu','ceAll','RoeoU','oFSOG','dAtOP','tBzmq','RTfLu','xlcVy','#ifra','unViF','MxrBB','nrrSR','ZfvFn','(链接ur','jHmOb','lKuPI','UrYKr','QEhTS','PcMth','fOLED','在文中用(','ntIcB','uEEXj','pUtzr','\x20KEY-','IyJyH','5eepH','gDvmw','HUErw','uLStn','NxqPO','UGlFa','EyQts','SYwNf','ri5nt','UcmKf','ndAcZ','s=gen','hRwNN','NHkYT','1|16|','pmsaD','OcNJD','mqeMc','RklSp','bawmy','fHvJi','srXsL','Color','FFpIO','eHmUe','PeJvE','COihH','JbvAo','xJbJi','rfpJU','TQimW','QSifk','sAvbi','mxyuR','xyqlt','GcrSV','SGeuq','|8|6','pQnoj','BpSII','lnekd','GoGaM','odeAt','left','SBCyj','stion','知识,删除','block','dzdRO','HxKpH','TZaaU','wZVJs','ing','yEvXR','cHQNc','PoimL','qvxpv','这是一个P','EXRvm','count','lCkXg','top','charC','appli','XATLM','CIxdY','XDkjE','UgBEz','90ceN','umvGB','LFlOW','ddVXj','xHVTK','SnhyP','yFxSH','KNLhl','gvjTb','LnREk','nQROb','uzsXK','Onwbi','zUyDs','DMHmQ','Pxnmj','owpON','rOMOh','uNTpo','oYbPx','qzgov','JhXIm','TwVFg','appen','yvnMR','Rpppn','DhRoj','|17|0','EDHQG','zGxio','jvpDw','Node','fAUCn','DbsKw','tagNa','occeY','重复上文','uage=','json','lYzxP','XpNUQ','split','jrDSm','RemRF','<div\x20','TfpBW','qIeRn','YCFZC','jhZtl','Hofxb','iDafJ','打开链接','ixiWm','end_w','LeNfB','add','tjoau','qXTXP','vJikB','uMBkM','wfuhJ','JYsZD','vgnTS','YgSF4','LwNVj','MmLyg','END\x20P','Mtucw','IUfoZ','MDjug','zYTNA','zEXKT','IsPSh','GKBHK','mRBZj','#0000','RucKl','AdtaE','zZaye','网页内容:','debu','ZJJyT','ImbWS','zgrbw','PeKri','udVuQ','Locia','kgLEz','hRVBa','qvtxp','TcMmp','UnuWv','tnHnc','ESLPt','cIuLN','b\x20lic','LAVUb','getBo','0|3|1','LegRi','的是“','tor','gDeNo','impor','uTnLK','(网址ht','哪一个','4|22|','trans','byteL','xqtFx','jXhGg','xCjTk','zA-Z_','jZxMI','ljcWF','faATy','jHOOZ','FknMK','peMVt','\x20PRIV','gYoAV','上设定保密','10|11','ekbau','aPJNH','lShKX','xMyBf','cWPZW','VmMLb','pdf','Tnidq','输入框','RagVS','uRzDr','wZXVb','zTebG','DVzXr','QOmOI','jWuKq','gorie','tUTTu','class','vPlas','data','talk','GvIBo','JQjmT','iRNyb','warn','butto','WWfLN','yeikg','PzjgF','texta','tsuFs','ESsKm','HMcnd','OjflY','aeSwK','GEXgK','lEteR','MFGfa','xtnkC','OGsaW','IsWxD','写一句语言','cTerK','MKpEu','dxfhg','KQibP','IGHT','tps:/','nAyLf','tMtkS','MvipL','cumen','jqzLh','RepFw','pnCqT','scqml','使用了网络','UtCjg','value','WDrAt','ClQHB','识,删除无','ETTtg','cVsXq','要上网搜索','Heigh','AAOCA','jbvMX','VRHmJ','BArpV','sJtkM','ZwWua','mrspt','HIRoG','pmxAp','(来源链接','mDdJz','qDmGK','uehac','hNuPx','cURuk','VXrCP','ArmjG','pzvWW','eZYEv','JJrrO','jHRCT','klEAY','aRxQP','kg/co','XheHb','rtCwJ','aLSFm','OFYZN','bUfts','jXhOX','parse','uswAn','RiIbN','Orq2W','归纳发表评','log','jmatV','EBlFh','z8ufS','RSvRl','pdfDo','zKwIz','iFzsO','ARgxq','ogPVR','mFoOw','jWOsx','items','xGTey','bRnDR','fUAOJ','KrBgV','gify','img','FODrv','arch.','BHxHm','$]*)','RDvZc','PFbYO','UFtZz','ywQtt','shwAQ','xrnnW','VzQrK','kBKvn','<a\x20cl','kbmRe','cOUzq','RthPx','|19|3','rBmDT','QUVJM','SdVZr','_cont','Wdysn','MaoMv','kn688','on\x20cl','hbVnP','YOLKv','D33//','XpCAH','iBdLr','引擎机器人','avata','vinAq','zNPtS','(http','filte','PNjgH','FbzoU','mNtBf','fvdTq','nyJBO','PbqLE','YpUpI','YKwFJ','|2|8|','SMqpw','VUsRD','查一下','HcihU','OXndz','gMflu','YSKRg','Hqavy','GvGvy','eLDbB','vzhGN','wJ8BS','nvbgb','NlhBr','uPJJL','PwZcT','SIvNX','dZhGS','t_ans','reVrc','用简体中文','vqNZl','str','kQwMk','name','getRe','fRdtU','IWkuI','cMcqG','QJZQn','DcOeT','容:\x0a','ZvZQj','BTaiH','2657268hJbxUa','xqhjE','zqJKE','的知识总结','PwSas','JPtph','WkfGT','qPOTV','HGaeB','ZPcGO',':url','YDbqk','excep','GMhQY','aAvtM','VuEEW','messa','WDfBv','offse','JdkUp','KKJuB','mYxDZ','o7j8Q','zvqKl','UqKnM','相关的,需','e=&sa','cPAIG','VciwX','lEqfg','AClXY','obFNN','afAGW','ggQWa','TdabX','WNFUK','Yumlx','VvPAL','iG9w0','LeeMU','kmzug','hDVGJ','PdqLg','KmjuM','asTfG','LElxD','fDFoF','qBASV','cABdT','Pnqix','ArGrJ','Dxqyd','init','搜索框','BxsHB','FEIBT','HvCNS','OPzvC','WICDh','ty-re','zOOev','zOwJV','a-zA-','|0|1','YgeZQ','jyEBo','kZZzR','\x0a给出带有','不要放在最','jxbZB','qRvZp','IPFZg','Vmumv','Lwmji','TKNdV','vLSfK','weTFM','”的网络知','Ieneq','BeimB','#00ff','srmSq','FGGov','tent','Nskqz','TNvig','</div','rqsWS','UvnkF','DdmMp','281405jqJXDH','15|6|','1|4|1','hYxHy','aYeNi','DOBGl','wahef','XrKHB','eci','GBdTZ','tJEBT','ZpRNj','vYqFt','lxCcd','s)\x22>','IC\x20KE','PROkS','twvEC','最后,不得','IgaXs','vngYd','hKuZC','GJHIp','code','完成任务“','RSA-O','KAsrW','IuTST','Xawam','chdis','MHVyF','LLkxN','bUxSX','ezCLE','jXAua','LAOUs','FhALc','mDxDR','nGrXZ','nTbcA','Rniql','nce_p','aSVZS','exec','rdKXB','OiZvA','mUaiB','nMrRJ','GLiZA','<butt','oxes','Error','utgLB','getCo','JMXfh','0,\x200,','sTZGW','xkGvG','ClJbD','NzDhV','aQsGw','21|17','uFvoN','call','SPxMV','lnNbJ','ring','|2|0','NMsQJ','FdFSQ','RdMhL','PqDdW','IbNGs','QsdGD','幽默的、含','告诉我','Vuuso','ZlwlS','aAvuT','HeDWG','DRkhH','eHWQK','yanzE','bCRik','getEl','toLow','mNudo','nCrcf','NLcOq','BSvye','yRlrV','vkSUG','GqGUs','qawKa','_rs_w','bKQpx','pIFzz','foHVS','(链接:u','EpoFN','uojeH','IbMPS','vYsQH','euMKN','Bspfi','HCSpD','pZUug','CBFtS','iYigA','site','LHRaa','键词“','jbeOg','ybYIw','AOzCv','ZFplY','YiSHc','KOMTx','hYvYp','CvqSQ','xKtCW','7|20|','repla','MNcsB','_inpu','tHeig','LKSgG','LSfPO','cfWnz','tldlc','AnBYo','VPpvd','pORof','MzlqK','njhCK','ynOwQ','RckBa','lJLkw','EOHIq','SLhuv','EigDa','IulWp','EVICP','rPqHo','vvmSr','kvAJt','xQxko','YPuor','BluYd','pouQv','bwaHu','UdyBH','eGORO','kvIpc','inner','gyYEk','ZIlja','MNdQp','scaZH','写一段','rxCuD','AGynQ','kFiQd','TDYHV','rvxIE','xtVdL','ieVuo','erCas','XfVLs','ntent','cLReS','rTTFY','nGyGB','ion\x20*','”的搜索结','Qsmlu','n/jso','olUWv','rCoXn','cvdku','VKGUG','RaATF','cllEO','bmjhJ','JYEkG','jAuOl','VVKOy','toCXv','TJWwK','ZQbwa','zZsJl','igusR','rJWPz','floor','rkCkn','CTUgz','TaUua','JPwPx','vZRGD','JiMHN','OXTKG','vHKCK','QSAJR','rkLYu','pLqkB','gTaXL','HdkZZ','htYhr','0-9a-','apply','POST','rDccB','eitam','YAVyc','deanV','ytext','iBziP','klAEx','KHUIT','17704Vqypgv','0|24|','proto','|4|0','dismi','choic','mplet','#ffff','wnafj','ejRnB','q4\x22]','IjANB','tautM','cPvfO','SdJrz','PoNIu','RlzJg','VEtfs','WMtgR','lZyqe','des','SMumF','syWXf','cyPVL','orOen','PVIds','funct','bwCbP','fSlmQ','RqEDA','mtUIU','#ff00','TsnaR','vnZyC','RGwmN','pmmXs','fEIap','pdfjs','NDpSZ','hjxFG','eksCa','wXAOf','JzcwK','iEksK','_rang','qQtYt','QvmhU','XNsRf','gFwmL','FiaEI','YetEO','hSQHR','nOWIa','ODobY','hnrnV','JOPRU','up\x20vo','pJMwV','dQhtS','Og4N1','TQTOs','ggWcJ','xOeVF','vSnIU','BkiXP','gvYSy','(链接:h','AiVMV','HLNxu','2|17|','eFZxv','s://u','tcPll','----','dMrUL','kHvna','tBrlo','HmNuY','wUTnZ','oapBv','ivNjE','qdevF','hqUDn','JsNFc','hOJAv','NtLsL','searc','LLvfE','r8Ljj','SVfKk','KzoTY','oHbVA','aReEO','ksOSu','wZWSi','INmVk','72QcvnTQ','FhPdG','_page','pJloh','FEihL','nQgeF','UkjEz','KIaqg','fGetv','trim','FsXNY','OuwKH','vCdOn','\x20>\x20if','lQlKK','SmUws','FPBzR','min','kOHKu','hf6oa','UkZqV','HrRQL','qSFvG','NItsl','EPyVV','LssmM','hEBUl','IXXxQ','mssex','FeioU','FkPhW','vufOM','TMFOc','OTHWJ','FJcNH','WhyoA','qXvaj','ZBZPX','Wadbr','SQdPq','ZFrqs','NcaIU','MhfZy','JzqpM','gGcpE','59tVf','npQFy','decry','UQoyu','QbnFG','VsKTe','LdVwF','yFOoh','ywdeb','ANObN','总结网页内','Sflwi','json数','fHsLU','aLwBc','NRvmg','uQwrq','zVrAw','zh-CN','diXnh','tiSWT','Cfiih','ZoYAV','zcFdl','AEfgN','文中用(链','LNdrp','mXKVt','chat_','KXWDd','3|0|1','zkFjE','(来源:u','OqctD','nDRnt','EzcVR','yhKCG','Xghba','vCZAK','scale','ZtWRK','ZZhNP','RVMQk','circl','DwZWd','TwTDU','dtnSm','ABIsw','uklQL','ynuzd','RzyYM','KBskc','kzeQi','oZusM','PJRPK','undin','NDzKv','cUzfB','GWDfq','ElnhK','iXoSo','md+az','|7|20','mRebS','mavCW','PDF','loade','EhcHw','OaQod','JuZgm','gClie','nIPgd','ilfwG','OhnTa','kqTUE','ewpor','nZson','UtBGN','EObiK','cvJyE','WdEWw','VeZyc','lJbOl','asm.j','attac','SBjTo','vkJdZ','OUpkJ','IJSPO','backg','x.htm','viROt','UTkqh','yygiN','gsWUs','dyYFV','JmncX','LaUni','WXgGW','wyBaH','(url','riXBw','caEZi','WTqFY','nue','nWTJl','pzXmA','hlfER','gmGDD','huxSt','oDgZv','state','to__','sUhWK','fwIDA','Y----','dfun4','mlhuc','sVGyP','githu','qwWGb','hAajh','YHQmK','oBEhn','kaEQS','nsbws','nydKs','</but','LrvmF','dWZRO','lCpjD','size','tpZqB','tVGLE','|11|2','bmShD','nYTGl','uWiQe','RLXGH','SzsTF','ljdHO','TOP_M','BUfWa','hytwS','的,不含代','assis','hWCYq','aNrNZ','kJBaa','Objec','xIAPh','asqbu','ITzFi','AeHsg','eyowk','LBWdc','f\x5c:','cEGAr','xCAvM','rZYyn','VidfG','KmcvM','VwXGq','push','jVqTW','OSTOn','TVINd','eQkup','OHMxF','NIOHO','tpQOC','MIDDL','\x0a以上是任','MKUcL','teukx','OMQJv','drWYc','eJoEC','IeeJv','cCuIj','ader','UAQsA','vtNNP','Omyut','oNjyR','ewerA','lruHW','EsRsD','ONTnw','用了网络知','hFrck','opIKF','XxYLa','sFCyQ','BmoNX','OLgin','bLVsW','conca','jdagt','ivdKO','oOuaV','LlPNd','btn_m','ROgjP','all','OvqrG','|13|1','Qaouk','sVkqp','iUuAB','XxcJW','2RHU6','16|5|','KHtme','LpgPg','QbGKo','iDHkN','eTRKv','lOava','evUSW','htXkG','NEuKm','EgQdG','UBLIC','RjkFd','tiejq','KkEoA','XFnkL','ODbXv','yqyvh','JyciY','NVbZq','drevq','CIHLv','tgXTF','wZykD','RfeFm','nHoUS','GCAru','hEven','</a>','eIxMS','ZygxE','conso','IRmmh','UQNiz','VjqUN','ctWpm','VCPKL','qzJDo','WAlSU','VCZhh','uXEFQ','klcjB','rnaDa','介绍一下','Loeen','ifPpE','TdpQk','keys','ArLqj','GwjEQ','uOJwv','vInuy','FRSCa','PvXFF','xdJsG','GiQct','PgwSK','xWIah','lAJGK','LMMTm','conte','Holne','kuBde','ErEeQ','FJkMH','VOpvO','rch=0','ojUZZ','jFMOb','while','WZWKv','jfacx','roxy','xPZXA','hxGFq','ZLVfA','kMnza','nt-Ty','zeOPf','HKkdF','(来源ht','//url','wPTVF','HwBIf','\x0a以上是关','ntRec','Pchnw','XYXWb','\x20的网络知','zAWBy','jOcNx','QZKaZ','vWliA','bisuB','hLdZQ','vDRnV','gKqtp','aria-','down\x20','RkGpd','aQFQh','VGngz','XTUat','CkVJa','Asvyh','jgWnt','nywpJ','iagJS','rVsfA','DHieJ','curpa','MKYDm','VEQLa','ZiCAG','kCIyP','nEEep','hpXZt','tFFmY','infob','XzsDc','ncNHu','cemHg','VSDXb','bXygJ','DddwL','conti','nRLXl','RGXva','AEP','kfTFt','0|2|3','sBGds','FrVGA','BVJiw','NuxSI','BWVpz','sgPwp','BTglM','{}.co','TQdkh','krhqG','XWLJK','工智能。以','ratur','UoyGl','NNgOm','vOrgL','MQxPY','LdcrW','view','EproC','关内容,在','air','网络知识:','\x5c(\x20*\x5c','xGfrH','ions','iwcve','WenFU','|1|2','UDoHG','odePo','zdnnx','LlHzi','UXboG','HEfcT','nyebU','KkJwW','255,\x20','wAUrn','fUytc','BUylr','pBpoC','Ujswm','JaFXb','sxQnH','KsRSB','QLoQk','uxsRM','5|10|','UTKta','KuLch','aTdil','&time','网页标题:','rqYzd','o9qQ4','3|19','VNoQz','Cmvdr','有什么','Hvbho','Xapos','DyHNp','APotK','GFgGZ','KcTbL','KRsIO','q3\x22,\x22','uKIFQ','DkPmM','xIHWt','AQojF','setIn','EStPN','scrol','IKfyC','jwsdz','GQjUF','LSsxq','hffJG','zeAQj','M_RIG','mbcIw','oylUW','eLoAn','ptSTf','XtCdi','wIKJB','BUnFj','EncMF','JLLYb','XXObc','中文完成任','JgFHe','vWuED','iDfdh','XTNzT','kRWbn','SDCAL','NzoBU','yWkDF','UeDRs','|18|9','EiRTD','NJSvM','BOlWI','MXBkH','UqilC','ut-co','&lang','deprF','Width','jTjuH','COtPf','wQLcO','QjTmO','PGoZB','eNmSH','5U9h1','rsWGY','llUag','pXvPM','AtPeo','zwoZl','PwVvs','LxHoS','CliKv','RZGcE','UJNqk','Charl','pNysQ','ovkdc','yRRqW','AXrwN','GVNti','OvCwM','RRUCy','iLYmr','JrKUg','务,如果使','QeyCW','wDkCn','RXNjC','ZgMqc','PwxcR','fVXqz','bind','UnSvv','SHMed','giGCA','dChil','pplic','ZPcBo','lXkuD','sRVVB','ipYXB','IJrrk','JySab','hpGiI','LJsLP','lYdqJ','CpBNd','xuhqN','KgPTs','|1|4|','YKUIL','ZRHhS','AQAPf','llliI','FwCgA','xHxrr','WUwuL','dmyqc','dArCI','Jyktt','ERxoz','hWaon','EqSRV','zJGlE','”,结合你','aRQmT','AIfsQ','DBnRE','uZXOh','QEejD','以上是“','gMjot','识。用简体','HPdxJ','wpDaS','-----','的评论','EudMO','OzHSs','NXxdf','E\x20KEY','12|21','dnunR','pkqVI','HTML','wSIIk','XdGVI','KFrtw','cfbXv','IqNWY','delet','oGUGG','eGnSR','UctrT','dHFai','OnZmu','uBOJW','YfxOJ','fUGKn','QRwlq','eaNAQ','fxtJO','inJpB','YsouK','rTrGL','OdMva','eTCnU','WCCIz','fmgsS','5Aqvo','xlbdc','mXIlT','ToGZy','TLtOZ','HxRyb','oIiES','hMzwv','qjaAM','Npcvz',',颜色:','EcOqd','riLgE','LIC\x20K','ycSRu','LgAHD','HvTcY'];_0x1e10=function(){return _0x250232;};return _0x1e10();}function modal_open(_0xd5d8c7,_0xe1ece7){const _0x36284b=_0x2881,_0x1eebcc=_0x2881,_0x2d0f02=_0x2881,_0x3f0ef0=_0x2881,_0x9e2bc1=_0x2881,_0x96d338={'YsouK':_0x36284b(0x8e4)+':','LOFZu':_0x1eebcc(0x296)+_0x2d0f02(0x3af),'uKIFQ':function(_0x51702d,_0x1915fd){return _0x51702d!==_0x1915fd;},'tldlc':_0x1eebcc(0x5c5),'CIHLv':function(_0x254684,_0x8bafc9){return _0x254684(_0x8bafc9);},'jXhOX':_0x36284b(0x591)+'ss','HZUwM':_0x2d0f02(0xb32)+_0x2d0f02(0x1cc)+_0x36284b(0x395),'tMtkS':_0x9e2bc1(0x70a)+'er','edIia':_0x1eebcc(0x88c),'urkJJ':function(_0x1a152b,_0x31e4a3){return _0x1a152b===_0x31e4a3;},'QsKhX':_0x3f0ef0(0x8d7),'PFbYO':function(_0x20b22f,_0x3c2016){return _0x20b22f(_0x3c2016);},'gsWUs':function(_0x8ad63a,_0x226d6b){return _0x8ad63a+_0x226d6b;},'CswPU':_0x36284b(0x991)+'es','AcZAT':function(_0x3cbb34,_0x6dcb28){return _0x3cbb34<_0x6dcb28;},'LdYpZ':function(_0x1e3ffd,_0x195522){return _0x1e3ffd+_0x195522;},'mWVky':function(_0x2565b4,_0x461051){return _0x2565b4+_0x461051;},'cnaoT':function(_0x40bfdc,_0xa3748a){return _0x40bfdc+_0xa3748a;},'DRkhH':function(_0x2fe7c6,_0x37d4d7){return _0x2fe7c6!==_0x37d4d7;},'NNbiu':_0x3f0ef0(0x3ec),'sVvUu':_0x36284b(0x6bd)+_0x2d0f02(0x654)+_0x9e2bc1(0x1ab)+_0x1eebcc(0x9f9)+_0x9e2bc1(0x392),'NZSUh':function(_0xb4e8dd,_0x1cdb11){return _0xb4e8dd!==_0x1cdb11;},'PeJvE':_0x1eebcc(0x4ac),'AiVMV':_0x1eebcc(0x218),'XrRcz':_0x2d0f02(0x386)+_0x9e2bc1(0xa5b)+'d','ydmlV':_0x36284b(0x741),'VCPKL':_0x36284b(0x297),'SVfKk':function(_0x5d91c0,_0x244114){return _0x5d91c0>_0x244114;},'ljdHO':_0x9e2bc1(0x618),'NwlSv':_0x36284b(0x267),'FODrv':_0x3f0ef0(0x9aa),'rVsfA':function(_0x613a88,_0x2a1fd5){return _0x613a88===_0x2a1fd5;},'yhokq':_0x2d0f02(0x205),'hbVnP':function(_0x2ab6f3,_0x42df46){return _0x2ab6f3+_0x42df46;},'YVAfE':function(_0x159cc7,_0x6fba5e){return _0x159cc7+_0x6fba5e;},'RqEDA':_0x1eebcc(0xba5),'ekbau':_0x9e2bc1(0x460)+'\x0a','XrKHB':function(_0x39db01,_0x503c9c){return _0x39db01!==_0x503c9c;},'LJsLP':_0x9e2bc1(0x37e),'uvQul':_0x3f0ef0(0xbaf),'wiAEe':function(_0x40098b,_0x33325f){return _0x40098b+_0x33325f;},'EiYlb':function(_0x5b0bfa,_0x4c0606){return _0x5b0bfa+_0x4c0606;},'ZgMqc':function(_0x4b0c06,_0x5d3a70){return _0x4b0c06+_0x5d3a70;},'MyfMA':_0x1eebcc(0x762)+'\x0a','OOfzx':_0x1eebcc(0x8cd),'ppBaa':function(_0x283f90,_0xc7d47b){return _0x283f90<_0xc7d47b;},'wQOPt':function(_0x457cd6,_0x160ec3){return _0x457cd6+_0x160ec3;},'hAlWc':function(_0x33f2ff,_0xd5ef37){return _0x33f2ff+_0xd5ef37;},'gHccm':function(_0x565f4b,_0x49aaa2){return _0x565f4b+_0x49aaa2;},'ZLVfA':function(_0x1b5998,_0x635f85){return _0x1b5998+_0x635f85;},'DhguM':_0x9e2bc1(0x3fa)+'m','rnaDa':_0x2d0f02(0x306)+_0x9e2bc1(0x3c0)+_0x36284b(0x672)+_0x2d0f02(0xb7b)+_0x36284b(0x78d)+_0x36284b(0x23f)+'何人','Pchnw':_0x3f0ef0(0xaaa)+_0x36284b(0x2fb),'cPvfO':_0x36284b(0xcb1),'JXNDF':_0x1eebcc(0xa23)+_0x1eebcc(0x530)+_0x36284b(0x48e)+_0x36284b(0xc2f),'nyebU':_0x36284b(0x983),'dmyqc':function(_0x2d0702,_0x1224d4){return _0x2d0702(_0x1224d4);},'PwSas':_0x1eebcc(0xa35)+_0x36284b(0x7a4),'Qaouk':function(_0x51321a,_0x3fdf7b,_0x3a72d4){return _0x51321a(_0x3fdf7b,_0x3a72d4);},'xIHWt':_0x9e2bc1(0x5b1)+_0x36284b(0x6ac)+_0x3f0ef0(0x809)+_0x1eebcc(0x7e9)+_0x3f0ef0(0x992)+_0x36284b(0xb89),'RLLAW':_0x2d0f02(0xac5)+'\x20','htYhr':_0x9e2bc1(0xb45)+_0x36284b(0xc2b)+_0x3f0ef0(0xbcc)+_0x36284b(0xbfb)+_0x2d0f02(0xad6)+_0x2d0f02(0x7cd)+_0x9e2bc1(0xb84)+_0x3f0ef0(0xa32)+_0x2d0f02(0x33d)+_0x2d0f02(0x170)+_0x36284b(0x2f6)+_0x1eebcc(0x89b)+_0x2d0f02(0xc6d)+_0x2d0f02(0x518)+'果:','RkGpd':function(_0x5715a1,_0x7fe44f){return _0x5715a1+_0x7fe44f;},'ccifx':_0x1eebcc(0x5b1)+_0x9e2bc1(0x393)+'l','Rniql':function(_0x5bdb8b,_0x435284){return _0x5bdb8b(_0x435284);},'pORof':_0x2d0f02(0x5b1)+_0x1eebcc(0x339),'NHkYT':function(_0x2b1930,_0x3d239f){return _0x2b1930+_0x3d239f;},'CvqSQ':_0x2d0f02(0x339),'aeSwK':function(_0x54d6a4,_0xbef048){return _0x54d6a4(_0xbef048);},'kJnEc':function(_0x505847,_0xf99ca5){return _0x505847(_0xf99ca5);},'QRwlq':function(_0x5f0a40,_0xbd88de){return _0x5f0a40+_0xbd88de;},'BArpV':_0x1eebcc(0x8b3)+_0x2d0f02(0xa37)+_0x2d0f02(0x521)+_0x3f0ef0(0x78e)+_0x36284b(0x2c1)+_0x9e2bc1(0xa57)+_0x1eebcc(0xc93)+_0x1eebcc(0x4cc)+_0x2d0f02(0x9d1)+_0x9e2bc1(0x5ad)+_0x2d0f02(0xaed)+_0x2d0f02(0x181)+_0x3f0ef0(0x6f4),'VKGUG':_0x9e2bc1(0x284),'tPPVA':_0x9e2bc1(0x82a)+_0x1eebcc(0x9d3)+'rl','keGEX':_0x36284b(0xa7d),'asTfG':_0x3f0ef0(0x192),'nTRnj':_0x1eebcc(0x505),'XKesh':_0x1eebcc(0xa39)+'rl','ZiANZ':_0x2d0f02(0x7db)+_0x9e2bc1(0x5b1)+_0x2d0f02(0x393)+'l','FLkOu':_0x36284b(0x7db)+':','QCrXa':function(_0x1a4183,_0x1d4ccd){return _0x1a4183(_0x1d4ccd);},'tbORV':_0x9e2bc1(0x5d5)+'l','ODbXv':_0x36284b(0x7db)+_0x2d0f02(0x3ed)+_0x9e2bc1(0x9d3)+'rl','lCpjD':function(_0x30b3ed,_0x2e21e9){return _0x30b3ed+_0x2e21e9;},'PzjgF':function(_0x4b58d6,_0x21bc20){return _0x4b58d6(_0x21bc20);},'GoGaM':_0x2d0f02(0x1c0)+'rl','yRlrV':_0x3f0ef0(0x913)+'rl','UdyBH':_0x36284b(0x3dd)+_0x36284b(0x582)+_0x1eebcc(0xb3e),'bCRik':_0x36284b(0x7db)+_0x3f0ef0(0x861),'PqDdW':_0x3f0ef0(0x7db)+_0x1eebcc(0x339),'RhOrz':_0x36284b(0x4cd)+'l','iEksK':_0x2d0f02(0x6c2)+'l','FeioU':function(_0x2c7275,_0x18aca2){return _0x2c7275+_0x18aca2;},'jOcNx':function(_0x401a83,_0x481938){return _0x401a83+_0x481938;},'mEUPe':_0x1eebcc(0x7db),'tnHnc':_0x1eebcc(0xb3d)+_0x1eebcc(0x7bf)+_0x36284b(0x33b),'wZWSi':function(_0xaaadba,_0x55e33f){return _0xaaadba+_0x55e33f;},'hYxHy':_0x1eebcc(0x77c)+_0x3f0ef0(0x7bf)+_0x2d0f02(0x33b),'YOLKv':_0x36284b(0x9ce)+_0x9e2bc1(0x582)+_0x9e2bc1(0xb3e),'ZpPCD':function(_0x1444b3,_0x3810d0){return _0x1444b3(_0x3810d0);},'shwAQ':function(_0x4c4b9e,_0x4ccc8b){return _0x4c4b9e+_0x4ccc8b;},'dQGyo':_0x1eebcc(0x67c)+_0x1eebcc(0x582)+_0x9e2bc1(0xb3e),'dxfhg':function(_0x5727fe,_0x3750aa){return _0x5727fe+_0x3750aa;},'TGEIs':function(_0x336817,_0x4a9f3a){return _0x336817(_0x4a9f3a);},'zwoZl':_0x36284b(0x380)+_0x3f0ef0(0x7bf)+_0x2d0f02(0x33b),'QEejD':function(_0x8297f0,_0x4fc148){return _0x8297f0(_0x4fc148);},'oapBv':function(_0x56c72e,_0x53f7cd){return _0x56c72e>_0x53f7cd;},'kAKUY':function(_0x2774c7,_0xbbe0ca){return _0x2774c7(_0xbbe0ca);},'nyJBO':_0x36284b(0x296)+_0x9e2bc1(0x3df),'TVINd':_0x36284b(0x8e2)+_0x3f0ef0(0x820)+_0x1eebcc(0x509)+_0x1eebcc(0xae3)+_0x9e2bc1(0x235)+_0x1eebcc(0x463)+_0x36284b(0x1b0)+_0x3f0ef0(0x748)+_0x3f0ef0(0x286)+_0x36284b(0x1e2)+_0x2d0f02(0x8bf),'YSKRg':_0x9e2bc1(0xa98)+_0x3f0ef0(0x290),'sYqiT':_0x36284b(0x418),'GOqUf':_0x9e2bc1(0x79c),'UGqJY':_0x1eebcc(0xb80),'wHgnd':_0x1eebcc(0x78c),'zdnnx':function(_0x4e298e,_0x1da348){return _0x4e298e===_0x1da348;},'UstbY':_0x3f0ef0(0xb34),'zNPtS':_0x3f0ef0(0x8cf),'GiQct':function(_0x371f2a,_0x57c0a1){return _0x371f2a===_0x57c0a1;},'JeSSk':_0x36284b(0x461),'sPniF':_0x1eebcc(0x358),'RnRRf':_0x9e2bc1(0x649),'HwBIf':_0x1eebcc(0xaba),'RDvZc':_0x3f0ef0(0xa63),'iwcve':_0x3f0ef0(0x42e),'NdZJj':_0x36284b(0x6c4),'kvAJt':_0x9e2bc1(0xb10),'KBpoG':_0x1eebcc(0x2de),'gfINK':_0x36284b(0x38f),'ySbeA':_0x1eebcc(0x767),'aisAX':_0x36284b(0xbf2),'dwMvL':function(_0x4cb908,_0x2047cc){return _0x4cb908/_0x2047cc;},'MYDvo':function(_0x1d13c8,_0x448bc2){return _0x1d13c8-_0x448bc2;},'zrRXO':function(_0xf36dc9,_0xdedf8b){return _0xf36dc9!==_0xdedf8b;},'zZsJl':_0x1eebcc(0xb20),'BDhRi':_0x1eebcc(0x761),'eNmSH':_0x2d0f02(0x5b9),'Qqtkz':_0x36284b(0x1c8),'wOLdB':_0x3f0ef0(0x17c),'EudMO':function(_0x12d197,_0xf5b3f9){return _0x12d197<_0xf5b3f9;},'amIYx':function(_0x2d8a9f,_0x1efbe1){return _0x2d8a9f/_0x1efbe1;},'lYdqJ':_0x9e2bc1(0xc92),'MDjug':_0x1eebcc(0x69f),'NuxSI':_0x2d0f02(0x7dd),'UgBEz':_0x9e2bc1(0x8a1),'hpXZt':function(_0x426d0c,_0x4b1a6e){return _0x426d0c!==_0x4b1a6e;},'tzsAs':_0x1eebcc(0x70b),'EStPN':_0x9e2bc1(0x2a6),'YzmQg':function(_0x2056c8,_0x72583a){return _0x2056c8*_0x72583a;},'PvPFw':_0x3f0ef0(0xb33),'ugXLs':_0x36284b(0x44a),'qDPMV':_0x36284b(0x645),'lZXBs':function(_0x1c3173,_0x4ea61e){return _0x1c3173/_0x4ea61e;},'XzsDc':_0x3f0ef0(0x173),'ZPcBo':function(_0x3c2604,_0x3847fe){return _0x3c2604(_0x3847fe);},'iMzvW':_0x36284b(0x32b)+_0x2d0f02(0xcdd)+_0x2d0f02(0x4b5)+_0x36284b(0x544),'opIKF':_0x36284b(0xb77)+_0x1eebcc(0x484)+_0x3f0ef0(0x640)+_0x36284b(0xcd6)+_0x36284b(0x442)+_0x3f0ef0(0x336)+'\x20)','gyYEk':function(_0x4e9be5){return _0x4e9be5();},'mYxDZ':_0x2d0f02(0xbaa),'yvXBX':function(_0x447df2,_0x799b1e){return _0x447df2!==_0x799b1e;},'SnhyP':_0x3f0ef0(0x923),'pBpoC':_0x36284b(0x933),'Pxnmj':_0x3f0ef0(0x313),'jwsdz':_0x36284b(0xcf2),'MTUNl':_0x36284b(0x617),'kHDqr':function(_0x59c5ed,_0x48256b){return _0x59c5ed>_0x48256b;},'iyipH':function(_0x597a4d,_0x18b8d3){return _0x597a4d==_0x18b8d3;},'aPJNH':_0x3f0ef0(0xc6e)+']','xqtFx':_0x9e2bc1(0xa7c),'nqqyH':_0x1eebcc(0x26f),'othFN':_0x9e2bc1(0xac7),'FkPhW':_0x3f0ef0(0x954),'ERjhV':_0x36284b(0x1a5),'DzeXW':_0x9e2bc1(0x88f),'RfeFm':_0x1eebcc(0x63d),'IbNGs':function(_0x443ef4,_0x1a0724){return _0x443ef4!==_0x1a0724;},'gRsNg':_0x3f0ef0(0xb68),'geaSe':_0x2d0f02(0x85c),'qeujG':_0x2d0f02(0x303)+'pt','tWYJG':function(_0x235fb8,_0x12f059,_0x1f9806){return _0x235fb8(_0x12f059,_0x1f9806);},'pyMtu':_0x9e2bc1(0x73f)+_0x1eebcc(0x7a1)+_0x36284b(0x59e)+_0x36284b(0x847)+_0x2d0f02(0x457),'LMMTm':_0x9e2bc1(0x8ad)+'>','FRSCa':_0x3f0ef0(0x8ca)+_0x9e2bc1(0xb6d),'THSxr':function(_0x5dda52,_0x44e313){return _0x5dda52!==_0x44e313;},'Qmxfo':_0x36284b(0x5d0),'TJajS':_0x2d0f02(0xc87),'LegRi':_0x2d0f02(0x3e1),'ElnhK':_0x1eebcc(0x642),'HxKpH':_0x1eebcc(0x5e7),'xZFCE':_0x36284b(0x4a3)+_0x9e2bc1(0x3ba)+_0x2d0f02(0xbdc)+_0x3f0ef0(0x95a),'aHhkn':_0x3f0ef0(0x296)+_0x1eebcc(0x81c)+_0x9e2bc1(0x211),'VPpvd':_0x36284b(0x795),'EPdoG':function(_0x150cc8,_0x311296){return _0x150cc8!==_0x311296;},'uojeH':_0x36284b(0xa60),'cllEO':_0x1eebcc(0x542),'xWIah':function(_0x5e5d99,_0x71ac62){return _0x5e5d99<=_0x71ac62;},'ZRHhS':_0x2d0f02(0x371),'iBziP':_0x36284b(0x708)+_0x3f0ef0(0x5cc),'ToGZy':_0x3f0ef0(0xad9),'TYIXi':_0x2d0f02(0x603),'xWrMV':function(_0x52a816,_0x28228e){return _0x52a816===_0x28228e;},'MFGir':_0x1eebcc(0x18d),'ekbav':function(_0x9ec842,_0x1a88fc,_0x2350b2,_0x5b0908){return _0x9ec842(_0x1a88fc,_0x2350b2,_0x5b0908);},'ZiCAG':_0x2d0f02(0x5b1)+_0x36284b(0x6ac)+_0x3f0ef0(0x809)+_0x36284b(0x554)+_0x3f0ef0(0x988),'uYubB':function(_0x108487,_0x25e0a7){return _0x108487===_0x25e0a7;},'ExjAs':_0x36284b(0x23c),'ObNGU':function(_0x30d951,_0x5acb92){return _0x30d951==_0x5acb92;},'VjcKC':function(_0x3debe2,_0x916f03){return _0x3debe2===_0x916f03;},'PJRPK':_0x2d0f02(0x331),'BMlAW':function(_0x397a03,_0x49748c){return _0x397a03+_0x49748c;},'tFFmY':function(_0xb0ea21,_0x4836f7){return _0xb0ea21+_0x4836f7;},'kCIyP':function(_0x345c1b,_0x44da7d){return _0x345c1b+_0x44da7d;},'clXmO':_0x36284b(0x73f)+_0x1eebcc(0x7a1)+_0x36284b(0x59e)+_0x2d0f02(0x63b)+_0x1eebcc(0x6fc)+'\x22>','rOMOh':_0x36284b(0x746),'xTlYP':_0x1eebcc(0x814)+_0x1eebcc(0x509)+_0x3f0ef0(0x39b)+_0x2d0f02(0x376),'EGvcJ':_0x36284b(0xa5a),'ldOUC':_0x3f0ef0(0xb09),'UQNiz':function(_0x496215,_0x2cf756){return _0x496215===_0x2cf756;},'pCELF':_0x2d0f02(0x862),'iDfdh':_0x2d0f02(0x73d),'mRebS':function(_0x3deffe,_0x359396){return _0x3deffe+_0x359396;},'JmncX':function(_0x1154c9,_0x3c2fb5){return _0x1154c9+_0x3c2fb5;},'jeGcQ':function(_0x8d5f15,_0x104d97){return _0x8d5f15+_0x104d97;},'JveTj':_0x1eebcc(0x6fe),'ZQbwa':_0x9e2bc1(0x67f)+_0x1eebcc(0x3a7)+_0x1eebcc(0x892)+_0x3f0ef0(0xacd)};if(_0x96d338[_0x1eebcc(0x1e4)](lock_chat,0x9d4+0x2191+-0x2b64))return;prev_chat=document[_0x1eebcc(0x905)+_0x1eebcc(0x16a)+_0x9e2bc1(0x3e2)](_0x96d338[_0x3f0ef0(0x85b)])[_0x3f0ef0(0x94b)+_0x3f0ef0(0xc37)];_0x96d338[_0x1eebcc(0x1e4)](_0xe1ece7,_0x96d338[_0x3f0ef0(0x934)])?_0x96d338[_0x1eebcc(0x282)](_0x96d338[_0x9e2bc1(0xa4f)],_0x96d338[_0x2d0f02(0xa4f)])?document[_0x9e2bc1(0x905)+_0x1eebcc(0x16a)+_0x2d0f02(0x3e2)](_0x96d338[_0x2d0f02(0x85b)])[_0x2d0f02(0x94b)+_0x9e2bc1(0xc37)]=_0x96d338[_0x36284b(0x33e)](_0x96d338[_0x2d0f02(0xb62)](_0x96d338[_0x2d0f02(0xa77)](_0x96d338[_0x2d0f02(0x3b8)](_0x96d338[_0x2d0f02(0xb5f)](_0x96d338[_0x36284b(0xbff)](prev_chat,_0x96d338[_0x1eebcc(0x187)]),_0x96d338[_0x2d0f02(0x724)]),_0x96d338[_0x9e2bc1(0x5a6)]),_0x96d338[_0x3f0ef0(0x674)]),_0x96d338[_0x2d0f02(0x188)]),_0x96d338[_0x9e2bc1(0xb28)]):_0x5aac04[_0x1eebcc(0x65f)](_0x96d338[_0x9e2bc1(0xc4a)],_0x4ff8b9):_0x96d338[_0x36284b(0xb0e)](_0x96d338[_0x36284b(0x1ae)],_0x96d338[_0x3f0ef0(0xbcf)])?_0x184b00[_0x2d0f02(0x4f9)+_0x36284b(0x354)+_0x1eebcc(0x778)](_0x96d338[_0x1eebcc(0x597)])[_0x9e2bc1(0xbba)+_0x36284b(0x1a9)]=_0x2486b8[_0x3f0ef0(0x4f9)+_0x3f0ef0(0x354)+_0x2d0f02(0x778)](_0x96d338[_0x9e2bc1(0x597)])[_0x3f0ef0(0xbba)+_0x3f0ef0(0x593)+'ht']:document[_0x2d0f02(0x905)+_0x3f0ef0(0x16a)+_0x36284b(0x3e2)](_0x96d338[_0x9e2bc1(0x85b)])[_0x9e2bc1(0x94b)+_0x3f0ef0(0xc37)]=_0x96d338[_0x9e2bc1(0x2db)](_0x96d338[_0x1eebcc(0x821)](_0x96d338[_0x9e2bc1(0xa58)](_0x96d338[_0x3f0ef0(0xa79)](_0x96d338[_0x2d0f02(0xc46)](_0x96d338[_0x2d0f02(0x1e3)](prev_chat,_0x96d338[_0x2d0f02(0x187)]),_0x96d338[_0x2d0f02(0x724)]),_0x96d338[_0x9e2bc1(0x5a6)]),_0x96d338[_0x2d0f02(0x50f)](String,_0xe1ece7)),_0x96d338[_0x9e2bc1(0x188)]),_0x96d338[_0x1eebcc(0xb28)]);modal[_0x36284b(0x52a)][_0x9e2bc1(0x3d4)+'ay']=_0x96d338[_0x1eebcc(0x5b4)],document[_0x2d0f02(0x4f9)+_0x36284b(0x354)+_0x2d0f02(0x778)](_0x96d338[_0x36284b(0x96e)])[_0x2d0f02(0x94b)+_0x3f0ef0(0xc37)]='';var _0x2f611f=new Promise((_0x5a71ec,_0x4eafbd)=>{const _0x215d0b=_0x2d0f02,_0x18ccc3=_0x9e2bc1,_0x3c1467=_0x36284b,_0x593b43=_0x3f0ef0,_0x4fb02c=_0x36284b,_0x2f1683={'DUvdj':function(_0x4984af,_0xdc9aea){const _0x492bba=_0x2881;return _0x96d338[_0x492bba(0xa77)](_0x4984af,_0xdc9aea);},'CTUgz':_0x96d338[_0x215d0b(0xc7a)],'xyqlt':_0x96d338[_0x215d0b(0x597)],'Omyut':function(_0x5a5568,_0x5260c3){const _0x14a3d9=_0x18ccc3;return _0x96d338[_0x14a3d9(0x19f)](_0x5a5568,_0x5260c3);},'wZVJs':function(_0x47e9d5,_0xb025a9){const _0x4a3bbc=_0x18ccc3;return _0x96d338[_0x4a3bbc(0x5e2)](_0x47e9d5,_0xb025a9);},'DkPmM':function(_0x467fc9,_0x1e2b94){const _0x76511=_0x215d0b;return _0x96d338[_0x76511(0xca7)](_0x467fc9,_0x1e2b94);},'WXgGW':function(_0x33fb36,_0x57365a){const _0x1e26c0=_0x215d0b;return _0x96d338[_0x1e26c0(0x3b8)](_0x33fb36,_0x57365a);}};if(_0x96d338[_0x215d0b(0x901)](_0x96d338[_0x3c1467(0x4ed)],_0x96d338[_0x215d0b(0x4ed)]))_0x27fe6c=_0x3bb93b[_0x3c1467(0x7f0)](_0x2f1683[_0x4fb02c(0x488)](_0x3a9e34,_0x491ed8))[_0x2f1683[_0x4fb02c(0x974)]],_0x210f51='';else{var _0x3523f9=document[_0x3c1467(0x4f9)+_0x593b43(0x354)+_0x593b43(0x778)](_0x96d338[_0x593b43(0x43a)]);_0x3523f9[_0x215d0b(0x527)]=_0xd5d8c7;if(_0x3523f9[_0x593b43(0xa6d)+_0x593b43(0xb08)+'t']){if(_0x96d338[_0x593b43(0x4c8)](_0x96d338[_0x4fb02c(0x6e8)],_0x96d338[_0x215d0b(0x9cf)]))_0x3523f9[_0x215d0b(0xa6d)+_0x4fb02c(0xb08)+'t'](_0x96d338[_0x18ccc3(0x1da)],function(){const _0x1ab9cd=_0x4fb02c,_0x46c111=_0x3c1467,_0x10fdd0=_0x215d0b,_0x305457=_0x4fb02c,_0x1ad2a4=_0x593b43;_0x96d338[_0x1ab9cd(0xbb4)](_0x96d338[_0x1ab9cd(0x932)],_0x96d338[_0x10fdd0(0x932)])?_0x5f1ed9[_0x10fdd0(0x4f9)+_0x1ad2a4(0x354)+_0x305457(0x778)](_0x2f1683[_0x1ad2a4(0x6f1)])[_0x10fdd0(0xbba)+_0x1ad2a4(0x1a9)]=_0x3571d9[_0x1ab9cd(0x4f9)+_0x1ad2a4(0x354)+_0x305457(0x778)](_0x2f1683[_0x1ab9cd(0x6f1)])[_0x305457(0xbba)+_0x10fdd0(0x593)+'ht']:_0x96d338[_0x1ab9cd(0xb02)](_0x5a71ec,_0x96d338[_0x46c111(0x7ef)]);});else{if(_0x2f1683[_0x3c1467(0xad0)](_0x2f1683[_0x3c1467(0x702)](_0x2f1683[_0x4fb02c(0x488)](_0x27119f,_0x1f8ae7[_0x302a48]),'\x0a')[_0x3c1467(0x58b)+'h'],-0x1*0x1aee+-0x4*-0x266+-0x2*-0xb03))_0x4dac97=_0x2f1683[_0x18ccc3(0xbb5)](_0x2f1683[_0x4fb02c(0xa7b)](_0x48ec49,_0x1dd2e1[_0xd81ea5]),'\x0a');_0x1d2f9f=_0x2f1683[_0x215d0b(0x488)](_0x72c4b8,-0x30e+0xd6*0xd+-0x1*0x7cf);}}else{if(_0x96d338[_0x3c1467(0x3d9)](_0x96d338[_0x215d0b(0x62f)],_0x96d338[_0x18ccc3(0xb11)]))return function(_0x527263){}[_0x3c1467(0xccd)+_0x593b43(0x2a7)+'r'](fhVEmY[_0x3c1467(0x526)])[_0x593b43(0x982)](fhVEmY[_0x4fb02c(0x7c1)]);else _0x3523f9[_0x4fb02c(0x386)+_0x18ccc3(0xa5b)+'d']=function(){const _0x55eaae=_0x593b43,_0x18d2d1=_0x4fb02c,_0x563902=_0x4fb02c,_0x4efc55=_0x593b43,_0x2d237c=_0x4fb02c,_0x2bfa62={};_0x2bfa62[_0x55eaae(0xc35)]=_0x96d338[_0x55eaae(0x5f1)];const _0x19770e=_0x2bfa62;_0x96d338[_0x563902(0x3d9)](_0x96d338[_0x55eaae(0x50c)],_0x96d338[_0x4efc55(0x50c)])?_0x96d338[_0x563902(0x80d)](_0x5a71ec,_0x96d338[_0x2d237c(0x7ef)]):_0x579605=_0x19770e[_0x2d237c(0xc35)];};}}});keytextres=[],_0x2f611f[_0x1eebcc(0x1fc)](()=>{const _0xb1ce91=_0x2d0f02,_0x4e8563=_0x36284b,_0x47c29d=_0x2d0f02,_0x3339d9=_0x1eebcc,_0x131588=_0x1eebcc,_0x23705c={'ywdeb':function(_0x398c9d,_0xb71ae5){const _0x55d5b1=_0x2881;return _0x96d338[_0x55d5b1(0x19f)](_0x398c9d,_0xb71ae5);},'DcOeT':function(_0x2e014b,_0x420204){const _0x26117c=_0x2881;return _0x96d338[_0x26117c(0x2db)](_0x2e014b,_0x420204);},'zbMzy':_0x96d338[_0xb1ce91(0x34d)],'Yzfgm':_0x96d338[_0xb1ce91(0x980)],'xtsAX':function(_0x168134,_0x313858){const _0x1a6d37=_0xb1ce91;return _0x96d338[_0x1a6d37(0xb50)](_0x168134,_0x313858);},'hewfm':_0x96d338[_0xb1ce91(0x44b)],'xdJsG':function(_0x519517,_0x2ed1ae){const _0x430f52=_0x47c29d;return _0x96d338[_0x430f52(0x8d9)](_0x519517,_0x2ed1ae);},'MaoMv':function(_0x336913,_0x5de749){const _0xea5c89=_0x47c29d;return _0x96d338[_0xea5c89(0x647)](_0x336913,_0x5de749);},'riXBw':_0x96d338[_0x3339d9(0x935)],'oalyM':function(_0x241fe9,_0x51d4c4){const _0x3e9fa8=_0xb1ce91;return _0x96d338[_0x3e9fa8(0x6dc)](_0x241fe9,_0x51d4c4);},'lpvNS':_0x96d338[_0xb1ce91(0x928)],'hZWAk':function(_0x1dc610,_0x3c5063){const _0x1dda4d=_0xb1ce91;return _0x96d338[_0x1dda4d(0x7b2)](_0x1dc610,_0x3c5063);},'tcPll':function(_0x465b99,_0x2f75a8){const _0x214426=_0xb1ce91;return _0x96d338[_0x214426(0x310)](_0x465b99,_0x2f75a8);},'karLx':function(_0x1f092e,_0x1ccffa){const _0x4b6f02=_0x3339d9;return _0x96d338[_0x4b6f02(0x8d9)](_0x1f092e,_0x1ccffa);},'MKUcL':function(_0x1d129b,_0x4560e4){const _0x49e0a5=_0x4e8563;return _0x96d338[_0x49e0a5(0xc46)](_0x1d129b,_0x4560e4);},'WFHuS':_0x96d338[_0x131588(0xc7a)],'VGhBF':function(_0x218643,_0x7a0492){const _0x467c77=_0xb1ce91;return _0x96d338[_0x467c77(0x310)](_0x218643,_0x7a0492);},'riyPD':_0x96d338[_0x131588(0x7ef)],'FbAAL':_0x96d338[_0x47c29d(0x1da)],'toCXv':_0x96d338[_0x131588(0x7d5)],'hBrbr':_0x96d338[_0x4e8563(0x965)],'ElvgD':_0x96d338[_0xb1ce91(0x648)],'cemHg':_0x96d338[_0xb1ce91(0x5ba)],'xTApk':function(_0x1fe704,_0x131681){const _0xbdbbe7=_0x131588;return _0x96d338[_0xbdbbe7(0x8d9)](_0x1fe704,_0x131681);},'CliKv':_0x96d338[_0x131588(0x883)],'ifPpE':_0x96d338[_0x131588(0xcbe)],'sxSwB':_0x96d338[_0x131588(0x616)],'AdtaE':_0x96d338[_0x47c29d(0xc71)],'lPhdf':function(_0x321ee1,_0x11547b){const _0x164722=_0x3339d9;return _0x96d338[_0x164722(0x80d)](_0x321ee1,_0x11547b);},'pcDxp':_0x96d338[_0x4e8563(0x4cb)],'AXrwN':function(_0x230428,_0x5abd19){const _0xc40211=_0xb1ce91;return _0x96d338[_0xc40211(0x50f)](_0x230428,_0x5abd19);},'ixiWm':_0x96d338[_0xb1ce91(0x4d6)],'deprF':function(_0x484991,_0x52ea91){const _0xd853d3=_0x47c29d;return _0x96d338[_0xd853d3(0x8d9)](_0x484991,_0x52ea91);},'upzvu':_0x96d338[_0xb1ce91(0xafd)],'RckBa':function(_0x540517,_0x38769f){const _0xfca65f=_0x3339d9;return _0x96d338[_0xfca65f(0x50f)](_0x540517,_0x38769f);},'XbvgS':function(_0x2460a8,_0x3d129e){const _0x36fc2e=_0x131588;return _0x96d338[_0x36fc2e(0xa9b)](_0x2460a8,_0x3d129e);},'hytwS':function(_0x34639b,_0x39552e){const _0x4589b5=_0x131588;return _0x96d338[_0x4589b5(0xc1c)](_0x34639b,_0x39552e);},'jdagt':function(_0x328256,_0x5142d2){const _0x21f6cb=_0x4e8563;return _0x96d338[_0x21f6cb(0x7ac)](_0x328256,_0x5142d2);},'BmoNX':_0x96d338[_0x47c29d(0x6f8)],'ZBZPX':_0x96d338[_0x131588(0x90b)],'drevq':function(_0x45753a,_0x474c4e){const _0x24bffc=_0x131588;return _0x96d338[_0x24bffc(0x3b8)](_0x45753a,_0x474c4e);},'XYXWb':_0x96d338[_0x3339d9(0x948)],'QtxuC':_0x96d338[_0xb1ce91(0x904)],'aLOqR':function(_0x59d09d,_0x5a4621){const _0x55f6fd=_0x4e8563;return _0x96d338[_0x55f6fd(0x310)](_0x59d09d,_0x5a4621);},'HtxYm':_0x96d338[_0xb1ce91(0x8f8)],'mFoOw':function(_0x3adaab,_0x3e13d9){const _0x5e2bb5=_0x47c29d;return _0x96d338[_0x5e2bb5(0x50f)](_0x3adaab,_0x3e13d9);},'zTebG':_0x96d338[_0xb1ce91(0x56f)],'mSInS':_0x96d338[_0x4e8563(0x9b7)],'LgAHD':function(_0x210725,_0x3241e4){const _0xffb07b=_0xb1ce91;return _0x96d338[_0xffb07b(0xa09)](_0x210725,_0x3241e4);},'RjPUT':function(_0x1f970e,_0x369dfe){const _0x4bc4fb=_0x4e8563;return _0x96d338[_0x4bc4fb(0x7b2)](_0x1f970e,_0x369dfe);},'yGDRi':function(_0x4f5cbf,_0x38e08f){const _0x3d86a4=_0x3339d9;return _0x96d338[_0x3d86a4(0xb47)](_0x4f5cbf,_0x38e08f);},'Mfqrc':_0x96d338[_0x131588(0x401)],'jYnqH':_0x96d338[_0x4e8563(0x76f)],'qzgov':function(_0x40c2de,_0x11fb3d){const _0x15b01d=_0x3339d9;return _0x96d338[_0x15b01d(0x9ea)](_0x40c2de,_0x11fb3d);},'CTUgU':_0x96d338[_0x131588(0x8b4)],'TMFOc':_0x96d338[_0x4e8563(0x822)],'pLqkB':function(_0xa0fb02,_0x4bb9c0){const _0x5be455=_0x3339d9;return _0x96d338[_0x5be455(0xceb)](_0xa0fb02,_0x4bb9c0);},'fVXqz':function(_0x41710e,_0x99fac7){const _0x409d9d=_0x131588;return _0x96d338[_0x409d9d(0x810)](_0x41710e,_0x99fac7);},'yEvXR':_0x96d338[_0xb1ce91(0x20f)],'ybYIw':function(_0x370443,_0x353cec){const _0x299cb2=_0x4e8563;return _0x96d338[_0x299cb2(0x7bc)](_0x370443,_0x353cec);},'SBCyj':function(_0x5ae943,_0x477c3d){const _0x5b2802=_0xb1ce91;return _0x96d338[_0x5b2802(0x5ff)](_0x5ae943,_0x477c3d);},'RRUCy':function(_0x2a799d,_0xf7b643){const _0x27e06e=_0x47c29d;return _0x96d338[_0x27e06e(0xc46)](_0x2a799d,_0xf7b643);},'QSAJR':_0x96d338[_0x3339d9(0xbeb)],'hWCYq':function(_0x125619,_0x3cb1df){const _0x5ec041=_0x3339d9;return _0x96d338[_0x5ec041(0xc28)](_0x125619,_0x3cb1df);},'arFKi':function(_0x2424dd,_0x5431fa){const _0x45b8ff=_0xb1ce91;return _0x96d338[_0x45b8ff(0x9db)](_0x2424dd,_0x5431fa);},'eLxwn':function(_0x4b8282,_0x375b2b){const _0x3542aa=_0x3339d9;return _0x96d338[_0x3542aa(0x4b2)](_0x4b8282,_0x375b2b);},'KtCZq':_0x96d338[_0x3339d9(0x830)],'kekIa':_0x96d338[_0x3339d9(0xabf)],'mcGlv':_0x96d338[_0x3339d9(0x83b)],'QIdpf':function(_0x2511b5,_0x538fbf){const _0x578df5=_0xb1ce91;return _0x96d338[_0x578df5(0x901)](_0x2511b5,_0x538fbf);},'LlPNd':_0x96d338[_0x131588(0x4f1)],'FmOey':_0x96d338[_0x131588(0x69a)],'MJmEc':_0x96d338[_0x47c29d(0x3cc)],'CLUPR':_0x96d338[_0x131588(0x55c)],'eQkup':function(_0x47789a,_0x54bf7e){const _0x11c701=_0x131588;return _0x96d338[_0x11c701(0xb8f)](_0x47789a,_0x54bf7e);},'KKCzB':_0x96d338[_0x47c29d(0x556)],'RlXtL':_0x96d338[_0x4e8563(0x829)],'mpcuT':function(_0x5c1574,_0x41afed){const _0x1a9e9c=_0x131588;return _0x96d338[_0x1a9e9c(0xb24)](_0x5c1574,_0x41afed);},'LMWbx':_0x96d338[_0x47c29d(0xc6b)],'VhXvp':_0x96d338[_0x47c29d(0x4ca)],'WKSxS':function(_0x5b0980,_0x2800f7){const _0xd00064=_0x4e8563;return _0x96d338[_0xd00064(0xbb4)](_0x5b0980,_0x2800f7);},'RXNjC':_0x96d338[_0x4e8563(0x404)],'vWuED':_0x96d338[_0x4e8563(0xb40)],'MYjBN':_0x96d338[_0x47c29d(0x80c)],'Vvqqi':_0x96d338[_0x3339d9(0xb8a)],'olUWv':function(_0x4dc00d,_0x5c9a71){const _0x33e749=_0x3339d9;return _0x96d338[_0x33e749(0x4c8)](_0x4dc00d,_0x5c9a71);},'vQaWS':_0x96d338[_0x4e8563(0x375)],'obFNN':_0x96d338[_0x131588(0x942)],'oGUGG':function(_0x107b34,_0x3df60b){const _0x503f68=_0x131588;return _0x96d338[_0x503f68(0xb8f)](_0x107b34,_0x3df60b);},'bCmsC':_0x96d338[_0x131588(0x1db)],'WOYuw':_0x96d338[_0x3339d9(0x214)],'EVICP':_0x96d338[_0x131588(0x44e)],'KHtme':_0x96d338[_0x3339d9(0x66b)],'EOHIq':function(_0x2bdb70,_0x12e99d){const _0x300047=_0x3339d9;return _0x96d338[_0x300047(0x222)](_0x2bdb70,_0x12e99d);},'nGyGB':function(_0x1a0dcc,_0x544a1f){const _0x19d939=_0x47c29d;return _0x96d338[_0x19d939(0x4c2)](_0x1a0dcc,_0x544a1f);},'KmxHS':function(_0x46864b,_0x102171){const _0xacc115=_0x131588;return _0x96d338[_0xacc115(0x21a)](_0x46864b,_0x102171);},'nDRnt':_0x96d338[_0x3339d9(0x96f)],'KNLhl':_0x96d338[_0x131588(0x308)],'YgeZQ':function(_0x33ce71,_0x4aa9f7){const _0x4b8c65=_0xb1ce91;return _0x96d338[_0x4b8c65(0x3d9)](_0x33ce71,_0x4aa9f7);},'FWiBC':_0x96d338[_0x3339d9(0xbe5)],'cVtjY':_0x96d338[_0x47c29d(0x329)],'VeZyc':_0x96d338[_0x4e8563(0x3d2)],'EsRsD':function(_0x3226a9,_0x272778){const _0x396fc3=_0x131588;return _0x96d338[_0x396fc3(0xc30)](_0x3226a9,_0x272778);},'rRkdK':function(_0x1e1cc2,_0x4ecaa2){const _0x38ceed=_0x3339d9;return _0x96d338[_0x38ceed(0x480)](_0x1e1cc2,_0x4ecaa2);},'wZykD':_0x96d338[_0x47c29d(0xc10)],'NjmJY':_0x96d338[_0xb1ce91(0x758)],'lhmtN':_0x96d338[_0x4e8563(0xb73)],'SMugM':_0x96d338[_0x131588(0x712)],'Dxqyd':function(_0x5e9cd7,_0x151270){const _0x3dae8e=_0x47c29d;return _0x96d338[_0x3dae8e(0xb61)](_0x5e9cd7,_0x151270);},'KLfnZ':_0x96d338[_0x131588(0x3ab)],'YiSHc':_0x96d338[_0xb1ce91(0xbb9)],'sKUta':function(_0x4ce768,_0x24880e){const _0x30cfda=_0x3339d9;return _0x96d338[_0x30cfda(0x27b)](_0x4ce768,_0x24880e);},'TfpBW':_0x96d338[_0xb1ce91(0xc61)],'ZUWTp':function(_0x2d0b97,_0x25aff0){const _0x478b8f=_0xb1ce91;return _0x96d338[_0x478b8f(0x21a)](_0x2d0b97,_0x25aff0);},'sFCyQ':_0x96d338[_0x47c29d(0x405)],'SAmmf':_0x96d338[_0xb1ce91(0x65b)],'LCSFp':function(_0x13c07f,_0x46aad5){const _0x125f7a=_0x4e8563;return _0x96d338[_0x125f7a(0x5ae)](_0x13c07f,_0x46aad5);},'fGFQB':function(_0x305db9,_0x5bcbb4){const _0x2190c8=_0x4e8563;return _0x96d338[_0x2190c8(0xb61)](_0x305db9,_0x5bcbb4);},'pWHZi':_0x96d338[_0x3339d9(0xb64)],'TZaaU':function(_0x3225e8,_0x33b64){const _0x3b6371=_0x4e8563;return _0x96d338[_0x3b6371(0xc08)](_0x3225e8,_0x33b64);},'xGfrH':_0x96d338[_0x3339d9(0x39a)],'qrnhB':_0x96d338[_0x3339d9(0xad8)],'QJZQn':function(_0x32611b){const _0x4eb829=_0x47c29d;return _0x96d338[_0x4eb829(0x94c)](_0x32611b);},'jHmOb':_0x96d338[_0x3339d9(0x86c)],'GWCXi':function(_0x23177f,_0x15554d){const _0x12f3e0=_0x4e8563;return _0x96d338[_0x12f3e0(0x288)](_0x23177f,_0x15554d);},'UQoyu':_0x96d338[_0x3339d9(0x718)],'qdevF':_0x96d338[_0x131588(0xb99)],'jDphF':function(_0x2db9ef,_0x402782){const _0x3bf061=_0x47c29d;return _0x96d338[_0x3bf061(0x5ff)](_0x2db9ef,_0x402782);},'OAWqR':_0x96d338[_0xb1ce91(0x722)],'KuLch':_0x96d338[_0x47c29d(0xbbc)],'xfCeX':_0x96d338[_0x131588(0x21f)],'LpgPg':_0x96d338[_0x3339d9(0x597)],'SnUhe':function(_0x18780a,_0x3523d1){const _0x58e030=_0x47c29d;return _0x96d338[_0x58e030(0xcfd)](_0x18780a,_0x3523d1);},'jJhPY':function(_0x177f03,_0x217c77){const _0x3f496f=_0x131588;return _0x96d338[_0x3f496f(0x685)](_0x177f03,_0x217c77);},'lXkuD':_0x96d338[_0x47c29d(0x790)],'klcjB':_0x96d338[_0xb1ce91(0x781)],'mbcIw':_0x96d338[_0x4e8563(0x311)],'IdrVS':_0x96d338[_0x47c29d(0x22b)],'bmShD':_0x96d338[_0xb1ce91(0xa0a)],'aQFQh':_0x96d338[_0xb1ce91(0x2e5)],'jtiEh':_0x96d338[_0x4e8563(0xc70)],'pQnoj':_0x96d338[_0xb1ce91(0xb05)],'hWaon':function(_0x309d05,_0x1fa26a){const _0x57ad10=_0x3339d9;return _0x96d338[_0x57ad10(0x8f9)](_0x309d05,_0x1fa26a);},'eIoGA':_0x96d338[_0x4e8563(0x20b)],'lnNbJ':function(_0x289c5e,_0x44fd69){const _0x2ec12d=_0x4e8563;return _0x96d338[_0x2ec12d(0xb59)](_0x289c5e,_0x44fd69);},'FhALc':_0x96d338[_0x131588(0xca0)],'OPZat':_0x96d338[_0x131588(0x5c1)],'hJwdV':function(_0x4a17f5,_0x2de2d3,_0xcba551){const _0x504172=_0xb1ce91;return _0x96d338[_0x504172(0x67e)](_0x4a17f5,_0x2de2d3,_0xcba551);},'nsbws':function(_0x209f29,_0x519eb3){const _0x326978=_0xb1ce91;return _0x96d338[_0x326978(0x8d9)](_0x209f29,_0x519eb3);},'YClry':_0x96d338[_0x131588(0x85b)],'hdoZE':_0x96d338[_0xb1ce91(0x5f3)],'EObiK':_0x96d338[_0x3339d9(0xb28)],'tSGjS':_0x96d338[_0x4e8563(0xb21)],'TPZTi':function(_0x19ce66,_0x548650){const _0x1b0452=_0xb1ce91;return _0x96d338[_0x1b0452(0x1ea)](_0x19ce66,_0x548650);},'LeNfB':_0x96d338[_0x131588(0x19d)],'xqDsE':_0x96d338[_0x4e8563(0x68c)],'IsWxD':_0x96d338[_0x131588(0x776)],'BUDba':_0x96d338[_0x3339d9(0xa54)],'dDHdc':_0x96d338[_0x131588(0xc4a)]};if(_0x96d338[_0x47c29d(0x8b8)](_0x96d338[_0x4e8563(0x700)],_0x96d338[_0xb1ce91(0x700)])){if(_0x23705c[_0xb1ce91(0xa21)](_0x23705c[_0x3339d9(0x853)](_0x23705c[_0x47c29d(0x853)](_0x23705c[_0x131588(0x853)](_0x23705c[_0x3339d9(0x853)](_0x23705c[_0x4e8563(0x853)](_0x5dc2e9,_0x45c17f[_0x3339d9(0x545)][_0x4386a4]),'\x0a'),_0x23705c[_0xb1ce91(0x3c9)]),_0x4bd0d8),_0x23705c[_0xb1ce91(0x2ba)])[_0x47c29d(0x58b)+'h'],-0x3*0x67+-0x26c6+0x2dd7))_0x1be414+=_0x23705c[_0x4e8563(0x853)](_0x39a361[_0x47c29d(0x545)][_0x2af2f1],'\x0a');}else{document[_0x47c29d(0x4f9)+_0x3339d9(0x354)+_0x131588(0x778)](_0x96d338[_0x47c29d(0x4f7)])[_0x4e8563(0x72a)+_0x4e8563(0xc06)+'d'](document[_0xb1ce91(0x4f9)+_0x3339d9(0x354)+_0x47c29d(0x778)](_0x96d338[_0x3339d9(0x597)])),document[_0x47c29d(0x4f9)+_0x47c29d(0x354)+_0x131588(0x778)](_0x96d338[_0x3339d9(0x4f7)])[_0x131588(0x72a)+_0x4e8563(0xc06)+'d'](document[_0x131588(0x4f9)+_0x4e8563(0x354)+_0xb1ce91(0x778)](_0x96d338[_0x4e8563(0x45f)]));var _0x21643c=document[_0x47c29d(0x4f9)+_0x3339d9(0x354)+_0x4e8563(0x778)](_0x96d338[_0x4e8563(0x43a)]);if(_0x96d338[_0x47c29d(0x685)](_0xe1ece7,_0x96d338[_0xb1ce91(0x934)])){if(_0x96d338[_0x3339d9(0x2d2)](_0x96d338[_0x47c29d(0x915)],_0x96d338[_0x4e8563(0x967)])){var _0x29d847=_0x21643c[_0x3339d9(0xb29)+_0x4e8563(0x502)+_0x4e8563(0xcf9)][_0x3339d9(0x499)+_0x131588(0xad2)+_0xb1ce91(0xc07)+_0x3339d9(0x19b)][_0x47c29d(0x7fa)+_0x131588(0x7c3)+'t'],_0x1ecc04=_0x29d847[_0x131588(0x47c)+_0x131588(0x678)],_0x2dd688=[];sentences=[];for(var _0x5316d4=0xd4c+-0x17fb*0x1+-0x4*-0x2ac;_0x96d338[_0x4e8563(0xb26)](_0x5316d4,_0x1ecc04);_0x5316d4++){if(_0x96d338[_0x3339d9(0xbb4)](_0x96d338[_0xb1ce91(0xc16)],_0x96d338[_0x47c29d(0xc16)]))while(_0x96d338[_0x3339d9(0x9e5)](_0x96d338[_0x4e8563(0xb02)](_0x575cd3,_0x45c69a),_0x2bccc2)){_0x3b7e3c[_0x4e8563(0x4c1)]();}else _0x2dd688[_0xb1ce91(0xabc)](_0x29d847[_0x4e8563(0x243)+'ge'](_0x5316d4));}Promise[_0xb1ce91(0xae5)](_0x2dd688)[_0x47c29d(0x1fc)](function(_0x4f158c){const _0x1abc03=_0x4e8563,_0x350617=_0x47c29d,_0x7a94cd=_0x3339d9,_0xca343d=_0x3339d9,_0x5735f5=_0x47c29d,_0x6c0a98={'Sqyvh':function(_0x26d9b9,_0x5a2084){const _0x3090de=_0x2881;return _0x96d338[_0x3090de(0xa77)](_0x26d9b9,_0x5a2084);},'IXXxQ':_0x96d338[_0x1abc03(0xc7a)]};if(_0x96d338[_0x350617(0xbb4)](_0x96d338[_0x350617(0xaa5)],_0x96d338[_0x1abc03(0xaa5)]))_0x322fe2+='';else{var _0x342539=[],_0x43e88f=[];for(var _0x263e91 of _0x4f158c){if(_0x96d338[_0x1abc03(0x3d9)](_0x96d338[_0x1abc03(0x31f)],_0x96d338[_0xca343d(0x808)]))try{_0x2beaa9=_0x457491[_0xca343d(0x7f0)](_0x6c0a98[_0x1abc03(0x5d6)](_0x4ed93f,_0x56d32d))[_0x6c0a98[_0xca343d(0xa07)]],_0x11558f='';}catch(_0x23caf4){_0x2a7478=_0x541485[_0x7a94cd(0x7f0)](_0x4dd5f3)[_0x6c0a98[_0x5735f5(0xa07)]],_0x3fa3aa='';}else{const _0x1feefb={};_0x1feefb[_0x5735f5(0xa40)]=0x1,_0x29d847[_0x7a94cd(0xb82)]=_0x263e91[_0xca343d(0x49a)+_0xca343d(0xa64)+'t'](_0x1feefb),_0x342539[_0x350617(0xabc)](_0x263e91[_0x7a94cd(0x482)+_0x1abc03(0x437)+_0x7a94cd(0x8aa)]());const _0x5442dc={};_0x5442dc[_0xca343d(0xa40)]=0x1,_0x43e88f[_0x350617(0xabc)]([_0x263e91[_0x1abc03(0x49a)+_0x7a94cd(0xa64)+'t'](_0x5442dc),_0x96d338[_0x350617(0x5e2)](_0x263e91[_0x5735f5(0x9ee)+_0x7a94cd(0x18e)],-0x4d8+0xb*0x8f+-0x14c)]);}}return Promise[_0x7a94cd(0xae5)]([Promise[_0xca343d(0xae5)](_0x342539),_0x43e88f]);}})[_0x131588(0x1fc)](function(_0x56ef85){const _0x159f51=_0xb1ce91,_0xee3c6b=_0x3339d9,_0xd4dd6c=_0xb1ce91,_0x595b33=_0xb1ce91,_0x25199a=_0xb1ce91,_0x30d31e={'WWPTv':function(_0x2cea6b,_0x280d02){const _0x568b3=_0x2881;return _0x23705c[_0x568b3(0xac6)](_0x2cea6b,_0x280d02);},'lEsBV':_0x23705c[_0x159f51(0x462)],'IRmmh':function(_0x362763,_0x5b9cab){const _0x31164f=_0x159f51;return _0x23705c[_0x31164f(0xc78)](_0x362763,_0x5b9cab);},'uWiQe':_0x23705c[_0x159f51(0x680)],'GVsqb':_0x23705c[_0x159f51(0x459)],'DBwoq':_0x23705c[_0xee3c6b(0x96c)],'FPBzR':_0x23705c[_0x25199a(0x55a)],'gvYSy':function(_0x57183b,_0x2ef939){const _0x5c14e8=_0xee3c6b;return _0x23705c[_0x5c14e8(0xc78)](_0x57183b,_0x2ef939);},'caEZi':function(_0x4c29c4,_0x170054){const _0x262498=_0xee3c6b;return _0x23705c[_0x262498(0x332)](_0x4c29c4,_0x170054);},'RIcxx':_0x23705c[_0xd4dd6c(0x53b)],'zTbEr':function(_0x4c07af,_0xcc8823){const _0x13b804=_0xd4dd6c;return _0x23705c[_0x13b804(0x853)](_0x4c07af,_0xcc8823);},'CBFtS':_0x23705c[_0x25199a(0xb66)],'gTaXL':function(_0x4f1076,_0x1bd791){const _0xafd742=_0x25199a;return _0x23705c[_0xafd742(0x256)](_0x4f1076,_0x1bd791);},'KAsrW':_0x23705c[_0xd4dd6c(0xbee)],'EqSRV':function(_0x47aa47,_0xc59003){const _0x482c05=_0xd4dd6c;return _0x23705c[_0x482c05(0x256)](_0x47aa47,_0xc59003);},'IIzLY':function(_0x4bfb62,_0x4a4773){const _0x1b8165=_0x595b33;return _0x23705c[_0x1b8165(0x853)](_0x4bfb62,_0x4a4773);},'xAygf':_0x23705c[_0x159f51(0xb1a)],'afxBp':function(_0x263e92,_0x103cdd){const _0x4c5d51=_0x595b33;return _0x23705c[_0x4c5d51(0x81e)](_0x263e92,_0x103cdd);},'wxPVL':function(_0x4deef2,_0x5b4fec){const _0x3dcd3c=_0xd4dd6c;return _0x23705c[_0x3dcd3c(0x256)](_0x4deef2,_0x5b4fec);},'pJloh':_0x23705c[_0xd4dd6c(0x2d3)],'wUTnZ':function(_0x168c80,_0x579b26){const _0x4411f9=_0xee3c6b;return _0x23705c[_0x4411f9(0x332)](_0x168c80,_0x579b26);},'xOeVF':function(_0x2591db,_0x574bff){const _0x1edb64=_0xd4dd6c;return _0x23705c[_0x1edb64(0xb23)](_0x2591db,_0x574bff);},'OTHWJ':function(_0x5921cd,_0x476feb){const _0x339ade=_0x159f51;return _0x23705c[_0x339ade(0x81e)](_0x5921cd,_0x476feb);},'oHbVA':_0x23705c[_0x159f51(0x760)],'PYZpO':function(_0x348d92,_0x372e13){const _0x3faf5e=_0xee3c6b;return _0x23705c[_0x3faf5e(0xac6)](_0x348d92,_0x372e13);},'eTRKv':function(_0xa0a923,_0x5a58a3){const _0x391747=_0x159f51;return _0x23705c[_0x391747(0x2e1)](_0xa0a923,_0x5a58a3);},'odjFe':_0x23705c[_0x595b33(0x5ab)],'yqyvh':function(_0x35235f,_0x3f1d20){const _0x4cac10=_0x159f51;return _0x23705c[_0x4cac10(0xbf5)](_0x35235f,_0x3f1d20);},'ZvZQj':_0x23705c[_0xee3c6b(0x747)],'ZsLXX':function(_0x1eed8e,_0x575342){const _0x1e5322=_0xd4dd6c;return _0x23705c[_0x1e5322(0xbde)](_0x1eed8e,_0x575342);},'jpuEY':_0x23705c[_0x159f51(0x66a)],'qXvaj':function(_0x4004bb,_0x312417){const _0x111d0e=_0x595b33;return _0x23705c[_0x111d0e(0x939)](_0x4004bb,_0x312417);},'mUaiB':function(_0x37bce1,_0x1fb92d){const _0x523a3f=_0x595b33;return _0x23705c[_0x523a3f(0x423)](_0x37bce1,_0x1fb92d);},'cvJyE':function(_0x50b93e,_0x431737){const _0x22f714=_0xee3c6b;return _0x23705c[_0x22f714(0xaa8)](_0x50b93e,_0x431737);},'MjwCt':function(_0xf84123,_0x506415){const _0x63b524=_0x159f51;return _0x23705c[_0x63b524(0x423)](_0xf84123,_0x506415);},'jwPhk':function(_0x5a802d,_0x51d4ef){const _0x21839f=_0x159f51;return _0x23705c[_0x21839f(0xc78)](_0x5a802d,_0x51d4ef);},'ErEeQ':function(_0x3fbd47,_0x196986){const _0x1c3bb7=_0x595b33;return _0x23705c[_0x1c3bb7(0xadf)](_0x3fbd47,_0x196986);},'iDafJ':_0x23705c[_0x595b33(0xadb)],'TLtOZ':function(_0x7f1a7d,_0x45029c){const _0x177d75=_0xd4dd6c;return _0x23705c[_0x177d75(0x396)](_0x7f1a7d,_0x45029c);},'KpYKk':_0x23705c[_0x159f51(0xa11)],'jmatV':function(_0x14a32b,_0x17c9b3){const _0x1c6d66=_0x159f51;return _0x23705c[_0x1c6d66(0xb01)](_0x14a32b,_0x17c9b3);},'DBGZC':_0x23705c[_0x25199a(0xb44)],'gbqGW':function(_0x40eaaa,_0x111460){const _0x43fac9=_0x159f51;return _0x23705c[_0x43fac9(0x423)](_0x40eaaa,_0x111460);},'LaUni':function(_0x5a921c,_0x406258){const _0x3be848=_0xee3c6b;return _0x23705c[_0x3be848(0x256)](_0x5a921c,_0x406258);},'Uyqis':function(_0x339f3f,_0xb21d0){const _0x3ec11a=_0xee3c6b;return _0x23705c[_0x3ec11a(0xb01)](_0x339f3f,_0xb21d0);},'EpoFN':function(_0x4005b0,_0x1593ae){const _0x53d9ed=_0x159f51;return _0x23705c[_0x53d9ed(0xbf5)](_0x4005b0,_0x1593ae);},'nCrcf':function(_0x279900,_0xa527f5){const _0xdb321a=_0xee3c6b;return _0x23705c[_0xdb321a(0xb01)](_0x279900,_0xa527f5);},'Zfvwh':function(_0x34b6f6,_0x3e292a){const _0x1867d1=_0xd4dd6c;return _0x23705c[_0x1867d1(0x939)](_0x34b6f6,_0x3e292a);},'hlYIn':_0x23705c[_0x159f51(0x37b)],'iFqqp':function(_0x31cebf,_0x45cb21){const _0x1697c7=_0x595b33;return _0x23705c[_0x1697c7(0x307)](_0x31cebf,_0x45cb21);},'KdOtp':_0x23705c[_0x595b33(0xc80)],'KcTbL':function(_0x5516d1,_0x590061){const _0x45a9e8=_0xee3c6b;return _0x23705c[_0x45a9e8(0x7ff)](_0x5516d1,_0x590061);},'tmDyu':function(_0x59c593,_0xec5888){const _0x5e06d7=_0xee3c6b;return _0x23705c[_0x5e06d7(0x853)](_0x59c593,_0xec5888);},'jHpAc':_0x23705c[_0x159f51(0x79b)],'xnYOG':function(_0x5e1028,_0x3ceec6){const _0x8e42e5=_0x159f51;return _0x23705c[_0x8e42e5(0xbf5)](_0x5e1028,_0x3ceec6);},'INmVk':function(_0xe1bbe6,_0x47fab3){const _0x26f4ad=_0xd4dd6c;return _0x23705c[_0x26f4ad(0xac6)](_0xe1bbe6,_0x47fab3);},'LrUNr':function(_0x3796b5,_0x2e514b){const _0x2f165b=_0x25199a;return _0x23705c[_0x2f165b(0x332)](_0x3796b5,_0x2e514b);},'LKSgG':_0x23705c[_0x25199a(0x1dc)],'Cmvqj':function(_0x5af7f9,_0x33d7a3){const _0xd4e8fc=_0xee3c6b;return _0x23705c[_0xd4e8fc(0xc5f)](_0x5af7f9,_0x33d7a3);},'TPKBT':function(_0x747702,_0x28247e){const _0x40852a=_0x159f51;return _0x23705c[_0x40852a(0x45b)](_0x747702,_0x28247e);},'hdBxZ':function(_0x5d2399,_0x4c6594){const _0xee18fc=_0x159f51;return _0x23705c[_0xee18fc(0x46a)](_0x5d2399,_0x4c6594);},'IqNWY':_0x23705c[_0x595b33(0xcd5)],'SMumF':_0x23705c[_0xd4dd6c(0x1cb)],'lbLkR':function(_0x107a44,_0x1bd487){const _0xa60089=_0x25199a;return _0x23705c[_0xa60089(0x727)](_0x107a44,_0x1bd487);},'TaUua':_0x23705c[_0x595b33(0x176)],'eBJyo':_0x23705c[_0x159f51(0xa0c)],'nOWIa':function(_0x511180,_0x23eec8){const _0x51990d=_0xd4dd6c;return _0x23705c[_0x51990d(0xbde)](_0x511180,_0x23eec8);},'EDHQG':function(_0x3f2754,_0xd810e7){const _0x19eee5=_0xee3c6b;return _0x23705c[_0x19eee5(0x97d)](_0x3f2754,_0xd810e7);},'QjJlb':function(_0x40027c,_0x53abfe){const _0x49dd12=_0x159f51;return _0x23705c[_0x49dd12(0xc01)](_0x40027c,_0x53abfe);},'Bkfwc':_0x23705c[_0x159f51(0x704)],'Ishzm':function(_0x205e44,_0xf16843){const _0x4c52fb=_0x595b33;return _0x23705c[_0x4c52fb(0x922)](_0x205e44,_0xf16843);},'byaeM':function(_0x3470a0,_0x487055){const _0x531dbb=_0xee3c6b;return _0x23705c[_0x531dbb(0x6fb)](_0x3470a0,_0x487055);},'TjSmQ':function(_0x3b9f38,_0x38b411){const _0x5ac8df=_0xee3c6b;return _0x23705c[_0x5ac8df(0xbf8)](_0x3b9f38,_0x38b411);},'tNnmy':_0x23705c[_0xd4dd6c(0x97b)],'XDkjE':function(_0x41b7b3,_0x468546){const _0x4d6a16=_0xee3c6b;return _0x23705c[_0x4d6a16(0xaab)](_0x41b7b3,_0x468546);},'LElxD':function(_0x2f6d36,_0x3aaf29){const _0x33a479=_0x159f51;return _0x23705c[_0x33a479(0x853)](_0x2f6d36,_0x3aaf29);},'RGXva':function(_0x3651dc,_0x7d2964){const _0x5ccc48=_0xee3c6b;return _0x23705c[_0x5ccc48(0x6fb)](_0x3651dc,_0x7d2964);},'eIxMS':function(_0x4e5052,_0x6e2864){const _0x3432a7=_0x595b33;return _0x23705c[_0x3432a7(0xa21)](_0x4e5052,_0x6e2864);},'exmqO':function(_0x33e5bd,_0x5d0725){const _0x24b805=_0x595b33;return _0x23705c[_0x24b805(0x4e0)](_0x33e5bd,_0x5d0725);},'dZiEl':function(_0x10db47,_0x27aabd){const _0x25e17a=_0x159f51;return _0x23705c[_0x25e17a(0x5a4)](_0x10db47,_0x27aabd);},'lZyqe':_0x23705c[_0xee3c6b(0x3a9)],'lAZLY':_0x23705c[_0xd4dd6c(0x485)],'iwAPI':_0x23705c[_0xee3c6b(0x18f)],'YlIhD':function(_0x4053aa,_0x5331d2){const _0x38ce92=_0xd4dd6c;return _0x23705c[_0x38ce92(0x341)](_0x4053aa,_0x5331d2);},'aILbs':_0x23705c[_0xd4dd6c(0xae2)],'nydKs':_0x23705c[_0x159f51(0x388)],'oztXE':_0x23705c[_0x595b33(0x38a)],'FJcNH':_0x23705c[_0x159f51(0x691)],'cyRPA':function(_0x44dc60,_0x23d5bb){const _0x593400=_0xee3c6b;return _0x23705c[_0x593400(0xac0)](_0x44dc60,_0x23d5bb);},'NroFY':_0x23705c[_0xd4dd6c(0x689)],'otRCO':_0x23705c[_0xd4dd6c(0x54e)],'RFyja':function(_0x4ff0d9,_0x20f2e6){const _0x3672a1=_0xd4dd6c;return _0x23705c[_0x3672a1(0x4e0)](_0x4ff0d9,_0x20f2e6);},'UMrBT':function(_0x2b7750,_0x5eca25){const _0x1c9a6f=_0xee3c6b;return _0x23705c[_0x1c9a6f(0x4e0)](_0x2b7750,_0x5eca25);},'RaATF':function(_0x101ee6,_0x1c8367){const _0x1a1746=_0xd4dd6c;return _0x23705c[_0x1a1746(0xa21)](_0x101ee6,_0x1c8367);},'wAtwm':function(_0x5583d2,_0x4bf1ac){const _0x5b29d2=_0x159f51;return _0x23705c[_0x5b29d2(0x5dc)](_0x5583d2,_0x4bf1ac);},'HUErw':_0x23705c[_0x159f51(0x172)],'zPaTb':_0x23705c[_0x159f51(0x492)],'aNrNZ':function(_0x46399f,_0xed3a62){const _0x55fe9c=_0x25199a;return _0x23705c[_0x55fe9c(0x4e0)](_0x46399f,_0xed3a62);},'hOCbg':function(_0xc8fd8c,_0xa2ccc3){const _0x7bcee6=_0xd4dd6c;return _0x23705c[_0x7bcee6(0x4e0)](_0xc8fd8c,_0xa2ccc3);},'JEAUo':function(_0x2b9d23,_0x51c8f4){const _0x5a267d=_0x25199a;return _0x23705c[_0x5a267d(0x547)](_0x2b9d23,_0x51c8f4);},'Qsmlu':_0x23705c[_0x159f51(0xbfe)],'gFwmL':_0x23705c[_0xd4dd6c(0xbce)],'FqzYb':function(_0x44dbd4,_0x5c4d63){const _0x4e8152=_0x159f51;return _0x23705c[_0x4e8152(0x5dc)](_0x44dbd4,_0x5c4d63);},'DwzGw':_0x23705c[_0x159f51(0x3f4)],'DOQAs':_0x23705c[_0x595b33(0x4c4)]};if(_0x23705c[_0xee3c6b(0x962)](_0x23705c[_0x159f51(0x1fd)],_0x23705c[_0xd4dd6c(0x876)])){for(var _0x5b7b56=-0x19ce+-0x288+0x1c56;_0x23705c[_0xee3c6b(0xa21)](_0x5b7b56,_0x56ef85[0x1a01*-0x1+-0x17bc+0x31bd][_0x595b33(0x58b)+'h']);++_0x5b7b56){if(_0x23705c[_0xd4dd6c(0xc3e)](_0x23705c[_0x595b33(0x504)],_0x23705c[_0xd4dd6c(0x39e)])){if(_0x4317e7){const _0x3962a5=_0x7f90ba[_0xd4dd6c(0x982)](_0x2514c1,arguments);return _0x4d42a7=null,_0x3962a5;}}else{var _0x4e7ab9=_0x56ef85[0xe6*0x5+-0x3b*0x8+-0x2a6*0x1][_0x5b7b56];_0x29d847[_0xee3c6b(0xb5b)+'ge']=_0x56ef85[-0x783*0x5+0x1*-0x1b41+-0x40d1*-0x1][_0x5b7b56][-0xc2e*0x1+-0x1390+0x1fbf],_0x29d847[_0xee3c6b(0xb82)]=_0x56ef85[0x1aff*0x1+-0x13*-0xe9+0xec3*-0x3][_0x5b7b56][-0x8da+0x7d6+0x104];var _0x2f4c12=_0x4e7ab9[_0x25199a(0x801)],_0x2ab2ae='',_0x5104fd='',_0x15f086='',_0x423bbb=_0x2f4c12[0x403*0x6+-0xd4*0x13+-0x856][_0x595b33(0x77f)+_0xee3c6b(0x1d7)][0x487+-0x2537+-0x3*-0xae7],_0x4e217f=_0x2f4c12[0x3fb*0x4+0x1*-0x168b+0x69f][_0x25199a(0x77f)+_0x595b33(0x1d7)][-0x2554+0x156e+0xfea];for(var _0xdc47c3 of _0x2f4c12){if(_0x23705c[_0xd4dd6c(0x962)](_0x23705c[_0xee3c6b(0x93f)],_0x23705c[_0x595b33(0xaee)])){if(_0x23705c[_0xd4dd6c(0xa21)](_0x23705c[_0xee3c6b(0x93b)](_0x29d847[_0x595b33(0xb82)][_0x595b33(0x635)],0xc9*0x1e+0x1135*0x2+-0x39f5),_0x23705c[_0x595b33(0x95d)](_0x4e217f,_0xdc47c3[_0x159f51(0x77f)+_0x25199a(0x1d7)][-0xbb5+-0x1*-0xa17+0x1a2]))){if(_0x23705c[_0x25199a(0xcd7)](_0x23705c[_0x25199a(0xa3b)],_0x23705c[_0xd4dd6c(0x71a)]))sentences[_0xd4dd6c(0xabc)]([_0x29d847[_0x25199a(0xb5b)+'ge'],_0x2ab2ae,_0x5104fd,_0x15f086]),_0x2ab2ae='',_0x5104fd='';else try{_0x23a863=_0x17771d[_0xd4dd6c(0x7f0)](_0x30d31e[_0x595b33(0x2e0)](_0xdbda9d,_0x86c120))[_0x30d31e[_0x595b33(0x49e)]],_0x157867='';}catch(_0x489284){_0x5a983f=_0x1892d7[_0x159f51(0x7f0)](_0x40ea1e)[_0x30d31e[_0x159f51(0x49e)]],_0x5793a5='';}}_0x4e217f=_0xdc47c3[_0x159f51(0x77f)+_0x159f51(0x1d7)][0x167*0x18+0x3*-0x702+0xbe*-0x11],_0x2ab2ae+=_0xdc47c3[_0x595b33(0x84b)];if(/[\.\?\!。,?!]$/[_0xd4dd6c(0x483)](_0xdc47c3[_0x25199a(0x84b)])){if(_0x23705c[_0x159f51(0x897)](_0x23705c[_0x595b33(0x2ff)],_0x23705c[_0x25199a(0x6a5)])){const _0x44c951={'AIfsQ':function(_0x1a747c,_0x5124ab){const _0x487c2f=_0x25199a;return _0x30d31e[_0x487c2f(0xb0d)](_0x1a747c,_0x5124ab);},'TJWwK':_0x30d31e[_0x159f51(0xaa2)]};_0x8dd23a[_0xd4dd6c(0xa6d)+_0x25199a(0xb08)+'t'](_0x30d31e[_0xee3c6b(0x1f5)],function(){const _0x578c6d=_0xee3c6b,_0x3faad3=_0x25199a;_0x44c951[_0x578c6d(0xc25)](_0x1dd514,_0x44c951[_0x3faad3(0x96d)]);});}else sentences[_0x595b33(0xabc)]([_0x29d847[_0x159f51(0xb5b)+'ge'],_0x2ab2ae,_0x5104fd,_0x15f086]),_0x2ab2ae='',_0x5104fd='';}if(_0x29d847[_0x159f51(0xb82)]&&_0x29d847[_0xd4dd6c(0xb82)][_0x595b33(0x635)]&&_0x29d847[_0xd4dd6c(0xb82)][_0xee3c6b(0x63a)+'t']){if(_0x23705c[_0x159f51(0x547)](_0x23705c[_0xd4dd6c(0xa6a)],_0x23705c[_0x25199a(0xa6a)]))_0x4ca995+=_0x929179[-0x5*0x6a1+-0x10c5+0x18f5*0x2][_0x159f51(0x1f7)][_0x159f51(0xb29)+'nt'];else{_0x23705c[_0xd4dd6c(0xad4)](_0xdc47c3[_0x595b33(0x77f)+_0x595b33(0x1d7)][-0x2*-0x11f8+-0xaa*0x1+-0x2342],_0x23705c[_0x595b33(0x242)](_0x29d847[_0xd4dd6c(0xb82)][_0x159f51(0x635)],-0x3*-0x11+-0x6b5*-0x4+-0x1*0x1b05))?_0x23705c[_0x159f51(0xc3e)](_0x23705c[_0xee3c6b(0xb04)],_0x23705c[_0x159f51(0x548)])?_0xaa565d+='':_0x5104fd='':_0x23705c[_0x159f51(0x962)](_0x23705c[_0x159f51(0xc99)],_0x23705c[_0xd4dd6c(0x23e)])?_0x5104fd='':_0x2ae447+=_0x1122df[-0x1*0x6d3+-0x1*-0xd4f+-0x67c][_0xd4dd6c(0x1f7)][_0xd4dd6c(0xb29)+'nt'];if(_0x23705c[_0x25199a(0xa21)](_0xdc47c3[_0xd4dd6c(0x77f)+_0xee3c6b(0x1d7)][-0x617*0x1+-0x6*0x38c+0x1b64],_0x23705c[_0xee3c6b(0x93b)](_0x29d847[_0x159f51(0xb82)][_0x25199a(0x63a)+'t'],-0xa6f+0x11b*-0x1b+0x1*0x284b)))_0x23705c[_0x25199a(0x88a)](_0x23705c[_0x595b33(0x2d4)],_0x23705c[_0x159f51(0x925)])?_0x5104fd+='':(_0xf68258=_0x58ebc2[_0x25199a(0x92b)+'ce'](_0x23705c[_0xee3c6b(0x332)](_0x23705c[_0x595b33(0x2da)],_0x23705c[_0x159f51(0xb23)](_0x309d3c,_0x309ced)),_0x57319c[_0x595b33(0xcc5)+_0x25199a(0xb85)][_0x2eeba9]),_0x3c1de6=_0x2c580e[_0xee3c6b(0x92b)+'ce'](_0x23705c[_0x159f51(0x81e)](_0x23705c[_0xd4dd6c(0xa7e)],_0x23705c[_0x25199a(0xb23)](_0x57b766,_0xaa43ad)),_0x193f00[_0xee3c6b(0xcc5)+_0x159f51(0xb85)][_0x33c787]),_0x4f7585=_0x33b865[_0x25199a(0x92b)+'ce'](_0x23705c[_0x159f51(0x396)](_0x23705c[_0x159f51(0x4a6)],_0x23705c[_0x25199a(0x3c5)](_0x289740,_0x2110ee)),_0x24a2d9[_0xd4dd6c(0xcc5)+_0x595b33(0xb85)][_0x14a60a]));else{if(_0x23705c[_0x159f51(0x4e0)](_0xdc47c3[_0x595b33(0x77f)+_0xee3c6b(0x1d7)][0x85b*0x1+-0x1*0x1acd+0x1277],_0x23705c[_0xee3c6b(0x242)](_0x23705c[_0x595b33(0x35d)](_0x29d847[_0xee3c6b(0xb82)][_0x159f51(0x63a)+'t'],0x1*0xddc+-0x1*0x1fe8+0x120e),0xd3*0x8+0xf*-0x8+-0x61d))){if(_0x23705c[_0x25199a(0x962)](_0x23705c[_0x595b33(0x740)],_0x23705c[_0xee3c6b(0x740)])){const _0x13da00=_0x30d31e[_0xee3c6b(0x1f8)][_0x159f51(0x73c)]('|');let _0x229d75=-0xe3d+-0x13a3+0x21e0;while(!![]){switch(_0x13da00[_0x229d75++]){case'0':_0xb3628=_0x38ae2e[_0xee3c6b(0x92b)+_0xee3c6b(0x6b6)](_0x30d31e[_0x159f51(0x2e0)](_0x30d31e[_0x159f51(0x9fc)],_0x30d31e[_0x595b33(0x9cd)](_0x41073b,_0x3ca868)),_0x30d31e[_0xee3c6b(0xa7f)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0x159f51(0x9cd)](_0x4369ed,_0x40a150)));continue;case'1':_0x50dabc=_0x1e0230[_0x25199a(0x92b)+_0xee3c6b(0x6b6)](_0x30d31e[_0x595b33(0x60a)](_0x30d31e[_0xd4dd6c(0x91c)],_0x30d31e[_0x25199a(0x9cd)](_0x5dec39,_0xba1399)),_0x30d31e[_0x25199a(0x2e0)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0xee3c6b(0x97e)](_0x257403,_0x5783f6)));continue;case'2':_0x222636=_0x53ffb5[_0x25199a(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0xd4dd6c(0x60a)](_0x30d31e[_0x595b33(0x8cb)],_0x30d31e[_0xee3c6b(0xc21)](_0x43c752,_0x317676)),_0x30d31e[_0x25199a(0x2e0)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0xee3c6b(0xc21)](_0x2619b7,_0x53b5b1)));continue;case'3':_0x4be4ae=_0x5e7fbe[_0x595b33(0x92b)+_0x595b33(0x6b6)](_0x30d31e[_0xd4dd6c(0x1c9)](_0x30d31e[_0xd4dd6c(0x46e)],_0x30d31e[_0xee3c6b(0xc21)](_0x12816d,_0x3cadf1)),_0x30d31e[_0x595b33(0xcff)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0xd4dd6c(0x348)](_0x37252e,_0x45e867)));continue;case'4':_0x487c13=_0x8c97ef[_0x159f51(0x92b)+_0x25199a(0x6b6)](_0x30d31e[_0xee3c6b(0x2e0)](_0x30d31e[_0xd4dd6c(0x9ef)],_0x30d31e[_0x159f51(0x348)](_0x5daa25,_0x244110)),_0x30d31e[_0x595b33(0x9da)](_0x30d31e[_0x595b33(0x6a6)],_0x30d31e[_0x159f51(0x9ca)](_0x3badf1,_0x385782)));continue;case'5':_0x25375e=_0x3741e6[_0x159f51(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0x159f51(0xa0d)](_0x30d31e[_0x595b33(0x9e7)],_0x30d31e[_0x159f51(0xc21)](_0x467ad0,_0x5e449e)),_0x30d31e[_0x159f51(0x580)](_0x30d31e[_0xd4dd6c(0x6a6)],_0x30d31e[_0x595b33(0xaf2)](_0x5395b6,_0x452a9f)));continue;case'6':_0x4b0c23=_0x4a877c[_0x159f51(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0x595b33(0xa0d)](_0x30d31e[_0x25199a(0x212)],_0x30d31e[_0xd4dd6c(0x9cd)](_0x5e720f,_0x467831)),_0x30d31e[_0xee3c6b(0x580)](_0x30d31e[_0xee3c6b(0x6a6)],_0x30d31e[_0x159f51(0xafe)](_0x4de107,_0x2749a5)));continue;case'7':_0x62f54f=_0x290ab1[_0x595b33(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0xd4dd6c(0x9da)](_0x30d31e[_0x25199a(0x855)],_0x30d31e[_0x595b33(0x3ef)](_0x87cd08,_0x2f174b)),_0x30d31e[_0xee3c6b(0xa7f)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0xee3c6b(0x97e)](_0x1d33d8,_0x2e5e13)));continue;case'8':_0x1e5729=_0x58cf1b[_0xd4dd6c(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0x595b33(0x580)](_0x30d31e[_0x25199a(0x439)],_0x30d31e[_0xee3c6b(0x9ca)](_0x38ed68,_0x13eb12)),_0x30d31e[_0x159f51(0x60a)](_0x30d31e[_0xee3c6b(0x6a6)],_0x30d31e[_0x595b33(0xa10)](_0x28ae84,_0x1643dd)));continue;case'9':_0x5dd074=_0xc24779[_0xee3c6b(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0xd4dd6c(0x8df)](_0x30d31e[_0x159f51(0x46e)],_0x30d31e[_0x25199a(0xa68)](_0x56a28b,_0x5c7f3e)),_0x30d31e[_0x595b33(0x248)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0x159f51(0x9ca)](_0x38c7db,_0x5660ef)));continue;case'10':_0x20bbb0=_0x4beab2[_0x25199a(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0x595b33(0x8df)](_0x30d31e[_0x25199a(0x8cb)],_0x30d31e[_0xee3c6b(0x30f)](_0x2f264b,_0x4dc437)),_0x30d31e[_0xee3c6b(0x2e0)](_0x30d31e[_0xee3c6b(0x6a6)],_0x30d31e[_0xd4dd6c(0xb2c)](_0x38c70a,_0x44861d)));continue;case'11':_0x1145b1=_0x1e48b6[_0x159f51(0x92b)+_0x25199a(0x6b6)](_0x30d31e[_0x25199a(0x1c9)](_0x30d31e[_0x25199a(0x745)],_0x30d31e[_0x25199a(0xa10)](_0x3820b3,_0x347bf2)),_0x30d31e[_0x595b33(0xc54)](_0x30d31e[_0xd4dd6c(0x6a6)],_0x30d31e[_0x159f51(0xa10)](_0x59cf9e,_0x2fd34d)));continue;case'12':_0x982e05=_0x11d1df[_0xee3c6b(0x92b)+_0x25199a(0x6b6)](_0x30d31e[_0x25199a(0x248)](_0x30d31e[_0xd4dd6c(0x4ee)],_0x30d31e[_0x595b33(0x30f)](_0x118f3a,_0x249e84)),_0x30d31e[_0x159f51(0x7f6)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0x159f51(0x3ef)](_0x52a819,_0x4e6120)));continue;case'13':_0x1591af=_0x23208a[_0xd4dd6c(0x92b)+_0x25199a(0x6b6)](_0x30d31e[_0xee3c6b(0x60a)](_0x30d31e[_0xee3c6b(0x2cd)],_0x30d31e[_0x25199a(0xa68)](_0x19882b,_0x14ca86)),_0x30d31e[_0x159f51(0x385)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0x159f51(0xa7a)](_0x4cba11,_0x5a3c98)));continue;case'14':_0x30c84e=_0x254be0[_0x159f51(0x92b)+_0x25199a(0x6b6)](_0x30d31e[_0x159f51(0x38e)](_0x30d31e[_0x595b33(0x9fc)],_0x30d31e[_0xd4dd6c(0x914)](_0x40b10d,_0x20ed53)),_0x30d31e[_0x159f51(0x908)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0x25199a(0x667)](_0x59e490,_0x2edf19)));continue;case'15':_0x2ff35a=_0x35435a[_0xee3c6b(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0xd4dd6c(0xcff)](_0x30d31e[_0x159f51(0x430)],_0x30d31e[_0xee3c6b(0xaf2)](_0x1fb152,_0x4f84fd)),_0x30d31e[_0xee3c6b(0x248)](_0x30d31e[_0x595b33(0x6a6)],_0x30d31e[_0xee3c6b(0x3d0)](_0x545b0f,_0x20e888)));continue;case'16':_0x867d2=_0x87db8d[_0xd4dd6c(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0xee3c6b(0x7f6)](_0x30d31e[_0xd4dd6c(0x400)],_0x30d31e[_0x25199a(0xbb1)](_0x194aaa,_0x362bc2)),_0x30d31e[_0x25199a(0x385)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0x159f51(0xaf2)](_0x5dbf26,_0x74e2ae)));continue;case'17':_0x54104b=_0x14f3db[_0xd4dd6c(0x92b)+_0x595b33(0x6b6)](_0x30d31e[_0x159f51(0x2b6)](_0x30d31e[_0xd4dd6c(0x26d)],_0x30d31e[_0x25199a(0x688)](_0x3a12e7,_0x35db09)),_0x30d31e[_0xee3c6b(0x9eb)](_0x30d31e[_0x159f51(0x6a6)],_0x30d31e[_0x159f51(0x97e)](_0x2fa6d8,_0x5857e4)));continue;case'18':_0x53e2ed=_0x55c1f8[_0x595b33(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0x595b33(0x35f)](_0x30d31e[_0xee3c6b(0x92f)],_0x30d31e[_0x595b33(0xa10)](_0x229e49,_0x44856f)),_0x30d31e[_0xd4dd6c(0x1c2)](_0x30d31e[_0x595b33(0x6a6)],_0x30d31e[_0xee3c6b(0x227)](_0x38a1f6,_0x28f812)));continue;case'19':_0x3397f6=_0x33782b[_0xee3c6b(0x92b)+_0x159f51(0x6b6)](_0x30d31e[_0x25199a(0x40d)](_0x30d31e[_0xee3c6b(0xc3c)],_0x30d31e[_0x595b33(0xaf2)](_0x3cd8ae,_0x2d04f9)),_0x30d31e[_0x159f51(0x35f)](_0x30d31e[_0xd4dd6c(0x6a6)],_0x30d31e[_0x595b33(0x9ca)](_0x12b8fa,_0x4852a2)));continue;case'20':_0x3a989a=_0x5c84d2[_0x159f51(0x92b)+_0x595b33(0x6b6)](_0x30d31e[_0x159f51(0x9eb)](_0x30d31e[_0x595b33(0x9a1)],_0x30d31e[_0x25199a(0x348)](_0x5c7931,_0x5b4d26)),_0x30d31e[_0x159f51(0x1e6)](_0x30d31e[_0xee3c6b(0x6a6)],_0x30d31e[_0xd4dd6c(0xa68)](_0x2bd68d,_0x410203)));continue;case'21':_0x5c6c0f=_0x52eeb3[_0xd4dd6c(0x92b)+_0xee3c6b(0x6b6)](_0x30d31e[_0x595b33(0xa7f)](_0x30d31e[_0xee3c6b(0x975)],_0x30d31e[_0x595b33(0x227)](_0x4d16b7,_0x304ac4)),_0x30d31e[_0xd4dd6c(0x1c2)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0x159f51(0x914)](_0x2b9161,_0x1df40f)));continue;case'22':_0x37fc1c=_0x267ac3[_0xd4dd6c(0x92b)+_0xee3c6b(0x6b6)](_0x30d31e[_0x25199a(0x38e)](_0x30d31e[_0xd4dd6c(0x263)],_0x30d31e[_0x25199a(0x9c0)](_0x2cfa8f,_0x7edca9)),_0x30d31e[_0x159f51(0x38e)](_0x30d31e[_0x595b33(0x6a6)],_0x30d31e[_0x159f51(0x72f)](_0x5a85e6,_0x699106)));continue;case'23':_0x558157=_0x3a1928[_0x25199a(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0xee3c6b(0x2b2)](_0x30d31e[_0x595b33(0x42b)],_0x30d31e[_0x159f51(0xb2c)](_0x279302,_0x959121)),_0x30d31e[_0x595b33(0x1ac)](_0x30d31e[_0xee3c6b(0x6a6)],_0x30d31e[_0x25199a(0x407)](_0x2721af,_0x2b3b40)));continue;case'24':_0x4e84e8=_0x25a732[_0x159f51(0x92b)+_0xd4dd6c(0x6b6)](_0x30d31e[_0xee3c6b(0x246)](_0x30d31e[_0x159f51(0x634)],_0x30d31e[_0xee3c6b(0x711)](_0x1826c1,_0x3b9525)),_0x30d31e[_0xd4dd6c(0x884)](_0x30d31e[_0x25199a(0x6a6)],_0x30d31e[_0x159f51(0xb6c)](_0x518883,_0x36fc00)));continue;}break;}}else _0x5104fd+='';}else _0x23705c[_0x159f51(0x2d7)](_0x23705c[_0xd4dd6c(0xada)],_0x23705c[_0x25199a(0x1a1)])?_0x5104fd+='':(_0x185030=_0x23705c[_0xd4dd6c(0x9d4)](_0x56e478,_0x5b436b[_0xd4dd6c(0xb29)+_0x159f51(0x66c)+_0xd4dd6c(0x514)]),_0x427409=new _0x2bfd2c(_0x559602[_0x25199a(0xb29)+_0xd4dd6c(0x66c)+_0x25199a(0x514)][_0xee3c6b(0x2dc)+_0xd4dd6c(0x732)](!![]))[_0x595b33(0x7f0)]());}}}_0x15f086=Math[_0x595b33(0x972)](_0x23705c[_0x25199a(0x5fe)](_0xdc47c3[_0xee3c6b(0x77f)+_0xd4dd6c(0x1d7)][-0x3*0xc4a+0x180a+0xcd9],_0xdc47c3[_0xd4dd6c(0x63a)+'t']));}else _0x36487a='';}}}sentences[_0x159f51(0x2ca)]((_0x5d7e44,_0x52d4cd)=>{const _0x4548fd=_0x159f51,_0x446dcc=_0xd4dd6c,_0x3ab473=_0x25199a,_0xcff512=_0x159f51,_0x4ea6e8=_0x595b33,_0x3a25d2={'NFXCZ':function(_0x410208,_0x5e5b3a){const _0x46e47f=_0x2881;return _0x30d31e[_0x46e47f(0x1e6)](_0x410208,_0x5e5b3a);},'XaVhQ':_0x30d31e[_0x4548fd(0x49e)]};if(_0x30d31e[_0x446dcc(0x48c)](_0x30d31e[_0x4548fd(0x2f3)],_0x30d31e[_0x4548fd(0xa97)])){if(_0x30d31e[_0x4548fd(0xb0a)](_0x5d7e44[-0x25d0+-0x6b*0x4d+0x45ff*0x1],_0x52d4cd[-0x1cb*0x6+0x2c2+0x800])){if(_0x30d31e[_0x4ea6e8(0x48c)](_0x30d31e[_0x3ab473(0x5fd)],_0x30d31e[_0x446dcc(0xa0e)]))return-(-0xed7+-0x277*0x2+0x13c6);else _0x955c2e+=_0x512505;}if(_0x30d31e[_0x4ea6e8(0x53a)](_0x5d7e44[0x2593+0x191*-0x5+-0x1dbe],_0x52d4cd[-0x11*-0x73+-0x76*0x12+-0x1*-0xa9])){if(_0x30d31e[_0x3ab473(0x5ed)](_0x30d31e[_0x3ab473(0x17e)],_0x30d31e[_0x4548fd(0x5ec)])){var _0xd3705=new _0x5a5fcf(_0x195739),_0x44133e='';for(var _0x1dbeba=0x1e37+0x917+-0x274e;_0x30d31e[_0x4ea6e8(0xb0a)](_0x1dbeba,_0xd3705[_0xcff512(0x780)+_0xcff512(0x349)]);_0x1dbeba++){_0x44133e+=_0x4ef737[_0x4ea6e8(0x177)+_0x4ea6e8(0xb8e)+_0x4548fd(0x408)](_0xd3705[_0x1dbeba]);}return _0x44133e;}else return 0xfee+0x2429*0x1+0x76*-0x71;}if(_0x30d31e[_0x3ab473(0x68a)](_0x5d7e44[-0x1c5*0x1+-0x4*0x191+0x80b][_0x4ea6e8(0x58b)+'h'],0x9f6+0x953+0x1*-0x1348)&&_0x30d31e[_0x4ea6e8(0x29b)](_0x52d4cd[-0x211*0xd+-0x1ec5*-0x1+-0x3e6*0x1][_0x4ea6e8(0x58b)+'h'],0x211d+0x2619*0x1+-0x1*0x4735)&&_0x30d31e[_0xcff512(0x966)](_0x5d7e44[-0x24f4+0x18a3+-0x5*-0x277][-0xb61*0x3+0x1966+0x1*0x8bd],_0x52d4cd[0x28c+-0x1a79+-0x1*-0x17ef][0x17*-0xe+-0xaa3*0x3+0x212b])){if(_0x30d31e[_0x4548fd(0x51e)](_0x30d31e[_0xcff512(0x6d1)],_0x30d31e[_0x4ea6e8(0x5cd)]))_0x11d57d[_0xcff512(0x65f)](_0x42a8d6);else return-(-0x141b+0xc11*-0x1+-0x202d*-0x1);}if(_0x30d31e[_0x3ab473(0x68a)](_0x5d7e44[0x1*0x13f4+0x1fa2+-0x3394][_0xcff512(0x58b)+'h'],-0x25*-0x17+-0xc18+0x8c6)&&_0x30d31e[_0x4ea6e8(0xaac)](_0x52d4cd[-0xf1*0x1c+0x24*-0x4+0x1aee][_0x3ab473(0x58b)+'h'],0x319+0x1cf5+-0x200d)&&_0x30d31e[_0x446dcc(0x699)](_0x5d7e44[0x21a+0x1*-0x7c5+-0x5ad*-0x1][0x12aa+0x3*0x409+0x1*-0x1ec5],_0x52d4cd[0x1fb6+0x2c1*0x5+0x2d79*-0x1][0x1637*0x1+-0x2*-0xf79+-0x3529])){if(_0x30d31e[_0x4ea6e8(0x43e)](_0x30d31e[_0x4ea6e8(0x960)],_0x30d31e[_0x4ea6e8(0x960)]))_0x4aa827=_0x3e1dae[_0x3ab473(0x7f0)](_0x30d31e[_0x4548fd(0x35f)](_0x45d97a,_0x55e4c8))[_0x30d31e[_0x446dcc(0x49e)]],_0x556fc1='';else return 0xa9b+0xb56+-0x3a8*0x6;}if(_0x30d31e[_0x4548fd(0x966)](_0x5d7e44[-0x1*0x1309+-0x282+0x3e*0x59],_0x52d4cd[0xe1c+-0x2300+0x14e7*0x1])){if(_0x30d31e[_0x3ab473(0x51e)](_0x30d31e[_0x4548fd(0x9bc)],_0x30d31e[_0xcff512(0x9bc)]))return-(-0x1c6a+-0xa67*-0x1+0x1204);else _0x453fd3[_0x4548fd(0x7f5)](_0xdb3f50);}if(_0x30d31e[_0x4548fd(0x68a)](_0x5d7e44[0x12bd+-0x1b4e+0x24*0x3d],_0x52d4cd[0x1*-0xa7+-0x158b*0x1+0x5*0x471])){if(_0x30d31e[_0xcff512(0x659)](_0x30d31e[_0x3ab473(0x5da)],_0x30d31e[_0x446dcc(0x1e9)]))try{_0x3b689b=_0x5e5a40[_0x4ea6e8(0x7f0)](_0x3a25d2[_0x446dcc(0x5f0)](_0x3f0265,_0x1b9b1e))[_0x3a25d2[_0x446dcc(0x3bc)]],_0x47032b='';}catch(_0x4529cc){_0xa8ca6f=_0x599fc0[_0xcff512(0x7f0)](_0x385039)[_0x3a25d2[_0x446dcc(0x3bc)]],_0x1f50bb='';}else return 0x2336+0xd74+-0x30a9;}return 0x1dfa+0x1d0d+-0x3b07;}else{const _0x19a9b4={'tpLwV':function(_0x7c9958,_0x1f1dc0){const _0x468789=_0x4548fd;return _0x30d31e[_0x468789(0x53a)](_0x7c9958,_0x1f1dc0);},'BkiXP':function(_0x2d06b7,_0x1640c4){const _0x2dc5e7=_0x4548fd;return _0x30d31e[_0x2dc5e7(0xcf0)](_0x2d06b7,_0x1640c4);},'WmpJq':_0x30d31e[_0xcff512(0x99f)],'bJFXz':function(_0x323a48,_0x554d23){const _0x24f2a5=_0x4ea6e8;return _0x30d31e[_0x24f2a5(0x7f6)](_0x323a48,_0x554d23);},'KXWDd':function(_0x307785,_0x195b4d){const _0x4da61d=_0x4ea6e8;return _0x30d31e[_0x4da61d(0x38e)](_0x307785,_0x195b4d);},'OqFBo':_0x30d31e[_0x4548fd(0x1eb)],'CFAbx':function(_0x5a0a2a,_0x47ea6c){const _0x47c935=_0x4ea6e8;return _0x30d31e[_0x47c935(0x227)](_0x5a0a2a,_0x47ea6c);},'UtBGN':_0x30d31e[_0xcff512(0x25e)]};_0x513b15[_0x446dcc(0x7f0)](_0x5a1474[_0xcff512(0x991)+'es'][-0xc*-0x107+-0x5*0x267+-0x51][_0x3ab473(0x867)+'ge'][_0x446dcc(0xb29)+'nt'][_0x4548fd(0x92b)+_0xcff512(0x6b6)]('\x0a',''))[_0x3ab473(0x335)+'ch'](_0x2dcb92=>{const _0x1e5d3e=_0x3ab473,_0x23a38c=_0x3ab473,_0x5ecfa2=_0x446dcc,_0x1a2785=_0xcff512,_0x5a1225=_0x446dcc;if(_0x19a9b4[_0x1e5d3e(0x6aa)](_0x19a9b4[_0x1e5d3e(0x9cc)](_0x3c2b1a,_0x2dcb92)[_0x5ecfa2(0x58b)+'h'],-0x5a6+0x155f+-0xfb4))_0x39ea65[_0x23a38c(0x4f9)+_0x1e5d3e(0x354)+_0x5a1225(0x778)](_0x19a9b4[_0x5ecfa2(0x1c6)])[_0x5ecfa2(0x94b)+_0x5ecfa2(0xc37)]+=_0x19a9b4[_0x5ecfa2(0x363)](_0x19a9b4[_0x23a38c(0xa36)](_0x19a9b4[_0x1e5d3e(0xc67)],_0x19a9b4[_0x1a2785(0x652)](_0x458312,_0x2dcb92)),_0x19a9b4[_0x23a38c(0xa66)]);});}});}else return _0x23705c[_0x25199a(0x9d4)](_0x4a48c8,_0x23705c[_0x595b33(0x60d)](_0x1f72dc,_0x5f0561));})[_0x131588(0x51b)](function(_0x360317){const _0x33cc8e=_0x3339d9,_0x4a52eb=_0x131588,_0x395087=_0x3339d9,_0x4dbc42=_0xb1ce91;_0x23705c[_0x33cc8e(0x2c9)](_0x23705c[_0x4a52eb(0x4d3)],_0x23705c[_0x4a52eb(0x4d3)])?_0x13cd3b+=_0x588560:console[_0x4a52eb(0x65f)](_0x360317);}),modalele=[_0x96d338[_0x47c29d(0x989)]],sentencesContent='';for(let _0xad208f=0x18ec+0x3f9+-0xd*0x239;_0x96d338[_0x3339d9(0x19f)](_0xad208f,sentences[_0xb1ce91(0x58b)+'h']);_0xad208f++){if(_0x96d338[_0xb1ce91(0xb8f)](_0x96d338[_0x131588(0xc53)],_0x96d338[_0xb1ce91(0x300)])){if(_0x3b476a){const _0x43c2f6=_0x4b260f[_0xb1ce91(0x982)](_0x346c3a,arguments);return _0x92a28d=null,_0x43c2f6;}}else sentencesContent+=sentences[_0xad208f][-0x2143+0x1*0x50f+0x1c35];}const _0x198265={};_0x198265[_0x3339d9(0x357)+_0x4e8563(0x2ed)+'t']=sentencesContent,_0x198265[_0x3339d9(0x563)]=_0x21643c[_0xb1ce91(0xb29)+_0x3339d9(0x502)+_0x47c29d(0xcf9)][_0x3339d9(0x499)+_0x47c29d(0xad2)+_0x47c29d(0xc07)+_0x131588(0x19b)][_0x4e8563(0x190)+'e'],article=_0x198265;}else return-0x7ef+0x333*0xb+-0x1b41;}else{if(_0x96d338[_0xb1ce91(0x2b4)](_0x96d338[_0x4e8563(0x4ab)],_0x96d338[_0xb1ce91(0x4ab)]))modalele=_0x96d338[_0x3339d9(0xb02)](eleparse,_0x21643c[_0x4e8563(0xb29)+_0x3339d9(0x66c)+_0x4e8563(0x514)]),article=new Readability(_0x21643c[_0xb1ce91(0xb29)+_0x47c29d(0x66c)+_0x3339d9(0x514)][_0x131588(0x2dc)+_0x47c29d(0x732)](!![]))[_0x4e8563(0x7f0)]();else{let _0x2d8bed;try{_0x2d8bed=YmcdMA[_0x3339d9(0x701)](_0x39cae2,YmcdMA[_0x47c29d(0x423)](YmcdMA[_0x3339d9(0xc01)](YmcdMA[_0x3339d9(0xb88)],YmcdMA[_0x3339d9(0x39f)]),');'))();}catch(_0x1e062b){_0x2d8bed=_0x249069;}return _0x2d8bed;}}fulltext=article[_0x131588(0x357)+_0x47c29d(0x2ed)+'t'],fulltext=fulltext[_0x47c29d(0x92b)+_0x47c29d(0x6b6)]('\x0a\x0a','\x0a')[_0x4e8563(0x92b)+_0x47c29d(0x6b6)]('\x0a\x0a','\x0a');const _0x3509b3=/[?!;\?\n。………]/g;fulltext=fulltext[_0xb1ce91(0x73c)](_0x3509b3),fulltext=fulltext[_0x131588(0x82b)+'r'](_0x59cfae=>{const _0x2446b6=_0x47c29d,_0x3927da=_0x3339d9,_0x3cef93=_0x3339d9,_0x736c52=_0x47c29d,_0x4eaa5a=_0xb1ce91,_0x2f73bc={'cABdT':function(_0x44ba0e){const _0x34c73f=_0x2881;return _0x23705c[_0x34c73f(0x852)](_0x44ba0e);}};if(_0x23705c[_0x2446b6(0xcd7)](_0x23705c[_0x2446b6(0x6c3)],_0x23705c[_0x3cef93(0x6c3)]))rdtsnf[_0x2446b6(0x887)](_0x402bd1);else{const _0x335191=/^[0-9,\s]+$/;return!_0x335191[_0x3cef93(0x483)](_0x59cfae);}}),fulltext=fulltext[_0x47c29d(0x82b)+'r'](function(_0x22b2ec){const _0x19e74b=_0x3339d9,_0x3eb0ae=_0xb1ce91,_0x54c1d9=_0xb1ce91,_0x2f141a=_0xb1ce91;return _0x23705c[_0x19e74b(0xcfc)](_0x23705c[_0x19e74b(0xa1c)],_0x23705c[_0x19e74b(0x9dd)])?_0x22b2ec&&_0x22b2ec[_0x54c1d9(0x9f5)]():0x1c81+0x2b*-0xc7+-0x4ed*-0x1;}),optkeytext={'method':_0x96d338[_0xb1ce91(0xb93)],'headers':headers,'body':JSON[_0x131588(0x498)+_0x4e8563(0x806)]({'text':fulltext[_0x3339d9(0xcf8)]('\x0a')})},_0x96d338[_0x3339d9(0x5d1)](fetchRetry,_0x96d338[_0x3339d9(0xb5e)],-0x3*-0x3cb+0x3b7+0x8f*-0x1b,optkeytext)[_0x4e8563(0x1fc)](_0x4fc133=>_0x4fc133[_0xb1ce91(0x739)]())[_0xb1ce91(0x1fc)](_0x42311f=>{const _0xbd4a82=_0x3339d9,_0x2da904=_0xb1ce91,_0x16b284=_0xb1ce91,_0x2fe07e=_0x131588,_0x184c43=_0x47c29d;if(_0x96d338[_0xbd4a82(0xb59)](_0x96d338[_0x2da904(0x5ac)],_0x96d338[_0xbd4a82(0x5ac)])){keytextres=_0x96d338[_0x2da904(0x80d)](unique,_0x42311f),promptWebpage=_0x96d338[_0xbd4a82(0x821)](_0x96d338[_0xbd4a82(0x2d9)](_0x96d338[_0x184c43(0xca7)](_0x96d338[_0x2fe07e(0x9a9)],article[_0xbd4a82(0x563)]),'\x0a'),_0x96d338[_0x184c43(0x78f)]);for(el in modalele){if(_0x96d338[_0xbd4a82(0x8b8)](_0x96d338[_0xbd4a82(0xc0f)],_0x96d338[_0x2fe07e(0x520)])){if(_0x96d338[_0x2fe07e(0x19f)](_0x96d338[_0x2da904(0x676)](_0x96d338[_0x184c43(0x676)](promptWebpage,modalele[el]),'\x0a')[_0x2fe07e(0x58b)+'h'],-0xe*0x1e+0x2*-0x7f4+0x131c))promptWebpage=_0x96d338[_0x16b284(0x1ca)](_0x96d338[_0x2da904(0xbff)](promptWebpage,modalele[el]),'\x0a');}else _0x538b6f+=_0x2a58ee[0x1d8*-0x15+-0x10e2+0x379a][_0x2fe07e(0x1f7)][_0x16b284(0xb29)+'nt'];}promptWebpage=_0x96d338[_0x2da904(0x676)](promptWebpage,_0x96d338[_0xbd4a82(0x5c8)]),keySentencesCount=-0x2*-0x571+-0x1*-0x1113+-0x1bf5*0x1;for(st in keytextres){if(_0x96d338[_0x2da904(0x3d9)](_0x96d338[_0x184c43(0x4a1)],_0x96d338[_0x2fe07e(0x4a1)])){if(_0x96d338[_0x184c43(0x664)](_0x96d338[_0x2da904(0x5e2)](_0x96d338[_0x2fe07e(0x2db)](promptWebpage,keytextres[st]),'\x0a')[_0x16b284(0x58b)+'h'],0xc00+-0x1e27*-0x1+0xc7d*-0x3))promptWebpage=_0x96d338[_0x2da904(0x647)](_0x96d338[_0xbd4a82(0x2df)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x96d338[_0x16b284(0xb38)](keySentencesCount,0x2698+-0x7b4*0x4+-0x7c7);}else{_0x304cf7=0x112a+-0xbc5+-0x565;return;}}const _0x21ca71={};_0x21ca71[_0x2da904(0x1bd)]=_0x96d338[_0xbd4a82(0x175)],_0x21ca71[_0x16b284(0xb29)+'nt']=_0x96d338[_0x184c43(0xb17)];const _0x129053={};_0x129053[_0x2da904(0x1bd)]=_0x96d338[_0x2da904(0xb43)],_0x129053[_0x16b284(0xb29)+'nt']=promptWebpage;const _0x13c183={};_0x13c183[_0x16b284(0x1bd)]=_0x96d338[_0x16b284(0x999)],_0x13c183[_0x16b284(0xb29)+'nt']=_0x96d338[_0x16b284(0x265)],promptWeb=[_0x21ca71,_0x129053,_0x13c183];const _0x4ee67d={'method':_0x96d338[_0x184c43(0xb93)],'headers':headers,'body':_0x96d338[_0x16b284(0xc1c)](b64EncodeUnicode,JSON[_0x16b284(0x498)+_0x184c43(0x806)]({'messages':promptWeb[_0x2da904(0xade)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0x2*0x11ab+0x81*0x11+-0x17*-0x12a),prev_chat=document[_0xbd4a82(0x905)+_0x2da904(0x16a)+_0xbd4a82(0x3e2)](_0x96d338[_0x16b284(0x85b)])[_0x2fe07e(0x94b)+_0x2da904(0xc37)],_0x96d338[_0x16b284(0xae8)](fetch,_0x96d338[_0x2fe07e(0xbb6)],_0x4ee67d)[_0xbd4a82(0x1fc)](_0x1a0bf3=>{const _0x589f84=_0x2da904,_0x53dff2=_0x16b284,_0x3d8bd3=_0xbd4a82,_0x479565=_0x2da904,_0x289b07=_0xbd4a82,_0x3dc57a={'DbmlO':function(_0x25fd81,_0x3e71de){const _0x5a43ba=_0x2881;return _0x23705c[_0x5a43ba(0x383)](_0x25fd81,_0x3e71de);},'XfVLs':_0x23705c[_0x589f84(0x680)],'xinvJ':function(_0x199888,_0x42dc79){const _0x716dad=_0x589f84;return _0x23705c[_0x716dad(0x2d7)](_0x199888,_0x42dc79);},'brCZH':_0x23705c[_0x589f84(0x1c5)],'gWBVX':_0x23705c[_0x589f84(0xba2)],'UtCjg':function(_0x231c17,_0x356be4){const _0x1adfb4=_0x589f84;return _0x23705c[_0x1adfb4(0x897)](_0x231c17,_0x356be4);},'jkxLQ':_0x23705c[_0x479565(0x203)],'AXvOh':_0x23705c[_0x289b07(0xaef)],'dlYqt':function(_0x1a8002,_0x4bdbd6){const _0x3245ec=_0x3d8bd3;return _0x23705c[_0x3245ec(0x2bb)](_0x1a8002,_0x4bdbd6);},'AgdYO':function(_0x5ddbdf,_0x2d845d){const _0x564534=_0x479565;return _0x23705c[_0x564534(0x5bf)](_0x5ddbdf,_0x2d845d);},'nYTGl':_0x23705c[_0x289b07(0xc09)],'QZKaZ':function(_0x36e7e2,_0xc3ffc7){const _0x5a5e94=_0x479565;return _0x23705c[_0x5a5e94(0xac0)](_0x36e7e2,_0xc3ffc7);},'Ctwzq':_0x23705c[_0x3d8bd3(0xb16)],'uXUGf':_0x23705c[_0x3d8bd3(0xbc2)],'KIaqg':function(_0x59c43b,_0x373675){const _0x25bd72=_0x53dff2;return _0x23705c[_0x25bd72(0x962)](_0x59c43b,_0x373675);},'vDRnV':_0x23705c[_0x289b07(0x64b)],'ywQtt':function(_0x56916c,_0x2e778d){const _0x5b6037=_0x479565;return _0x23705c[_0x5b6037(0x962)](_0x56916c,_0x2e778d);},'VLLBn':_0x23705c[_0x479565(0xaa0)],'JAUiw':_0x23705c[_0x3d8bd3(0xb51)],'OHMxF':function(_0x48af4c,_0x2689d5){const _0x427cd9=_0x53dff2;return _0x23705c[_0x427cd9(0xbf8)](_0x48af4c,_0x2689d5);},'fvdTq':_0x23705c[_0x3d8bd3(0x462)],'XZgTl':function(_0x223b11,_0x4d00e5){const _0x49515a=_0x289b07;return _0x23705c[_0x49515a(0x897)](_0x223b11,_0x4d00e5);},'ogosA':_0x23705c[_0x479565(0x2e4)],'hOJAv':_0x23705c[_0x3d8bd3(0x6f5)],'biCZl':function(_0x592521,_0x5e8ace){const _0x350ff8=_0x53dff2;return _0x23705c[_0x350ff8(0xc20)](_0x592521,_0x5e8ace);},'kRWbn':_0x23705c[_0x3d8bd3(0x4c7)],'HeDWG':function(_0x4cc7ad,_0x46a2eb){const _0x3faddf=_0x589f84;return _0x23705c[_0x3faddf(0x8f2)](_0x4cc7ad,_0x46a2eb);},'mELly':_0x23705c[_0x289b07(0x8d5)],'dYSYe':_0x23705c[_0x589f84(0x637)],'XtCdi':function(_0x289629,_0x341bfa,_0x4a5169){const _0x29b035=_0x53dff2;return _0x23705c[_0x29b035(0x186)](_0x289629,_0x341bfa,_0x4a5169);},'WCCIz':function(_0x2eba1d,_0x4b69c4){const _0x133b53=_0x289b07;return _0x23705c[_0x133b53(0xa96)](_0x2eba1d,_0x4b69c4);},'BDgma':_0x23705c[_0x53dff2(0x490)],'PphLA':_0x23705c[_0x479565(0x4b1)],'ahlRt':_0x23705c[_0x479565(0xa67)],'GXIXz':function(_0x2e681e,_0x36a6ec){const _0x2c294a=_0x53dff2;return _0x23705c[_0x2c294a(0xa21)](_0x2e681e,_0x36a6ec);},'SGeuq':_0x23705c[_0x53dff2(0x201)],'aJgBx':function(_0x1cfb66,_0x44deec){const _0x110686=_0x3d8bd3;return _0x23705c[_0x110686(0x663)](_0x1cfb66,_0x44deec);},'hTDyC':_0x23705c[_0x479565(0x749)],'UUZPr':_0x23705c[_0x289b07(0x5c3)]};if(_0x23705c[_0x3d8bd3(0xc3e)](_0x23705c[_0x589f84(0x7b8)],_0x23705c[_0x289b07(0x7b8)])){const _0x585c90=_0x1a0bf3[_0x479565(0x370)][_0x289b07(0x84e)+_0x479565(0xacd)]();let _0x24cd3f='',_0x3b7728='';_0x585c90[_0x479565(0x350)]()[_0x53dff2(0x1fc)](function _0x3aac60({done:_0x56b08c,value:_0x1d6291}){const _0x53a5ae=_0x479565,_0x11107b=_0x53dff2,_0x3e4a53=_0x289b07,_0x3da96e=_0x479565,_0x21d461=_0x53dff2,_0x26c0f0={'NwQee':function(_0x2c257a,_0x1a66fd){const _0x305c1b=_0x2881;return _0x3dc57a[_0x305c1b(0x3be)](_0x2c257a,_0x1a66fd);},'qQtYt':function(_0x5c3025,_0x48e341){const _0xd99dd5=_0x2881;return _0x3dc57a[_0xd99dd5(0xac1)](_0x5c3025,_0x48e341);},'dzjHz':function(_0x47ac6d,_0x33ec72){const _0x51702c=_0x2881;return _0x3dc57a[_0x51702c(0xc4e)](_0x47ac6d,_0x33ec72);},'lQzRH':_0x3dc57a[_0x53a5ae(0x6f3)]};if(_0x3dc57a[_0x11107b(0x5c0)](_0x3dc57a[_0x53a5ae(0x41c)],_0x3dc57a[_0x53a5ae(0x41c)]))_0x47c6aa+=_0x113186[0x1422+0x26fe+-0x2*0x1d90][_0x53a5ae(0x1f7)][_0x53a5ae(0xb29)+'nt'];else{if(_0x56b08c)return;const _0x37204a=new TextDecoder(_0x3dc57a[_0x11107b(0x524)])[_0x3da96e(0x368)+'e'](_0x1d6291);return _0x37204a[_0x3e4a53(0x9f5)]()[_0x3da96e(0x73c)]('\x0a')[_0x3da96e(0x335)+'ch'](function(_0x36b7b3){const _0xd31617=_0x21d461,_0xe0d8d1=_0x3da96e,_0x34e1ad=_0x53a5ae,_0x4e78fe=_0x21d461,_0x2c605e=_0x11107b,_0x57b38c={'WMtgR':function(_0x1d5a75,_0x1fdbbf){const _0x763631=_0x2881;return _0x3dc57a[_0x763631(0x5f7)](_0x1d5a75,_0x1fdbbf);},'uswAn':_0x3dc57a[_0xd31617(0x959)]};if(_0x3dc57a[_0xe0d8d1(0x2c7)](_0x3dc57a[_0xe0d8d1(0x21d)],_0x3dc57a[_0xe0d8d1(0x49d)])){try{_0x3dc57a[_0x2c605e(0x7c9)](_0x3dc57a[_0xe0d8d1(0x47f)],_0x3dc57a[_0xe0d8d1(0x47f)])?document[_0x34e1ad(0x4f9)+_0xd31617(0x354)+_0xd31617(0x778)](_0x3dc57a[_0xe0d8d1(0x272)])[_0x4e78fe(0xbba)+_0xe0d8d1(0x1a9)]=document[_0x34e1ad(0x4f9)+_0x4e78fe(0x354)+_0x34e1ad(0x778)](_0x3dc57a[_0x4e78fe(0x272)])[_0x34e1ad(0xbba)+_0xe0d8d1(0x593)+'ht']:_0x34ae17[_0x4e78fe(0x386)+_0xd31617(0xa5b)+'d']=function(){const _0x9c1629=_0x2c605e,_0x54bbf5=_0x34e1ad;_0x57b38c[_0x9c1629(0x99e)](_0x54af34,_0x57b38c[_0x9c1629(0x7f1)]);};}catch(_0x1329c6){}_0x24cd3f='';if(_0x3dc57a[_0xd31617(0x5fa)](_0x36b7b3[_0x34e1ad(0x58b)+'h'],-0x8fc+-0xcd4+-0x2b*-0x82))_0x24cd3f=_0x36b7b3[_0x34e1ad(0x65a)](0x745*-0x2+0x23e6*0x1+0xaab*-0x2);if(_0x3dc57a[_0xe0d8d1(0xc9c)](_0x24cd3f,_0x3dc57a[_0x4e78fe(0xaa1)])){if(_0x3dc57a[_0xe0d8d1(0xb48)](_0x3dc57a[_0xd31617(0x2bc)],_0x3dc57a[_0x2c605e(0x3a5)]))_0x4288b7+='';else{lock_chat=-0xf93+0x56e+0xa25;return;}}let _0x5ea394;try{if(_0x3dc57a[_0x34e1ad(0x9f3)](_0x3dc57a[_0x4e78fe(0xb4c)],_0x3dc57a[_0x34e1ad(0xb4c)]))return-0x1f03+-0x219*0x4+-0x2*-0x13b4;else try{_0x3dc57a[_0xe0d8d1(0x80f)](_0x3dc57a[_0xd31617(0x316)],_0x3dc57a[_0x2c605e(0x577)])?(_0x5ea394=JSON[_0x2c605e(0x7f0)](_0x3dc57a[_0x4e78fe(0xac1)](_0x3b7728,_0x24cd3f))[_0x3dc57a[_0x34e1ad(0x82f)]],_0x3b7728=''):_0x1d2e84+=_0xec9749;}catch(_0x46ff05){if(_0x3dc57a[_0xe0d8d1(0x219)](_0x3dc57a[_0xe0d8d1(0x28a)],_0x3dc57a[_0x2c605e(0x9e0)])){const _0x3f8214=_0x58bd4a[_0x4e78fe(0x982)](_0x4d7ca6,arguments);return _0x544e70=null,_0x3f8214;}else _0x5ea394=JSON[_0x34e1ad(0x7f0)](_0x24cd3f)[_0x3dc57a[_0xd31617(0x82f)]],_0x3b7728='';}}catch(_0x2e3955){if(_0x3dc57a[_0x2c605e(0x19e)](_0x3dc57a[_0x34e1ad(0xbd1)],_0x3dc57a[_0x34e1ad(0xbd1)])){if(_0x26c0f0[_0xd31617(0x61a)](_0x26c0f0[_0x34e1ad(0x9b9)](_0x26c0f0[_0x34e1ad(0x9b9)](_0x247082,_0x584cda[_0x3b4eac]),'\x0a')[_0x2c605e(0x58b)+'h'],-0x26e+0x63c+-0x2*-0x107))_0x1c4b49=_0x26c0f0[_0x4e78fe(0x9b9)](_0x26c0f0[_0xe0d8d1(0x9b9)](_0xd0b9b4,_0x128c4d[_0x4d6999]),'\x0a');_0x4bf307=_0x26c0f0[_0x4e78fe(0x9b9)](_0x5899b4,-0x104d+-0x1721+0x5*0x7e3);}else _0x3b7728+=_0x24cd3f;}_0x5ea394&&_0x3dc57a[_0xd31617(0x5fa)](_0x5ea394[_0xe0d8d1(0x58b)+'h'],-0x1ae9+-0x227e*0x1+0xb*0x595)&&_0x5ea394[0x135c+0x1455+-0x469*0x9][_0x2c605e(0x1f7)][_0xe0d8d1(0xb29)+'nt']&&(_0x3dc57a[_0xd31617(0x900)](_0x3dc57a[_0xd31617(0x5e0)],_0x3dc57a[_0xe0d8d1(0x5e0)])?chatTemp+=_0x5ea394[-0x6be+0xfb8*0x1+-0x8fa][_0xd31617(0x1f7)][_0x2c605e(0xb29)+'nt']:_0x9ad2e7+=_0x53bbee[0x1*0x359+-0x166b+-0x1*-0x1312][_0x34e1ad(0x1f7)][_0x2c605e(0xb29)+'nt']),chatTemp=chatTemp[_0xd31617(0x92b)+_0x2c605e(0x6b6)]('\x0a\x0a','\x0a')[_0x34e1ad(0x92b)+_0xd31617(0x6b6)]('\x0a\x0a','\x0a'),document[_0x4e78fe(0x4f9)+_0xd31617(0x354)+_0x4e78fe(0x778)](_0x3dc57a[_0xd31617(0x327)])[_0xd31617(0x94b)+_0x34e1ad(0xc37)]='',_0x3dc57a[_0xd31617(0xbc6)](markdownToHtml,_0x3dc57a[_0x4e78fe(0xc4e)](beautify,chatTemp),document[_0x4e78fe(0x4f9)+_0xd31617(0x354)+_0x34e1ad(0x778)](_0x3dc57a[_0xd31617(0x327)])),document[_0x2c605e(0x905)+_0x4e78fe(0x16a)+_0xe0d8d1(0x3e2)](_0x3dc57a[_0xe0d8d1(0xc89)])[_0x34e1ad(0x94b)+_0x4e78fe(0xc37)]=_0x3dc57a[_0xe0d8d1(0xac1)](_0x3dc57a[_0x4e78fe(0xac1)](_0x3dc57a[_0x2c605e(0xac1)](prev_chat,_0x3dc57a[_0xe0d8d1(0x541)]),document[_0x34e1ad(0x4f9)+_0x34e1ad(0x354)+_0x4e78fe(0x778)](_0x3dc57a[_0x2c605e(0x327)])[_0x2c605e(0x94b)+_0x34e1ad(0xc37)]),_0x3dc57a[_0x34e1ad(0x3c2)]);}else{_0x377841=_0x26c0f0[_0xe0d8d1(0x2e7)](_0x4d1e63,_0x196861);const _0x321c6d={};return _0x321c6d[_0x34e1ad(0x84d)]=_0x26c0f0[_0x4e78fe(0xcb7)],_0x59d375[_0x4e78fe(0x4bb)+'e'][_0x2c605e(0xa1b)+'pt'](_0x321c6d,_0x59f442,_0x4c88aa);}}),_0x585c90[_0x53a5ae(0x350)]()[_0x3e4a53(0x1fc)](_0x3aac60);}});}else _0x41cdc5+=_0x170d12[_0x427381][-0x2405+-0x23*-0x31+-0x1d53*-0x1];})[_0x184c43(0x51b)](_0x18b7a2=>{const _0xcaf605=_0x16b284,_0x5d5f79=_0xbd4a82,_0x1af9f8=_0xbd4a82,_0x55bab6=_0x16b284,_0x1e800b=_0xbd4a82,_0x1e7964={};_0x1e7964[_0xcaf605(0xa2e)]=_0x23705c[_0x5d5f79(0x462)];const _0x20801e=_0x1e7964;_0x23705c[_0x5d5f79(0x897)](_0x23705c[_0x5d5f79(0xc90)],_0x23705c[_0x5d5f79(0xc90)])?console[_0x1af9f8(0x65f)](_0x23705c[_0x1e800b(0x42c)],_0x18b7a2):(_0xc4b7ca=_0x3bfcaf[_0xcaf605(0x7f0)](_0x4ef19f)[_0x20801e[_0x55bab6(0xa2e)]],_0x3ff114='');});}else _0x2c28e6+=_0x10c2ce[_0xbd4a82(0x177)+_0x184c43(0xb8e)+_0x2fe07e(0x408)](_0x3ea076[_0x3c054e]);});}},_0x1d05da=>{const _0x31c3db=_0x9e2bc1,_0x1601be=_0x3f0ef0,_0x2c96b1=_0x1eebcc,_0x5d244d=_0x2d0f02,_0x2abd4c=_0x36284b;if(_0x96d338[_0x31c3db(0x364)](_0x96d338[_0x31c3db(0x52d)],_0x96d338[_0x31c3db(0x52d)]))console[_0x1601be(0x7f5)](_0x1d05da);else{let _0x1a0233=-0x7*0xc8+-0x1018*0x1+0x170*0xf;for(let _0x3cbcaa of _0x488020){_0x1a0233+=_0x3cbcaa[_0x5d244d(0xb29)+'nt'][_0x5d244d(0x58b)+'h'];}return _0x1a0233;}});}function eleparse(_0x329032){const _0x419018=_0x2881,_0x564214=_0x2881,_0x49365e=_0x2881,_0x561f5a=_0x2881,_0x4281b1=_0x2881,_0x268dad={'JgFHe':function(_0x1157db,_0x3f2172){return _0x1157db>_0x3f2172;},'uGozL':function(_0x31247a,_0x18d459){return _0x31247a(_0x18d459);},'WUqit':_0x419018(0x296)+_0x564214(0x3df),'TTcVK':function(_0x25d6dc,_0x4a28b2){return _0x25d6dc+_0x4a28b2;},'nvbgb':_0x49365e(0x8e2)+_0x564214(0x820)+_0x564214(0x509)+_0x419018(0xae3)+_0x564214(0x235)+_0x419018(0x463)+_0x419018(0x1b0)+_0x564214(0x748)+_0x419018(0x286)+_0x4281b1(0x1e2)+_0x561f5a(0x8bf),'uzsXK':_0x419018(0xa98)+_0x4281b1(0x290),'ZMOmd':_0x49365e(0x991)+'es','SDCAL':_0x561f5a(0x8e4)+':','eASll':function(_0x1d5d53,_0x49b9ff){return _0x1d5d53(_0x49b9ff);},'QLdrK':_0x4281b1(0x1d8)+_0x4281b1(0x3d7),'sxQnH':_0x4281b1(0xaaa)+_0x4281b1(0x2fb),'ddVXj':_0x419018(0x296)+_0x564214(0x92d)+'t','klEAY':_0x561f5a(0xcb1),'rRrIV':function(_0x3bda05,_0x5734b4){return _0x3bda05(_0x5734b4);},'ROgjP':function(_0xeb2c8d,_0x3a8871){return _0xeb2c8d+_0x3a8871;},'zGxio':_0x564214(0x9c4)+'te','ncNHu':_0x564214(0xb4f)+_0x419018(0x513),'VDRSy':_0x419018(0x990)+'ss','sXJaq':_0x561f5a(0xa90)+_0x49365e(0x772)+_0x561f5a(0x21e),'VWqtl':_0x4281b1(0x226)+_0x561f5a(0x390)+'n','MbOri':_0x561f5a(0xa44)+_0x4281b1(0x8b9),'ITzck':_0x419018(0x91e),'rkLYu':function(_0x1ddbe6,_0x3977ff){return _0x1ddbe6<_0x3977ff;},'JaFXb':function(_0x1e1e71,_0x4fdd7c){return _0x1e1e71===_0x4fdd7c;},'mlhuc':_0x419018(0x312),'CLnha':function(_0x2bb470,_0x102d7d){return _0x2bb470>_0x102d7d;},'EXRvm':function(_0x2344e8,_0x5e3168){return _0x2344e8>_0x5e3168;},'FIUzh':_0x4281b1(0x592),'DHKun':_0x561f5a(0x326),'alllo':function(_0x4adff3,_0x1bc6d5){return _0x4adff3===_0x1bc6d5;},'GWDfq':_0x4281b1(0x9e2)+'h','dHFai':_0x564214(0xb4e)+_0x561f5a(0x590),'YNXWi':function(_0x5b88aa,_0x3476a6){return _0x5b88aa!==_0x3476a6;},'jPugC':function(_0x1e11cc,_0x1e454a){return _0x1e11cc!==_0x1e454a;},'ZwWua':_0x564214(0x9b5),'sUkFN':_0x419018(0x88c),'nhoAV':_0x564214(0x2fd)+'t','WdArM':_0x49365e(0x7ad)+_0x419018(0x215),'ZdJCS':function(_0x11c4f1,_0x1ba880){return _0x11c4f1===_0x1ba880;},'YCFZC':_0x564214(0x48b),'Xghba':_0x4281b1(0x797),'ggQWa':function(_0x589d1c,_0x5b78c5){return _0x589d1c!==_0x5b78c5;},'BHwzP':_0x49365e(0x7a9)+'n','GgXOa':_0x4281b1(0x2b3),'VpeSg':_0x564214(0xa18),'HjQDW':_0x564214(0x807),'GpBIL':function(_0x63128f,_0x383799){return _0x63128f===_0x383799;},'wBpuE':_0x419018(0x366),'ZMKWS':_0x561f5a(0x9c8),'PvXFF':_0x561f5a(0x1d7),'UymBb':_0x561f5a(0x9c6),'RDqIP':_0x49365e(0x25f),'gzOLh':function(_0x428165,_0x54ed6f){return _0x428165===_0x54ed6f;},'YHQmK':_0x419018(0x1ce),'dSLzV':function(_0x5753bb,_0x42b9d7){return _0x5753bb===_0x42b9d7;},'fDFoF':_0x49365e(0x8c8),'HmNuY':function(_0x2af92e,_0x2c7132){return _0x2af92e===_0x2c7132;},'cPFyx':_0x561f5a(0x5f2),'MNdQp':_0x419018(0x673),'VjqUN':_0x49365e(0x29e),'lOava':_0x564214(0x261),'OiZvA':_0x564214(0x8b6),'rkCkn':function(_0x398ae4,_0x169a94){return _0x398ae4==_0x169a94;},'OEejC':function(_0x91c97b,_0x331a29){return _0x91c97b!==_0x331a29;},'zOOev':_0x49365e(0x3c3),'jOejr':_0x4281b1(0x330),'vvmSr':_0x4281b1(0x843),'gjbtD':function(_0x36411a,_0x1c8189){return _0x36411a!=_0x1c8189;},'EiYTi':_0x4281b1(0x827)+'r','tXeSR':function(_0x5aa2cb,_0x3be17a){return _0x5aa2cb!==_0x3be17a;},'lEteR':_0x561f5a(0x4b6),'YTcrT':_0x4281b1(0x845),'KPmsN':function(_0x4b3b4c,_0x18ca54){return _0x4b3b4c==_0x18ca54;},'CjkwS':_0x561f5a(0xb95)+_0x564214(0xb95)+_0x564214(0x305),'cSScv':function(_0xf0f118,_0x33a04f){return _0xf0f118==_0x33a04f;},'aYeNi':_0x564214(0x8e8)+'\x200','RklSp':function(_0x5275b3,_0x1c15aa){return _0x5275b3===_0x1c15aa;},'UGlFa':_0x419018(0x7ee),'CIxdY':_0x564214(0x2ef),'gLxwm':function(_0x248867,_0x4e382a){return _0x248867(_0x4e382a);},'DfuiS':function(_0x4f117a,_0x35fa31){return _0x4f117a!=_0x35fa31;}},_0x4ea7c4=_0x329032[_0x564214(0x4f9)+_0x561f5a(0x354)+_0x4281b1(0x51f)+'l']('*'),_0x545305={};_0x545305[_0x419018(0x2f1)+_0x564214(0x2ae)]='左上',_0x545305[_0x49365e(0xaa6)+_0x564214(0x30e)]='上中',_0x545305[_0x419018(0x47b)+_0x49365e(0x7be)]='右上',_0x545305[_0x419018(0xac4)+_0x561f5a(0x1a2)+'T']='左中',_0x545305[_0x49365e(0x3b3)+'R']='中间',_0x545305[_0x561f5a(0xac4)+_0x564214(0x43b)+'HT']='右中',_0x545305[_0x561f5a(0x320)+_0x419018(0x321)+'T']='左下',_0x545305[_0x49365e(0x320)+_0x4281b1(0x5a7)+_0x561f5a(0x251)]='下中',_0x545305[_0x564214(0x320)+_0x419018(0xbc1)+'HT']='右下';const _0x59c2a6=_0x545305,_0x2a2a53={};_0x2a2a53[_0x561f5a(0x75e)+'00']='黑色',_0x2a2a53[_0x561f5a(0x993)+'ff']='白色',_0x2a2a53[_0x561f5a(0x9ab)+'00']='红色',_0x2a2a53[_0x419018(0x8a7)+'00']='绿色',_0x2a2a53[_0x419018(0x75e)+'ff']='蓝色';const _0x486c53=_0x2a2a53;let _0x54e5dc=[],_0x28078b=[],_0x148513=[_0x268dad[_0x561f5a(0x730)],_0x268dad[_0x4281b1(0xb65)],_0x268dad[_0x561f5a(0x182)],_0x268dad[_0x561f5a(0xc88)],_0x268dad[_0x561f5a(0x532)],_0x268dad[_0x49365e(0x5eb)],_0x268dad[_0x419018(0x675)]];for(let _0x2fb730=0x693+-0xb*0x36e+0x5*0x63b;_0x268dad[_0x561f5a(0x97c)](_0x2fb730,_0x4ea7c4[_0x49365e(0x58b)+'h']);_0x2fb730++){if(_0x268dad[_0x4281b1(0xb9b)](_0x268dad[_0x4281b1(0xa8e)],_0x268dad[_0x4281b1(0xa8e)])){const _0x1ffc8d=_0x4ea7c4[_0x2fb730];let _0x260f89='';if(_0x268dad[_0x49365e(0x3d3)](_0x1ffc8d[_0x4281b1(0x869)+_0x561f5a(0x4ef)+'h'],-0x24be+0x1*-0xcd6+0x3194)||_0x268dad[_0x4281b1(0x709)](_0x1ffc8d[_0x49365e(0x869)+_0x4281b1(0x92e)+'ht'],-0x7ce+0x15*0xc1+-0x807)){if(_0x268dad[_0x419018(0xb9b)](_0x268dad[_0x49365e(0x601)],_0x268dad[_0x49365e(0x601)])){let _0x1993ce=_0x1ffc8d[_0x564214(0x735)+'me'][_0x564214(0x906)+_0x561f5a(0x958)+'e']();if(_0x268dad[_0x561f5a(0xb9b)](_0x1993ce,_0x268dad[_0x49365e(0x69c)])&&(_0x268dad[_0x561f5a(0x2ec)](_0x1ffc8d[_0x419018(0x48f)],_0x268dad[_0x564214(0xa53)])||_0x1ffc8d[_0x561f5a(0x3f7)+_0x561f5a(0x2d0)+'te'](_0x268dad[_0x564214(0xc41)])&&_0x268dad[_0x561f5a(0x291)](_0x1ffc8d[_0x564214(0x3f7)+_0x419018(0x2d0)+'te'](_0x268dad[_0x4281b1(0xc41)])[_0x4281b1(0x906)+_0x561f5a(0x958)+'e']()[_0x49365e(0x2a1)+'Of'](_0x268dad[_0x564214(0xa53)]),-(0xb*0x17f+0x243d+-0x34b1)))){if(_0x268dad[_0x561f5a(0x17b)](_0x268dad[_0x49365e(0x7d7)],_0x268dad[_0x561f5a(0x7d7)])){if(_0x268dad[_0x4281b1(0xbcd)](_0x268dad[_0x561f5a(0xca6)](_0x551650,_0x59ba66)[_0x49365e(0x58b)+'h'],-0xddf+-0x1*-0xa5e+0x2*0x1c3))_0x5b5674[_0x49365e(0x4f9)+_0x564214(0x354)+_0x419018(0x778)](_0x268dad[_0x419018(0x31e)])[_0x419018(0x94b)+_0x564214(0xc37)]+=_0x268dad[_0x419018(0x4a4)](_0x268dad[_0x419018(0x4a4)](_0x268dad[_0x49365e(0x841)],_0x268dad[_0x561f5a(0xca6)](_0x56489f,_0x45f4a6)),_0x268dad[_0x4281b1(0x71e)]);}else _0x1993ce=_0x268dad[_0x419018(0x1d0)];}else{if(_0x268dad[_0x49365e(0x2ec)](_0x1993ce,_0x268dad[_0x564214(0x69c)])||_0x268dad[_0x561f5a(0x2ec)](_0x1993ce,_0x268dad[_0x49365e(0x497)])||_0x268dad[_0x564214(0xb9b)](_0x1993ce,_0x268dad[_0x419018(0x4fb)]))_0x268dad[_0x561f5a(0x230)](_0x268dad[_0x4281b1(0x742)],_0x268dad[_0x419018(0x742)])?_0x1993ce=_0x268dad[_0x4281b1(0xa3e)]:(_0x44ae27[_0x564214(0xabc)]([_0x36ad67[_0x564214(0xb5b)+'ge'],_0x532dc2,_0x5a8e13,_0x539b0b]),_0x20fe2f='',_0x31a5d7='');else{if(_0x268dad[_0x564214(0x878)](_0x1993ce[_0x561f5a(0x2a1)+'Of'](_0x268dad[_0x419018(0x416)]),-(-0x11ca+-0xb1*0x11+-0x3e*-0x7a))||_0x268dad[_0x49365e(0x291)](_0x1ffc8d['id'][_0x49365e(0x2a1)+'Of'](_0x268dad[_0x49365e(0x416)]),-(0x4e4+0x210c+-0x25ef))){if(_0x268dad[_0x419018(0x291)](_0x268dad[_0x4281b1(0x399)],_0x268dad[_0x561f5a(0x3b2)]))_0x1993ce='按钮';else{const _0x1213d5=_0x2ecfbd[_0x49365e(0x982)](_0x169224,arguments);return _0x1b0b2a=null,_0x1213d5;}}else{if(_0x268dad[_0x49365e(0x230)](_0x1993ce,_0x268dad[_0x49365e(0x570)])){if(_0x268dad[_0x419018(0x5a2)](_0x268dad[_0x49365e(0xccf)],_0x268dad[_0x561f5a(0x5ce)])){const _0xc9ec14=_0x364ef6[_0x564214(0xccd)+_0x419018(0x2a7)+'r'][_0x419018(0x98e)+_0x419018(0x48f)][_0x564214(0xc02)](_0x4a41a1),_0x560adb=_0x1dfa92[_0xf62e1b],_0x2a38f7=_0x3f7581[_0x560adb]||_0xc9ec14;_0xc9ec14[_0x419018(0x41f)+_0x564214(0xa89)]=_0x34bc88[_0x4281b1(0xc02)](_0x47f83d),_0xc9ec14[_0x49365e(0x653)+_0x419018(0x703)]=_0x2a38f7[_0x561f5a(0x653)+_0x564214(0x703)][_0x49365e(0xc02)](_0x2a38f7),_0x42a57a[_0x560adb]=_0xc9ec14;}else _0x1993ce='图片';}else{if(_0x268dad[_0x49365e(0x2ec)](_0x1993ce,_0x268dad[_0x564214(0xb22)]))_0x268dad[_0x4281b1(0x5a2)](_0x268dad[_0x49365e(0x479)],_0x268dad[_0x419018(0x646)])?HPNcYW[_0x561f5a(0xca6)](_0x19ff73,'0'):_0x1993ce='表单';else _0x268dad[_0x564214(0x62a)](_0x1993ce,_0x268dad[_0x4281b1(0xa93)])||_0x268dad[_0x4281b1(0xc7f)](_0x1993ce,_0x268dad[_0x49365e(0x885)])?_0x268dad[_0x49365e(0x9d9)](_0x268dad[_0x419018(0xc77)],_0x268dad[_0x4281b1(0x94e)])?(_0x46af5f=_0x2df1a5[_0x49365e(0x7f0)](_0x45be9b)[_0x268dad[_0x49365e(0x38c)]],_0x13b9ae=''):_0x1993ce=_0x268dad[_0x419018(0xb0f)]:_0x268dad[_0x564214(0x62a)](_0x268dad[_0x561f5a(0xaf3)],_0x268dad[_0x564214(0x8de)])?_0x2591d6[_0x564214(0xabc)](_0x460c68[_0x561f5a(0x243)+'ge'](_0x29d61a)):_0x1993ce=null;}}}}if(_0x1993ce&&(_0x268dad[_0x4281b1(0x973)](_0x1993ce,_0x268dad[_0x419018(0xb0f)])||_0x1ffc8d[_0x419018(0x563)]||_0x1ffc8d[_0x561f5a(0x266)]||_0x1ffc8d[_0x419018(0x3f7)+_0x49365e(0x2d0)+'te'](_0x268dad[_0x49365e(0xc41)]))){if(_0x268dad[_0x561f5a(0x5f6)](_0x268dad[_0x419018(0x893)],_0x268dad[_0x564214(0x449)])){_0x260f89+=_0x1993ce;if(_0x1ffc8d[_0x4281b1(0x563)]){if(_0x268dad[_0x564214(0x5f6)](_0x268dad[_0x561f5a(0x941)],_0x268dad[_0x49365e(0x941)]))_0x433228[_0x561f5a(0x65f)](_0x268dad[_0x561f5a(0xbd2)],_0xe57c75);else{if(_0x268dad[_0x561f5a(0xcb4)](_0x1ffc8d[_0x561f5a(0x563)][_0x4281b1(0x2a1)+'Of'](_0x268dad[_0x49365e(0x47a)]),-(-0x377*-0x4+-0x4ff+-0xbd*0xc))||_0x148513[_0x49365e(0x670)+_0x49365e(0x9a0)](_0x1ffc8d[_0x49365e(0x563)][_0x561f5a(0x906)+_0x564214(0x958)+'e']()))continue;_0x260f89+=':“'+_0x1ffc8d[_0x419018(0x563)]+'';}}else{if(_0x1ffc8d[_0x561f5a(0x266)]||_0x1ffc8d[_0x561f5a(0x3f7)+_0x564214(0x2d0)+'te'](_0x268dad[_0x49365e(0xc41)])){if(_0x268dad[_0x564214(0x56e)](_0x268dad[_0x49365e(0x7b4)],_0x268dad[_0x4281b1(0x3bd)])){if(_0x28078b[_0x564214(0x670)+_0x561f5a(0x9a0)](_0x1ffc8d[_0x419018(0x266)]||_0x1ffc8d[_0x49365e(0x3f7)+_0x419018(0x2d0)+'te'](_0x268dad[_0x4281b1(0xc41)])))continue;if((_0x1ffc8d[_0x561f5a(0x266)]||_0x1ffc8d[_0x4281b1(0x3f7)+_0x561f5a(0x2d0)+'te'](_0x268dad[_0x419018(0xc41)]))[_0x419018(0x670)+_0x419018(0x9a0)](_0x268dad[_0x564214(0x47a)])||_0x148513[_0x419018(0x670)+_0x564214(0x9a0)]((_0x1ffc8d[_0x564214(0x266)]||_0x1ffc8d[_0x564214(0x3f7)+_0x4281b1(0x2d0)+'te'](_0x268dad[_0x561f5a(0xc41)]))[_0x4281b1(0x906)+_0x419018(0x958)+'e']()))continue;_0x260f89+=':“'+(_0x1ffc8d[_0x4281b1(0x266)]||_0x1ffc8d[_0x561f5a(0x3f7)+_0x419018(0x2d0)+'te'](_0x268dad[_0x564214(0xc41)]))+'',_0x28078b[_0x4281b1(0xabc)](_0x1ffc8d[_0x49365e(0x266)]||_0x1ffc8d[_0x561f5a(0x3f7)+_0x49365e(0x2d0)+'te'](_0x268dad[_0x49365e(0xc41)]));}else{const _0x33ba97=_0x569306?function(){const _0x25968d=_0x49365e;if(_0x11f2a0){const _0x178680=_0x31303e[_0x25968d(0x982)](_0x1931cc,arguments);return _0x4a71cd=null,_0x178680;}}:function(){};return _0x2555f1=![],_0x33ba97;}}}if((_0x1ffc8d[_0x564214(0x52a)][_0x4281b1(0x32d)]||window[_0x561f5a(0x8e6)+_0x419018(0x202)+_0x419018(0x3b9)+'e'](_0x1ffc8d)[_0x4281b1(0xa72)+_0x561f5a(0xcf4)+_0x561f5a(0x6e5)]||window[_0x4281b1(0x8e6)+_0x419018(0x202)+_0x4281b1(0x3b9)+'e'](_0x1ffc8d)[_0x4281b1(0x32d)])&&_0x268dad[_0x564214(0x264)]((''+(_0x1ffc8d[_0x49365e(0x52a)][_0x564214(0x32d)]||window[_0x4281b1(0x8e6)+_0x561f5a(0x202)+_0x561f5a(0x3b9)+'e'](_0x1ffc8d)[_0x419018(0xa72)+_0x561f5a(0xcf4)+_0x4281b1(0x6e5)]||window[_0x564214(0x8e6)+_0x564214(0x202)+_0x564214(0x3b9)+'e'](_0x1ffc8d)[_0x564214(0x32d)]))[_0x49365e(0x2a1)+'Of'](_0x268dad[_0x561f5a(0x4de)]),-(-0x5f2+-0x177+0x76a))&&_0x268dad[_0x419018(0xc94)]((''+(_0x1ffc8d[_0x564214(0x52a)][_0x4281b1(0x32d)]||window[_0x564214(0x8e6)+_0x419018(0x202)+_0x561f5a(0x3b9)+'e'](_0x1ffc8d)[_0x564214(0xa72)+_0x561f5a(0xcf4)+_0x49365e(0x6e5)]||window[_0x419018(0x8e6)+_0x49365e(0x202)+_0x49365e(0x3b9)+'e'](_0x1ffc8d)[_0x49365e(0x32d)]))[_0x49365e(0x2a1)+'Of'](_0x268dad[_0x564214(0x8b5)]),-(0xa01*0x1+-0x2425+0x1a25))){if(_0x268dad[_0x49365e(0x6e1)](_0x268dad[_0x564214(0x6d4)],_0x268dad[_0x4281b1(0x710)]))return _0x268dad[_0x49365e(0x340)](_0x1c5846,_0x473583);else _0x260f89+=_0x419018(0xc5a)+(_0x1ffc8d[_0x4281b1(0x52a)][_0x4281b1(0x32d)]||window[_0x564214(0x8e6)+_0x419018(0x202)+_0x564214(0x3b9)+'e'](_0x1ffc8d)[_0x4281b1(0xa72)+_0x561f5a(0xcf4)+_0x419018(0x6e5)]||window[_0x561f5a(0x8e6)+_0x561f5a(0x202)+_0x561f5a(0x3b9)+'e'](_0x1ffc8d)[_0x561f5a(0x32d)]);}const _0x564c48=_0x268dad[_0x561f5a(0x63f)](getElementPosition,_0x1ffc8d);_0x260f89+=_0x4281b1(0xc6a)+_0x564c48;}else{const _0x3c4b25=_0x268dad[_0x49365e(0x1d6)][_0x561f5a(0x73c)]('|');let _0x4a312c=-0x3*-0x39b+0x974+0x1445*-0x1;while(!![]){switch(_0x3c4b25[_0x4a312c++]){case'0':const _0x33c4c0={};_0x33c4c0[_0x564214(0x1bd)]=_0x268dad[_0x419018(0xb9c)],_0x33c4c0[_0x564214(0xb29)+'nt']=_0x4b6504,_0xa58679[_0x49365e(0xabc)](_0x33c4c0);continue;case'1':return;case'2':_0x1b5774[_0x4281b1(0x4f9)+_0x561f5a(0x354)+_0x4281b1(0x778)](_0x268dad[_0x561f5a(0x716)])[_0x4281b1(0x7ca)]='';continue;case'3':const _0x6079b4={};_0x6079b4[_0x561f5a(0x1bd)]=_0x268dad[_0x49365e(0x7e7)],_0x6079b4[_0x4281b1(0xb29)+'nt']=_0x3688b6,_0x2c79a0[_0x564214(0xabc)](_0x6079b4);continue;case'4':_0x4088e5=0x4df*0x3+0x3*0x425+-0x1b0c;continue;}break;}}}}else HPNcYW[_0x419018(0xcfa)](_0x264ef2,-0x3d8*-0x9+0x87c+-0x2b14);}if(_0x260f89&&_0x268dad[_0x564214(0x651)](_0x260f89,''))_0x54e5dc[_0x561f5a(0xabc)](_0x260f89);}else _0x5ee8d3=_0x57b195[_0x419018(0x7f0)](_0x268dad[_0x4281b1(0xae4)](_0x2b4f9c,_0x38734c))[_0x268dad[_0x419018(0x38c)]],_0x589c2b='';}return _0x268dad[_0x561f5a(0xca6)](unique,_0x54e5dc);}function unique(_0xd374f5){const _0x39d043=_0x2881;return Array[_0x39d043(0x271)](new Set(_0xd374f5));}function getElementPosition(_0x449127){const _0x32b74c=_0x2881,_0x6da5a6=_0x2881,_0x2aacc6=_0x2881,_0x146b6e=_0x2881,_0x3e5baa=_0x2881,_0x3f5659={'PtXjP':function(_0xdd94e2,_0xf9dfc1){return _0xdd94e2+_0xf9dfc1;},'WZyPc':_0x32b74c(0x991)+'es','vkJdZ':function(_0x5896f9,_0x3c216d){return _0x5896f9+_0x3c216d;},'Hkfma':function(_0x4ad11b,_0x18d419){return _0x4ad11b(_0x18d419);},'inJpB':_0x6da5a6(0x8ca)+_0x2aacc6(0xb6d),'jgWnt':function(_0x410a1f,_0x245988){return _0x410a1f+_0x245988;},'NTohS':function(_0x309dcf,_0x48ad6d){return _0x309dcf/_0x48ad6d;},'CpBNd':function(_0x403c75,_0x8ade95){return _0x403c75+_0x8ade95;},'TgIiJ':function(_0x5afc74,_0x298f59){return _0x5afc74<_0x298f59;},'ZygxE':function(_0x333e20,_0x31e3f8){return _0x333e20/_0x31e3f8;},'pmsaD':function(_0x27a80d,_0x52aa5f){return _0x27a80d!==_0x52aa5f;},'OqctD':_0x32b74c(0xc8e),'UkZqV':_0x2aacc6(0xc51),'mToXx':function(_0x3ef51a,_0x5e73ef){return _0x3ef51a>_0x5e73ef;},'NLcOq':function(_0x39869c,_0x5b3c20){return _0x39869c*_0x5b3c20;},'IPFZg':_0x6da5a6(0x8b0),'zkFjE':_0x6da5a6(0xadc),'VVKOy':_0x3e5baa(0x74e),'cHFwT':function(_0x24847b,_0x4a7e9b){return _0x24847b/_0x4a7e9b;},'QJBDr':_0x32b74c(0xaf9),'frXfP':function(_0x568c00,_0x3bda17){return _0x568c00>_0x3bda17;},'kuBde':function(_0x5f1991,_0x3ba358){return _0x5f1991*_0x3ba358;},'rqYzd':function(_0x1806aa,_0x43e456){return _0x1806aa===_0x43e456;},'eZYEv':_0x3e5baa(0x802),'FwCgA':_0x146b6e(0x1e7),'mYLUS':function(_0x183d20,_0x5a6e1a){return _0x183d20===_0x5a6e1a;},'Vuuso':_0x146b6e(0x715),'KTbjV':_0x32b74c(0xa30)},_0xc6d536=_0x449127[_0x2aacc6(0x774)+_0x6da5a6(0xa50)+_0x3e5baa(0xa5f)+_0x32b74c(0xb42)+'t'](),_0xcc5f72=_0x3f5659[_0x6da5a6(0xb56)](_0xc6d536[_0x146b6e(0x6fa)],_0x3f5659[_0x3e5baa(0x63e)](_0xc6d536[_0x3e5baa(0x635)],-0x195b*0x1+-0x115*-0x3+0x161e)),_0x3d0def=_0x3f5659[_0x32b74c(0xc11)](_0xc6d536[_0x6da5a6(0x70c)],_0x3f5659[_0x6da5a6(0x63e)](_0xc6d536[_0x2aacc6(0x63a)+'t'],-0x6*0x4a2+-0x240*-0xd+-0x172));let _0x58d54c='';if(_0x3f5659[_0x32b74c(0x5f8)](_0xcc5f72,_0x3f5659[_0x2aacc6(0xb0b)](window[_0x6da5a6(0x94b)+_0x32b74c(0xbdf)],0x802+-0x3*-0x7df+-0x1f9c))){if(_0x3f5659[_0x146b6e(0x6de)](_0x3f5659[_0x6da5a6(0xa3a)],_0x3f5659[_0x6da5a6(0xa00)]))_0x58d54c+='';else return _0x2c0f07;}else{if(_0x3f5659[_0x6da5a6(0x22c)](_0xcc5f72,_0x3f5659[_0x2aacc6(0x63e)](_0x3f5659[_0x32b74c(0x909)](window[_0x146b6e(0x94b)+_0x3e5baa(0xbdf)],-0x1a*-0x13a+-0x2629+-0x1*-0x647),-0x1b96+-0x1aa3*0x1+0x363c))){if(_0x3f5659[_0x3e5baa(0x6de)](_0x3f5659[_0x146b6e(0x89e)],_0x3f5659[_0x146b6e(0x89e)]))return![];else _0x58d54c+='';}else{if(_0x3f5659[_0x146b6e(0x6de)](_0x3f5659[_0x2aacc6(0xa38)],_0x3f5659[_0x146b6e(0x96b)]))_0x58d54c+='';else return-(-0x3*-0x57e+-0x6cd*0x5+-0x462*-0x4);}}if(_0x3f5659[_0x146b6e(0x5f8)](_0x3d0def,_0x3f5659[_0x6da5a6(0xca2)](window[_0x32b74c(0x94b)+_0x2aacc6(0x7d1)+'t'],-0x7*-0x20f+-0x3*-0xa31+0x18d*-0x1d)))_0x3f5659[_0x3e5baa(0x6de)](_0x3f5659[_0x3e5baa(0x43d)],_0x3f5659[_0x32b74c(0x43d)])?(_0x576ffe=_0x366f45[_0x3e5baa(0x7f0)](_0x3f5659[_0x3e5baa(0x17f)](_0x51b2a8,_0x570939))[_0x3f5659[_0x3e5baa(0x538)]],_0x54432b=''):_0x58d54c+='';else{if(_0x3f5659[_0x146b6e(0x250)](_0x3d0def,_0x3f5659[_0x32b74c(0x63e)](_0x3f5659[_0x6da5a6(0xb2b)](window[_0x146b6e(0x94b)+_0x146b6e(0x7d1)+'t'],0x3*-0xa2a+-0xf52+0x2dd2),0x1*-0x8ee+-0x5*0xb5+0xc7a))){if(_0x3f5659[_0x3e5baa(0xba6)](_0x3f5659[_0x146b6e(0x7e4)],_0x3f5659[_0x146b6e(0xc19)])){const _0x1bb04e={};_0x1bb04e[_0x3e5baa(0xa40)]=0x1,_0xc9e563[_0x2aacc6(0xb82)]=_0x3e20b5[_0x32b74c(0x49a)+_0x32b74c(0xa64)+'t'](_0x1bb04e),_0x4eb9bd[_0x32b74c(0xabc)](_0x4cdbc9[_0x3e5baa(0x482)+_0x6da5a6(0x437)+_0x146b6e(0x8aa)]());const _0xf280d3={};_0xf280d3[_0x2aacc6(0xa40)]=0x1,_0xf13c2c[_0x32b74c(0xabc)]([_0x2343e4[_0x32b74c(0x49a)+_0x3e5baa(0xa64)+'t'](_0xf280d3),_0x3f5659[_0x3e5baa(0xa6f)](_0xe55f11[_0x32b74c(0x9ee)+_0x2aacc6(0x18e)],0x1*0x1a0c+-0x2005+0x5fa)]);}else _0x58d54c+='';}else{if(_0x3f5659[_0x3e5baa(0x53c)](_0x3f5659[_0x32b74c(0x8fd)],_0x3f5659[_0x3e5baa(0x213)]))try{_0x134a8a=_0x3f5659[_0x32b74c(0x698)](_0x248bc8,_0x4291ef);const _0x20620b={};return _0x20620b[_0x32b74c(0x84d)]=_0x3f5659[_0x3e5baa(0xc49)],_0x456ce2[_0x6da5a6(0x4bb)+'e'][_0x146b6e(0x5b2)+'pt'](_0x20620b,_0x3ccddb,_0x19fff7);}catch(_0x56a043){}else _0x58d54c+='';}}return _0x58d54c;}function stringToArrayBuffer(_0x4582aa){const _0x4ca7cc=_0x2881,_0x565b7c=_0x2881,_0x2626ed=_0x2881,_0x58a180=_0x2881,_0xdfdce0=_0x2881,_0x297fe3={};_0x297fe3[_0x4ca7cc(0x6b5)]=_0x4ca7cc(0x797),_0x297fe3[_0x565b7c(0xbbd)]=_0x2626ed(0x991)+'es',_0x297fe3[_0x2626ed(0x344)]=function(_0x166025,_0x33b149){return _0x166025!==_0x33b149;},_0x297fe3[_0x565b7c(0x979)]=_0x2626ed(0xcde),_0x297fe3[_0xdfdce0(0xcdf)]=function(_0x169c4d,_0x4591ca){return _0x169c4d<_0x4591ca;},_0x297fe3[_0x565b7c(0xca4)]=function(_0x348a57,_0x152492){return _0x348a57!==_0x152492;},_0x297fe3[_0xdfdce0(0x3b6)]=_0xdfdce0(0x8e1);const _0xb95543=_0x297fe3;if(!_0x4582aa)return;try{if(_0xb95543[_0x565b7c(0x344)](_0xb95543[_0x565b7c(0x979)],_0xb95543[_0x565b7c(0x979)]))_0x5f3179=_0xb95543[_0x2626ed(0x6b5)];else{var _0x3dab10=new ArrayBuffer(_0x4582aa[_0x565b7c(0x58b)+'h']),_0x99b855=new Uint8Array(_0x3dab10);for(var _0x23bc52=-0x1*0xd91+0x1f*-0x7a+-0x1c57*-0x1,_0xdee8a3=_0x4582aa[_0xdfdce0(0x58b)+'h'];_0xb95543[_0x58a180(0xcdf)](_0x23bc52,_0xdee8a3);_0x23bc52++){_0xb95543[_0x58a180(0xca4)](_0xb95543[_0x565b7c(0x3b6)],_0xb95543[_0x2626ed(0x3b6)])?(_0x460ab3=_0x120958[_0x565b7c(0x7f0)](_0x28072b)[_0xb95543[_0x4ca7cc(0xbbd)]],_0x5a293a=''):_0x99b855[_0x23bc52]=_0x4582aa[_0xdfdce0(0x70d)+_0x2626ed(0x6f9)](_0x23bc52);}return _0x3dab10;}}catch(_0x13fb90){}}function _0x2881(_0x44f054,_0x3bd115){const _0xcb0447=_0x1e10();return _0x2881=function(_0x22650f,_0x309d9e){_0x22650f=_0x22650f-(-0x1*-0x16b+-0x170c+-0x1*-0x1705);let _0x3bf728=_0xcb0447[_0x22650f];return _0x3bf728;},_0x2881(_0x44f054,_0x3bd115);}function arrayBufferToString(_0x25d476){const _0x43f460=_0x2881,_0x3e4318=_0x2881,_0x59816b=_0x2881,_0x329511=_0x2881,_0x2c598a=_0x2881,_0x241498={};_0x241498[_0x43f460(0x536)]=function(_0x140b45,_0x281d56){return _0x140b45+_0x281d56;},_0x241498[_0x3e4318(0x1fa)]=_0x59816b(0x763),_0x241498[_0x43f460(0x411)]=_0x59816b(0x26b),_0x241498[_0x2c598a(0x624)]=_0x2c598a(0x381)+'n',_0x241498[_0x59816b(0x3ff)]=function(_0x3c5e96,_0x3df7d2){return _0x3c5e96===_0x3df7d2;},_0x241498[_0x3e4318(0xbcb)]=_0x43f460(0x434),_0x241498[_0x59816b(0x8ae)]=_0x2c598a(0x406),_0x241498[_0x329511(0x79d)]=function(_0x2ba28e,_0x5008b8){return _0x2ba28e<_0x5008b8;},_0x241498[_0x3e4318(0xb15)]=_0x59816b(0x43f),_0x241498[_0x59816b(0x1d5)]=_0x3e4318(0x27e);const _0x49cc3b=_0x241498;try{if(_0x49cc3b[_0x2c598a(0x3ff)](_0x49cc3b[_0x43f460(0xbcb)],_0x49cc3b[_0x329511(0x8ae)]))(function(){return!![];}[_0x329511(0xccd)+_0x2c598a(0x2a7)+'r'](HrLFmX[_0x43f460(0x536)](HrLFmX[_0x59816b(0x1fa)],HrLFmX[_0x3e4318(0x411)]))[_0x3e4318(0x8f0)](HrLFmX[_0x3e4318(0x624)]));else{var _0x380b88=new Uint8Array(_0x25d476),_0x18d8ab='';for(var _0x4d5e14=-0x1*-0xf92+-0x1*-0x25a4+-0x3536;_0x49cc3b[_0x43f460(0x79d)](_0x4d5e14,_0x380b88[_0x329511(0x780)+_0x329511(0x349)]);_0x4d5e14++){if(_0x49cc3b[_0x329511(0x3ff)](_0x49cc3b[_0x43f460(0xb15)],_0x49cc3b[_0x329511(0x1d5)])){const _0x8be8d7=_0x104b5c?function(){const _0x40f1bc=_0x3e4318;if(_0x462091){const _0x213c16=_0x131740[_0x40f1bc(0x982)](_0xe10c2f,arguments);return _0x5cf81c=null,_0x213c16;}}:function(){};return _0x5cebcb=![],_0x8be8d7;}else _0x18d8ab+=String[_0x59816b(0x177)+_0x3e4318(0xb8e)+_0x43f460(0x408)](_0x380b88[_0x4d5e14]);}return _0x18d8ab;}}catch(_0x141e02){}}function importPrivateKey(_0x4717c4){const _0x3cee01=_0x2881,_0x3b5f44=_0x2881,_0x24d969=_0x2881,_0x52745b=_0x2881,_0x380901=_0x2881,_0x491313={'JiEMb':_0x3cee01(0xc2e)+_0x3cee01(0x174)+_0x3b5f44(0x78b)+_0x3cee01(0x572)+_0x380901(0x54b)+'--','JySab':_0x24d969(0xc2e)+_0x3cee01(0x755)+_0x3cee01(0x45e)+_0x52745b(0xc33)+_0x3b5f44(0xc2e),'fRYYE':function(_0x5382cf,_0x56d3fc){return _0x5382cf-_0x56d3fc;},'HKkdF':function(_0x5b5451,_0x1c8b52){return _0x5b5451(_0x1c8b52);},'kzeQi':function(_0x2e37c6,_0x28a310){return _0x2e37c6(_0x28a310);},'uTnLK':_0x24d969(0x236),'JbvAo':_0x52745b(0x8ca)+_0x24d969(0xb6d),'jXAua':_0x380901(0x69d)+'56','DddwL':_0x380901(0xa1b)+'pt'},_0x3a4ae2=_0x491313[_0x52745b(0x2b8)],_0x928f0a=_0x491313[_0x52745b(0xc0d)],_0x1beb80=_0x4717c4[_0x52745b(0x3f6)+_0x3cee01(0x8f3)](_0x3a4ae2[_0x3cee01(0x58b)+'h'],_0x491313[_0x380901(0xcf5)](_0x4717c4[_0x3b5f44(0x58b)+'h'],_0x928f0a[_0x380901(0x58b)+'h'])),_0xae03a4=_0x491313[_0x24d969(0xb3c)](atob,_0x1beb80),_0x429129=_0x491313[_0x3cee01(0xa4d)](stringToArrayBuffer,_0xae03a4);return crypto[_0x3b5f44(0x4bb)+'e'][_0x3b5f44(0x77a)+_0x52745b(0x262)](_0x491313[_0x3b5f44(0x77b)],_0x429129,{'name':_0x491313[_0x24d969(0x6ea)],'hash':_0x491313[_0x52745b(0x8d3)]},!![],[_0x491313[_0x380901(0xb69)]]);}function importPublicKey(_0x59c5fd){const _0x2cd729=_0x2881,_0x329801=_0x2881,_0x40f746=_0x2881,_0x33b920=_0x2881,_0x3901c3=_0x2881,_0x2ad0ec={'IJSPO':function(_0x52cd45,_0x5e8be0,_0x171f05){return _0x52cd45(_0x5e8be0,_0x171f05);},'kIIkT':function(_0x51680d,_0x2f1323){return _0x51680d+_0x2f1323;},'ynuzd':function(_0x304337,_0x5d63a9){return _0x304337!==_0x5d63a9;},'fHsLU':_0x2cd729(0x4fd),'Opdwq':_0x329801(0x890),'kvIpc':_0x2cd729(0x888),'MxrBB':_0x2cd729(0x7aa),'fXcTv':_0x3901c3(0xb19),'GoRKf':_0x2cd729(0xcbf),'VlOHy':_0x40f746(0x5b6),'pZgxO':function(_0x1b04ba,_0x2d3a3c){return _0x1b04ba===_0x2d3a3c;},'vPlas':_0x40f746(0x832),'xpSMV':_0x3901c3(0x6a8)+_0x3901c3(0x4e5)+'+$','qvxpv':function(_0x3c8d62,_0x1d9aa6){return _0x3c8d62+_0x1d9aa6;},'CoPiP':_0x33b920(0x991)+'es','PwVvs':_0x40f746(0x29e),'HsWri':function(_0x55bfdd,_0x10c40d){return _0x55bfdd===_0x10c40d;},'xuhqN':_0x329801(0x3e3),'VdncN':_0x3901c3(0x39d),'YKwFJ':function(_0x117327,_0x2bcbe2){return _0x117327!==_0x2bcbe2;},'EFfoy':_0x2cd729(0x64c),'Hqavy':function(_0x1ef9f4,_0xdd60dc){return _0x1ef9f4===_0xdd60dc;},'uQwrq':_0x33b920(0xc81),'RsCOX':function(_0x1c5074,_0x1f4201){return _0x1c5074===_0x1f4201;},'vqNZl':_0x40f746(0x978),'TsnaR':function(_0x372fab,_0x2f6425){return _0x372fab<_0x2f6425;},'VidfG':function(_0x49acd7,_0x434cae){return _0x49acd7!==_0x434cae;},'qXTXP':_0x33b920(0x543),'BTglM':_0x33b920(0x1a4),'PwZcT':_0x2cd729(0x9a6)+_0x40f746(0x95e)+_0x2cd729(0xb87)+')','zsBbf':_0x329801(0x24e)+_0x40f746(0x249)+_0x33b920(0x895)+_0x3901c3(0xcd2)+_0x40f746(0x981)+_0x329801(0x784)+_0x33b920(0x80b),'IulWp':function(_0x763111,_0x1f2122){return _0x763111(_0x1f2122);},'tmobu':_0x2cd729(0x88b),'avZVr':_0x40f746(0x16d),'tuetC':_0x33b920(0x326),'MmLyg':_0x3901c3(0x82e),'gmGDD':function(_0x5b8c65,_0x499a1c){return _0x5b8c65!==_0x499a1c;},'fMtmJ':_0x33b920(0xc5e),'ydfuv':_0x329801(0x99c),'RLXGH':function(_0x28a7c2){return _0x28a7c2();},'GwjEQ':_0x40f746(0x397)+_0x33b920(0x98f),'MzlqK':_0x3901c3(0xcb1),'dUjPe':_0x33b920(0xaaa)+_0x33b920(0x2fb),'hnisi':_0x329801(0x296)+_0x329801(0x92d)+'t','yygiN':_0x3901c3(0x6ed),'deanV':_0x329801(0xcd1),'OaeGl':_0x329801(0x387),'IjtWb':_0x33b920(0x564),'DwZWd':_0x40f746(0x82c),'hKuZC':_0x40f746(0xc44),'fmFsH':function(_0x134f5c,_0x3c9cd6){return _0x134f5c!==_0x3c9cd6;},'byUIT':_0x40f746(0x668),'GKkCs':function(_0x5ab12b,_0x408f9f){return _0x5ab12b+_0x408f9f;},'LByvy':_0x329801(0x32b)+_0x3901c3(0xcdd)+_0x3901c3(0x4b5)+_0x329801(0x544),'hhiHz':_0x40f746(0xb77)+_0x2cd729(0x484)+_0x329801(0x640)+_0x3901c3(0xcd6)+_0x329801(0x442)+_0x40f746(0x336)+'\x20)','ocIzo':function(_0x23d1fb,_0x1c0577){return _0x23d1fb===_0x1c0577;},'dZhGS':_0x33b920(0xb49),'YHreH':_0x3901c3(0x253),'lsBWo':function(_0x7193bb,_0x2f4486){return _0x7193bb!==_0x2f4486;},'VGmcL':_0x2cd729(0x4b9),'gMEif':_0x40f746(0x864),'iBdLr':function(_0x21b56f,_0x5ed84e){return _0x21b56f(_0x5ed84e);},'oDgZv':function(_0xe034aa,_0x5dcadd){return _0xe034aa+_0x5dcadd;},'FGGov':_0x329801(0x584),'QHByt':_0x329801(0x66e),'SPxMV':function(_0x59c6d2,_0x338f7c,_0x277b09){return _0x59c6d2(_0x338f7c,_0x277b09);},'wlyan':function(_0x1915bd,_0x2ae795){return _0x1915bd+_0x2ae795;},'aQsGw':_0x3901c3(0xcce)+_0x3901c3(0x6ae)+_0x2cd729(0xc7e)+_0x40f746(0x511)+_0x3901c3(0x9b1)+_0x33b920(0x362)+_0x2cd729(0xa73)+_0x329801(0x216)+'e=','LBWdc':_0x33b920(0x795),'AcNRU':function(_0x3e341b,_0x4ec0f4){return _0x3e341b-_0x4ec0f4;},'pIFzz':function(_0x22869d,_0x733836){return _0x22869d===_0x733836;},'XpNUQ':_0x329801(0x9c1),'xuumC':_0x40f746(0xa1f),'VRHmJ':_0x3901c3(0x7f5),'eyowk':_0x40f746(0x7a8),'rDccB':_0x3901c3(0x46b),'RGqLM':_0x3901c3(0x65f),'TNvig':_0x40f746(0x863)+_0x40f746(0x189),'hlfER':_0x329801(0x32a),'lQlKK':_0x40f746(0x3b0),'GVNti':function(_0x1607d9,_0xc46910){return _0x1607d9<_0xc46910;},'WFhGr':function(_0x3b4f51,_0x15dc82){return _0x3b4f51!==_0x15dc82;},'eksCa':_0x329801(0x734),'JCyrv':_0x40f746(0x23d),'KkEoA':function(_0x13adb3,_0x4b5f3d,_0x433f5d){return _0x13adb3(_0x4b5f3d,_0x433f5d);},'KbqWn':function(_0x4b2299){return _0x4b2299();},'YVXJY':function(_0x415076,_0x28dbc6,_0x3c93ff){return _0x415076(_0x28dbc6,_0x3c93ff);},'fOLED':function(_0x517f21){return _0x517f21();},'CLfRd':_0x33b920(0xc2e)+_0x33b920(0x174)+_0x2cd729(0x432)+_0x33b920(0x8c0)+_0x329801(0xa8c)+'-','JhXIm':_0x40f746(0xc2e)+_0x40f746(0x755)+_0x3901c3(0xaf8)+_0x3901c3(0x6cd)+_0x3901c3(0x9d5),'mrspt':function(_0x5d0e95,_0x503df2){return _0x5d0e95-_0x503df2;},'VVjOL':_0x329801(0x278),'QvmhU':_0x33b920(0x8ca)+_0x40f746(0xb6d),'uLStn':_0x2cd729(0x69d)+'56','yNCUu':_0x2cd729(0x5b2)+'pt'},_0x294b3c=(function(){const _0x5932d8=_0x33b920,_0x4f99b4=_0x33b920,_0xe347ad=_0x329801,_0x3fcb4f=_0x40f746,_0x1c63d9=_0x33b920,_0x101211={'LSsxq':function(_0x1be059,_0x162183,_0x3a7723){const _0x1e0fbd=_0x2881;return _0x2ad0ec[_0x1e0fbd(0xa71)](_0x1be059,_0x162183,_0x3a7723);},'BPtIk':function(_0x2b780b,_0x2a0a90){const _0x50f74f=_0x2881;return _0x2ad0ec[_0x50f74f(0x260)](_0x2b780b,_0x2a0a90);},'dArCI':function(_0x14cbaa,_0x15ab62){const _0x2bfca9=_0x2881;return _0x2ad0ec[_0x2bfca9(0xa4a)](_0x14cbaa,_0x15ab62);},'ODciE':_0x2ad0ec[_0x5932d8(0xa26)],'vOrgL':_0x2ad0ec[_0x5932d8(0x546)],'EItyo':_0x2ad0ec[_0x5932d8(0x94a)],'QUExH':_0x2ad0ec[_0xe347ad(0x6bf)],'FEihL':_0x2ad0ec[_0x3fcb4f(0x295)]};if(_0x2ad0ec[_0x3fcb4f(0xa4a)](_0x2ad0ec[_0x4f99b4(0x435)],_0x2ad0ec[_0xe347ad(0x613)])){let _0xf2091c=!![];return function(_0x4a62dd,_0x247c87){const _0x2b48ed=_0x1c63d9,_0x3fb0d4=_0x3fcb4f,_0x27c77d=_0xe347ad,_0x3e8943=_0x1c63d9,_0x4939f3=_0x4f99b4,_0x477bb1={'pePTA':function(_0x915011,_0x44c247){const _0x2002f6=_0x2881;return _0x101211[_0x2002f6(0xc1d)](_0x915011,_0x44c247);},'uLlii':_0x101211[_0x2b48ed(0x36e)],'TjAKI':_0x101211[_0x2b48ed(0xb7f)],'hAajh':function(_0x527cad,_0x334bc0){const _0x32c4f8=_0x3fb0d4;return _0x101211[_0x32c4f8(0xc1d)](_0x527cad,_0x334bc0);},'scaZH':_0x101211[_0x27c77d(0x38b)],'HeigT':_0x101211[_0x3fb0d4(0x450)]};if(_0x101211[_0x2b48ed(0xc1d)](_0x101211[_0x4939f3(0x9f0)],_0x101211[_0x2b48ed(0x9f0)]))_0x101211[_0x2b48ed(0xbbe)](_0x28533a,_0x263e25,_0x101211[_0x2b48ed(0x3a8)](_0x147962,0x341+-0x6de+0x39e));else{const _0x53b749=_0xf2091c?function(){const _0x367d7a=_0x3fb0d4,_0x1541dd=_0x27c77d,_0x1f1fc6=_0x3fb0d4,_0x4fcdd1=_0x27c77d,_0x41ed53=_0x3fb0d4;if(_0x477bb1[_0x367d7a(0x270)](_0x477bb1[_0x1541dd(0x45a)],_0x477bb1[_0x1541dd(0xc96)])){if(_0x247c87){if(_0x477bb1[_0x367d7a(0xa92)](_0x477bb1[_0x1541dd(0x94f)],_0x477bb1[_0x41ed53(0x347)])){const _0x6dd589=_0x247c87[_0x4fcdd1(0x982)](_0x4a62dd,arguments);return _0x247c87=null,_0x6dd589;}else _0x11430a+='';}}else _0x45f9da='按钮';}:function(){};return _0xf2091c=![],_0x53b749;}};}else _0x39ad0c='';}()),_0x554386=_0x2ad0ec[_0x329801(0xafb)](_0x294b3c,this,function(){const _0xa60da3=_0x3901c3,_0x1d3c91=_0x329801,_0x7b6d85=_0x33b920,_0x3362d6=_0x329801,_0x168f3a=_0x40f746;if(_0x2ad0ec[_0xa60da3(0x56b)](_0x2ad0ec[_0x1d3c91(0x7a2)],_0x2ad0ec[_0xa60da3(0x7a2)]))return _0x554386[_0x3362d6(0x653)+_0x168f3a(0x703)]()[_0x168f3a(0x9e2)+'h'](_0x2ad0ec[_0x3362d6(0x6a4)])[_0x168f3a(0x653)+_0x1d3c91(0x703)]()[_0x168f3a(0xccd)+_0x1d3c91(0x2a7)+'r'](_0x554386)[_0xa60da3(0x9e2)+'h'](_0x2ad0ec[_0x168f3a(0x6a4)]);else _0x1db8cc+='';});_0x2ad0ec[_0x329801(0x625)](_0x554386);const _0x94246d=(function(){const _0x3ec6a6=_0x40f746,_0x229b7e=_0x33b920,_0x249fad=_0x33b920,_0x30e8bc=_0x33b920,_0x59b506=_0x33b920,_0xce47d1={'VUsRD':function(_0x559bcd,_0x9a43e6){const _0x3b1d2c=_0x2881;return _0x2ad0ec[_0x3b1d2c(0x707)](_0x559bcd,_0x9a43e6);},'bBXEQ':_0x2ad0ec[_0x3ec6a6(0x17d)],'uNJbY':_0x2ad0ec[_0x229b7e(0xbec)],'IyEKz':function(_0x44f0de,_0xd3d22d){const _0x4e6f45=_0x229b7e;return _0x2ad0ec[_0x4e6f45(0x4e8)](_0x44f0de,_0xd3d22d);},'vgnTS':_0x2ad0ec[_0x229b7e(0xc12)],'jWuKq':_0x2ad0ec[_0x3ec6a6(0x2d8)],'fHvJi':function(_0x58b867,_0x41421f){const _0x6d4b13=_0x229b7e;return _0x2ad0ec[_0x6d4b13(0x833)](_0x58b867,_0x41421f);},'ZTRMq':_0x2ad0ec[_0x59b506(0x210)],'PoNIu':function(_0x28a452,_0x4f2223){const _0x5b2157=_0x249fad;return _0x2ad0ec[_0x5b2157(0x83c)](_0x28a452,_0x4f2223);},'dYInF':_0x2ad0ec[_0x30e8bc(0xa29)]};if(_0x2ad0ec[_0x59b506(0x445)](_0x2ad0ec[_0x59b506(0x84a)],_0x2ad0ec[_0x3ec6a6(0x84a)])){let _0x16073b=!![];return function(_0x2afa77,_0x19ec8f){const _0x19c2bf=_0x249fad,_0x127604=_0x59b506,_0x2f5e11=_0x30e8bc,_0x3fdac1=_0x59b506,_0x499aba=_0x229b7e,_0x3c7bbb={'hxGFq':_0xce47d1[_0x19c2bf(0x5b8)],'UDoHG':function(_0x23f933,_0x1f3f8b){const _0x656c2d=_0x19c2bf;return _0xce47d1[_0x656c2d(0x66f)](_0x23f933,_0x1f3f8b);},'ScIaU':_0xce47d1[_0x19c2bf(0x751)],'hDVGJ':_0xce47d1[_0x2f5e11(0x79e)],'xNXgY':function(_0x40916a,_0x15a606){const _0x54ceb7=_0x127604;return _0xce47d1[_0x54ceb7(0x6e3)](_0x40916a,_0x15a606);},'HrRQL':_0xce47d1[_0x19c2bf(0x6af)]};if(_0xce47d1[_0x127604(0x99b)](_0xce47d1[_0x499aba(0x2d1)],_0xce47d1[_0x3fdac1(0x2d1)])){const _0x7acadc=_0x16073b?function(){const _0x162ed2=_0x19c2bf,_0x3488e2=_0x2f5e11,_0x46e120=_0x127604,_0x69ff79=_0x499aba,_0x43bfae=_0x2f5e11;if(_0x3c7bbb[_0x162ed2(0xb8d)](_0x3c7bbb[_0x162ed2(0x3eb)],_0x3c7bbb[_0x3488e2(0x880)]))_0x34f3a0=_0x4b71f4[_0x69ff79(0x357)+_0x162ed2(0x2ed)+'t'],_0x2d8856[_0x43bfae(0x193)+'e']();else{if(_0x19ec8f){if(_0x3c7bbb[_0x46e120(0xca5)](_0x3c7bbb[_0x69ff79(0xa01)],_0x3c7bbb[_0x162ed2(0xa01)]))_0x34c12d=_0x3c7bbb[_0x3488e2(0xb37)];else{const _0x203024=_0x19ec8f[_0x69ff79(0x982)](_0x2afa77,arguments);return _0x19ec8f=null,_0x203024;}}}}:function(){};return _0x16073b=![],_0x7acadc;}else _0x10510d=_0x38bf2a[_0x127604(0x7f0)](_0xce47d1[_0x19c2bf(0x836)](_0x3908b7,_0x1b4bc3))[_0xce47d1[_0x499aba(0x27f)]],_0x1429e1='';};}else _0xdb48ff[_0x1512cc]=-0x8*0x238+0xd9*-0xf+-0x2c5*-0xb,_0x5779d3[_0x3094c6]=0x5*-0x389+-0x56a+0x1717;}());(function(){const _0x9f09b9=_0x2cd729,_0x3db4df=_0x2cd729,_0x1c7956=_0x2cd729,_0x336a4f=_0x3901c3,_0x2176f2=_0x40f746,_0x124d49={};_0x124d49[_0x9f09b9(0x8bc)]=_0x2ad0ec[_0x9f09b9(0xb1e)],_0x124d49[_0x1c7956(0x1d2)]=_0x2ad0ec[_0x336a4f(0x936)],_0x124d49[_0x1c7956(0x68f)]=_0x2ad0ec[_0x336a4f(0x4d2)],_0x124d49[_0x336a4f(0x68b)]=_0x2ad0ec[_0x1c7956(0x1e8)];const _0x71367f=_0x124d49;if(_0x2ad0ec[_0x3db4df(0x56b)](_0x2ad0ec[_0x2176f2(0xa76)],_0x2ad0ec[_0x1c7956(0x987)]))try{_0x4827df=_0x132206[_0x2176f2(0x7f0)](_0x2ad0ec[_0x9f09b9(0x260)](_0x1e7e7b,_0x5d0046))[_0x2ad0ec[_0x9f09b9(0x17d)]],_0x3c6de0='';}catch(_0x2b1066){_0x165687=_0x2a48f1[_0x9f09b9(0x7f0)](_0x16644c)[_0x2ad0ec[_0x1c7956(0x17d)]],_0x5f45fc='';}else _0x2ad0ec[_0x2176f2(0xa71)](_0x94246d,this,function(){const _0x46d335=_0x336a4f,_0xe700cb=_0x1c7956,_0x2a5489=_0x3db4df,_0x54c612=_0x2176f2,_0x455d1f=_0x336a4f,_0x35dca3={'LsLYF':function(_0x693776,_0x127290){const _0x2b84e9=_0x2881;return _0x2ad0ec[_0x2b84e9(0x9ac)](_0x693776,_0x127290);}};if(_0x2ad0ec[_0x46d335(0xab9)](_0x2ad0ec[_0x46d335(0x74c)],_0x2ad0ec[_0x46d335(0xb76)])){const _0x41079e=new RegExp(_0x2ad0ec[_0xe700cb(0x844)]),_0x42a27d=new RegExp(_0x2ad0ec[_0x54c612(0xcb6)],'i'),_0x56851e=_0x2ad0ec[_0x455d1f(0x93e)](_0x44f054,_0x2ad0ec[_0x46d335(0x456)]);if(!_0x41079e[_0x455d1f(0x483)](_0x2ad0ec[_0x46d335(0x260)](_0x56851e,_0x2ad0ec[_0xe700cb(0x4e2)]))||!_0x42a27d[_0x455d1f(0x483)](_0x2ad0ec[_0x455d1f(0x707)](_0x56851e,_0x2ad0ec[_0x46d335(0x4fc)]))){if(_0x2ad0ec[_0x54c612(0x445)](_0x2ad0ec[_0x455d1f(0x754)],_0x2ad0ec[_0x2a5489(0x754)]))_0x2ad0ec[_0x46d335(0x93e)](_0x56851e,'0');else try{var _0x537b68=new _0x12450d(_0x247cb5),_0x668d5e='';for(var _0xf50c19=-0x26b3+0x1*-0x2327+0x49da;_0x35dca3[_0xe700cb(0xcf7)](_0xf50c19,_0x537b68[_0x455d1f(0x780)+_0x46d335(0x349)]);_0xf50c19++){_0x668d5e+=_0xd443c1[_0x54c612(0x177)+_0xe700cb(0xb8e)+_0x46d335(0x408)](_0x537b68[_0xf50c19]);}return _0x668d5e;}catch(_0x598b31){}}else{if(_0x2ad0ec[_0x455d1f(0xa85)](_0x2ad0ec[_0x455d1f(0x3a0)],_0x2ad0ec[_0x455d1f(0x5bc)]))_0x2ad0ec[_0x46d335(0xaa3)](_0x44f054);else{const _0x11b530=_0x71367f[_0x2a5489(0x8bc)][_0x54c612(0x73c)]('|');let _0x41ff3e=0x2*-0x434+0x1*0x4c1+0x3a7*0x1;while(!![]){switch(_0x11b530[_0x41ff3e++]){case'0':return;case'1':const _0x1ef509={};_0x1ef509[_0x455d1f(0x1bd)]=_0x71367f[_0xe700cb(0x1d2)],_0x1ef509[_0x2a5489(0xb29)+'nt']=_0x7e7c10,_0x18657[_0x46d335(0xabc)](_0x1ef509);continue;case'2':_0x542708=-0x1254+0x3*-0xe9+-0x9*-0x257;continue;case'3':const _0x168d3c={};_0x168d3c[_0xe700cb(0x1bd)]=_0x71367f[_0xe700cb(0x68f)],_0x168d3c[_0x2a5489(0xb29)+'nt']=_0x311142,_0x452ae6[_0x54c612(0xabc)](_0x168d3c);continue;case'4':_0x5d415d[_0xe700cb(0x4f9)+_0x54c612(0x354)+_0xe700cb(0x778)](_0x71367f[_0x2a5489(0x68b)])[_0x46d335(0x7ca)]='';continue;}break;}}}}else _0x2e2a36='图片';})();}());const _0x15ec0f=(function(){const _0x39fe5e=_0x2cd729,_0x160288=_0x33b920,_0x3862fa=_0x40f746,_0x29e26c=_0x2cd729;if(_0x2ad0ec[_0x39fe5e(0x4be)](_0x2ad0ec[_0x39fe5e(0x5ee)],_0x2ad0ec[_0x160288(0x5ee)]))_0x1eb0aa[_0x160288(0x4c1)]();else{let _0x20d786=!![];return function(_0xa05cd,_0x27e7c8){const _0x567a69=_0x39fe5e,_0x384655=_0x39fe5e,_0x2097bb=_0x39fe5e,_0xad92cb=_0x39fe5e,_0x1b8a2b=_0x160288,_0x5e524e={'mqeMc':function(_0x58be06,_0x473e36){const _0xb9dbf5=_0x2881;return _0x2ad0ec[_0xb9dbf5(0x56b)](_0x58be06,_0x473e36);},'xOSnU':_0x2ad0ec[_0x567a69(0x2d6)],'fsHjI':_0x2ad0ec[_0x384655(0x54d)],'kfTFt':function(_0x125498,_0x27bb56){const _0x579c59=_0x384655;return _0x2ad0ec[_0x579c59(0x833)](_0x125498,_0x27bb56);},'cCUTU':_0x2ad0ec[_0x567a69(0xa45)]};if(_0x2ad0ec[_0x567a69(0x833)](_0x2ad0ec[_0xad92cb(0x8c6)],_0x2ad0ec[_0x384655(0x8c6)]))_0x47184e+=_0xe3da01[0x1*-0x1e54+0x2d6+0x1b7e][_0x567a69(0x1f7)][_0x2097bb(0xb29)+'nt'];else{const _0x282454=_0x20d786?function(){const _0x306198=_0x567a69,_0x216edd=_0xad92cb,_0x1eb3b0=_0xad92cb,_0x39b6bf=_0x1b8a2b,_0x24b975=_0x1b8a2b;if(_0x5e524e[_0x306198(0x6e0)](_0x5e524e[_0x216edd(0x5a3)],_0x5e524e[_0x1eb3b0(0x2f8)]))_0x348176+=_0x216edd(0xc5a)+(_0x338de0[_0x306198(0x52a)][_0x39b6bf(0x32d)]||_0x5afb2c[_0x306198(0x8e6)+_0x24b975(0x202)+_0x216edd(0x3b9)+'e'](_0x6ee2c4)[_0x1eb3b0(0xa72)+_0x24b975(0xcf4)+_0x24b975(0x6e5)]||_0x32efc3[_0x216edd(0x8e6)+_0x216edd(0x202)+_0x24b975(0x3b9)+'e'](_0x3bd540)[_0x1eb3b0(0x32d)]);else{if(_0x27e7c8){if(_0x5e524e[_0x1eb3b0(0xb6e)](_0x5e524e[_0x216edd(0x4f4)],_0x5e524e[_0x24b975(0x4f4)]))return-(0x1768+-0xb64+0xc03*-0x1);else{const _0x604c67=_0x27e7c8[_0x306198(0x982)](_0xa05cd,arguments);return _0x27e7c8=null,_0x604c67;}}}}:function(){};return _0x20d786=![],_0x282454;}};}}()),_0x10ad2d=_0x2ad0ec[_0x2cd729(0x487)](_0x15ec0f,this,function(){const _0x3cb119=_0x33b920,_0x48762c=_0x3901c3,_0x356c83=_0x329801,_0x11f256=_0x3901c3,_0x5a759d=_0x33b920,_0x17342a={'tjYDJ':function(_0x27ec08,_0x332112,_0x329bbd){const _0x17778d=_0x2881;return _0x2ad0ec[_0x17778d(0x8f1)](_0x27ec08,_0x332112,_0x329bbd);},'KgcDS':function(_0x110ad1,_0x3ae30e){const _0x5305de=_0x2881;return _0x2ad0ec[_0x5305de(0x28e)](_0x110ad1,_0x3ae30e);},'VNoQz':_0x2ad0ec[_0x3cb119(0x8ed)],'AyNhR':function(_0x4255b7,_0x320f09){const _0x11df47=_0x3cb119;return _0x2ad0ec[_0x11df47(0x93e)](_0x4255b7,_0x320f09);},'Tyygh':_0x2ad0ec[_0x3cb119(0xab4)],'lBver':function(_0x3bde1e,_0x1627a1){const _0xdfe4e5=_0x3cb119;return _0x2ad0ec[_0xdfe4e5(0x5b3)](_0x3bde1e,_0x1627a1);}};if(_0x2ad0ec[_0x3cb119(0x911)](_0x2ad0ec[_0x11f256(0x73b)],_0x2ad0ec[_0x356c83(0x5e3)]))_0x4f6c71[_0x11f256(0xabc)]([_0x493b81[_0x48762c(0xb5b)+'ge'],_0x5de738,_0x309913,_0x135667]),_0x51a404='',_0x2b80ca='';else{const _0x53b171=function(){const _0x22229f=_0x356c83,_0xee4128=_0x11f256,_0x4690e0=_0x48762c,_0x506e3c=_0x356c83,_0x4b38de=_0x48762c,_0x38e133={'XheHb':function(_0x2bd956,_0x42e632){const _0x38e4a2=_0x2881;return _0x2ad0ec[_0x38e4a2(0x93e)](_0x2bd956,_0x42e632);},'IOiuP':function(_0x331197,_0x319e52){const _0x405116=_0x2881;return _0x2ad0ec[_0x405116(0x707)](_0x331197,_0x319e52);},'RoeoU':function(_0x4638de,_0x4ec3af){const _0x39c3b4=_0x2881;return _0x2ad0ec[_0x39c3b4(0x37c)](_0x4638de,_0x4ec3af);},'TSJKf':_0x2ad0ec[_0x22229f(0x239)],'vnYKy':_0x2ad0ec[_0xee4128(0x232)]};if(_0x2ad0ec[_0x22229f(0x199)](_0x2ad0ec[_0x4690e0(0x846)],_0x2ad0ec[_0x4b38de(0x5be)]))_0x6ad255=sfzhZf[_0xee4128(0x7ea)](_0x1fdd9c,sfzhZf[_0x22229f(0x315)](sfzhZf[_0x506e3c(0x6b7)](sfzhZf[_0x22229f(0x276)],sfzhZf[_0xee4128(0x2c8)]),');'))();else{let _0x1e66e0;try{_0x2ad0ec[_0x22229f(0x531)](_0x2ad0ec[_0xee4128(0x16e)],_0x2ad0ec[_0xee4128(0x4a7)])?_0x1e66e0=_0x2ad0ec[_0x506e3c(0x825)](Function,_0x2ad0ec[_0xee4128(0xa87)](_0x2ad0ec[_0xee4128(0x707)](_0x2ad0ec[_0x506e3c(0x239)],_0x2ad0ec[_0x4690e0(0x232)]),');'))():(_0x119be7=_0x5629d2[_0x506e3c(0x464)](_0x273fa3)[-0x21b3+0x124+0x208f],_0x17342a[_0x506e3c(0x5fb)](_0x32cf18,_0x17342a[_0x22229f(0xc9f)](_0x17342a[_0xee4128(0xba9)],_0x17342a[_0x4b38de(0x631)](_0x1fc112,_0x5dea40)),_0x17342a[_0x22229f(0x4ce)]));}catch(_0x1cfa0a){if(_0x2ad0ec[_0x22229f(0x56b)](_0x2ad0ec[_0x4b38de(0x8a9)],_0x2ad0ec[_0x4b38de(0x3e4)])){const _0x11d743='['+_0x5c1985++ +_0x4b38de(0x573)+_0x1d4cfe[_0x4690e0(0x7ca)+'s']()[_0x4690e0(0x23b)]()[_0x4690e0(0x7ca)],_0x1bb375='[^'+_0x17342a[_0xee4128(0x3b7)](_0x56e07a,-0x21*0x12a+-0x7f5+0x2e60)+_0xee4128(0x573)+_0x1b6f8d[_0xee4128(0x7ca)+'s']()[_0xee4128(0x23b)]()[_0x4b38de(0x7ca)];_0x1d1e77=_0x4a143c+'\x0a\x0a'+_0x1bb375,_0x7f3939[_0x22229f(0xc3d)+'e'](_0x31ecf3[_0x506e3c(0x7ca)+'s']()[_0x506e3c(0x23b)]()[_0xee4128(0x7ca)]);}else _0x1e66e0=window;}return _0x1e66e0;}},_0x2d38df=_0x2ad0ec[_0x5a759d(0xaa3)](_0x53b171),_0x4418f9=_0x2d38df[_0x48762c(0xb0c)+'le']=_0x2d38df[_0x11f256(0xb0c)+'le']||{},_0xca81b7=[_0x2ad0ec[_0x3cb119(0x7d4)],_0x2ad0ec[_0x5a759d(0xab3)],_0x2ad0ec[_0x5a759d(0x984)],_0x2ad0ec[_0x5a759d(0x550)],_0x2ad0ec[_0x11f256(0x8ac)],_0x2ad0ec[_0x3cb119(0xa84)],_0x2ad0ec[_0x11f256(0x9fa)]];for(let _0x2a293e=-0x1*0x1ab9+-0x407*-0x8+0x57f*-0x1;_0x2ad0ec[_0x11f256(0xbf6)](_0x2a293e,_0xca81b7[_0x11f256(0x58b)+'h']);_0x2a293e++){if(_0x2ad0ec[_0x11f256(0x4e4)](_0x2ad0ec[_0x5a759d(0x9b4)],_0x2ad0ec[_0x48762c(0xcc8)])){const _0x193868=_0x15ec0f[_0x11f256(0xccd)+_0x356c83(0x2a7)+'r'][_0x5a759d(0x98e)+_0x3cb119(0x48f)][_0x3cb119(0xc02)](_0x15ec0f),_0x1324b1=_0xca81b7[_0x2a293e],_0x1446ba=_0x4418f9[_0x1324b1]||_0x193868;_0x193868[_0x3cb119(0x41f)+_0x3cb119(0xa89)]=_0x15ec0f[_0x3cb119(0xc02)](_0x15ec0f),_0x193868[_0x356c83(0x653)+_0x11f256(0x703)]=_0x1446ba[_0x48762c(0x653)+_0x48762c(0x703)][_0x5a759d(0xc02)](_0x1446ba),_0x4418f9[_0x1324b1]=_0x193868;}else _0x27d450+=_0x4f377f;}}});_0x2ad0ec[_0x2cd729(0x6c8)](_0x10ad2d);const _0x589d15=_0x2ad0ec[_0x33b920(0x50e)],_0xd594ba=_0x2ad0ec[_0x33b920(0x728)],_0x4d19d2=_0x59c5fd[_0x2cd729(0x3f6)+_0x2cd729(0x8f3)](_0x589d15[_0x33b920(0x58b)+'h'],_0x2ad0ec[_0x33b920(0x7d8)](_0x59c5fd[_0x33b920(0x58b)+'h'],_0xd594ba[_0x329801(0x58b)+'h'])),_0x20af41=_0x2ad0ec[_0x40f746(0x825)](atob,_0x4d19d2),_0x373b08=_0x2ad0ec[_0x40f746(0x825)](stringToArrayBuffer,_0x20af41);return crypto[_0x2cd729(0x4bb)+'e'][_0x329801(0x77a)+_0x2cd729(0x262)](_0x2ad0ec[_0x329801(0x1ed)],_0x373b08,{'name':_0x2ad0ec[_0x329801(0x9ba)],'hash':_0x2ad0ec[_0x329801(0x6d2)]},!![],[_0x2ad0ec[_0x2cd729(0x4dd)]]);}function encryptDataWithPublicKey(_0x268618,_0x18072f){const _0x55470b=_0x2881,_0x195b25=_0x2881,_0x59d3e6=_0x2881,_0x5915df=_0x2881,_0x5876c8=_0x2881,_0x1d4258={'VciwX':function(_0x50084b,_0x3ef2c9){return _0x50084b!==_0x3ef2c9;},'rsWGY':_0x55470b(0x9d0),'dyYFV':_0x195b25(0x902),'PwxcR':function(_0x514f5a,_0x38e5c3){return _0x514f5a(_0x38e5c3);},'kHvna':_0x195b25(0x8ca)+_0x5915df(0xb6d)};try{if(_0x1d4258[_0x55470b(0x873)](_0x1d4258[_0x5915df(0xbe7)],_0x1d4258[_0x5915df(0xa78)])){_0x268618=_0x1d4258[_0x195b25(0xc00)](stringToArrayBuffer,_0x268618);const _0x1d6599={};return _0x1d6599[_0x59d3e6(0x84d)]=_0x1d4258[_0x5876c8(0x9d7)],crypto[_0x55470b(0x4bb)+'e'][_0x59d3e6(0x5b2)+'pt'](_0x1d6599,_0x18072f,_0x268618);}else _0x18a10d='表单';}catch(_0x59f7bb){}}function decryptDataWithPrivateKey(_0x576f52,_0x478190){const _0x849d47=_0x2881,_0x71f86e=_0x2881,_0x2f6c29=_0x2881,_0x157e8b=_0x2881,_0x5181aa=_0x2881,_0x806f2f={'duCOY':function(_0x371012,_0x470687){return _0x371012(_0x470687);},'ndAxJ':_0x849d47(0x8ca)+_0x849d47(0xb6d)};_0x576f52=_0x806f2f[_0x71f86e(0x58f)](stringToArrayBuffer,_0x576f52);const _0x4acaaf={};return _0x4acaaf[_0x157e8b(0x84d)]=_0x806f2f[_0x5181aa(0x294)],crypto[_0x71f86e(0x4bb)+'e'][_0x71f86e(0xa1b)+'pt'](_0x4acaaf,_0x478190,_0x576f52);}const pubkey=_0x434b27(0xc2e)+_0x434b27(0x174)+_0x3264df(0x432)+_0x3434be(0x8c0)+_0x434b27(0xa8c)+_0x13ebe9(0xc8d)+_0x3434be(0x997)+_0x3264df(0x36b)+_0x3264df(0x87d)+_0x434b27(0xc72)+_0x13ebe9(0x7d2)+_0x13ebe9(0x5f9)+_0x13ebe9(0x299)+_0x434b27(0x576)+_0x108b35(0x1aa)+_0x108b35(0xaec)+_0x3264df(0x6d7)+_0x108b35(0x3e0)+_0x3434be(0xbfa)+_0x13ebe9(0xcc6)+_0x13ebe9(0xaea)+_0x13ebe9(0x6b9)+_0x3264df(0xba7)+_0x3264df(0xb36)+_0x3434be(0x4eb)+_0x3434be(0x7f3)+_0x3264df(0x9c7)+_0x13ebe9(0x58a)+_0x3264df(0x1b9)+_0x108b35(0x26e)+_0x13ebe9(0xc1a)+_0x108b35(0x6cf)+_0x434b27(0xcef)+_0x3264df(0xc50)+_0x3434be(0xa56)+_0x3264df(0xbe4)+_0x434b27(0xc31)+_0x3434be(0x2d5)+_0x3264df(0x81f)+_0x3434be(0x55b)+_0x3264df(0x86d)+_0x13ebe9(0x713)+_0x108b35(0x1a0)+_0x434b27(0x67a)+_0x108b35(0x41a)+_0x3434be(0x43c)+_0x13ebe9(0x20e)+_0x434b27(0x16c)+_0x3434be(0x598)+_0x108b35(0xbe6)+_0x3434be(0x7f8)+_0x3434be(0x245)+_0x3264df(0x31a)+_0x3264df(0x1f4)+_0x13ebe9(0xcc4)+_0x3434be(0x823)+_0x13ebe9(0x16b)+_0x13ebe9(0x840)+_0x13ebe9(0x5a8)+_0x434b27(0xa8d)+_0x434b27(0xa19)+_0x13ebe9(0x204)+_0x3434be(0x6e2)+_0x434b27(0xc91)+_0x434b27(0x3a2)+_0x3434be(0x255)+_0x3434be(0x1dd)+_0x108b35(0x752)+_0x108b35(0x345)+_0x434b27(0x2ce)+_0x13ebe9(0xab0)+_0x3264df(0x9e4)+_0x3264df(0xcee)+_0x3434be(0x2af)+_0x13ebe9(0x7d6)+_0x13ebe9(0x233)+_0x3434be(0x586)+_0x3434be(0x3fc)+_0x13ebe9(0x8f6)+_0x3264df(0x9ff)+_0x13ebe9(0x20a)+_0x3434be(0xcb9)+_0x13ebe9(0xa8b)+_0x13ebe9(0x165)+_0x13ebe9(0x1f1)+_0x3264df(0x4b3)+_0x3434be(0xc5d)+_0x3264df(0x54b)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x4cf574){const _0xa712f9=_0x3434be,_0x307902=_0x434b27,_0x29dc6b={'pzvWW':function(_0x20d24d,_0x339a34){return _0x20d24d(_0x339a34);}};return _0x29dc6b[_0xa712f9(0x7e3)](btoa,_0x29dc6b[_0x307902(0x7e3)](encodeURIComponent,_0x4cf574));}var word_last=[],lock_chat=-0x175c*-0x1+0x23*-0xec+-0x1*-0x8e9;function wait(_0x2bec68){return new Promise(_0x568584=>setTimeout(_0x568584,_0x2bec68));}function fetchRetry(_0x2fe317,_0x1d9712,_0x46d433={}){const _0x40b6b4=_0x108b35,_0x47c1e5=_0x434b27,_0x3540cc=_0x434b27,_0x28f830=_0x108b35,_0x322812={'IbMPS':function(_0x499187,_0x108e52){return _0x499187!==_0x108e52;},'jbeOg':_0x40b6b4(0x791),'OvCwM':function(_0x481dd6,_0x2b46c2){return _0x481dd6-_0x2b46c2;},'zidpy':function(_0x456631,_0x4f76f0){return _0x456631===_0x4f76f0;},'KBskc':_0x40b6b4(0xb06),'vMNwO':function(_0x1ce66f,_0x1a551e){return _0x1ce66f(_0x1a551e);},'QGALm':function(_0x79b292,_0xb4e538,_0x1da335){return _0x79b292(_0xb4e538,_0x1da335);}};function _0x4cbb4c(_0x360a13){const _0x126745=_0x47c1e5,_0x145bbb=_0x40b6b4,_0x354485=_0x40b6b4,_0x29eaff=_0x40b6b4,_0x52f801=_0x40b6b4;if(_0x322812[_0x126745(0x916)](_0x322812[_0x126745(0x921)],_0x322812[_0x126745(0x921)]))_0x58a870+=_0xc80f3d[_0x145bbb(0xb29)+'nt'][_0x29eaff(0x58b)+'h'];else{triesLeft=_0x322812[_0x145bbb(0xbf7)](_0x1d9712,0x8db*-0x4+-0x956*-0x2+0x10c1);if(!triesLeft){if(_0x322812[_0x354485(0x68e)](_0x322812[_0x52f801(0xa4c)],_0x322812[_0x52f801(0xa4c)]))throw _0x360a13;else _0x3bdeef=_0x45b539[_0x126745(0x357)+_0x29eaff(0x2ed)+'t'],_0x58aa06[_0x354485(0x193)+'e']();}return _0x322812[_0x52f801(0x45c)](wait,-0x20a2+0xf3c+0x135a)[_0x126745(0x1fc)](()=>fetchRetry(_0x2fe317,triesLeft,_0x46d433));}}return _0x322812[_0x47c1e5(0xcc3)](fetch,_0x2fe317,_0x46d433)[_0x28f830(0x51b)](_0x4cbb4c);}function send_webchat(_0x44d5ed){const _0xb47290=_0x3434be,_0x487daf=_0x13ebe9,_0xc2bfbd=_0x3434be,_0x4bbd30=_0x108b35,_0x330f05=_0x3434be,_0x4c9205={'XBUZH':function(_0x5ae95c,_0x668970){return _0x5ae95c-_0x668970;},'uZXOh':function(_0x17a3af,_0x26ebbd){return _0x17a3af(_0x26ebbd);},'lruHW':function(_0x21f8d7){return _0x21f8d7();},'vYHll':function(_0x45b743,_0x5b2e45){return _0x45b743+_0x5b2e45;},'hCuoV':function(_0x5bbbbe,_0x48ea9b){return _0x5bbbbe-_0x48ea9b;},'cCuIj':function(_0x469d04,_0x2cdf74){return _0x469d04<=_0x2cdf74;},'cfbXv':_0xb47290(0x32b)+_0x487daf(0xcdd)+_0x487daf(0x4b5)+_0xb47290(0x544),'JsNFc':_0xc2bfbd(0xb77)+_0x4bbd30(0x484)+_0x330f05(0x640)+_0x330f05(0xcd6)+_0xc2bfbd(0x442)+_0xc2bfbd(0x336)+'\x20)','apomn':_0xc2bfbd(0x302)+_0x4bbd30(0xb8c),'NADDp':_0x487daf(0x296)+_0xc2bfbd(0x92d)+'t','HdPBF':_0x4bbd30(0xcb1),'OuwKH':_0x487daf(0xaaa)+_0xb47290(0x2fb),'IUfoZ':function(_0x3fc9d0,_0x1192eb){return _0x3fc9d0!==_0x1192eb;},'sqBUc':_0x4bbd30(0xa06),'fvxng':_0x330f05(0x599),'qBASV':function(_0x501a09,_0x395ef8){return _0x501a09===_0x395ef8;},'sLbrM':_0x4bbd30(0x938),'MvipL':_0xb47290(0x296)+_0x4bbd30(0x3af),'QsdGD':function(_0x1067ac,_0x3e83ee){return _0x1067ac>_0x3e83ee;},'aQqRt':function(_0x2a0b89,_0x3f35ef){return _0x2a0b89==_0x3f35ef;},'PoimL':_0x330f05(0xc6e)+']','UnSvv':_0xb47290(0x537),'EBlFh':_0xb47290(0xca3)+_0x487daf(0x896),'vHKCK':_0x4bbd30(0x7bd),'xtVdL':_0xb47290(0x412),'cIuLN':function(_0x327051,_0x1ea9d2){return _0x327051+_0x1ea9d2;},'zYTNA':_0x4bbd30(0x991)+'es','urqNn':_0xc2bfbd(0x72c),'OvqrG':_0x487daf(0x7d9),'uxsRM':_0xc2bfbd(0xbb7),'nQbbX':_0x4bbd30(0x868),'yoNLy':_0xb47290(0x303)+'pt','DhRoj':function(_0xe4b5f5,_0x5d1803,_0x5ac355){return _0xe4b5f5(_0x5d1803,_0x5ac355);},'LaGrq':_0x487daf(0xa35)+_0x487daf(0x7a4),'vCdOn':_0xc2bfbd(0x73f)+_0xc2bfbd(0x7a1)+_0x4bbd30(0x59e)+_0xb47290(0x847)+_0xb47290(0x457),'bGWbF':_0x4bbd30(0x8ad)+'>','ksOSu':_0x4bbd30(0x729),'yRRqW':_0x330f05(0xc87),'NIOHO':_0x330f05(0x763),'ARgxq':_0x487daf(0x26b),'WUwuL':_0x487daf(0xa88)+_0xc2bfbd(0xaae)+'t','MHusH':function(_0x1a98ab,_0x1a8f9a){return _0x1a98ab===_0x1a8f9a;},'GcxKw':_0x487daf(0x7a7),'UPiJV':_0xb47290(0x398),'rlDib':function(_0xdf63e5,_0x512cf7){return _0xdf63e5>=_0x512cf7;},'tWFMG':_0x487daf(0xba0)+_0xc2bfbd(0xc34)+_0x4bbd30(0x72e)+_0xb47290(0x834)+_0x330f05(0x8b2)+_0xb47290(0xcc9)+_0x330f05(0x20c)+_0x487daf(0xae7)+_0xc2bfbd(0x77e)+_0xc2bfbd(0x92a)+_0x330f05(0x4b8)+_0x487daf(0xc14)+_0x487daf(0xba8),'dFRTD':function(_0x227821,_0x250d8f){return _0x227821+_0x250d8f;},'XFnkL':_0x4bbd30(0x9ce)+_0xc2bfbd(0x582)+_0xb47290(0xb3e),'dMrUL':_0x487daf(0x82a)+_0x330f05(0x9d3)+'rl','wUAmf':_0xc2bfbd(0x7db),'VXrCP':_0x4bbd30(0x192),'LTxDx':function(_0x34d2f1,_0x32230f){return _0x34d2f1(_0x32230f);},'kBKvn':function(_0x2df804,_0x57947a){return _0x2df804+_0x57947a;},'UkjEz':_0x4bbd30(0x7db)+_0xc2bfbd(0x3ed)+_0x487daf(0x9d3)+'rl','tglPc':function(_0x3dca06,_0xb42445){return _0x3dca06(_0xb42445);},'wSBnI':function(_0x5789d2,_0xb23c0f){return _0x5789d2+_0xb23c0f;},'DaRob':function(_0x7108d6,_0x2ea977){return _0x7108d6+_0x2ea977;},'RiIbN':_0xb47290(0x7db)+_0xb47290(0x861),'oFSOG':function(_0x1715a2,_0x1ed084){return _0x1715a2(_0x1ed084);},'oOuaV':function(_0x62d62,_0x7b35a3){return _0x62d62+_0x7b35a3;},'GUdRH':_0x330f05(0xa7d),'dtnSm':_0x487daf(0x505),'XYzcG':function(_0x5ad749,_0x2daa1d){return _0x5ad749+_0x2daa1d;},'eMBFd':function(_0x5b2087,_0xcc47d6){return _0x5b2087+_0xcc47d6;},'shmgs':_0x330f05(0x77c)+_0x330f05(0x7bf)+_0xc2bfbd(0x33b),'eGORO':function(_0x1766ec,_0x59a8e1){return _0x1766ec+_0x59a8e1;},'rTYOL':function(_0x2fa7a0,_0x4b8ba0){return _0x2fa7a0+_0x4b8ba0;},'sBGds':_0x487daf(0x1c0)+'rl','ZoYAV':function(_0x1d733d,_0x4d06fb){return _0x1d733d+_0x4d06fb;},'VuEEW':function(_0x499bd8,_0x49aadf){return _0x499bd8(_0x49aadf);},'bzFGW':_0xb47290(0x284),'SVBtK':_0x487daf(0xa39)+'rl','DFqKE':_0xb47290(0xb3d)+_0xb47290(0x7bf)+_0xc2bfbd(0x33b),'WDyRf':function(_0x3dd0ea,_0x595561){return _0x3dd0ea+_0x595561;},'hMzwv':_0xc2bfbd(0x3dd)+_0x487daf(0x582)+_0xc2bfbd(0xb3e),'eCWNj':function(_0x58c5f5,_0x126132){return _0x58c5f5+_0x126132;},'xIDRW':_0x4bbd30(0x380)+_0x4bbd30(0x7bf)+_0xc2bfbd(0x33b),'yrNag':function(_0x25df22,_0x20099a){return _0x25df22(_0x20099a);},'mavCW':_0x4bbd30(0x67c)+_0x487daf(0x582)+_0x4bbd30(0xb3e),'nWTJl':function(_0x38ecd3,_0x112dd4){return _0x38ecd3+_0x112dd4;},'xtnkC':function(_0x56d2f7,_0x3558d7){return _0x56d2f7+_0x3558d7;},'ZlIZi':_0x330f05(0x5d5)+'l','tTshf':function(_0x120eb0,_0x4a9dbc){return _0x120eb0+_0x4a9dbc;},'JlwjM':_0xb47290(0x913)+'rl','OqNaI':function(_0x2588fc,_0x52b0d8){return _0x2588fc(_0x52b0d8);},'ZnFzJ':_0x4bbd30(0x6c2)+'l','ZBDpR':function(_0x5c6d00,_0x3d291e){return _0x5c6d00+_0x3d291e;},'lhZcP':_0xc2bfbd(0x7db)+':','fSlmQ':function(_0x13e4a0,_0x13e55f){return _0x13e4a0+_0x13e55f;},'yXwhW':function(_0x3a5ee6,_0x2bb781){return _0x3a5ee6+_0x2bb781;},'wuaEc':function(_0x34740d,_0x668195){return _0x34740d+_0x668195;},'QRESk':_0x487daf(0x4cd)+'l','vZRGD':function(_0x538150,_0x186180){return _0x538150(_0x186180);},'yeikg':_0x487daf(0x7db)+_0x330f05(0x5b1)+_0x4bbd30(0x393)+'l','XATLM':function(_0x142074,_0x20b09b){return _0x142074+_0x20b09b;},'WIPIn':_0xb47290(0x7db)+_0x4bbd30(0x339),'OBySs':function(_0x3a7ab5,_0x4fcb6b){return _0x3a7ab5(_0x4fcb6b);},'bisuB':function(_0x32d128,_0x115a82){return _0x32d128+_0x115a82;},'OXndz':_0x487daf(0x5b1)+_0xc2bfbd(0x393)+'l','YUUEb':_0x330f05(0x5b1)+_0xb47290(0x339),'fUytc':function(_0x1f7b52,_0x332eb8){return _0x1f7b52+_0x332eb8;},'MhfZy':_0x4bbd30(0x339),'NDpSZ':_0x487daf(0x2f7),'oICWE':_0x330f05(0x8e4)+':','skwLk':function(_0x4f5114,_0x2996dd){return _0x4f5114!==_0x2996dd;},'nNrPY':_0x487daf(0xc7b),'EcOqd':_0xc2bfbd(0x528),'UXboG':function(_0x4ad9cf,_0x5c9fa5){return _0x4ad9cf(_0x5c9fa5);},'bmjhJ':_0x487daf(0x690),'HIKls':_0x487daf(0x947),'eJoEC':function(_0x2bc04f,_0x443ca3){return _0x2bc04f<_0x443ca3;},'iLYmr':function(_0x5b4874,_0x1acfb9){return _0x5b4874+_0x1acfb9;},'JQjmT':function(_0x52f046,_0x229b03){return _0x52f046+_0x229b03;},'fpgoc':_0xc2bfbd(0xac5)+'\x20','apZhb':_0x487daf(0xb45)+_0xb47290(0xc2b)+_0xb47290(0xbcc)+_0x4bbd30(0xbfb)+_0x4bbd30(0xad6)+_0xc2bfbd(0x7cd)+_0x487daf(0xb84)+_0x330f05(0xa32)+_0xc2bfbd(0x33d)+_0x487daf(0x170)+_0xc2bfbd(0x2f6)+_0x330f05(0x89b)+_0xc2bfbd(0xc6d)+_0x4bbd30(0x518)+'果:','RtFEJ':function(_0x1152a8,_0x40d64e){return _0x1152a8+_0x40d64e;},'DtAkw':_0xb47290(0x3fa)+'m','hnrnV':_0xc2bfbd(0x306)+_0xc2bfbd(0x3c0)+_0xc2bfbd(0x672)+_0xb47290(0xb7b)+_0xb47290(0x78d)+_0xc2bfbd(0x23f)+_0xb47290(0x61d)+_0x330f05(0x7c8)+_0x487daf(0x6fd)+_0xb47290(0x4d5)+_0x487daf(0x6c9)+_0x4bbd30(0x3ac)+_0x330f05(0x64f)+_0x330f05(0x369)+_0x330f05(0x238)+_0x487daf(0x8c3)+_0x4bbd30(0x737),'DqsNp':_0xb47290(0xb86)+'\x0a','VvPAL':function(_0x442a42,_0x48b9cb){return _0x442a42+_0x48b9cb;},'NXxdf':_0x487daf(0x849)+_0x487daf(0x8c9),'oBXwR':_0xc2bfbd(0x983),'ERxoz':function(_0x3dc190,_0x26ec68,_0x40a985){return _0x3dc190(_0x26ec68,_0x40a985);},'lTyNB':function(_0x222c92,_0x26593d){return _0x222c92(_0x26593d);},'oylUW':function(_0x4c3ceb,_0x5c51c0){return _0x4c3ceb+_0x5c51c0;},'nrrSR':function(_0x176b77,_0x642d1c){return _0x176b77+_0x642d1c;},'FQCph':_0xc2bfbd(0x73f)+_0x330f05(0x7a1)+_0xb47290(0x59e)+_0x4bbd30(0x63b)+_0xb47290(0x6fc)+'\x22>','uafuz':_0xb47290(0x5b1)+_0x487daf(0x6ac)+_0xc2bfbd(0x809)+_0x4bbd30(0x7e9)+_0x330f05(0x992)+_0xb47290(0xb89),'otbjS':function(_0x31ebef,_0x10f9ed){return _0x31ebef!=_0x10f9ed;},'fUAOJ':_0x330f05(0x296),'hCYDL':function(_0x32336f,_0x80ed50){return _0x32336f+_0x80ed50;},'cVsXq':function(_0x28955e,_0xedb2d3){return _0x28955e+_0xedb2d3;},'VEQLa':_0x330f05(0x610),'VEHfE':_0xc2bfbd(0x95f)+'\x0a','PAQkf':_0xb47290(0x3ea),'NPLpv':function(_0x51ce52,_0x2feb1a){return _0x51ce52+_0x2feb1a;},'LrvmF':function(_0x57a1af,_0x549939){return _0x57a1af+_0x549939;},'jKwam':_0xc2bfbd(0x5b1)+_0x4bbd30(0x6ac)+_0x330f05(0x809)+_0x487daf(0x506)+_0xc2bfbd(0x69b)+'q=','sVkqp':_0x330f05(0xbdd)+_0x4bbd30(0x738)+_0x487daf(0xa2b)+_0x4bbd30(0xba4)+_0x487daf(0x9b8)+_0x4bbd30(0x871)+_0x4bbd30(0x41d)+_0xb47290(0xb2f)+_0xc2bfbd(0x5bb)+_0x330f05(0x79f)+_0x487daf(0x6da)+_0x487daf(0x56a)+_0x4bbd30(0x451)+_0x4bbd30(0x681)+'n'};if(_0x4c9205[_0x487daf(0x50b)](lock_chat,0x730+-0x117*-0xd+0xb*-0x1f1))return;lock_chat=0x1cc6+-0x7b2+-0x19f*0xd,knowledge=document[_0xc2bfbd(0x4f9)+_0x330f05(0x354)+_0x330f05(0x778)](_0x4c9205[_0xb47290(0x804)])[_0x330f05(0x94b)+_0xb47290(0xc37)][_0xb47290(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x330f05(0x92b)+'ce'](/<hr.*/gs,'')[_0x4bbd30(0x92b)+'ce'](/<[^>]+>/g,'')[_0xc2bfbd(0x92b)+'ce'](/\n\n/g,'\x0a');if(_0x4c9205[_0x487daf(0x8fa)](knowledge[_0x330f05(0x58b)+'h'],0x781+0x20+-0x1*0x611))knowledge[_0xc2bfbd(0x65a)](-0x1*-0x1b73+-0x4bc+-0x1527);knowledge+=_0x4c9205[_0xc2bfbd(0x1d3)](_0x4c9205[_0xc2bfbd(0x7cf)](_0x4c9205[_0xb47290(0xb5d)],original_search_query),_0x4c9205[_0x487daf(0xcab)]);let _0xcdfde2=document[_0x330f05(0x4f9)+_0xc2bfbd(0x354)+_0xb47290(0x778)](_0x4c9205[_0xb47290(0x24f)])[_0xc2bfbd(0x7ca)];if(_0x44d5ed){if(_0x4c9205[_0x487daf(0x886)](_0x4c9205[_0xc2bfbd(0x1bc)],_0x4c9205[_0xb47290(0x1bc)]))_0xcdfde2=_0x44d5ed[_0xc2bfbd(0x357)+_0x487daf(0x2ed)+'t'],_0x44d5ed[_0xc2bfbd(0x193)+'e'](),_0x4c9205[_0xc2bfbd(0xad3)](chatmore);else{_0x319828=_0x4c9205[_0x4bbd30(0x207)](_0xf9bca1,0x2300+0x2b7*-0x4+0xa7*-0x25);if(!_0x511508)throw _0x11e447;return _0x4c9205[_0x330f05(0xc27)](_0x5cd373,0x796+0x1*-0x413+-0x7*0x39)[_0xc2bfbd(0x1fc)](()=>_0x3e572e(_0x414dcc,_0x1fc8cb,_0x1fd2c4));}}if(_0x4c9205[_0xb47290(0x452)](_0xcdfde2[_0x487daf(0x58b)+'h'],0x25ba+0xea4+-0x1*0x345e)||_0x4c9205[_0x487daf(0x8fa)](_0xcdfde2[_0x487daf(0x58b)+'h'],0x21d1+-0x1b4c+-0x5f9))return;_0x4c9205[_0x4bbd30(0x72d)](fetchRetry,_0x4c9205[_0xb47290(0x574)](_0x4c9205[_0x330f05(0xa99)](_0x4c9205[_0x330f05(0x420)],_0x4c9205[_0x487daf(0x6b8)](encodeURIComponent,_0xcdfde2)),_0x4c9205[_0xc2bfbd(0xae9)]),0x1*0x24a5+0xd*0x19a+-0x3974)[_0x487daf(0x1fc)](_0x56ed5d=>_0x56ed5d[_0xb47290(0x739)]())[_0x487daf(0x1fc)](_0x35e475=>{const _0x296bc2=_0x487daf,_0x3b8b6b=_0xc2bfbd,_0x41d8b2=_0x4bbd30,_0x51f6bc=_0xb47290,_0x4ea362=_0x487daf,_0x950518={'nAyLf':function(_0x145c35,_0x546e25){const _0x23126a=_0x2881;return _0x4c9205[_0x23126a(0xc27)](_0x145c35,_0x546e25);},'aSVZS':function(_0x57a95e){const _0x20ec59=_0x2881;return _0x4c9205[_0x20ec59(0xad3)](_0x57a95e);},'ESLPt':function(_0x28d29b,_0x3bb319){const _0x33efd0=_0x2881;return _0x4c9205[_0x33efd0(0x5e1)](_0x28d29b,_0x3bb319);},'dZQtY':function(_0x4b078a,_0x5ad9d5){const _0x1f4ee9=_0x2881;return _0x4c9205[_0x1f4ee9(0x27d)](_0x4b078a,_0x5ad9d5);},'jjIHJ':function(_0x3e684c,_0x289be0){const _0x1b4105=_0x2881;return _0x4c9205[_0x1b4105(0xacc)](_0x3e684c,_0x289be0);},'eQytP':function(_0x189e7f,_0x1d600a){const _0x4518c5=_0x2881;return _0x4c9205[_0x4518c5(0x5e1)](_0x189e7f,_0x1d600a);},'slWQv':_0x4c9205[_0x296bc2(0xc3b)],'hWQyc':_0x4c9205[_0x3b8b6b(0x9df)],'qvtxp':_0x4c9205[_0x3b8b6b(0x549)],'SVkUe':_0x4c9205[_0x296bc2(0x24f)],'YStet':_0x4c9205[_0x51f6bc(0xcb0)],'jqzLh':_0x4c9205[_0x4ea362(0x9f7)],'PKRSn':function(_0x49234a,_0x5bdcdc){const _0x45770f=_0x41d8b2;return _0x4c9205[_0x45770f(0x757)](_0x49234a,_0x5bdcdc);},'wBUag':_0x4c9205[_0x3b8b6b(0x57e)],'omXFz':_0x4c9205[_0x4ea362(0x6a0)],'NAeLa':function(_0x22d224,_0x1652d1){const _0x3bfece=_0x3b8b6b;return _0x4c9205[_0x3bfece(0x886)](_0x22d224,_0x1652d1);},'ylxuJ':_0x4c9205[_0x41d8b2(0x478)],'XWLJK':_0x4c9205[_0x3b8b6b(0x7c2)],'JuDMe':function(_0x42d343,_0x1d25be){const _0x5eaa87=_0x296bc2;return _0x4c9205[_0x5eaa87(0x8fa)](_0x42d343,_0x1d25be);},'yYHuO':function(_0x4c1cda,_0xe5fc5d){const _0xe8e48d=_0x41d8b2;return _0x4c9205[_0xe8e48d(0x452)](_0x4c1cda,_0xe5fc5d);},'njhCK':_0x4c9205[_0x3b8b6b(0x706)],'pXvPM':_0x4c9205[_0x51f6bc(0xc03)],'gFvNn':_0x4c9205[_0x296bc2(0x7f7)],'bRnDR':_0x4c9205[_0x296bc2(0x97a)],'lAGpT':_0x4c9205[_0x3b8b6b(0x956)],'CkVJa':function(_0x58dee7,_0x3ec977){const _0x5c6c3a=_0x41d8b2;return _0x4c9205[_0x5c6c3a(0x771)](_0x58dee7,_0x3ec977);},'fGetv':_0x4c9205[_0x4ea362(0x759)],'jXhGg':function(_0x551263,_0x36bb9b){const _0x5e3b1b=_0x3b8b6b;return _0x4c9205[_0x5e3b1b(0x757)](_0x551263,_0x36bb9b);},'aAvtM':_0x4c9205[_0x296bc2(0x3bb)],'yvnMR':function(_0x46c8b1,_0x5b9ef8){const _0x2e7fb5=_0x3b8b6b;return _0x4c9205[_0x2e7fb5(0x757)](_0x46c8b1,_0x5b9ef8);},'RepFw':_0x4c9205[_0x41d8b2(0xae6)],'kZZzR':_0x4c9205[_0x41d8b2(0xb9f)],'SBjTo':_0x4c9205[_0x41d8b2(0x67b)],'Yumlx':_0x4c9205[_0x3b8b6b(0x2c6)],'jFMOb':function(_0x48afcf,_0x814301,_0x3c9a26){const _0x1a5303=_0x51f6bc;return _0x4c9205[_0x1a5303(0x72d)](_0x48afcf,_0x814301,_0x3c9a26);},'TdabX':_0x4c9205[_0x41d8b2(0x2f5)],'xDnRu':function(_0x5789c4,_0x41bee2){const _0x100f3f=_0x41d8b2;return _0x4c9205[_0x100f3f(0x771)](_0x5789c4,_0x41bee2);},'YwqxS':_0x4c9205[_0x3b8b6b(0x9f8)],'zKwIz':_0x4c9205[_0x41d8b2(0x53e)],'iYigA':function(_0x17cd37,_0x33d701){const _0x8930ca=_0x41d8b2;return _0x4c9205[_0x8930ca(0x757)](_0x17cd37,_0x33d701);},'jxbZB':_0x4c9205[_0x4ea362(0x9e9)],'fdwvh':_0x4c9205[_0x41d8b2(0xbf4)],'RzyYM':_0x4c9205[_0x41d8b2(0xac2)],'OaQod':_0x4c9205[_0x296bc2(0x7fd)],'oZusM':_0x4c9205[_0x41d8b2(0xc1b)],'GqGUs':function(_0xff0faa,_0x4365ac){const _0x5b5fc8=_0x4ea362;return _0x4c9205[_0x5b5fc8(0x515)](_0xff0faa,_0x4365ac);},'ipYXB':_0x4c9205[_0x3b8b6b(0x5d2)],'mGybq':_0x4c9205[_0x4ea362(0x287)],'peMVt':function(_0x2dba4e,_0xace746){const _0x302149=_0x4ea362;return _0x4c9205[_0x302149(0x552)](_0x2dba4e,_0xace746);},'YMmMR':_0x4c9205[_0x51f6bc(0x677)],'XxcJW':function(_0x45f619,_0x22051a){const _0x2f0407=_0x41d8b2;return _0x4c9205[_0x2f0407(0x4ad)](_0x45f619,_0x22051a);},'mDxDR':_0x4c9205[_0x51f6bc(0xafc)],'ulITW':_0x4c9205[_0x41d8b2(0x9d6)],'dlNHd':function(_0x5d119e,_0x5001c8){const _0x310669=_0x296bc2;return _0x4c9205[_0x310669(0xc27)](_0x5d119e,_0x5001c8);},'PbEui':_0x4c9205[_0x41d8b2(0x2a9)],'VthXK':function(_0x558fbe,_0x19fa84){const _0x5ce98d=_0x296bc2;return _0x4c9205[_0x5ce98d(0xc27)](_0x558fbe,_0x19fa84);},'UnuWv':_0x4c9205[_0x3b8b6b(0x7e1)],'VEtfs':function(_0x311df3,_0x1a4838){const _0x41deec=_0x51f6bc;return _0x4c9205[_0x41deec(0x2b0)](_0x311df3,_0x1a4838);},'Hvbho':function(_0x26aff5,_0x2b52d5){const _0x52950b=_0x3b8b6b;return _0x4c9205[_0x52950b(0x813)](_0x26aff5,_0x2b52d5);},'AmLTb':_0x4c9205[_0x41d8b2(0x9f2)],'cDaCi':function(_0x2e4591,_0x5073e9){const _0x2a026c=_0x41d8b2;return _0x4c9205[_0x2a026c(0x2c0)](_0x2e4591,_0x5073e9);},'DNZDQ':function(_0x388a13,_0x27de2e){const _0x21be99=_0x4ea362;return _0x4c9205[_0x21be99(0x285)](_0x388a13,_0x27de2e);},'PROkS':function(_0x1ec553,_0x402ce9){const _0x2c2618=_0x4ea362;return _0x4c9205[_0x2c2618(0x47d)](_0x1ec553,_0x402ce9);},'OSTOn':_0x4c9205[_0x51f6bc(0x7f2)],'Epexc':function(_0x16ea53,_0x4a7e7c){const _0x5e445a=_0x51f6bc;return _0x4c9205[_0x5e445a(0x6b8)](_0x16ea53,_0x4a7e7c);},'VCZhh':function(_0x2c5c7f,_0x48675a){const _0x44f3c8=_0x3b8b6b;return _0x4c9205[_0x44f3c8(0xae1)](_0x2c5c7f,_0x48675a);},'IJrrk':_0x4c9205[_0x41d8b2(0x594)],'RDGTh':function(_0x2060cb,_0x4320c9){const _0x5f3bfa=_0x3b8b6b;return _0x4c9205[_0x5f3bfa(0x6b8)](_0x2060cb,_0x4320c9);},'JMXfh':function(_0x22e593,_0x20e4f9){const _0x8c400e=_0x3b8b6b;return _0x4c9205[_0x8c400e(0x5e1)](_0x22e593,_0x20e4f9);},'gMflu':_0x4c9205[_0x3b8b6b(0xa47)],'cvdku':function(_0x1f4652,_0x5ac9f1){const _0x40e477=_0x3b8b6b;return _0x4c9205[_0x40e477(0x6b8)](_0x1f4652,_0x5ac9f1);},'HCSpD':function(_0x1e14c7,_0x56e4b3){const _0x106cef=_0x4ea362;return _0x4c9205[_0x106cef(0x40e)](_0x1e14c7,_0x56e4b3);},'MXBkH':function(_0x2627db,_0x3d70a4){const _0x8a7d1c=_0x4ea362;return _0x4c9205[_0x8a7d1c(0x200)](_0x2627db,_0x3d70a4);},'jYKVB':_0x4c9205[_0x3b8b6b(0x4e1)],'pCrDB':function(_0x5df9df,_0x2f9386){const _0x49a718=_0x41d8b2;return _0x4c9205[_0x49a718(0x949)](_0x5df9df,_0x2f9386);},'IeeJv':function(_0x2077ae,_0x3363ac){const _0x2728fc=_0x3b8b6b;return _0x4c9205[_0x2728fc(0x650)](_0x2077ae,_0x3363ac);},'XPSOM':_0x4c9205[_0x41d8b2(0xb70)],'cmlkm':function(_0x20ea17,_0x316bfa){const _0x29f402=_0x296bc2;return _0x4c9205[_0x29f402(0x2c0)](_0x20ea17,_0x316bfa);},'YetEO':function(_0xc4c764,_0x465fe8){const _0x16290f=_0x296bc2;return _0x4c9205[_0x16290f(0xa2f)](_0xc4c764,_0x465fe8);},'pmmXs':function(_0x508ace,_0x4b8723){const _0x5000ac=_0x296bc2;return _0x4c9205[_0x5000ac(0x866)](_0x508ace,_0x4b8723);},'TcMmp':function(_0x16a6a9,_0x162193){const _0x50247b=_0x41d8b2;return _0x4c9205[_0x50247b(0xae1)](_0x16a6a9,_0x162193);},'QPAVc':_0x4c9205[_0x296bc2(0x609)],'oYbPx':function(_0x21189e,_0x2c4418){const _0x53a333=_0x41d8b2;return _0x4c9205[_0x53a333(0xa2f)](_0x21189e,_0x2c4418);},'nTbcA':_0x4c9205[_0x3b8b6b(0x319)],'VSDXb':function(_0x1a43c6,_0x29ab80){const _0x565ba1=_0x296bc2;return _0x4c9205[_0x565ba1(0x771)](_0x1a43c6,_0x29ab80);},'ABLJo':function(_0x98e03b,_0x589a82){const _0x2acf85=_0x296bc2;return _0x4c9205[_0x2acf85(0x866)](_0x98e03b,_0x589a82);},'jhZtl':_0x4c9205[_0x3b8b6b(0x4c3)],'zOwik':function(_0x1cb8ca,_0x2c4c7e){const _0xd0b040=_0x51f6bc;return _0x4c9205[_0xd0b040(0x285)](_0x1cb8ca,_0x2c4c7e);},'Sfbvb':function(_0x236c89,_0x4f4589){const _0x3cdec1=_0x296bc2;return _0x4c9205[_0x3cdec1(0x4f6)](_0x236c89,_0x4f4589);},'kFiQd':_0x4c9205[_0x296bc2(0xc57)],'pJMwV':function(_0x5e8243,_0x4dde7d){const _0x4cf9c0=_0x4ea362;return _0x4c9205[_0x4cf9c0(0x55e)](_0x5e8243,_0x4dde7d);},'ILFLk':_0x4c9205[_0x3b8b6b(0xcfb)],'QCekP':function(_0x2e1064,_0x29e8bb){const _0x521e3b=_0x3b8b6b;return _0x4c9205[_0x521e3b(0x4bc)](_0x2e1064,_0x29e8bb);},'Jyktt':function(_0x4d636c,_0x30eb36){const _0x3c503e=_0x296bc2;return _0x4c9205[_0x3c503e(0xa2f)](_0x4d636c,_0x30eb36);},'KrTzM':function(_0x159894,_0x4f9712){const _0x14a5db=_0x3b8b6b;return _0x4c9205[_0x14a5db(0xa2f)](_0x159894,_0x4f9712);},'EaYmV':_0x4c9205[_0x3b8b6b(0xa59)],'rgPcL':function(_0x4ee329,_0xb1d1ad){const _0x21451f=_0x4ea362;return _0x4c9205[_0x21451f(0xa82)](_0x4ee329,_0xb1d1ad);},'cTDXT':function(_0x33a880,_0x26a5b2){const _0x5a28d0=_0x51f6bc;return _0x4c9205[_0x5a28d0(0x2c0)](_0x33a880,_0x26a5b2);},'jxBpg':function(_0x39c970,_0x23e8be){const _0x48c2dd=_0x3b8b6b;return _0x4c9205[_0x48c2dd(0x7b6)](_0x39c970,_0x23e8be);},'fJfLN':_0x4c9205[_0x41d8b2(0x560)],'tpZqB':function(_0x3a490e,_0x34d151){const _0x260434=_0x51f6bc;return _0x4c9205[_0x260434(0x34c)](_0x3a490e,_0x34d151);},'LTCkY':_0x4c9205[_0x4ea362(0x5de)],'hNuPx':function(_0x435401,_0x2c71ba){const _0x5c88c5=_0x296bc2;return _0x4c9205[_0x5c88c5(0xc95)](_0x435401,_0x2c71ba);},'GKBHK':function(_0x44ad1e,_0x445767){const _0x97c40f=_0x3b8b6b;return _0x4c9205[_0x97c40f(0x40e)](_0x44ad1e,_0x445767);},'qSnzC':function(_0x231078,_0x5abfbb){const _0x5b4d4a=_0x41d8b2;return _0x4c9205[_0x5b4d4a(0x6b8)](_0x231078,_0x5abfbb);},'zXlnB':_0x4c9205[_0x4ea362(0x64e)],'yGjxj':function(_0x1df9e5,_0x5f1c1e){const _0x3d5c98=_0x3b8b6b;return _0x4c9205[_0x3d5c98(0xc95)](_0x1df9e5,_0x5f1c1e);},'YKvUn':function(_0x1b7e23,_0x441b70){const _0x814da9=_0x4ea362;return _0x4c9205[_0x814da9(0x2c0)](_0x1b7e23,_0x441b70);},'uMoZU':function(_0x2a045a,_0x4f92c8){const _0x566120=_0x51f6bc;return _0x4c9205[_0x566120(0x623)](_0x2a045a,_0x4f92c8);},'MATIG':_0x4c9205[_0x3b8b6b(0x45d)],'rPqHo':function(_0x296e02,_0x5aa5c3){const _0x6c4ede=_0x3b8b6b;return _0x4c9205[_0x6c4ede(0x9a8)](_0x296e02,_0x5aa5c3);},'WKtck':function(_0x49e113,_0x3c8058){const _0x4680e1=_0x3b8b6b;return _0x4c9205[_0x4680e1(0x6a9)](_0x49e113,_0x3c8058);},'GVRjW':function(_0x44a5f3,_0x470522){const _0x3ec809=_0x4ea362;return _0x4c9205[_0x3ec809(0xc27)](_0x44a5f3,_0x470522);},'pafJo':function(_0x50f2fe,_0x30bfba){const _0x5dfc1d=_0x4ea362;return _0x4c9205[_0x5dfc1d(0x1e0)](_0x50f2fe,_0x30bfba);},'TwTDU':_0x4c9205[_0x296bc2(0x495)],'zAWBy':function(_0x2908ce,_0x1ecb0f){const _0x1947f6=_0x4ea362;return _0x4c9205[_0x1947f6(0x977)](_0x2908ce,_0x1ecb0f);},'PuKMz':_0x4c9205[_0x3b8b6b(0x7ab)],'QLoQk':function(_0x24128e,_0x4d59a1){const _0x4ffefc=_0x4ea362;return _0x4c9205[_0x4ffefc(0xc27)](_0x24128e,_0x4d59a1);},'xKtCW':function(_0x2ee04f,_0x2ba8db){const _0x242aef=_0x51f6bc;return _0x4c9205[_0x242aef(0x70f)](_0x2ee04f,_0x2ba8db);},'NQAuR':_0x4c9205[_0x296bc2(0x1de)],'QBpwd':function(_0x250ef6,_0x338ee9){const _0x1b3f4e=_0x4ea362;return _0x4c9205[_0x1b3f4e(0x275)](_0x250ef6,_0x338ee9);},'uLjjx':function(_0x52ce0f,_0xf83d41){const _0x48928e=_0x4ea362;return _0x4c9205[_0x48928e(0xb4a)](_0x52ce0f,_0xf83d41);},'XXHBb':function(_0x301ec9,_0x55f574){const _0x177e25=_0x3b8b6b;return _0x4c9205[_0x177e25(0x977)](_0x301ec9,_0x55f574);},'ABIsw':_0x4c9205[_0x3b8b6b(0x839)],'kbmRe':_0x4c9205[_0x4ea362(0xc8f)],'XTNzT':function(_0x76aef9,_0x382f36){const _0x1ccec2=_0x41d8b2;return _0x4c9205[_0x1ccec2(0xb97)](_0x76aef9,_0x382f36);},'NVbZq':_0x4c9205[_0x41d8b2(0xa16)],'LAVUb':_0x4c9205[_0x51f6bc(0x9b2)],'LyiHD':_0x4c9205[_0x51f6bc(0x322)]};if(_0x4c9205[_0x4ea362(0x3aa)](_0x4c9205[_0x51f6bc(0x1a6)],_0x4c9205[_0x41d8b2(0xc5b)])){prompt=JSON[_0x51f6bc(0x7f0)](_0x4c9205[_0x4ea362(0xb91)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x41d8b2(0x8dc)](_0x35e475[_0x51f6bc(0xb63)+_0x41d8b2(0x8e3)][0xa31*0x1+-0x19c*-0xb+0x1*-0x1be5][_0x4ea362(0xb29)+'nt'])[0x11*0x9f+-0xa2*0xd+-0x254])),prompt[_0x4ea362(0x7a3)][_0x41d8b2(0xc83)+_0x41d8b2(0x8da)+_0x3b8b6b(0x225)+'y']=0x106*0x1c+0x13b2*0x1+-0x3059,prompt[_0x3b8b6b(0x7a3)][_0x51f6bc(0x37f)+_0x296bc2(0xb7c)+'e']=-0x1cc8+0x2277+0x5*-0x123+0.9;for(st in prompt[_0x51f6bc(0x545)]){if(_0x4c9205[_0x41d8b2(0x3aa)](_0x4c9205[_0x296bc2(0x968)],_0x4c9205[_0x51f6bc(0xc86)])){if(_0x4c9205[_0x296bc2(0xaca)](_0x4c9205[_0x3b8b6b(0x949)](_0x4c9205[_0x4ea362(0xbf9)](_0x4c9205[_0x41d8b2(0x7a6)](_0x4c9205[_0x41d8b2(0x200)](_0x4c9205[_0x4ea362(0xa82)](knowledge,prompt[_0x3b8b6b(0x545)][st]),'\x0a'),_0x4c9205[_0x296bc2(0x356)]),_0xcdfde2),_0x4c9205[_0x3b8b6b(0x378)])[_0x51f6bc(0x58b)+'h'],-0x1d79+-0x11*0x10d+-0x26b*-0x16))knowledge+=_0x4c9205[_0x296bc2(0xc6c)](prompt[_0x296bc2(0x545)][st],'\x0a');}else _0xb088f9+='';}const _0x47058c={};_0x47058c[_0x51f6bc(0x1bd)]=_0x4c9205[_0x51f6bc(0x4a2)],_0x47058c[_0x51f6bc(0xb29)+'nt']=_0x4c9205[_0x51f6bc(0x9c2)],prompt[_0x3b8b6b(0x7a3)][_0x41d8b2(0x867)+_0x41d8b2(0x678)]=[_0x47058c,{'role':_0x4c9205[_0x41d8b2(0x9f7)],'content':_0x4c9205[_0x41d8b2(0x650)](_0x4c9205[_0x296bc2(0x234)],knowledge)},{'role':_0x4c9205[_0x296bc2(0xcb0)],'content':_0x4c9205[_0x41d8b2(0x87c)](_0x4c9205[_0x296bc2(0x9a8)](_0x4c9205[_0x41d8b2(0xc32)],_0xcdfde2),'')}],optionsweb={'method':_0x4c9205[_0x4ea362(0x24d)],'headers':headers,'body':_0x4c9205[_0x3b8b6b(0xb91)](b64EncodeUnicode,JSON[_0x4ea362(0x498)+_0x3b8b6b(0x806)](prompt[_0x41d8b2(0x7a3)]))},document[_0x4ea362(0x4f9)+_0x51f6bc(0x354)+_0x3b8b6b(0x778)](_0x4c9205[_0x41d8b2(0x2c6)])[_0x296bc2(0x94b)+_0x3b8b6b(0xc37)]='',_0x4c9205[_0x4ea362(0xc1f)](markdownToHtml,_0x4c9205[_0x51f6bc(0x27a)](beautify,_0xcdfde2),document[_0x51f6bc(0x4f9)+_0x296bc2(0x354)+_0x296bc2(0x778)](_0x4c9205[_0x51f6bc(0x2c6)])),chatTemp='',text_offset=-(0x1e5*-0x8+0x1*-0x5a5+0xa67*0x2),prev_chat=document[_0x51f6bc(0x905)+_0x4ea362(0x16a)+_0x41d8b2(0x3e2)](_0x4c9205[_0x296bc2(0x2f5)])[_0x296bc2(0x94b)+_0x4ea362(0xc37)],prev_chat=_0x4c9205[_0x51f6bc(0xbc3)](_0x4c9205[_0x3b8b6b(0x6c0)](_0x4c9205[_0x3b8b6b(0xb4a)](prev_chat,_0x4c9205[_0x3b8b6b(0x1bb)]),document[_0x3b8b6b(0x4f9)+_0x51f6bc(0x354)+_0x296bc2(0x778)](_0x4c9205[_0x3b8b6b(0x2c6)])[_0x41d8b2(0x94b)+_0x51f6bc(0xc37)]),_0x4c9205[_0x3b8b6b(0x53e)]),_0x4c9205[_0x4ea362(0x72d)](fetch,_0x4c9205[_0x41d8b2(0x2e9)],optionsweb)[_0x296bc2(0x1fc)](_0x469269=>{const _0x1bde46=_0x51f6bc,_0x179e11=_0x296bc2,_0x4aaf5f=_0x3b8b6b,_0x4f2de7=_0x3b8b6b,_0xa18d89=_0x4ea362,_0x20a343={'opAFC':function(_0x2d5f37,_0xf76c2a){const _0x74f5f5=_0x2881;return _0x950518[_0x74f5f5(0xb54)](_0x2d5f37,_0xf76c2a);},'PFfpg':_0x950518[_0x1bde46(0xa4b)],'bJfrr':_0x950518[_0x179e11(0xa5d)],'srXsL':_0x950518[_0x179e11(0xa4e)]};if(_0x950518[_0x179e11(0x90d)](_0x950518[_0x179e11(0xc0b)],_0x950518[_0x4aaf5f(0x50a)])){const _0x1a0b18=/^[0-9,\s]+$/;return!_0x1a0b18[_0x179e11(0x483)](_0x1fc76f);}else{const _0x971535=_0x469269[_0x4f2de7(0x370)][_0x179e11(0x84e)+_0x4aaf5f(0xacd)]();let _0x2f7f55='',_0x513a48='';_0x971535[_0x4aaf5f(0x350)]()[_0x4f2de7(0x1fc)](function _0x2493c5({done:_0x4f7950,value:_0x4c04a2}){const _0x233467=_0xa18d89,_0x17184b=_0x1bde46,_0x1249dd=_0x4aaf5f,_0x4ff16f=_0x1bde46,_0x303d53=_0x4aaf5f,_0x4bb86b={'cPAIG':function(_0x17914f,_0x19f5e7){const _0x3ffd34=_0x2881;return _0x950518[_0x3ffd34(0x7c0)](_0x17914f,_0x19f5e7);},'WVcWl':function(_0x388a45){const _0x3bd203=_0x2881;return _0x950518[_0x3bd203(0x8db)](_0x388a45);},'RAGTW':function(_0x2ca61e,_0x5a3c0a){const _0xa3e7c=_0x2881;return _0x950518[_0xa3e7c(0x770)](_0x2ca61e,_0x5a3c0a);},'NqvJM':function(_0x375496,_0x38d534){const _0x1e5f6b=_0x2881;return _0x950518[_0x1e5f6b(0x28c)](_0x375496,_0x38d534);},'wnafj':function(_0x4b81cf,_0x51d40b){const _0x30f1a3=_0x2881;return _0x950518[_0x30f1a3(0x1ff)](_0x4b81cf,_0x51d40b);},'rATXl':function(_0x5156e6,_0x514525){const _0x2a5bb4=_0x2881;return _0x950518[_0x2a5bb4(0x770)](_0x5156e6,_0x514525);},'aQcYK':function(_0x1199fa,_0x1e427f){const _0x285e25=_0x2881;return _0x950518[_0x285e25(0x2ab)](_0x1199fa,_0x1e427f);},'apNKB':_0x950518[_0x233467(0xce6)],'udVuQ':_0x950518[_0x233467(0x273)],'UssNm':function(_0x1ac876){const _0x2cee7a=_0x233467;return _0x950518[_0x2cee7a(0x8db)](_0x1ac876);},'sPSCo':_0x950518[_0x17184b(0x76c)],'GvIBo':_0x950518[_0x233467(0xcb2)],'vYqFt':_0x950518[_0x1249dd(0x606)],'ULqlB':_0x950518[_0x233467(0x7c4)],'IWkuI':function(_0x2c71a7,_0x2fd757){const _0x58d0bf=_0x233467;return _0x950518[_0x58d0bf(0x3e7)](_0x2c71a7,_0x2fd757);},'yFxSH':_0x950518[_0x233467(0x60b)],'tzIWe':_0x950518[_0x303d53(0x587)],'OCyxs':function(_0x33230a,_0x43b7df){const _0xc7b4d6=_0x233467;return _0x950518[_0xc7b4d6(0x252)](_0x33230a,_0x43b7df);},'qoOVQ':_0x950518[_0x1249dd(0x2a4)],'Zwfdj':_0x950518[_0x233467(0xb7a)],'IuTST':function(_0x11801c,_0x147ec4){const _0x4e0193=_0x1249dd;return _0x950518[_0x4e0193(0x328)](_0x11801c,_0x147ec4);},'fqTZC':function(_0x58e7f2,_0x2ee00e){const _0x48966d=_0x303d53;return _0x950518[_0x48966d(0x3d1)](_0x58e7f2,_0x2ee00e);},'HxnKa':_0x950518[_0x303d53(0x937)],'NjUCY':function(_0x2b7d1a,_0x303547){const _0x168b17=_0x4ff16f;return _0x950518[_0x168b17(0x252)](_0x2b7d1a,_0x303547);},'oBEhn':_0x950518[_0x303d53(0xbe9)],'HxRyb':_0x950518[_0x233467(0x53f)],'CewIR':function(_0x5a7528,_0xcd5c38){const _0x245580=_0x1249dd;return _0x950518[_0x245580(0x252)](_0x5a7528,_0xcd5c38);},'eLoAn':_0x950518[_0x303d53(0x803)],'aMToE':_0x950518[_0x4ff16f(0x31c)],'GEuVT':function(_0x2c3068,_0x1f7e17){const _0x54859f=_0x233467;return _0x950518[_0x54859f(0xb54)](_0x2c3068,_0x1f7e17);},'vkSUG':_0x950518[_0x303d53(0x9f4)],'VGngz':function(_0x61861f,_0x4a57e1){const _0xa4d7e5=_0x17184b;return _0x950518[_0xa4d7e5(0x782)](_0x61861f,_0x4a57e1);},'oyYwJ':_0x950518[_0x233467(0x865)],'iNOMq':function(_0x2b75ee,_0x25c220){const _0x49a5ff=_0x233467;return _0x950518[_0x49a5ff(0x72b)](_0x2b75ee,_0x25c220);},'uPFhG':_0x950518[_0x4ff16f(0x7c5)],'vhICZ':_0x950518[_0x17184b(0x899)],'ILtQH':_0x950518[_0x233467(0xa6e)],'bwCbP':_0x950518[_0x4ff16f(0x87b)],'uMVAD':function(_0x363774,_0x5bce61,_0x417493){const _0x3a1450=_0x303d53;return _0x950518[_0x3a1450(0xb31)](_0x363774,_0x5bce61,_0x417493);},'xuSgF':_0x950518[_0x233467(0x879)],'fHOzC':function(_0x30c04b,_0x4e0e7e){const _0x34099e=_0x1249dd;return _0x950518[_0x34099e(0x29f)](_0x30c04b,_0x4e0e7e);},'QhRuL':function(_0x21bc73,_0x5bfa8d){const _0x473f85=_0x1249dd;return _0x950518[_0x473f85(0xb54)](_0x21bc73,_0x5bfa8d);},'YPuor':_0x950518[_0x4ff16f(0x46c)],'PXVMc':_0x950518[_0x1249dd(0x7fb)]};if(_0x950518[_0x1249dd(0x91d)](_0x950518[_0x4ff16f(0x89c)],_0x950518[_0x17184b(0x89c)]))(function(){return![];}[_0x303d53(0xccd)+_0x4ff16f(0x2a7)+'r'](LhGEdl[_0x303d53(0x1be)](LhGEdl[_0x17184b(0x3db)],LhGEdl[_0x17184b(0x33c)]))[_0x4ff16f(0x982)](LhGEdl[_0x1249dd(0x6e4)]));else{if(_0x4f7950)return;const _0xc09039=new TextDecoder(_0x950518[_0x1249dd(0x429)])[_0x17184b(0x368)+'e'](_0x4c04a2);return _0xc09039[_0x17184b(0x9f5)]()[_0x4ff16f(0x73c)]('\x0a')[_0x1249dd(0x335)+'ch'](function(_0x5729e7){const _0x4e693b=_0x1249dd,_0x4bfe76=_0x303d53,_0x4fe20c=_0x1249dd,_0x20a9d6=_0x1249dd,_0x51e61e=_0x4ff16f,_0x42d82c={'qBBle':function(_0x28130f,_0x21caa8){const _0x4dc1ca=_0x2881;return _0x4bb86b[_0x4dc1ca(0x872)](_0x28130f,_0x21caa8);},'LssmM':function(_0x1d16e2,_0x20971f){const _0x34758c=_0x2881;return _0x4bb86b[_0x34758c(0x301)](_0x1d16e2,_0x20971f);},'lduse':function(_0x9459e5,_0x27ca98){const _0x58959e=_0x2881;return _0x4bb86b[_0x58959e(0x440)](_0x9459e5,_0x27ca98);},'uZLGH':_0x4bb86b[_0x4e693b(0x22f)],'ZMEap':_0x4bb86b[_0x4e693b(0x768)],'dEiaN':function(_0x5d9b3b){const _0x518f37=_0x4bfe76;return _0x4bb86b[_0x518f37(0x3e8)](_0x5d9b3b);},'hLrbU':_0x4bb86b[_0x4bfe76(0x28b)],'vtNNP':_0x4bb86b[_0x20a9d6(0x7a5)],'eFZxv':_0x4bb86b[_0x4fe20c(0x8bd)],'gQevl':_0x4bb86b[_0x4e693b(0x4f8)]};if(_0x4bb86b[_0x4bfe76(0x850)](_0x4bb86b[_0x20a9d6(0x719)],_0x4bb86b[_0x4bfe76(0xce4)])){try{if(_0x4bb86b[_0x4e693b(0xc85)](_0x4bb86b[_0x20a9d6(0x3ae)],_0x4bb86b[_0x51e61e(0x3ae)]))document[_0x51e61e(0x4f9)+_0x51e61e(0x354)+_0x4e693b(0x778)](_0x4bb86b[_0x51e61e(0x58c)])[_0x4fe20c(0xbba)+_0x51e61e(0x1a9)]=document[_0x51e61e(0x4f9)+_0x51e61e(0x354)+_0x51e61e(0x778)](_0x4bb86b[_0x20a9d6(0x58c)])[_0x4fe20c(0xbba)+_0x51e61e(0x593)+'ht'];else{let _0x963f01;try{const _0x4810b2=UbkeMm[_0x4e693b(0x629)](_0x4b9b94,UbkeMm[_0x20a9d6(0xa05)](UbkeMm[_0x4e693b(0x5af)](UbkeMm[_0x51e61e(0x5cb)],UbkeMm[_0x4fe20c(0x639)]),');'));_0x963f01=UbkeMm[_0x20a9d6(0xc7c)](_0x4810b2);}catch(_0x3bd062){_0x963f01=_0x5ce71d;}_0x963f01[_0x20a9d6(0xbb8)+_0x20a9d6(0x4c9)+'l'](_0xd52562,-0x2*0x8bd+-0x3*-0xaad+0x113);}}catch(_0x1d5605){}_0x2f7f55='';if(_0x4bb86b[_0x20a9d6(0x8cc)](_0x5729e7[_0x4bfe76(0x58b)+'h'],0x1c48+0x89*0x43+-0x401d))_0x2f7f55=_0x5729e7[_0x4fe20c(0x65a)](-0x1173+-0x221*-0xb+-0x2f9*0x2);if(_0x4bb86b[_0x4fe20c(0x697)](_0x2f7f55,_0x4bb86b[_0x20a9d6(0xc74)])){if(_0x4bb86b[_0x51e61e(0x636)](_0x4bb86b[_0x20a9d6(0xa94)],_0x4bb86b[_0x4fe20c(0xa94)])){const _0x1586b9=_0x4bb86b[_0x51e61e(0xc55)][_0x4bfe76(0x73c)]('|');let _0x123b77=0x833+0x417+0x1*-0xc4a;while(!![]){switch(_0x1586b9[_0x123b77++]){case'0':document[_0x4fe20c(0x4f9)+_0x4bfe76(0x354)+_0x4e693b(0x778)](_0x4bb86b[_0x4fe20c(0x7a5)])[_0x4fe20c(0x7ca)]='';continue;case'1':return;case'2':lock_chat=0x427*-0x5+0x4*0x9a5+-0x11d1;continue;case'3':const _0x424772={};_0x424772[_0x4fe20c(0x1bd)]=_0x4bb86b[_0x4bfe76(0x8bd)],_0x424772[_0x4e693b(0xb29)+'nt']=_0xcdfde2,word_last[_0x4e693b(0xabc)](_0x424772);continue;case'4':const _0x32c28d={};_0x32c28d[_0x4bfe76(0x1bd)]=_0x4bb86b[_0x4fe20c(0x4f8)],_0x32c28d[_0x4bfe76(0xb29)+'nt']=chatTemp,word_last[_0x4e693b(0xabc)](_0x32c28d);continue;}break;}}else{if(_0x5b87ad)return _0x40b3d8;else GRldRQ[_0x4e693b(0x872)](_0x249316,0x1bad+0x11da*-0x1+-0x9d3);}}let _0x52a49c;try{if(_0x4bb86b[_0x51e61e(0x55f)](_0x4bb86b[_0x51e61e(0xbc4)],_0x4bb86b[_0x4e693b(0xbc4)]))try{if(_0x4bb86b[_0x4fe20c(0x850)](_0x4bb86b[_0x4e693b(0x602)],_0x4bb86b[_0x51e61e(0x602)]))return-(0x14f1+0x1422+-0x2912);else _0x52a49c=JSON[_0x51e61e(0x7f0)](_0x4bb86b[_0x4e693b(0x491)](_0x513a48,_0x2f7f55))[_0x4bb86b[_0x51e61e(0x90c)]],_0x513a48='';}catch(_0x65620){if(_0x4bb86b[_0x4e693b(0xb52)](_0x4bb86b[_0x51e61e(0x453)],_0x4bb86b[_0x4bfe76(0x453)])){const _0x50ce7e=_0x42d82c[_0x20a9d6(0x472)][_0x4bfe76(0x73c)]('|');let _0x1ad55a=0x63b+0x1fd2+0x260d*-0x1;while(!![]){switch(_0x50ce7e[_0x1ad55a++]){case'0':_0x3914cc=-0x240e+-0x5ff+0x2a0d;continue;case'1':_0x9fddb8[_0x20a9d6(0x4f9)+_0x51e61e(0x354)+_0x4bfe76(0x778)](_0x42d82c[_0x20a9d6(0xacf)])[_0x51e61e(0x7ca)]='';continue;case'2':return;case'3':const _0x3172af={};_0x3172af[_0x20a9d6(0x1bd)]=_0x42d82c[_0x4e693b(0x9d2)],_0x3172af[_0x4fe20c(0xb29)+'nt']=_0x1df14f,_0x12512d[_0x4e693b(0xabc)](_0x3172af);continue;case'4':const _0x4bf100={};_0x4bf100[_0x4e693b(0x1bd)]=_0x42d82c[_0x4bfe76(0x486)],_0x4bf100[_0x4bfe76(0xb29)+'nt']=_0x53fb45,_0x2a37de[_0x4e693b(0xabc)](_0x4bf100);continue;}break;}}else _0x52a49c=JSON[_0x4bfe76(0x7f0)](_0x2f7f55)[_0x4bb86b[_0x4e693b(0x90c)]],_0x513a48='';}else _0x335945+=_0x459e74;}catch(_0x470582){if(_0x4bb86b[_0x4e693b(0x33a)](_0x4bb86b[_0x4fe20c(0x221)],_0x4bb86b[_0x4fe20c(0xce7)]))_0x513a48+=_0x2f7f55;else throw _0x1f9a72;}_0x52a49c&&_0x4bb86b[_0x4e693b(0x8cc)](_0x52a49c[_0x20a9d6(0x58b)+'h'],-0xd67+-0x209f+-0x89*-0x56)&&_0x52a49c[-0x9d5+0x2c+0x9a9][_0x4bfe76(0x1f7)][_0x4bfe76(0xb29)+'nt']&&(_0x4bb86b[_0x4fe20c(0xc85)](_0x4bb86b[_0x20a9d6(0x443)],_0x4bb86b[_0x4fe20c(0x443)])?chatTemp+=_0x52a49c[0x112d+0x7e8+-0x1915][_0x51e61e(0x1f7)][_0x51e61e(0xb29)+'nt']:(_0x249ca4=_0x39cba9[_0x51e61e(0x357)+_0x51e61e(0x2ed)+'t'],_0x45861a[_0x51e61e(0x193)+'e'](),_0x4bb86b[_0x20a9d6(0x68d)](_0xc010f0))),chatTemp=chatTemp[_0x4e693b(0x92b)+_0x51e61e(0x6b6)]('\x0a\x0a','\x0a')[_0x51e61e(0x92b)+_0x4bfe76(0x6b6)]('\x0a\x0a','\x0a'),document[_0x4e693b(0x4f9)+_0x4e693b(0x354)+_0x51e61e(0x778)](_0x4bb86b[_0x51e61e(0x9a7)])[_0x51e61e(0x94b)+_0x4fe20c(0xc37)]='',_0x4bb86b[_0x51e61e(0x1b2)](markdownToHtml,_0x4bb86b[_0x4e693b(0x872)](beautify,chatTemp),document[_0x4e693b(0x4f9)+_0x51e61e(0x354)+_0x4e693b(0x778)](_0x4bb86b[_0x51e61e(0x9a7)])),document[_0x20a9d6(0x905)+_0x20a9d6(0x16a)+_0x4e693b(0x3e2)](_0x4bb86b[_0x4e693b(0x1f9)])[_0x20a9d6(0x94b)+_0x4e693b(0xc37)]=_0x4bb86b[_0x51e61e(0x301)](_0x4bb86b[_0x4fe20c(0x4aa)](_0x4bb86b[_0x20a9d6(0xced)](prev_chat,_0x4bb86b[_0x20a9d6(0x944)]),document[_0x51e61e(0x4f9)+_0x51e61e(0x354)+_0x4fe20c(0x778)](_0x4bb86b[_0x4bfe76(0x9a7)])[_0x4e693b(0x94b)+_0x4fe20c(0xc37)]),_0x4bb86b[_0x20a9d6(0x39c)]);}else{if(_0x180185[_0x4e693b(0x35b)](_0x1e3b09))return _0x5c5ed5;const _0x420c7c=_0x1bf2e2[_0x51e61e(0x73c)](/[;,;、,]/),_0x3edaf8=_0x420c7c[_0x51e61e(0x30c)](_0x15c500=>'['+_0x15c500+']')[_0x4bfe76(0xcf8)]('\x20'),_0x56c640=_0x420c7c[_0x20a9d6(0x30c)](_0xd08ea3=>'['+_0xd08ea3+']')[_0x4fe20c(0xcf8)]('\x0a');_0x420c7c[_0x4bfe76(0x335)+'ch'](_0x4d6934=>_0x12dc6e[_0x4fe20c(0x74a)](_0x4d6934)),_0x4e07ee='\x20';for(var _0x477155=_0x4bb86b[_0x20a9d6(0x6a3)](_0x4bb86b[_0x4fe20c(0x1a8)](_0x11d0ae[_0x4bfe76(0xa9c)],_0x420c7c[_0x51e61e(0x58b)+'h']),-0x1e3d+0x5*0x3ee+0x3*0x388);_0x4bb86b[_0x4bfe76(0x994)](_0x477155,_0x1ca41c[_0x4bfe76(0xa9c)]);++_0x477155)_0x172dba+='[^'+_0x477155+']\x20';return _0x461a67;}}),_0x971535[_0x233467(0x350)]()[_0x303d53(0x1fc)](_0x2493c5);}});}})[_0x3b8b6b(0x51b)](_0x396343=>{const _0x4407d9=_0x51f6bc,_0x4ee523=_0x51f6bc,_0x3755db=_0x4ea362,_0x2cd2f3=_0x51f6bc,_0x27d39b=_0x296bc2;if(_0x950518[_0x4407d9(0x3e7)](_0x950518[_0x4ee523(0x773)],_0x950518[_0x4407d9(0x773)])){_0x417caa=_0x43dd72[_0x4ee523(0x92b)+_0x4ee523(0x6b6)]('','(')[_0x4407d9(0x92b)+_0x27d39b(0x6b6)]('',')')[_0x4407d9(0x92b)+_0x2cd2f3(0x6b6)](':\x20',':')[_0x2cd2f3(0x92b)+_0x4407d9(0x6b6)]('',':')[_0x2cd2f3(0x92b)+_0x3755db(0x6b6)](',\x20',',')[_0x27d39b(0x92b)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x15dae4=_0x337a23[_0x27d39b(0xcc5)+_0x2cd2f3(0xb85)][_0x2cd2f3(0x58b)+'h'];_0x950518[_0x4407d9(0x78a)](_0x15dae4,0xffe+0x2295+-0x3293);--_0x15dae4){const _0xa41fa=_0x950518[_0x3755db(0x24b)][_0x3755db(0x73c)]('|');let _0x330ef4=-0x706*-0x5+0x4*0x31d+-0x2f92;while(!![]){switch(_0xa41fa[_0x330ef4++]){case'0':_0x3104c2=_0x294d64[_0x27d39b(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x4407d9(0xaeb)](_0x950518[_0x4407d9(0x8d6)],_0x950518[_0x4407d9(0x7c0)](_0x57b2de,_0x15dae4)),_0x950518[_0x2cd2f3(0x2ab)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x3755db(0x63c)](_0x532d6f,_0x15dae4)));continue;case'1':_0xb72c68=_0x555c57[_0x4407d9(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x2cd2f3(0x29f)](_0x950518[_0x3755db(0x2b1)],_0x950518[_0x2cd2f3(0x4e9)](_0x3e34a1,_0x15dae4)),_0x950518[_0x4ee523(0x770)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x4407d9(0x4e9)](_0x37a661,_0x15dae4)));continue;case'2':_0x305b0e=_0x501dd0[_0x4ee523(0x92b)+_0x4ee523(0x6b6)](_0x950518[_0x3755db(0xaeb)](_0x950518[_0x27d39b(0x76e)],_0x950518[_0x2cd2f3(0x99d)](_0x170299,_0x15dae4)),_0x950518[_0x4ee523(0xaeb)](_0x950518[_0x27d39b(0x1ba)],_0x950518[_0x27d39b(0x7c0)](_0xaae5d8,_0x15dae4)));continue;case'3':_0xe0f8a9=_0x18b532[_0x2cd2f3(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x2cd2f3(0xbac)](_0x950518[_0x4407d9(0x3a1)],_0x950518[_0x2cd2f3(0x4ae)](_0x1c9bcb,_0x15dae4)),_0x950518[_0x2cd2f3(0x2a8)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x2cd2f3(0x99d)](_0x1833e4,_0x15dae4)));continue;case'4':_0x1d9465=_0x448c47[_0x4ee523(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x4407d9(0x8c1)](_0x950518[_0x4407d9(0xabe)],_0x950518[_0x4407d9(0x63c)](_0x1d0e77,_0x15dae4)),_0x950518[_0x27d39b(0xaeb)](_0x950518[_0x3755db(0x1ba)],_0x950518[_0x4ee523(0x292)](_0x48025b,_0x15dae4)));continue;case'5':_0x33de48=_0x78afda[_0x2cd2f3(0x92b)+_0x27d39b(0x6b6)](_0x950518[_0x2cd2f3(0xb14)](_0x950518[_0x2cd2f3(0xc0c)],_0x950518[_0x2cd2f3(0x565)](_0x5ccd33,_0x15dae4)),_0x950518[_0x2cd2f3(0xb14)](_0x950518[_0x2cd2f3(0x1ba)],_0x950518[_0x3755db(0x4e9)](_0x1e342f,_0x15dae4)));continue;case'6':_0x4fe9a4=_0x44418d[_0x4407d9(0x92b)+_0x4ee523(0x6b6)](_0x950518[_0x4407d9(0x8e7)](_0x950518[_0x4407d9(0x83a)],_0x950518[_0x4ee523(0x964)](_0xe4523d,_0x15dae4)),_0x950518[_0x3755db(0x91a)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x4ee523(0x7c0)](_0x4877fb,_0x15dae4)));continue;case'7':_0x107db6=_0xce0589[_0x2cd2f3(0x92b)+_0x4ee523(0x6b6)](_0x950518[_0x3755db(0xbda)](_0x950518[_0x4ee523(0x382)],_0x950518[_0x27d39b(0x964)](_0x3d4652,_0x15dae4)),_0x950518[_0x4407d9(0x18c)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x27d39b(0x99d)](_0x499745,_0x15dae4)));continue;case'8':_0x30c733=_0x1aec0b[_0x4ee523(0x92b)+_0x27d39b(0x6b6)](_0x950518[_0x3755db(0xacb)](_0x950518[_0x3755db(0x474)],_0x950518[_0x2cd2f3(0x231)](_0x244463,_0x15dae4)),_0x950518[_0x4407d9(0x9be)](_0x950518[_0x3755db(0x1ba)],_0x950518[_0x4407d9(0x9af)](_0x203e52,_0x15dae4)));continue;case'9':_0x17bd2e=_0x279441[_0x27d39b(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x4ee523(0x76d)](_0x950518[_0x3755db(0x5ef)],_0x950518[_0x2cd2f3(0x9af)](_0x29af33,_0x15dae4)),_0x950518[_0x3755db(0x8e7)](_0x950518[_0x27d39b(0x1ba)],_0x950518[_0x2cd2f3(0x7c0)](_0x5a04b3,_0x15dae4)));continue;case'10':_0x101845=_0x251618[_0x27d39b(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x4407d9(0x726)](_0x950518[_0x2cd2f3(0x8d8)],_0x950518[_0x4407d9(0x4ae)](_0x1bfb1b,_0x15dae4)),_0x950518[_0x4ee523(0xb67)](_0x950518[_0x27d39b(0x1ba)],_0x950518[_0x4ee523(0x596)](_0x1afc57,_0x15dae4)));continue;case'11':_0x31f82d=_0xe8bc54[_0x2cd2f3(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x4407d9(0x76d)](_0x950518[_0x27d39b(0x743)],_0x950518[_0x4ee523(0x292)](_0xdc2e,_0x15dae4)),_0x950518[_0x4407d9(0x2fa)](_0x950518[_0x2cd2f3(0x1ba)],_0x950518[_0x27d39b(0x292)](_0x1ef6f1,_0x15dae4)));continue;case'12':_0x1bd75c=_0x51e71f[_0x27d39b(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x2cd2f3(0x3da)](_0x950518[_0x4407d9(0x953)],_0x950518[_0x2cd2f3(0x4e9)](_0x480e54,_0x15dae4)),_0x950518[_0x4407d9(0x2fa)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x4ee523(0x9af)](_0x35699c,_0x15dae4)));continue;case'13':_0x11cacd=_0x1b949b[_0x4ee523(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x3755db(0x9c5)](_0x950518[_0x2cd2f3(0x6ad)],_0x950518[_0x4ee523(0x99d)](_0x1539d0,_0x15dae4)),_0x950518[_0x2cd2f3(0xbda)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x4407d9(0x34b)](_0x5332f9,_0x15dae4)));continue;case'14':_0x35d636=_0x1956c4[_0x27d39b(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x27d39b(0xc1e)](_0x950518[_0x2cd2f3(0x76e)],_0x950518[_0x4407d9(0x596)](_0xf316a0,_0x15dae4)),_0x950518[_0x4ee523(0xc1e)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x4407d9(0x292)](_0x5d5a05,_0x15dae4)));continue;case'15':_0x12687a=_0x476242[_0x4ee523(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x3755db(0x2c5)](_0x950518[_0x4ee523(0x283)],_0x950518[_0x4ee523(0x231)](_0x4ba11f,_0x15dae4)),_0x950518[_0x4407d9(0x473)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x4407d9(0x36a)](_0x15ca5d,_0x15dae4)));continue;case'16':_0x330e67=_0x38fa42[_0x4ee523(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x27d39b(0xcb3)](_0x950518[_0x2cd2f3(0x241)],_0x950518[_0x27d39b(0x565)](_0xbbb26b,_0x15dae4)),_0x950518[_0x27d39b(0xb14)](_0x950518[_0x3755db(0x1ba)],_0x950518[_0x3755db(0x565)](_0x22525f,_0x15dae4)));continue;case'17':_0x3ff191=_0x48190c[_0x2cd2f3(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x2cd2f3(0xa9d)](_0x950518[_0x3755db(0x304)],_0x950518[_0x2cd2f3(0x7df)](_0x2e0acb,_0x15dae4)),_0x950518[_0x2cd2f3(0x75c)](_0x950518[_0x3755db(0x1ba)],_0x950518[_0x4ee523(0x666)](_0x56fa01,_0x15dae4)));continue;case'18':_0x3e5462=_0x4d82c7[_0x2cd2f3(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x3755db(0xb67)](_0x950518[_0x4ee523(0x2a5)],_0x950518[_0x3755db(0x57d)](_0x49678a,_0x15dae4)),_0x950518[_0x4ee523(0x9be)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x4407d9(0x391)](_0x2ad9e5,_0x15dae4)));continue;case'19':_0x217c8c=_0x3608a9[_0x2cd2f3(0x92b)+_0x4ee523(0x6b6)](_0x950518[_0x3755db(0x5d9)](_0x950518[_0x2cd2f3(0x436)],_0x950518[_0x27d39b(0x7df)](_0x3889bc,_0x15dae4)),_0x950518[_0x2cd2f3(0xcb3)](_0x950518[_0x27d39b(0x1ba)],_0x950518[_0x3755db(0x63c)](_0x39b1ed,_0x15dae4)));continue;case'20':_0x8d6444=_0x547695[_0x2cd2f3(0x92b)+_0x4ee523(0x6b6)](_0x950518[_0x2cd2f3(0xc1e)](_0x950518[_0x3755db(0x83a)],_0x950518[_0x2cd2f3(0x9af)](_0x5b0df6,_0x15dae4)),_0x950518[_0x2cd2f3(0x940)](_0x950518[_0x4ee523(0x1ba)],_0x950518[_0x2cd2f3(0x964)](_0x10efd7,_0x15dae4)));continue;case'21':_0x4b1b6c=_0x30b861[_0x4407d9(0x92b)+_0x2cd2f3(0x6b6)](_0x950518[_0x4ee523(0x49b)](_0x950518[_0x27d39b(0x5ef)],_0x950518[_0x3755db(0xcc7)](_0x3606fc,_0x15dae4)),_0x950518[_0x3755db(0x360)](_0x950518[_0x27d39b(0x1ba)],_0x950518[_0x27d39b(0x391)](_0x13bd83,_0x15dae4)));continue;case'22':_0x3459d6=_0x1cbe02[_0x2cd2f3(0x92b)+_0x3755db(0x6b6)](_0x950518[_0x4ee523(0xb67)](_0x950518[_0x27d39b(0xa46)],_0x950518[_0x4ee523(0x666)](_0x475522,_0x15dae4)),_0x950518[_0x4ee523(0xbac)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x3755db(0xb46)](_0xd94607,_0x15dae4)));continue;case'23':_0x51da33=_0x30b466[_0x4407d9(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x2cd2f3(0x9be)](_0x950518[_0x3755db(0x228)],_0x950518[_0x2cd2f3(0xb9e)](_0x18e01d,_0x15dae4)),_0x950518[_0x3755db(0x929)](_0x950518[_0x4407d9(0x1ba)],_0x950518[_0x3755db(0x964)](_0x151208,_0x15dae4)));continue;case'24':_0x3d48dc=_0x2b28ae[_0x4407d9(0x92b)+_0x4407d9(0x6b6)](_0x950518[_0x2cd2f3(0x929)](_0x950518[_0x27d39b(0xc9d)],_0x950518[_0x4407d9(0x682)](_0x4ce1d6,_0x15dae4)),_0x950518[_0x4ee523(0x54c)](_0x950518[_0x2cd2f3(0x1ba)],_0x950518[_0x3755db(0x964)](_0x499c19,_0x15dae4)));continue;}break;}}_0x31c3d7=_0x950518[_0x4ee523(0x258)](_0x278d1f,_0x358851);for(let _0x211997=_0x195af5[_0x2cd2f3(0xcc5)+_0x4ee523(0xb85)][_0x4407d9(0x58b)+'h'];_0x950518[_0x4ee523(0x78a)](_0x211997,-0x2*0x521+-0x313*0x3+-0x1*-0x137b);--_0x211997){_0xe6d8a=_0x3777e6[_0x2cd2f3(0x92b)+'ce'](_0x950518[_0x4ee523(0xbac)](_0x950518[_0x3755db(0xa48)],_0x950518[_0x3755db(0x34b)](_0x495740,_0x211997)),_0x57e2d0[_0x27d39b(0xcc5)+_0x3755db(0xb85)][_0x211997]),_0x2bd522=_0x3981f6[_0x4ee523(0x92b)+'ce'](_0x950518[_0x4407d9(0x91a)](_0x950518[_0x4407d9(0x815)],_0x950518[_0x2cd2f3(0x666)](_0x43666c,_0x211997)),_0x22406d[_0x27d39b(0xcc5)+_0x3755db(0xb85)][_0x211997]),_0x19b1d0=_0x50a745[_0x4407d9(0x92b)+'ce'](_0x950518[_0x27d39b(0xbd0)](_0x950518[_0x4407d9(0xb00)],_0x950518[_0x3755db(0x231)](_0xebc8c8,_0x211997)),_0x59c996[_0x4ee523(0xcc5)+_0x4407d9(0xb85)][_0x211997]);}return _0x39509d=_0x2028a6[_0x3755db(0x92b)+_0x4407d9(0x6b6)]('[]',''),_0x39452b=_0x1ce5d0[_0x3755db(0x92b)+_0x4ee523(0x6b6)]('((','('),_0x21842f=_0x4f98e5[_0x2cd2f3(0x92b)+_0x3755db(0x6b6)]('))',')'),_0x53cdbd=_0x49fa46[_0x3755db(0x92b)+_0x27d39b(0x6b6)]('(\x0a','\x0a'),_0x323136;}else console[_0x4407d9(0x65f)](_0x950518[_0x4ee523(0x50d)],_0x396343);});}else return 0x90c+0x386+-0xc91;});}function getContentLength(_0x658c09){const _0x395fa0=_0x13ebe9,_0x564ba4=_0x3434be,_0x1ff153=_0x3434be,_0x353632=_0x13ebe9,_0x512a04=_0x108b35,_0x38aa0e={};_0x38aa0e[_0x395fa0(0x90a)]=function(_0x300c86,_0x3dd20d){return _0x300c86+_0x3dd20d;},_0x38aa0e[_0x395fa0(0xa12)]=_0x1ff153(0x991)+'es',_0x38aa0e[_0x564ba4(0xa1d)]=function(_0x17a1c,_0x42cf4c){return _0x17a1c===_0x42cf4c;},_0x38aa0e[_0x395fa0(0x604)]=_0x512a04(0x717);const _0x31e82f=_0x38aa0e;let _0x1c0a9c=0x21ea+0xb6*0x20+-0x38aa;for(let _0x309997 of _0x658c09){if(_0x31e82f[_0x512a04(0xa1d)](_0x31e82f[_0x564ba4(0x604)],_0x31e82f[_0x1ff153(0x604)]))_0x1c0a9c+=_0x309997[_0x353632(0xb29)+'nt'][_0x512a04(0x58b)+'h'];else try{_0x1cee61=_0x1e5839[_0x1ff153(0x7f0)](_0x31e82f[_0x1ff153(0x90a)](_0x293dab,_0x10feda))[_0x31e82f[_0x353632(0xa12)]],_0x9d4ff4='';}catch(_0x3706b5){_0x51c3c4=_0x151eff[_0x395fa0(0x7f0)](_0x45c50c)[_0x31e82f[_0x1ff153(0xa12)]],_0x1d24c2='';}}return _0x1c0a9c;}function trimArray(_0x31f853,_0x10c3a6){const _0x151536=_0x3434be,_0x8bc155=_0x13ebe9,_0x392fef=_0x3264df,_0x43407d=_0x3264df,_0x1373bf=_0x108b35,_0x177844={'xSGXv':_0x151536(0x9a6)+_0x8bc155(0x95e)+_0x8bc155(0xb87)+')','NMsQJ':_0x43407d(0x24e)+_0x1373bf(0x249)+_0x8bc155(0x895)+_0x151536(0xcd2)+_0x1373bf(0x981)+_0x1373bf(0x784)+_0x392fef(0x80b),'cNuXh':function(_0x34fa63,_0x22bfe8){return _0x34fa63(_0x22bfe8);},'WTqFY':_0x43407d(0x88b),'IsPSh':function(_0x3c3417,_0x39ad2a){return _0x3c3417+_0x39ad2a;},'tpQOC':_0x8bc155(0x16d),'cDjcW':function(_0x7b5233,_0x5eaf62){return _0x7b5233+_0x5eaf62;},'scqml':_0x151536(0x326),'pmxAp':function(_0x5704c3,_0x3eccbb){return _0x5704c3(_0x3eccbb);},'WHdfq':function(_0x589897){return _0x589897();},'hALdj':function(_0x569177,_0x1a2e1e){return _0x569177>_0x1a2e1e;},'HVkqs':function(_0x33eecd,_0x2fb5fe){return _0x33eecd!==_0x2fb5fe;},'tUTTu':_0x1373bf(0x927)};while(_0x177844[_0x1373bf(0x334)](_0x177844[_0x43407d(0x7da)](getContentLength,_0x31f853),_0x10c3a6)){if(_0x177844[_0x1373bf(0x415)](_0x177844[_0x43407d(0x7a0)],_0x177844[_0x392fef(0x7a0)])){const _0x383ea8=new _0x2004cd(FvoBgT[_0x43407d(0x65e)]),_0x26d49e=new _0x291222(FvoBgT[_0x1373bf(0x8f5)],'i'),_0x1ca386=FvoBgT[_0x43407d(0x46f)](_0x37b298,FvoBgT[_0x1373bf(0xa80)]);!_0x383ea8[_0x392fef(0x483)](FvoBgT[_0x8bc155(0x75b)](_0x1ca386,FvoBgT[_0x392fef(0xac3)]))||!_0x26d49e[_0x392fef(0x483)](FvoBgT[_0x392fef(0x4d9)](_0x1ca386,FvoBgT[_0x1373bf(0x7c7)]))?FvoBgT[_0x1373bf(0x7da)](_0x1ca386,'0'):FvoBgT[_0x151536(0x257)](_0x39afd5);}else _0x31f853[_0x43407d(0x4c1)]();}}function send_modalchat(_0x1b140e){const _0x309a0a=_0x3434be,_0x2d0b74=_0x3264df,_0x5b83bf=_0x3264df,_0x52be25=_0x434b27,_0x3b7991=_0x434b27,_0x264897={'scAid':function(_0x210811,_0x1bd985){return _0x210811+_0x1bd985;},'joyKv':_0x309a0a(0x991)+'es','tpPfk':function(_0x153b25,_0x52317d){return _0x153b25>_0x52317d;},'kOXgR':function(_0x275d1a,_0x48746c){return _0x275d1a(_0x48746c);},'FTmrl':_0x309a0a(0x296)+_0x2d0b74(0x3df),'WtUNJ':function(_0x69fd2b,_0x54dfb3){return _0x69fd2b+_0x54dfb3;},'Tnidq':function(_0x429977,_0x4b165d){return _0x429977+_0x4b165d;},'vSnIU':_0x309a0a(0x8e2)+_0x5b83bf(0x820)+_0x5b83bf(0x509)+_0x5b83bf(0xae3)+_0x5b83bf(0x235)+_0x52be25(0x463)+_0x309a0a(0x1b0)+_0x309a0a(0x748)+_0x3b7991(0x286)+_0x3b7991(0x1e2)+_0x309a0a(0x8bf),'JdpYw':_0x5b83bf(0xa98)+_0x2d0b74(0x290),'DMthR':_0x2d0b74(0x983),'WRYIP':_0x52be25(0xcb1),'XqSqL':function(_0x47cc9c,_0x2529fc){return _0x47cc9c+_0x2529fc;},'FJkMH':_0x309a0a(0x296),'tQhoM':_0x2d0b74(0xc29),'jyEBo':_0x52be25(0x8a4)+'','FHJaf':_0x52be25(0x30d)+_0x2d0b74(0x870)+_0x5b83bf(0x7d0)+_0x309a0a(0xaa9)+_0x309a0a(0x2e2)+_0x5b83bf(0x512)+_0x309a0a(0x2ac)+_0x3b7991(0xa25)+_0x2d0b74(0x2a0)+_0x309a0a(0x2fe)+_0x2d0b74(0x353)+_0x309a0a(0xbb3)+_0x52be25(0x996),'bOILK':function(_0x1a385a,_0xfca76c){return _0x1a385a!=_0xfca76c;},'lLVSU':function(_0x1a9f48,_0x4a9839,_0x1a8b05){return _0x1a9f48(_0x4a9839,_0x1a8b05);},'TAByo':_0x2d0b74(0x5b1)+_0x3b7991(0x6ac)+_0x5b83bf(0x809)+_0x309a0a(0x7e9)+_0x5b83bf(0x992)+_0x5b83bf(0xb89),'riUKC':function(_0x53c18c,_0x124d0b){return _0x53c18c+_0x124d0b;},'tBrlo':function(_0x5079a0,_0x3cf9de){return _0x5079a0==_0x3cf9de;},'ArLqj':function(_0x7d54aa,_0x3e907c){return _0x7d54aa!==_0x3e907c;},'lYzxP':_0x2d0b74(0x723),'qHAIq':_0x52be25(0xc39),'NmIHX':function(_0x2cd87a,_0x13d4a5,_0x6b4768){return _0x2cd87a(_0x13d4a5,_0x6b4768);},'CvFJH':function(_0x22a698,_0x5b647d,_0x2aa232){return _0x22a698(_0x5b647d,_0x2aa232);},'UAQsA':function(_0x2f7837,_0x452909){return _0x2f7837!==_0x452909;},'otPTF':_0x2d0b74(0xb7e),'jTjuH':_0x52be25(0x377),'kJBaa':function(_0x5465e7,_0x553d2b){return _0x5465e7===_0x553d2b;},'cTerK':_0x2d0b74(0x280),'khSRk':_0x2d0b74(0xa61),'qVBtb':_0x52be25(0x775)+_0x5b83bf(0x425),'rjzPS':_0x309a0a(0xa35)+_0x52be25(0x3b4),'EncMF':_0x2d0b74(0xa35)+_0x52be25(0xb6a)+_0x5b83bf(0xa81),'ImbWS':function(_0x183603){return _0x183603();},'GFgGZ':function(_0x2aeb00,_0x16090a){return _0x2aeb00<_0x16090a;},'zgrbw':function(_0x4cf965,_0x207d8a){return _0x4cf965+_0x207d8a;},'VsKTe':function(_0x257715,_0x446021){return _0x257715+_0x446021;},'iFzsO':function(_0x1b8214,_0x29eebc){return _0x1b8214+_0x29eebc;},'roFiC':function(_0xb85b1f,_0x1fe99f){return _0xb85b1f+_0x1fe99f;},'wOwEe':_0x309a0a(0x6a8)+_0x3b7991(0x4e5)+'+$','InvEk':function(_0x2ce555,_0x2c7ccc){return _0x2ce555>_0x2c7ccc;},'qTOqM':function(_0x4a804c,_0x8886a0,_0xedf973){return _0x4a804c(_0x8886a0,_0xedf973);},'hiqjk':_0x2d0b74(0xa35)+_0x5b83bf(0x7a4),'mXKVt':function(_0x22c326,_0x558fb4){return _0x22c326+_0x558fb4;},'aAvuT':_0x52be25(0x73f)+_0x3b7991(0x7a1)+_0x309a0a(0x59e)+_0x52be25(0x63b)+_0x52be25(0x6fc)+'\x22>','uklQL':_0x52be25(0x746),'nQgeF':_0x309a0a(0x814)+_0x5b83bf(0x509)+_0x2d0b74(0x39b)+_0x2d0b74(0x376),'Holne':_0x2d0b74(0xb09),'UoyGl':_0x5b83bf(0x8ad)+'>','anSDd':function(_0x23c048,_0x29b4e3){return _0x23c048*_0x29b4e3;},'WDrAt':function(_0x280147,_0x484a90){return _0x280147**_0x484a90;},'TjNSn':function(_0x327167,_0x19ddaf){return _0x327167-_0x19ddaf;},'wPTVF':function(_0x35304e,_0x395a87){return _0x35304e<=_0x395a87;},'lJLkw':_0x3b7991(0xbd9),'KmjuM':_0x309a0a(0x95c),'JAaFl':_0x52be25(0x558),'dOglr':_0x3b7991(0x76a),'DGrIf':_0x3b7991(0x296)+_0x52be25(0x3af),'jJswU':function(_0x266b03,_0x514cde){return _0x266b03==_0x514cde;},'qPOTV':_0x309a0a(0xc6e)+']','JlpIk':function(_0x31101a,_0x4ffd91){return _0x31101a!==_0x4ffd91;},'eTCnU':_0x5b83bf(0x785),'dmHwW':_0x2d0b74(0x71f),'ZHKoJ':_0x52be25(0x277)+_0x309a0a(0x535),'WyzFJ':_0x3b7991(0x296)+_0x309a0a(0x92d)+'t','utZWs':_0x52be25(0xaaa)+_0x5b83bf(0x2fb),'nQROb':function(_0x331325,_0x4265f5){return _0x331325!==_0x4265f5;},'exemA':_0x3b7991(0x325),'wfuhJ':function(_0x1efbf6,_0x2c12b8){return _0x1efbf6!==_0x2c12b8;},'NyUsH':_0x5b83bf(0xb1f),'GcrSV':_0x5b83bf(0xc42),'pUtzr':function(_0x5c83af,_0x1c5ddf){return _0x5c83af!==_0x1c5ddf;},'ClJbD':_0x52be25(0x7e8),'DyHNp':_0x5b83bf(0x4c6),'FNMQm':function(_0x29bec3,_0x536320){return _0x29bec3!==_0x536320;},'FOQqn':_0x309a0a(0x931),'UEeci':function(_0x3df987,_0x30831f){return _0x3df987>_0x30831f;},'EQCpT':function(_0x47e08b,_0x2aa30e){return _0x47e08b===_0x2aa30e;},'LnREk':_0x52be25(0x79a),'uNTpo':_0x3b7991(0x1c3),'aMprq':_0x3b7991(0x303)+'pt','Ipdux':function(_0x21595e,_0x253880,_0x11f913){return _0x21595e(_0x253880,_0x11f913);},'Suqfa':function(_0x5d6d54,_0x441423){return _0x5d6d54(_0x441423);},'JzcwK':function(_0x3d42a4,_0x39d0d0){return _0x3d42a4+_0x39d0d0;},'egKWn':_0x3b7991(0x73f)+_0x3b7991(0x7a1)+_0x52be25(0x59e)+_0x52be25(0x847)+_0x2d0b74(0x457),'rkdZD':function(_0x208d20,_0x304af1){return _0x208d20===_0x304af1;},'qjaAM':_0x5b83bf(0xa33),'eWniu':_0x2d0b74(0xc56),'ITzFi':_0x52be25(0xc87),'RSvRl':function(_0x20de46,_0x128a49){return _0x20de46!==_0x128a49;},'ArmjG':_0x52be25(0xcac),'yDEVk':_0x309a0a(0xa2d),'thjLC':function(_0x3c9a28,_0x477cc9){return _0x3c9a28===_0x477cc9;},'csqov':_0x2d0b74(0xc75),'UOpEd':_0x309a0a(0x8e4)+':','eEARa':_0x2d0b74(0x736),'cWyLy':_0x52be25(0x733),'kMnza':function(_0xac0b66,_0x164054){return _0xac0b66==_0x164054;},'MKYDm':function(_0x5a9eb1,_0xa4a8d7){return _0x5a9eb1>_0xa4a8d7;},'FTtQN':function(_0x176d70,_0x84107b,_0x24d688){return _0x176d70(_0x84107b,_0x24d688);},'xErNC':function(_0x4306d7,_0x27bd78){return _0x4306d7+_0x27bd78;},'igusR':function(_0x5cb608,_0x289c33){return _0x5cb608+_0x289c33;},'UcmKf':_0x2d0b74(0xb41)+_0x309a0a(0x920),'dcwlZ':_0x309a0a(0x95f)+'\x0a','eGnSR':function(_0x5aab09,_0x1b406b){return _0x5aab09+_0x1b406b;},'rxCuD':function(_0x2e9525,_0x324dd0){return _0x2e9525+_0x324dd0;},'RwBgt':_0x3b7991(0xba5),'EigDa':_0x309a0a(0x460)+'\x0a','lnXOO':function(_0x21dd0a,_0xf4e9f0){return _0x21dd0a!==_0xf4e9f0;},'HROMD':_0x2d0b74(0x25a),'iwtkA':_0x52be25(0x59d),'InLHc':function(_0x59be59,_0x42d64d){return _0x59be59<_0x42d64d;},'MOTRq':_0x2d0b74(0x762)+'\x0a','yanzE':function(_0x461fda,_0x555a0b){return _0x461fda<_0x555a0b;},'HvTcY':_0x2d0b74(0x503),'HMYWe':_0x5b83bf(0xaa4),'UrYKr':_0x2d0b74(0x3fa)+'m','FhPdG':_0x52be25(0x306)+_0x309a0a(0x3c0)+_0x5b83bf(0x672)+_0x5b83bf(0xb7b)+_0x3b7991(0x78d)+_0x3b7991(0x23f)+'何人','ETTtg':function(_0xd2a38f,_0x5a3302){return _0xd2a38f+_0x5a3302;},'diXnh':_0x5b83bf(0xce3),'JdkUp':_0x2d0b74(0x89a)+_0x2d0b74(0x48e)+_0x2d0b74(0x197),'eKWAz':function(_0x3ba6c0,_0x3dcfcd){return _0x3ba6c0(_0x3dcfcd);},'eqYvI':function(_0x153c13,_0x2d17d4){return _0x153c13+_0x2d17d4;}};let _0x2f241e=document[_0x5b83bf(0x4f9)+_0x52be25(0x354)+_0x3b7991(0x778)](_0x264897[_0x309a0a(0x56d)])[_0x2d0b74(0x7ca)];if(_0x1b140e){if(_0x264897[_0x2d0b74(0x4dc)](_0x264897[_0x3b7991(0x41b)],_0x264897[_0x52be25(0x195)]))try{_0x18f422=_0x185905[_0x2d0b74(0x7f0)](_0x264897[_0x52be25(0x55d)](_0x260c33,_0x176a4c))[_0x264897[_0x5b83bf(0x3dc)]],_0x5b343f='';}catch(_0x1f5eb2){_0x9f06f5=_0x3afe03[_0x52be25(0x7f0)](_0x59c4c3)[_0x264897[_0x52be25(0x3dc)]],_0x28cdd2='';}else _0x2f241e=_0x1b140e[_0x5b83bf(0x357)+_0x2d0b74(0x2ed)+'t'],_0x1b140e[_0x5b83bf(0x193)+'e']();}if(_0x264897[_0x5b83bf(0xb39)](_0x2f241e[_0x2d0b74(0x58b)+'h'],-0xfdc+0x147f+0x1*-0x4a3)||_0x264897[_0x309a0a(0xb5c)](_0x2f241e[_0x309a0a(0x58b)+'h'],0x1a12*0x1+-0x2377+0x9f1))return;_0x264897[_0x5b83bf(0x29d)](trimArray,word_last,-0x87*-0x22+-0x130d*0x1+0x313);if(_0x264897[_0x2d0b74(0x293)](lock_chat,-0x7*0x133+0x8*0x167+-0x2d3))return;lock_chat=0xae1+0xa59*0x1+-0x713*0x3;const _0x8ad23c=_0x264897[_0x2d0b74(0x796)](_0x264897[_0x5b83bf(0x352)](_0x264897[_0x309a0a(0x970)](document[_0x5b83bf(0x4f9)+_0x3b7991(0x354)+_0x2d0b74(0x778)](_0x264897[_0x5b83bf(0xb2d)])[_0x309a0a(0x94b)+_0x2d0b74(0xc37)][_0x5b83bf(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x52be25(0x92b)+'ce'](/<hr.*/gs,'')[_0x5b83bf(0x92b)+'ce'](/<[^>]+>/g,'')[_0x2d0b74(0x92b)+'ce'](/\n\n/g,'\x0a'),_0x264897[_0x2d0b74(0x6d8)]),search_queryquery),_0x264897[_0x2d0b74(0x579)]);let _0x1db6a8=_0x264897[_0x309a0a(0x9b6)](_0x264897[_0x3b7991(0xc3f)](_0x264897[_0x2d0b74(0x951)](_0x264897[_0x3b7991(0x394)],article[_0x5b83bf(0x563)]),'\x0a'),_0x264897[_0x5b83bf(0x93d)]);for(el in modalele){if(_0x264897[_0x52be25(0x671)](_0x264897[_0x52be25(0x21c)],_0x264897[_0x309a0a(0x44d)])){if(_0x264897[_0x5b83bf(0x3f8)](_0x264897[_0x5b83bf(0xc3f)](_0x264897[_0x309a0a(0x9b6)](_0x1db6a8,modalele[el]),'\x0a')[_0x5b83bf(0x58b)+'h'],0x32c+0x491+-0x1*0x439))_0x1db6a8=_0x264897[_0x2d0b74(0x2dd)](_0x264897[_0x3b7991(0x410)](_0x1db6a8,modalele[el]),'\x0a');}else{const _0x12eb59={'IBuYJ':function(_0xb22156,_0x10eea){const _0x2b9f58=_0x5b83bf;return _0x264897[_0x2b9f58(0x36c)](_0xb22156,_0x10eea);},'ixaSH':function(_0x5f1735,_0x206ac2){const _0x779f06=_0x52be25;return _0x264897[_0x779f06(0x48a)](_0x5f1735,_0x206ac2);},'faATy':_0x264897[_0x3b7991(0x5b0)],'oHACS':function(_0x108625,_0x497394){const _0x1d77e7=_0x5b83bf;return _0x264897[_0x1d77e7(0x2dd)](_0x108625,_0x497394);},'UqKnM':function(_0x12b9dc,_0x1edbc3){const _0x3ed154=_0x52be25;return _0x264897[_0x3ed154(0x796)](_0x12b9dc,_0x1edbc3);},'WkfGT':_0x264897[_0x2d0b74(0x9cb)],'WjsIt':_0x264897[_0x3b7991(0x588)]},_0x76bf9e={'method':_0x264897[_0x52be25(0x3ad)],'headers':_0x2899ef,'body':_0x264897[_0x5b83bf(0x48a)](_0x338987,_0x105d03[_0x309a0a(0x498)+_0x2d0b74(0x806)]({'messages':[{'role':_0x264897[_0x52be25(0x4af)],'content':_0x264897[_0x52be25(0x796)](_0x264897[_0x309a0a(0x2dd)](_0x264897[_0x309a0a(0x410)](_0x264897[_0x309a0a(0x796)](_0x4d2f7c[_0x3b7991(0x4f9)+_0x309a0a(0x354)+_0x309a0a(0x778)](_0x264897[_0x309a0a(0xb2d)])[_0x5b83bf(0x94b)+_0x5b83bf(0xc37)][_0x5b83bf(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x2d0b74(0x92b)+'ce'](/<hr.*/gs,'')[_0x309a0a(0x92b)+'ce'](/<[^>]+>/g,'')[_0x52be25(0x92b)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x264897[_0x309a0a(0x324)]),_0x5151b2),_0x264897[_0x5b83bf(0x898)])},{'role':_0x264897[_0x5b83bf(0x4af)],'content':_0x264897[_0x52be25(0x589)]}][_0x3b7991(0xade)+'t'](_0x419c6f),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x264897[_0x52be25(0x293)](_0x38081b[_0x52be25(0x4f9)+_0x5b83bf(0x354)+_0x309a0a(0x778)](_0x264897[_0x309a0a(0x5b0)])[_0x5b83bf(0x94b)+_0x3b7991(0xc37)],''))return;_0x264897[_0x3b7991(0x424)](_0x289c5f,_0x264897[_0x309a0a(0x5d7)],_0x76bf9e)[_0x309a0a(0x1fc)](_0x25b787=>_0x25b787[_0x3b7991(0x739)]())[_0x5b83bf(0x1fc)](_0x84c27c=>{const _0x2b4e52=_0x309a0a,_0x1e4ab3=_0x3b7991,_0x13b2fd=_0x309a0a,_0x2f8484=_0x2d0b74,_0x115dc6=_0x309a0a,_0x553a3a={'RCpDb':function(_0x4c1166,_0x305559){const _0x11eeb4=_0x2881;return _0x12eb59[_0x11eeb4(0x409)](_0x4c1166,_0x305559);},'llliI':function(_0x26eebd,_0x5ad580){const _0x4e229a=_0x2881;return _0x12eb59[_0x4e229a(0x62d)](_0x26eebd,_0x5ad580);},'NJSvM':_0x12eb59[_0x2b4e52(0x787)],'JOPRU':function(_0x48dd07,_0x98074a){const _0x3ff7e9=_0x2b4e52;return _0x12eb59[_0x3ff7e9(0x3ce)](_0x48dd07,_0x98074a);},'GJHIp':function(_0x108340,_0x2961f3){const _0x574ff4=_0x2b4e52;return _0x12eb59[_0x574ff4(0x86f)](_0x108340,_0x2961f3);},'AeHsg':_0x12eb59[_0x1e4ab3(0x85d)],'KFrtw':_0x12eb59[_0x1e4ab3(0x6a7)]};_0xcbbdb8[_0x2f8484(0x7f0)](_0x84c27c[_0x2b4e52(0x991)+'es'][0x54d+-0x4f1+0x4*-0x17][_0x2f8484(0x867)+'ge'][_0x13b2fd(0xb29)+'nt'][_0x115dc6(0x92b)+_0x2b4e52(0x6b6)]('\x0a',''))[_0x115dc6(0x335)+'ch'](_0x334062=>{const _0x4364d4=_0x2f8484,_0x4b4c91=_0x13b2fd,_0x494b71=_0x13b2fd,_0x3e5d7f=_0x2b4e52,_0x17c18e=_0x2f8484;if(_0x553a3a[_0x4364d4(0x2ad)](_0x553a3a[_0x4b4c91(0xc18)](_0x34f23b,_0x334062)[_0x4b4c91(0x58b)+'h'],0x1952*0x1+-0x1453+-0x1a*0x31))_0x5298df[_0x494b71(0x4f9)+_0x494b71(0x354)+_0x4b4c91(0x778)](_0x553a3a[_0x17c18e(0xbd8)])[_0x3e5d7f(0x94b)+_0x4b4c91(0xc37)]+=_0x553a3a[_0x4364d4(0x9c3)](_0x553a3a[_0x17c18e(0x8c7)](_0x553a3a[_0x3e5d7f(0xab2)],_0x553a3a[_0x17c18e(0xc18)](_0x4fdf8e,_0x334062)),_0x553a3a[_0x3e5d7f(0xc3a)]);});})[_0x3b7991(0x51b)](_0x1b374c=>_0x462792[_0x52be25(0x65f)](_0x1b374c)),_0x34f9dd=_0x264897[_0x3b7991(0x22e)](_0x29997,'\x0a\x0a'),_0x2216eb=-(0x5c9+0x1c5d*0x1+-0x2225);}}_0x1db6a8=_0x264897[_0x5b83bf(0x766)](_0x1db6a8,_0x264897[_0x5b83bf(0x402)]),fulltext[_0x5b83bf(0x2ca)]((_0x572edb,_0xc63419)=>{const _0x33f4a4=_0x3b7991,_0x14bc62=_0x5b83bf,_0x47636b=_0x2d0b74,_0x10694b=_0x309a0a,_0x2b2fba=_0x52be25,_0x17ce9b={'JGAPt':function(_0x410fd1,_0x58d7cf){const _0x440c87=_0x2881;return _0x264897[_0x440c87(0x9d8)](_0x410fd1,_0x58d7cf);}};if(_0x264897[_0x33f4a4(0xb1d)](_0x264897[_0x14bc62(0x73a)],_0x264897[_0x33f4a4(0x5d4)])){if(_0x264897[_0x10694b(0x36c)](_0x264897[_0x10694b(0x1f3)](cosineSimilarity,_0x2f241e,_0x572edb),_0x264897[_0x2b2fba(0x337)](cosineSimilarity,_0x2f241e,_0xc63419))){if(_0x264897[_0x2b2fba(0xace)](_0x264897[_0x33f4a4(0x41e)],_0x264897[_0x47636b(0xbe0)]))return-(-0x13*-0x56+0xc3b+-0x129c);else _0x459aa3+=_0x191eec;}else{if(_0x264897[_0x14bc62(0xaad)](_0x264897[_0x10694b(0x7ba)],_0x264897[_0x14bc62(0x581)])){if(_0x17ce9b[_0x47636b(0x403)](_0x3d440c[_0x14bc62(0x2a1)+'Of'](_0x4e6bba[_0x5ab065]),-(-0xd2+0x4*0x277+-0x909)))_0x4c15c7[_0x33f4a4(0x6b3)+'ft'](_0x746ec5[_0x193b12]);}else return-0xec2+0x4*0x7ab+-0x1*0xfe9;}}else _0x524609=_0xadf635[_0x14bc62(0x7f0)](_0x264897[_0x47636b(0x796)](_0x580d2b,_0x3bc179))[_0x264897[_0x33f4a4(0x3dc)]],_0x151c66='';});for(let _0x261a54=-0x161b+0x1201+0x41a;_0x264897[_0x3b7991(0x903)](_0x261a54,Math[_0x3b7991(0x9fd)](0x17b1+0xd32+-0x24e0,fulltext[_0x5b83bf(0x58b)+'h']));++_0x261a54){if(_0x264897[_0x52be25(0x1b1)](_0x264897[_0x2d0b74(0xc60)],_0x264897[_0x309a0a(0xc60)])){if(_0x264897[_0x309a0a(0x40a)](keytextres[_0x3b7991(0x2a1)+'Of'](fulltext[_0x261a54]),-(0x25c7+-0x1904+-0x661*0x2)))keytextres[_0x309a0a(0x6b3)+'ft'](fulltext[_0x261a54]);}else{const _0x475902=_0x264897[_0x3b7991(0x481)][_0x5b83bf(0x73c)]('|');let _0xd709e6=-0xb*0x137+0xec8+0x1*-0x16b;while(!![]){switch(_0x475902[_0xd709e6++]){case'0':_0x2e945d=-0x1*-0x3cd+0x20ff*-0x1+0x1d32;continue;case'1':_0x2e9a4c[_0x5b83bf(0x905)+_0x309a0a(0x16a)+_0x309a0a(0x3e2)](_0x264897[_0x2d0b74(0x696)])[_0x2d0b74(0x52a)][_0x52be25(0x3d4)+'ay']='';continue;case'2':return;case'3':_0x28eaa1[_0x2d0b74(0x905)+_0x5b83bf(0x16a)+_0x309a0a(0x3e2)](_0x264897[_0x309a0a(0xbc9)])[_0x52be25(0x52a)][_0x52be25(0x3d4)+'ay']='';continue;case'4':_0x264897[_0x309a0a(0x765)](_0x5b2fca);continue;}break;}}}keySentencesCount=0x1681+0x42c+-0x1*0x1aad;for(st in keytextres){if(_0x264897[_0x5b83bf(0x74f)](_0x264897[_0x309a0a(0x64d)],_0x264897[_0x5b83bf(0x64d)])){if(_0x264897[_0x309a0a(0xbb0)](_0x264897[_0x52be25(0x766)](_0x264897[_0x2d0b74(0xa1e)](_0x40a90e,_0x508d7a[_0x3199af]),'\x0a')[_0x5b83bf(0x58b)+'h'],0x1*-0x1cfb+0x247e+-0x1f*0x21))_0x3c06ca=_0x264897[_0x309a0a(0x7fc)](_0x264897[_0x2d0b74(0x2e6)](_0x5a20d1,_0x357875[_0xc74a1a]),'\x0a');}else{if(_0x264897[_0x2d0b74(0xbb0)](_0x264897[_0x2d0b74(0x352)](_0x264897[_0x52be25(0x766)](_0x1db6a8,keytextres[st]),'\x0a')[_0x2d0b74(0x58b)+'h'],0x17be+0xf69+-0x214b))_0x1db6a8=_0x264897[_0x5b83bf(0x951)](_0x264897[_0x2d0b74(0x7fc)](_0x1db6a8,keytextres[st]),'\x0a');keySentencesCount=_0x264897[_0x309a0a(0x7fc)](keySentencesCount,0x3f*-0x65+-0x113c+0xc*0x382);}}const _0x3f5fdc={};_0x3f5fdc[_0x52be25(0x1bd)]=_0x264897[_0x5b83bf(0x6c5)],_0x3f5fdc[_0x52be25(0xb29)+'nt']=_0x264897[_0x2d0b74(0x9ed)];const _0x54d4b8={};_0x54d4b8[_0x5b83bf(0x1bd)]=_0x264897[_0x52be25(0x384)],_0x54d4b8[_0x52be25(0xb29)+'nt']=_0x1db6a8,mes=[_0x3f5fdc,_0x54d4b8],mes=mes[_0x2d0b74(0xade)+'t'](word_last),mes=mes[_0x5b83bf(0xade)+'t']([{'role':_0x264897[_0x309a0a(0x4af)],'content':_0x264897[_0x3b7991(0x7ce)](_0x264897[_0x52be25(0x951)](_0x264897[_0x3b7991(0xa2c)],_0x2f241e),_0x264897[_0x3b7991(0x86a)])}]);const _0x25e1e0={'method':_0x264897[_0x5b83bf(0x3ad)],'headers':headers,'body':_0x264897[_0x2d0b74(0x48a)](b64EncodeUnicode,JSON[_0x2d0b74(0x498)+_0x309a0a(0x806)]({'messages':mes[_0x52be25(0xade)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x2f241e=_0x2f241e[_0x52be25(0x92b)+_0x52be25(0x6b6)]('\x0a\x0a','\x0a')[_0x5b83bf(0x92b)+_0x2d0b74(0x6b6)]('\x0a\x0a','\x0a'),document[_0x3b7991(0x4f9)+_0x3b7991(0x354)+_0x309a0a(0x778)](_0x264897[_0x2d0b74(0x59c)])[_0x52be25(0x94b)+_0x2d0b74(0xc37)]='',_0x264897[_0x52be25(0x424)](markdownToHtml,_0x264897[_0x5b83bf(0x38d)](beautify,_0x2f241e),document[_0x5b83bf(0x4f9)+_0x309a0a(0x354)+_0x309a0a(0x778)](_0x264897[_0x52be25(0x59c)])),chatTemp='',text_offset=-(-0x2da+-0x61f*0x1+0x8fa*0x1),prev_chat=document[_0x52be25(0x905)+_0x3b7991(0x16a)+_0x5b83bf(0x3e2)](_0x264897[_0x3b7991(0x5cf)])[_0x309a0a(0x94b)+_0x309a0a(0xc37)],prev_chat=_0x264897[_0x3b7991(0x373)](_0x264897[_0x5b83bf(0x2e6)](_0x264897[_0x52be25(0xa34)](prev_chat,_0x264897[_0x2d0b74(0x8ff)]),document[_0x309a0a(0x4f9)+_0x52be25(0x354)+_0x309a0a(0x778)](_0x264897[_0x5b83bf(0x59c)])[_0x309a0a(0x94b)+_0x52be25(0xc37)]),_0x264897[_0x5b83bf(0xb7d)]),_0x264897[_0x5b83bf(0x428)](fetch,_0x264897[_0x309a0a(0x5d7)],_0x25e1e0)[_0x2d0b74(0x1fc)](_0x1ea913=>{const _0x34429a=_0x3b7991,_0x61d918=_0x3b7991,_0x32ae68=_0x52be25,_0x290c10=_0x2d0b74,_0x17fca5=_0x2d0b74,_0x35dbbd={'jHRCT':_0x264897[_0x34429a(0x3dc)],'BUfWa':function(_0x124ced,_0x3198e9){const _0x329d81=_0x34429a;return _0x264897[_0x329d81(0x7fc)](_0x124ced,_0x3198e9);}};if(_0x264897[_0x34429a(0x7f9)](_0x264897[_0x34429a(0x7e2)],_0x264897[_0x34429a(0x389)])){const _0x12c6f5=_0x1ea913[_0x34429a(0x370)][_0x61d918(0x84e)+_0x34429a(0xacd)]();let _0x199921='',_0x44cc2b='';_0x12c6f5[_0x61d918(0x350)]()[_0x32ae68(0x1fc)](function _0x50af71({done:_0x3d4e4e,value:_0x1ea8a8}){const _0x37d438=_0x290c10,_0x1ab46e=_0x61d918,_0x30fba9=_0x17fca5,_0x5f06dc=_0x32ae68,_0x4f812e=_0x290c10,_0x28a8cd={'FAmGW':_0x264897[_0x37d438(0x28d)],'WNFUK':function(_0x45b2fc,_0x2afa30){const _0x208564=_0x37d438;return _0x264897[_0x208564(0x4a9)](_0x45b2fc,_0x2afa30);},'NEuKm':function(_0x2c7a6b,_0xbfcfb4,_0x260b87){const _0x156fb0=_0x37d438;return _0x264897[_0x156fb0(0xc8c)](_0x2c7a6b,_0xbfcfb4,_0x260b87);},'uRzDr':_0x264897[_0x37d438(0x5cf)],'QILQE':function(_0x126377,_0x13825c){const _0xe0e404=_0x37d438;return _0x264897[_0xe0e404(0x22e)](_0x126377,_0x13825c);},'reVrc':function(_0x4abbcf,_0x5aa646){const _0xd753f4=_0x1ab46e;return _0x264897[_0xd753f4(0x2e6)](_0x4abbcf,_0x5aa646);},'jwOFq':function(_0x27e5c6,_0x1100ed){const _0x239bf8=_0x1ab46e;return _0x264897[_0x239bf8(0xa34)](_0x27e5c6,_0x1100ed);},'MaXEY':function(_0x4fa006,_0x42cba3){const _0x2bb42=_0x1ab46e;return _0x264897[_0x2bb42(0x796)](_0x4fa006,_0x42cba3);},'lCvXQ':_0x264897[_0x30fba9(0x8ff)],'MEPwQ':_0x264897[_0x1ab46e(0xa49)],'qzJDo':_0x264897[_0x37d438(0x9f1)],'wIKJB':function(_0x755c7a,_0x28b681){const _0x273abb=_0x30fba9;return _0x264897[_0x273abb(0x48a)](_0x755c7a,_0x28b681);},'ntIcB':_0x264897[_0x5f06dc(0xb2a)],'SYwNf':_0x264897[_0x4f812e(0xb7d)],'KrBgV':function(_0x35906a,_0x1706a9){const _0x5bbdab=_0x4f812e;return _0x264897[_0x5bbdab(0x523)](_0x35906a,_0x1706a9);},'flheS':function(_0x303e97,_0x381920){const _0xda502a=_0x30fba9;return _0x264897[_0xda502a(0x7cb)](_0x303e97,_0x381920);},'LfDtq':_0x264897[_0x4f812e(0x3dc)],'MGlLc':function(_0x1e5307,_0x595cc3){const _0x7ba93c=_0x30fba9;return _0x264897[_0x7ba93c(0x58d)](_0x1e5307,_0x595cc3);},'Axjza':function(_0x1365b5,_0x3f22c8){const _0x30565a=_0x4f812e;return _0x264897[_0x30565a(0xb3f)](_0x1365b5,_0x3f22c8);},'MAVkw':function(_0x42a124,_0x4fe617){const _0x166f6a=_0x37d438;return _0x264897[_0x166f6a(0xaad)](_0x42a124,_0x4fe617);},'Atzqt':_0x264897[_0x5f06dc(0x93a)],'sRVVB':_0x264897[_0x4f812e(0x882)],'mxyuR':function(_0x7a15e4,_0xa3b699){const _0x109ef4=_0x1ab46e;return _0x264897[_0x109ef4(0xb1d)](_0x7a15e4,_0xa3b699);},'BUylr':_0x264897[_0x4f812e(0x51a)],'YsVjQ':_0x264897[_0x37d438(0x20d)],'orfTl':_0x264897[_0x1ab46e(0x455)],'vlkPO':function(_0x10e8cd,_0x466677){const _0x136812=_0x4f812e;return _0x264897[_0x136812(0x40a)](_0x10e8cd,_0x466677);},'viROt':_0x264897[_0x4f812e(0x85e)],'kxumX':function(_0x19c43d,_0x11e26e){const _0x14e689=_0x5f06dc;return _0x264897[_0x14e689(0x34e)](_0x19c43d,_0x11e26e);},'GTPSx':_0x264897[_0x5f06dc(0xc4d)],'BKQPM':_0x264897[_0x1ab46e(0x4f5)],'ElJgu':_0x264897[_0x5f06dc(0x237)],'OGrDn':_0x264897[_0x4f812e(0x56d)],'eaNAQ':_0x264897[_0x37d438(0x384)],'mgqDs':_0x264897[_0x37d438(0x4af)],'hpsge':function(_0x674baf,_0x9b4545){const _0xfebc0d=_0x5f06dc;return _0x264897[_0xfebc0d(0x71d)](_0x674baf,_0x9b4545);},'LHRaa':_0x264897[_0x37d438(0x5e4)],'rpmfC':function(_0x4d5029,_0x2c34ea){const _0x1a5be0=_0x1ab46e;return _0x264897[_0x1a5be0(0x74f)](_0x4d5029,_0x2c34ea);},'VARLh':_0x264897[_0x30fba9(0xcbb)],'mXIlT':_0x264897[_0x37d438(0x6f2)],'NxqPO':function(_0x2c99a3,_0x585199){const _0x188696=_0x30fba9;return _0x264897[_0x188696(0x6cc)](_0x2c99a3,_0x585199);},'sOQaf':_0x264897[_0x1ab46e(0x8eb)],'cWPZW':_0x264897[_0x4f812e(0xbae)],'cJeOV':function(_0x1c67e7,_0x3c4d8e){const _0x4da46d=_0x30fba9;return _0x264897[_0x4da46d(0x458)](_0x1c67e7,_0x3c4d8e);},'uuzJr':_0x264897[_0x37d438(0x29c)],'WsVUJ':function(_0x3faf2e,_0x4f3ba4){const _0x44b06a=_0x30fba9;return _0x264897[_0x44b06a(0x426)](_0x3faf2e,_0x4f3ba4);},'KSUwS':function(_0x59146b,_0x3d4732){const _0x3ba2bc=_0x1ab46e;return _0x264897[_0x3ba2bc(0x1b1)](_0x59146b,_0x3d4732);},'OOdun':_0x264897[_0x1ab46e(0x71c)],'Vmumv':_0x264897[_0x37d438(0x725)],'OeGGt':_0x264897[_0x1ab46e(0x59c)],'iagJS':function(_0x4156dd,_0xd5e565,_0x32bb13){const _0x52e5c0=_0x4f812e;return _0x264897[_0x52e5c0(0x428)](_0x4156dd,_0xd5e565,_0x32bb13);},'xrnnW':function(_0x29abfc,_0x1c36ce){const _0x12aae1=_0x4f812e;return _0x264897[_0x12aae1(0x4c5)](_0x29abfc,_0x1c36ce);},'KCdhj':function(_0x210051,_0x4fe64d){const _0x37e7ee=_0x1ab46e;return _0x264897[_0x37e7ee(0x9b6)](_0x210051,_0x4fe64d);},'CRoCD':_0x264897[_0x37d438(0x22d)]};if(_0x264897[_0x37d438(0x1af)](_0x264897[_0x4f812e(0xc58)],_0x264897[_0x1ab46e(0xcea)]))_0x5aad61=_0x886aee[_0x1ab46e(0x7f0)](_0x9404ad)[_0x35dbbd[_0x5f06dc(0x7e6)]],_0x3f745f='';else{if(_0x3d4e4e)return;const _0x39e253=new TextDecoder(_0x264897[_0x30fba9(0xab1)])[_0x1ab46e(0x368)+'e'](_0x1ea8a8);return _0x39e253[_0x4f812e(0x9f5)]()[_0x30fba9(0x73c)]('\x0a')[_0x4f812e(0x335)+'ch'](function(_0x1c9c2a){const _0x130ba9=_0x30fba9,_0x174989=_0x30fba9,_0x369cbe=_0x4f812e,_0xf732d6=_0x30fba9,_0x218fcb=_0x37d438,_0x4dc61d={'ZfvFn':function(_0x12bdb2,_0x29d221){const _0x136f5e=_0x2881;return _0x28a8cd[_0x136f5e(0x805)](_0x12bdb2,_0x29d221);},'IucSe':function(_0x16859b,_0x51f4a3){const _0x2f028c=_0x2881;return _0x28a8cd[_0x2f028c(0x359)](_0x16859b,_0x51f4a3);},'dZsle':_0x28a8cd[_0x130ba9(0x244)],'gvjTb':function(_0x1a55ac,_0x36a074){const _0x3b304d=_0x130ba9;return _0x28a8cd[_0x3b304d(0x848)](_0x1a55ac,_0x36a074);},'THKSu':function(_0x57280b,_0x295725){const _0x3fd79d=_0x130ba9;return _0x28a8cd[_0x3fd79d(0x1f6)](_0x57280b,_0x295725);},'ZZhNP':function(_0x2a69c8,_0x4a2541){const _0x465a19=_0x130ba9;return _0x28a8cd[_0x465a19(0x2aa)](_0x2a69c8,_0x4a2541);},'Xfhew':function(_0x1298d8,_0xb87e12){const _0x56d7ba=_0x130ba9;return _0x28a8cd[_0x56d7ba(0x87a)](_0x1298d8,_0xb87e12);}};if(_0x28a8cd[_0x130ba9(0x61b)](_0x28a8cd[_0x130ba9(0x555)],_0x28a8cd[_0x174989(0xc0a)]))return _0x271b52[_0xf732d6(0x653)+_0x218fcb(0x703)]()[_0x218fcb(0x9e2)+'h'](KJataZ[_0x369cbe(0x42a)])[_0xf732d6(0x653)+_0x218fcb(0x703)]()[_0x174989(0xccd)+_0x130ba9(0x2a7)+'r'](_0x3f7bef)[_0x174989(0x9e2)+'h'](KJataZ[_0x174989(0x42a)]);else{try{_0x28a8cd[_0x174989(0x6f0)](_0x28a8cd[_0x218fcb(0xb98)],_0x28a8cd[_0x174989(0x2e8)])?document[_0x218fcb(0x4f9)+_0x218fcb(0x354)+_0xf732d6(0x778)](_0x28a8cd[_0x130ba9(0x4fe)])[_0xf732d6(0xbba)+_0x130ba9(0x1a9)]=document[_0x130ba9(0x4f9)+_0x369cbe(0x354)+_0x130ba9(0x778)](_0x28a8cd[_0x174989(0x4fe)])[_0x218fcb(0xbba)+_0x130ba9(0x593)+'ht']:(_0x48bc26+=_0x4dc61d[_0xf732d6(0x6c1)](_0x3132de[_0x255286],_0x4feaec[_0x2b2c1c]),_0x3d2417+=_0x4dc61d[_0x218fcb(0x638)](_0x34e059[_0x6d3a3],0x13*-0x199+-0xb05*0x3+-0x1fb6*-0x2),_0x3f3639+=_0x4dc61d[_0x130ba9(0x638)](_0x2bec85[_0x95aed7],0x2041*0x1+-0x1043+-0x3*0x554));}catch(_0x17167a){}_0x199921='';if(_0x28a8cd[_0x130ba9(0x87a)](_0x1c9c2a[_0x174989(0x58b)+'h'],0x1956*-0x1+0x2*0xdc7+-0x232))_0x199921=_0x1c9c2a[_0x218fcb(0x65a)](0xd7f+-0x16f1+0x978);if(_0x28a8cd[_0x218fcb(0x5e9)](_0x199921,_0x28a8cd[_0x174989(0xa74)])){if(_0x28a8cd[_0xf732d6(0x57b)](_0x28a8cd[_0xf732d6(0x62c)],_0x28a8cd[_0xf732d6(0x561)])){const _0x3f6942=_0x28a8cd[_0x130ba9(0x4b4)][_0x218fcb(0x73c)]('|');let _0x515732=0x374+-0x2*-0x82e+-0x10*0x13d;while(!![]){switch(_0x3f6942[_0x515732++]){case'0':document[_0x369cbe(0x4f9)+_0x130ba9(0x354)+_0x130ba9(0x778)](_0x28a8cd[_0x369cbe(0x3de)])[_0x369cbe(0x7ca)]='';continue;case'1':lock_chat=0xad*0x5+-0x1*-0x2289+-0x25ea;continue;case'2':const _0x125f96={};_0x125f96[_0xf732d6(0x1bd)]=_0x28a8cd[_0x218fcb(0xc47)],_0x125f96[_0x130ba9(0xb29)+'nt']=chatTemp,word_last[_0x369cbe(0xabc)](_0x125f96);continue;case'3':const _0x56c93e={};_0x56c93e[_0x130ba9(0x1bd)]=_0x28a8cd[_0x369cbe(0xc98)],_0x56c93e[_0x218fcb(0xb29)+'nt']=_0x2f241e,word_last[_0xf732d6(0xabc)](_0x56c93e);continue;case'4':return;}break;}}else _0x244deb=_0x526f75[_0x218fcb(0x7f0)](_0x5a0fbc)[_0x4dc61d[_0x174989(0x465)]],_0x226ac7='';}let _0x564728;try{if(_0x28a8cd[_0xf732d6(0x1f2)](_0x28a8cd[_0x130ba9(0x91f)],_0x28a8cd[_0x218fcb(0x91f)]))_0x313222=_0x455130;else try{if(_0x28a8cd[_0xf732d6(0x633)](_0x28a8cd[_0x174989(0x3a6)],_0x28a8cd[_0x218fcb(0xc52)]))_0x564728=JSON[_0x369cbe(0x7f0)](_0x28a8cd[_0x369cbe(0x519)](_0x44cc2b,_0x199921))[_0x28a8cd[_0x218fcb(0x244)]],_0x44cc2b='';else{const _0x4abba5=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x21264f=new _0x4a8a89(),_0x179464=(_0x25bd06,_0x3f8de1)=>{const _0x320cac=_0x369cbe,_0x2629e5=_0x130ba9,_0x3b79d6=_0x174989,_0x5d272d=_0x218fcb,_0x904f8d=_0x130ba9;if(_0x21264f[_0x320cac(0x35b)](_0x3f8de1))return _0x25bd06;const _0x577ede=_0x3f8de1[_0x2629e5(0x73c)](/[;,;、,]/),_0x11a127=_0x577ede[_0x320cac(0x30c)](_0x57e9f6=>'['+_0x57e9f6+']')[_0x320cac(0xcf8)]('\x20'),_0x49e788=_0x577ede[_0x320cac(0x30c)](_0x3b33bc=>'['+_0x3b33bc+']')[_0x2629e5(0xcf8)]('\x0a');_0x577ede[_0x3b79d6(0x335)+'ch'](_0x1ce726=>_0x21264f[_0x904f8d(0x74a)](_0x1ce726)),_0x171902='\x20';for(var _0x317458=_0x4dc61d[_0x2629e5(0x71b)](_0x4dc61d[_0x320cac(0x206)](_0x21264f[_0x5d272d(0xa9c)],_0x577ede[_0x3b79d6(0x58b)+'h']),-0x1*-0x21a1+-0xb73*-0x2+-0x5a7*0xa);_0x4dc61d[_0x2629e5(0xa42)](_0x317458,_0x21264f[_0x320cac(0xa9c)]);++_0x317458)_0x390eec+='[^'+_0x317458+']\x20';return _0x27cb30;};let _0x62f6ee=-0x1*0x241f+-0x1a1d+0x3e3d,_0xc99376=_0x2537f8[_0x218fcb(0x92b)+'ce'](_0x4abba5,_0x179464);while(_0x4dc61d[_0x130ba9(0x40b)](_0x21264f[_0x218fcb(0xa9c)],0x1*0x2573+-0x41b+-0x2158)){const _0x3f9330='['+_0x62f6ee++ +_0x174989(0x573)+_0x21264f[_0x130ba9(0x7ca)+'s']()[_0xf732d6(0x23b)]()[_0xf732d6(0x7ca)],_0x2fbb50='[^'+_0x4dc61d[_0x174989(0x206)](_0x62f6ee,-0xcc0+0x2b*-0x14+0x101d)+_0x218fcb(0x573)+_0x21264f[_0x218fcb(0x7ca)+'s']()[_0x130ba9(0x23b)]()[_0xf732d6(0x7ca)];_0xc99376=_0xc99376+'\x0a\x0a'+_0x2fbb50,_0x21264f[_0x130ba9(0xc3d)+'e'](_0x21264f[_0xf732d6(0x7ca)+'s']()[_0x174989(0x23b)]()[_0xf732d6(0x7ca)]);}return _0xc99376;}}catch(_0x5ad4c5){if(_0x28a8cd[_0x130ba9(0x6d3)](_0x28a8cd[_0x218fcb(0x421)],_0x28a8cd[_0x369cbe(0x793)]))_0x564728=JSON[_0x218fcb(0x7f0)](_0x199921)[_0x28a8cd[_0xf732d6(0x244)]],_0x44cc2b='';else return _0x28a8cd[_0x130ba9(0x87a)](_0x28a8cd[_0x218fcb(0xaf6)](_0x3c1ad1,_0x5e2bab,_0x1d6548),_0x28a8cd[_0x369cbe(0xaf6)](_0xdbc7e2,_0x1e314c,_0x168c10))?-(-0x1529+-0x17*0x6a+0x1eb0):-0x1e58+-0xea9+-0x1681*-0x2;}}catch(_0xfa087d){_0x28a8cd[_0x218fcb(0x607)](_0x28a8cd[_0x174989(0x2eb)],_0x28a8cd[_0x218fcb(0x2eb)])?_0x530344+='':_0x44cc2b+=_0x199921;}_0x564728&&_0x28a8cd[_0x369cbe(0x33f)](_0x564728[_0x130ba9(0x58b)+'h'],-0xdf*-0xb+0x1e5b+-0x4fe*0x8)&&_0x564728[-0x1ca2+-0x1ad2+0x222*0x1a][_0x130ba9(0x1f7)][_0xf732d6(0xb29)+'nt']&&(_0x28a8cd[_0xf732d6(0xc68)](_0x28a8cd[_0x369cbe(0x2bf)],_0x28a8cd[_0xf732d6(0x89f)])?_0x4920a7[_0x174989(0x905)+_0x369cbe(0x16a)+_0x369cbe(0x3e2)](_0x28a8cd[_0x174989(0x799)])[_0xf732d6(0x94b)+_0x369cbe(0xc37)]=_0x28a8cd[_0xf732d6(0x569)](_0x28a8cd[_0xf732d6(0x848)](_0x28a8cd[_0xf732d6(0x519)](_0x28a8cd[_0x369cbe(0x848)](_0x28a8cd[_0x130ba9(0x569)](_0x28a8cd[_0x130ba9(0x1b6)](_0x2169e8,_0x28a8cd[_0x174989(0x333)]),_0x28a8cd[_0xf732d6(0x467)]),_0x28a8cd[_0x369cbe(0xb12)]),_0x28a8cd[_0x130ba9(0xbc7)](_0x586424,_0x39d6d2)),_0x28a8cd[_0xf732d6(0x6ca)]),_0x28a8cd[_0x174989(0x6d6)]):chatTemp+=_0x564728[0x2372*0x1+-0x1*-0x116+-0x2488][_0xf732d6(0x1f7)][_0x130ba9(0xb29)+'nt']),chatTemp=chatTemp[_0x130ba9(0x92b)+_0x130ba9(0x6b6)]('\x0a\x0a','\x0a')[_0x218fcb(0x92b)+_0x218fcb(0x6b6)]('\x0a\x0a','\x0a'),document[_0x218fcb(0x4f9)+_0x218fcb(0x354)+_0x174989(0x778)](_0x28a8cd[_0x174989(0x2cb)])[_0x130ba9(0x94b)+_0xf732d6(0xc37)]='',_0x28a8cd[_0x174989(0xb58)](markdownToHtml,_0x28a8cd[_0x130ba9(0x811)](beautify,chatTemp),document[_0x369cbe(0x4f9)+_0x174989(0x354)+_0x174989(0x778)](_0x28a8cd[_0x130ba9(0x2cb)])),document[_0xf732d6(0x905)+_0xf732d6(0x16a)+_0x130ba9(0x3e2)](_0x28a8cd[_0x130ba9(0x799)])[_0xf732d6(0x94b)+_0x218fcb(0xc37)]=_0x28a8cd[_0xf732d6(0x470)](_0x28a8cd[_0x174989(0x848)](_0x28a8cd[_0x369cbe(0x848)](prev_chat,_0x28a8cd[_0x174989(0xce5)]),document[_0x174989(0x4f9)+_0x130ba9(0x354)+_0x218fcb(0x778)](_0x28a8cd[_0xf732d6(0x2cb)])[_0x174989(0x94b)+_0x218fcb(0xc37)]),_0x28a8cd[_0xf732d6(0x6d6)]);}}),_0x12c6f5[_0x37d438(0x350)]()[_0x37d438(0x1fc)](_0x50af71);}});}else _0x3b925d=_0x4b419a[_0x290c10(0x7f0)](_0x35dbbd[_0x290c10(0xaa7)](_0x228e5f,_0x19edbd))[_0x35dbbd[_0x290c10(0x7e6)]],_0x4c76cb='';})[_0x52be25(0x51b)](_0x5de61d=>{const _0x4e036a=_0x3b7991,_0x5b7523=_0x3b7991,_0xb51e1e=_0x2d0b74,_0x2b3750=_0x3b7991,_0xd98954=_0x3b7991;_0x264897[_0x4e036a(0x4dc)](_0x264897[_0x5b7523(0x3bf)],_0x264897[_0x5b7523(0x3bf)])?console[_0x4e036a(0x65f)](_0x264897[_0xd98954(0xce9)],_0x5de61d):_0x31b37a+=_0x3b85d6;});}function send_chat(_0x274157){const _0x4c3cf0=_0x434b27,_0x2f2ca0=_0x3264df,_0x1b531c=_0x108b35,_0x15ec8a=_0x13ebe9,_0x364279=_0x3264df,_0x525900={'euVJO':_0x4c3cf0(0x296)+_0x4c3cf0(0x3af),'nRLXl':_0x1b531c(0x8e4)+':','sAvbi':_0x4c3cf0(0xa35)+_0x4c3cf0(0x7a4),'HorZf':function(_0x399118,_0x5dcf7f){return _0x399118+_0x5dcf7f;},'QEhTS':_0x1b531c(0x73f)+_0x2f2ca0(0x7a1)+_0x15ec8a(0x59e)+_0x15ec8a(0x63b)+_0x4c3cf0(0x6fc)+'\x22>','KsRSB':_0x1b531c(0x746),'nvybS':_0x4c3cf0(0x814)+_0x2f2ca0(0x509)+_0x364279(0x39b)+_0x2f2ca0(0x376),'Ieneq':_0x15ec8a(0xa5a),'JYEkG':_0x1b531c(0xb09),'vAAun':_0x15ec8a(0x8ad)+'>','LmrBi':_0x4c3cf0(0x991)+'es','WdEWw':function(_0x2f15ca,_0x22f013){return _0x2f15ca<_0x22f013;},'uXSSY':_0x4c3cf0(0xc2e)+_0x364279(0x174)+_0x4c3cf0(0x78b)+_0x364279(0x572)+_0x15ec8a(0x54b)+'--','wgJyi':_0x2f2ca0(0xc2e)+_0x2f2ca0(0x755)+_0x4c3cf0(0x45e)+_0x15ec8a(0xc33)+_0x4c3cf0(0xc2e),'RVMQk':function(_0x58d1f4,_0x14fa09){return _0x58d1f4-_0x14fa09;},'OAtQP':function(_0x261283,_0x4a9dee){return _0x261283(_0x4a9dee);},'ilTPv':_0x1b531c(0x236),'FtPxE':_0x364279(0x8ca)+_0x364279(0xb6d),'YCQRm':_0x15ec8a(0x69d)+'56','QUVJM':_0x1b531c(0xa1b)+'pt','BluYd':function(_0x504384,_0x40b963){return _0x504384!==_0x40b963;},'otfTJ':_0x15ec8a(0xbf0),'UiCoJ':_0x15ec8a(0x6e6),'QpFZt':function(_0x1394e6,_0x448da3){return _0x1394e6===_0x448da3;},'drEMO':_0x2f2ca0(0x6d5),'rMzeg':_0x364279(0xb94),'rCoXn':function(_0x2eaa26,_0x57253d){return _0x2eaa26>_0x57253d;},'LwbLc':function(_0x56566a,_0x9a6a4){return _0x56566a==_0x9a6a4;},'GsAQw':_0x1b531c(0xc6e)+']','kQwMk':_0x15ec8a(0x4d1),'XUBeP':_0x15ec8a(0x447)+_0x2f2ca0(0x8f4),'hptnz':_0x2f2ca0(0x296)+_0x4c3cf0(0x92d)+'t','UctrT':_0x15ec8a(0xaaa)+_0x364279(0x2fb),'kaEQS':_0x1b531c(0xcb1),'ktVas':_0x1b531c(0x3fd),'tBzmq':_0x15ec8a(0xc43),'HWrvq':_0x4c3cf0(0xa8f),'JGsAw':_0x4c3cf0(0x6f7),'CZgkG':_0x2f2ca0(0x75d),'KOMTx':_0x364279(0x8d2),'UqilC':_0x4c3cf0(0x3ca),'JXBjY':_0x4c3cf0(0xa55),'NBnlY':_0x2f2ca0(0x303)+'pt','pkqVI':function(_0x53400c,_0x529846,_0x562385){return _0x53400c(_0x529846,_0x562385);},'MjFtn':_0x2f2ca0(0x73f)+_0x15ec8a(0x7a1)+_0x1b531c(0x59e)+_0x2f2ca0(0x847)+_0x1b531c(0x457),'xkGvG':_0x2f2ca0(0x93c),'UFtJm':_0x364279(0x930),'IoDMB':_0x364279(0xc87),'Rxfcq':function(_0x3a1ed0,_0x1f8ac1){return _0x3a1ed0===_0x1f8ac1;},'WecYU':_0x15ec8a(0x794),'iyVQb':_0x364279(0x67d),'jAuOl':_0x4c3cf0(0x53d),'PLosO':function(_0x4f3c98,_0x3943b6){return _0x4f3c98==_0x3943b6;},'zUyDs':_0x2f2ca0(0x4a3)+'l','yzpzQ':_0x1b531c(0x6fe),'FsXNY':_0x2f2ca0(0xad7),'dEeUW':_0x4c3cf0(0x9e1),'gDeNo':_0x1b531c(0x1ad),'hpGiI':_0x2f2ca0(0x9fe),'YCDsE':_0x15ec8a(0xaf5),'LWtUw':_0x364279(0xcce)+_0x4c3cf0(0x6ae)+_0x1b531c(0xc7e)+_0x1b531c(0x511)+_0x1b531c(0x9b1)+_0x364279(0x362)+_0x364279(0xa73)+_0x364279(0x216)+'e=','qwWGb':function(_0x25a950,_0x1ed339){return _0x25a950(_0x1ed339);},'nzlZl':_0x15ec8a(0x795),'JyciY':function(_0x324cd7,_0x222387){return _0x324cd7>_0x222387;},'KMmDs':function(_0x557298,_0x39bfac,_0x237b2e){return _0x557298(_0x39bfac,_0x237b2e);},'SYkGd':_0x2f2ca0(0x557),'LdcrW':_0x364279(0x950),'LwNVj':_0x15ec8a(0x1cf),'xdDCN':_0x1b531c(0xcd0),'cOUzq':_0x4c3cf0(0xb18),'oNjyR':_0x4c3cf0(0x60f),'YAVyc':_0x2f2ca0(0x620),'HXGVR':_0x364279(0xbab),'PnSJZ':_0x1b531c(0x8fc),'FTUGi':_0x4c3cf0(0x837),'SHMed':_0x1b531c(0x3e5),'ggWcJ':_0x2f2ca0(0x52c),'vLSfK':_0x2f2ca0(0x77d),'ESsKm':_0x1b531c(0x5db),'OmoGt':function(_0x2eb6fc,_0x376c1e){return _0x2eb6fc!=_0x376c1e;},'hGBYM':function(_0x280266,_0x45d988){return _0x280266+_0x45d988;},'Mtucw':_0x15ec8a(0x296),'RYFtX':_0x1b531c(0xb41)+_0x2f2ca0(0x920),'LeeMU':_0x364279(0x95f)+'\x0a','aTdil':_0x4c3cf0(0x3fa)+'m','tiejq':_0x1b531c(0x306)+_0x15ec8a(0x3c0)+_0x4c3cf0(0x672)+_0x2f2ca0(0xb7b)+_0x4c3cf0(0x78d)+_0x364279(0x23f)+'何人','VcKsp':function(_0x176634,_0x31c623){return _0x176634+_0x31c623;},'BHxHm':_0x4c3cf0(0xce3),'hdqrO':_0x364279(0x89a)+_0x2f2ca0(0x48e)+_0x2f2ca0(0x197),'zeOPf':_0x364279(0x983),'iDHkN':function(_0x4d2652,_0x5ee4c9){return _0x4d2652+_0x5ee4c9;},'OcNJD':function(_0x378d93,_0x2d4e60,_0x2f9c0f){return _0x378d93(_0x2d4e60,_0x2f9c0f);},'PgwSK':_0x2f2ca0(0x5b1)+_0x2f2ca0(0x6ac)+_0x364279(0x809)+_0x4c3cf0(0x7e9)+_0x364279(0x992)+_0x364279(0xb89)};if(_0x525900[_0x1b531c(0x4ea)](document[_0x15ec8a(0x4f9)+_0x4c3cf0(0x354)+_0x364279(0x778)](_0x525900[_0x1b531c(0x720)])[_0x15ec8a(0x52a)][_0x15ec8a(0x3d4)+'ay'],_0x525900[_0x15ec8a(0xc7d)])){if(_0x525900[_0x364279(0x945)](_0x525900[_0x2f2ca0(0x9f6)],_0x525900[_0x4c3cf0(0x568)]))return _0x525900[_0x15ec8a(0xc63)](send_modalchat,_0x274157);else _0x22a001[_0x4c3cf0(0x4f9)+_0x4c3cf0(0x354)+_0x15ec8a(0x778)](_0x525900[_0x2f2ca0(0x49c)])[_0x2f2ca0(0xbba)+_0x4c3cf0(0x1a9)]=_0x383014[_0x1b531c(0x4f9)+_0x364279(0x354)+_0x4c3cf0(0x778)](_0x525900[_0x364279(0x49c)])[_0x1b531c(0xbba)+_0x4c3cf0(0x593)+'ht'];}let _0xf00b1d=document[_0x2f2ca0(0x4f9)+_0x2f2ca0(0x354)+_0x364279(0x778)](_0x525900[_0x1b531c(0x1fe)])[_0x364279(0x7ca)];_0x274157&&(_0x525900[_0x4c3cf0(0x945)](_0x525900[_0x15ec8a(0x779)],_0x525900[_0x15ec8a(0xc0e)])?(_0xf00b1d=_0x274157[_0x15ec8a(0x357)+_0x364279(0x2ed)+'t'],_0x274157[_0x15ec8a(0x193)+'e']()):_0x4210a8+='');regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;_0xf00b1d[_0x2f2ca0(0x464)](regexpdf)&&(_0x525900[_0x364279(0x945)](_0x525900[_0x2f2ca0(0x1c7)],_0x525900[_0x2f2ca0(0x1c7)])?_0x30bcbe[_0x4c3cf0(0x65f)](_0x525900[_0x15ec8a(0xb6b)],_0x2f75ca):(pdf_url=_0xf00b1d[_0x364279(0x464)](regexpdf)[0x33f*-0xc+0x1351+-0x1*-0x13a3],_0x525900[_0x2f2ca0(0xc36)](modal_open,_0x525900[_0x2f2ca0(0x571)](_0x525900[_0x364279(0x475)],_0x525900[_0x364279(0xa91)](encodeURIComponent,pdf_url)),_0x525900[_0x2f2ca0(0x65c)])));if(_0x525900[_0x1b531c(0x1cd)](_0xf00b1d[_0x1b531c(0x58b)+'h'],0x18*0x61+0xc22*-0x3+0x1b4e)||_0x525900[_0x364279(0xaff)](_0xf00b1d[_0x4c3cf0(0x58b)+'h'],0x9f*0x27+0x1a8a+-0x3237))return;_0x525900[_0x364279(0x2a3)](trimArray,word_last,0xf7d+0x1bc5*0x1+0x26e*-0x11);if(_0xf00b1d[_0x2f2ca0(0x670)+_0x364279(0x9a0)]('你能')||_0xf00b1d[_0x1b531c(0x670)+_0x2f2ca0(0x9a0)]('讲讲')||_0xf00b1d[_0x4c3cf0(0x670)+_0x2f2ca0(0x9a0)]('扮演')||_0xf00b1d[_0x2f2ca0(0x670)+_0x2f2ca0(0x9a0)]('模仿')||_0xf00b1d[_0x4c3cf0(0x670)+_0x364279(0x9a0)](_0x525900[_0x4c3cf0(0x47e)])||_0xf00b1d[_0x2f2ca0(0x670)+_0x364279(0x9a0)]('帮我')||_0xf00b1d[_0x364279(0x670)+_0x1b531c(0x9a0)](_0x525900[_0x4c3cf0(0xb81)])||_0xf00b1d[_0x15ec8a(0x670)+_0x364279(0x9a0)](_0x525900[_0x4c3cf0(0x753)])||_0xf00b1d[_0x4c3cf0(0x670)+_0x2f2ca0(0x9a0)]('请问')||_0xf00b1d[_0x4c3cf0(0x670)+_0x2f2ca0(0x9a0)]('请给')||_0xf00b1d[_0x364279(0x670)+_0x1b531c(0x9a0)]('请你')||_0xf00b1d[_0x364279(0x670)+_0x2f2ca0(0x9a0)](_0x525900[_0x2f2ca0(0x47e)])||_0xf00b1d[_0x2f2ca0(0x670)+_0x364279(0x9a0)](_0x525900[_0x2f2ca0(0x5d8)])||_0xf00b1d[_0x2f2ca0(0x670)+_0x1b531c(0x9a0)](_0x525900[_0x2f2ca0(0x816)])||_0xf00b1d[_0x1b531c(0x670)+_0x15ec8a(0x9a0)](_0x525900[_0x1b531c(0xad1)])||_0xf00b1d[_0x364279(0x670)+_0x2f2ca0(0x9a0)](_0x525900[_0x2f2ca0(0x986)])||_0xf00b1d[_0x4c3cf0(0x670)+_0x4c3cf0(0x9a0)](_0x525900[_0x15ec8a(0x31d)])||_0xf00b1d[_0x2f2ca0(0x670)+_0x1b531c(0x9a0)]('怎样')||_0xf00b1d[_0x15ec8a(0x670)+_0x2f2ca0(0x9a0)]('给我')||_0xf00b1d[_0x15ec8a(0x670)+_0x15ec8a(0x9a0)]('如何')||_0xf00b1d[_0x15ec8a(0x670)+_0x364279(0x9a0)]('谁是')||_0xf00b1d[_0x4c3cf0(0x670)+_0x2f2ca0(0x9a0)]('查询')||_0xf00b1d[_0x4c3cf0(0x670)+_0x2f2ca0(0x9a0)](_0x525900[_0x15ec8a(0x2f2)])||_0xf00b1d[_0x15ec8a(0x670)+_0x4c3cf0(0x9a0)](_0x525900[_0x4c3cf0(0x274)])||_0xf00b1d[_0x1b531c(0x670)+_0x4c3cf0(0x9a0)](_0x525900[_0x2f2ca0(0xc04)])||_0xf00b1d[_0x1b531c(0x670)+_0x364279(0x9a0)](_0x525900[_0x364279(0x9c9)])||_0xf00b1d[_0x15ec8a(0x670)+_0x4c3cf0(0x9a0)]('哪个')||_0xf00b1d[_0x1b531c(0x670)+_0x15ec8a(0x9a0)]('哪些')||_0xf00b1d[_0x4c3cf0(0x670)+_0x15ec8a(0x9a0)](_0x525900[_0x15ec8a(0x8a2)])||_0xf00b1d[_0x2f2ca0(0x670)+_0x4c3cf0(0x9a0)](_0x525900[_0x1b531c(0x7af)])||_0xf00b1d[_0x364279(0x670)+_0x4c3cf0(0x9a0)]('啥是')||_0xf00b1d[_0x1b531c(0x670)+_0x364279(0x9a0)]('为啥')||_0xf00b1d[_0x1b531c(0x670)+_0x1b531c(0x9a0)]('怎么'))return _0x525900[_0x364279(0xa91)](send_webchat,_0x274157);if(_0x525900[_0x1b531c(0x34a)](lock_chat,0x89*0x1+0x25cf*0x1+0x4*-0x996))return;lock_chat=-0x210d+0x1*-0x26ad+-0x3*-0x17e9;const _0x524fc5=_0x525900[_0x2f2ca0(0xc84)](_0x525900[_0x364279(0x571)](_0x525900[_0x15ec8a(0x571)](document[_0x4c3cf0(0x4f9)+_0x1b531c(0x354)+_0x364279(0x778)](_0x525900[_0x2f2ca0(0x756)])[_0x4c3cf0(0x94b)+_0x4c3cf0(0xc37)][_0x1b531c(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4c3cf0(0x92b)+'ce'](/<hr.*/gs,'')[_0x1b531c(0x92b)+'ce'](/<[^>]+>/g,'')[_0x1b531c(0x92b)+'ce'](/\n\n/g,'\x0a'),_0x525900[_0x1b531c(0x4a5)]),search_queryquery),_0x525900[_0x364279(0x87e)]),_0xe834ab={};_0xe834ab[_0x4c3cf0(0x1bd)]=_0x525900[_0x15ec8a(0xba3)],_0xe834ab[_0x1b531c(0xb29)+'nt']=_0x525900[_0x2f2ca0(0xafa)];const _0x1a4e9={};_0x1a4e9[_0x15ec8a(0x1bd)]=_0x525900[_0x4c3cf0(0xc40)],_0x1a4e9[_0x4c3cf0(0xb29)+'nt']=_0x524fc5;let _0x279359=[_0xe834ab,_0x1a4e9];_0x279359=_0x279359[_0x1b531c(0xade)+'t'](word_last),_0x279359=_0x279359[_0x2f2ca0(0xade)+'t']([{'role':_0x525900[_0x15ec8a(0xa95)],'content':_0x525900[_0x15ec8a(0x643)](_0x525900[_0x364279(0x571)](_0x525900[_0x2f2ca0(0x80a)],_0xf00b1d),_0x525900[_0x1b531c(0x5dd)])}]);const _0x214832={'method':_0x525900[_0x1b531c(0xb3b)],'headers':headers,'body':_0x525900[_0x1b531c(0xc63)](b64EncodeUnicode,JSON[_0x2f2ca0(0x498)+_0x364279(0x806)]({'messages':_0x279359[_0x2f2ca0(0xade)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0xf00b1d=_0xf00b1d[_0x15ec8a(0x92b)+_0x364279(0x6b6)]('\x0a\x0a','\x0a')[_0x15ec8a(0x92b)+_0x15ec8a(0x6b6)]('\x0a\x0a','\x0a'),document[_0x364279(0x4f9)+_0x1b531c(0x354)+_0x4c3cf0(0x778)](_0x525900[_0x4c3cf0(0x52f)])[_0x15ec8a(0x94b)+_0x15ec8a(0xc37)]='',_0x525900[_0x15ec8a(0x2a3)](markdownToHtml,_0x525900[_0x1b531c(0xc63)](beautify,_0xf00b1d),document[_0x15ec8a(0x4f9)+_0x2f2ca0(0x354)+_0x364279(0x778)](_0x525900[_0x364279(0x52f)])),chatTemp='',text_offset=-(-0x3*0xa25+0x28d+0x1be3),prev_chat=document[_0x364279(0x905)+_0x364279(0x16a)+_0x15ec8a(0x3e2)](_0x525900[_0x2f2ca0(0x6ef)])[_0x15ec8a(0x94b)+_0x1b531c(0xc37)],prev_chat=_0x525900[_0x364279(0xc84)](_0x525900[_0x1b531c(0xaf1)](_0x525900[_0x4c3cf0(0x571)](prev_chat,_0x525900[_0x15ec8a(0x6c6)]),document[_0x15ec8a(0x4f9)+_0x364279(0x354)+_0x2f2ca0(0x778)](_0x525900[_0x1b531c(0x52f)])[_0x1b531c(0x94b)+_0x4c3cf0(0xc37)]),_0x525900[_0x15ec8a(0x5fc)]),_0x525900[_0x4c3cf0(0x6df)](fetch,_0x525900[_0x15ec8a(0xb25)],_0x214832)[_0x4c3cf0(0x1fc)](_0x36278c=>{const _0x5da650=_0x4c3cf0,_0x4feeea=_0x15ec8a,_0x2f0005=_0x2f2ca0,_0x32c95e=_0x2f2ca0,_0x20052f=_0x15ec8a,_0x3bf2c6={'dicvD':_0x525900[_0x5da650(0x6ef)],'svVZO':function(_0x1e5927,_0x535e6e){const _0x5a02ea=_0x5da650;return _0x525900[_0x5a02ea(0x571)](_0x1e5927,_0x535e6e);},'URUds':function(_0x33c641,_0x32d4ef){const _0xc962a6=_0x5da650;return _0x525900[_0xc962a6(0x571)](_0x33c641,_0x32d4ef);},'hFjid':_0x525900[_0x5da650(0x6c6)],'SQdPq':_0x525900[_0x4feeea(0xb9d)],'KzoTY':_0x525900[_0x2f0005(0x628)],'lAOCt':_0x525900[_0x32c95e(0x8a5)],'SFITe':_0x525900[_0x32c95e(0x969)],'HMcnd':_0x525900[_0x4feeea(0x5fc)],'JJrrO':_0x525900[_0x4feeea(0xc73)],'WYbRd':function(_0x3bc993,_0x3cd562){const _0x4ebe40=_0x4feeea;return _0x525900[_0x4ebe40(0xa69)](_0x3bc993,_0x3cd562);},'GWuxO':_0x525900[_0x5da650(0x61e)],'xCjTk':_0x525900[_0x32c95e(0x180)],'NujJe':function(_0x2aa364,_0x393546){const _0x205f0b=_0x32c95e;return _0x525900[_0x205f0b(0xa43)](_0x2aa364,_0x393546);},'zqJKE':function(_0x57d14f,_0x45f136){const _0xe624f5=_0x4feeea;return _0x525900[_0xe624f5(0xc63)](_0x57d14f,_0x45f136);},'GBdTZ':function(_0x5b91e7,_0x6a1ce9){const _0x2782ad=_0x5da650;return _0x525900[_0x2782ad(0xc63)](_0x5b91e7,_0x6a1ce9);},'xeYtE':_0x525900[_0x32c95e(0x4e3)],'FUsmH':_0x525900[_0x2f0005(0x665)],'lqAIa':_0x525900[_0x32c95e(0xcbc)],'LmRcl':_0x525900[_0x32c95e(0x81a)],'ClQHB':function(_0x271394,_0x425748){const _0x22a5af=_0x2f0005;return _0x525900[_0x22a5af(0x945)](_0x271394,_0x425748);},'BPWYm':_0x525900[_0x20052f(0x32e)],'WeJZw':_0x525900[_0x4feeea(0xc76)],'LnRWx':function(_0x12ea40,_0x5e2206){const _0x1dd163=_0x2f0005;return _0x525900[_0x1dd163(0x4ec)](_0x12ea40,_0x5e2206);},'PzGbI':_0x525900[_0x20052f(0xc6f)],'vngYd':_0x525900[_0x20052f(0xc8a)],'icAvC':_0x525900[_0x2f0005(0x49c)],'sfCyc':function(_0x193cb5,_0x5eeea8){const _0x4e734c=_0x5da650;return _0x525900[_0x4e734c(0x963)](_0x193cb5,_0x5eeea8);},'jezwP':function(_0x3a12e8,_0x16e07c){const _0x290de3=_0x2f0005;return _0x525900[_0x290de3(0x1cd)](_0x3a12e8,_0x16e07c);},'hnVWt':_0x525900[_0x20052f(0x583)],'RucKl':function(_0x53984c,_0x5c66fe){const _0x5f5c0c=_0x2f0005;return _0x525900[_0x5f5c0c(0x4ec)](_0x53984c,_0x5c66fe);},'btywF':_0x525900[_0x32c95e(0x84c)],'ywaEI':_0x525900[_0x32c95e(0x431)],'zZMBF':_0x525900[_0x5da650(0x1fe)],'cSDrF':_0x525900[_0x20052f(0xc40)],'UeDRs':_0x525900[_0x4feeea(0xa95)],'qhUqY':_0x525900[_0x4feeea(0x59b)],'uUpYn':_0x525900[_0x5da650(0x6ba)],'OGsaW':function(_0x1c362b,_0x460e97){const _0x24b3bc=_0x4feeea;return _0x525900[_0x24b3bc(0x571)](_0x1c362b,_0x460e97);},'ZMvOT':_0x525900[_0x2f0005(0x496)],'oPcwp':_0x525900[_0x32c95e(0x566)],'sKFNz':_0x525900[_0x20052f(0x516)],'eitam':_0x525900[_0x4feeea(0x926)],'Locia':_0x525900[_0x4feeea(0xbdb)],'bJPpo':_0x525900[_0x4feeea(0x6a1)],'ptSTf':_0x525900[_0x20052f(0x52f)],'yRoPI':function(_0x19cb21,_0x51276d,_0x4909bf){const _0x4e508c=_0x4feeea;return _0x525900[_0x4e508c(0xc36)](_0x19cb21,_0x51276d,_0x4909bf);},'NcaIU':_0x525900[_0x20052f(0x1a3)],'IyJyH':_0x525900[_0x32c95e(0x8ea)],'zJGlE':_0x525900[_0x2f0005(0x3c4)],'LcWKq':_0x525900[_0x20052f(0x64a)]};if(_0x525900[_0x5da650(0x3cd)](_0x525900[_0x20052f(0x578)],_0x525900[_0x32c95e(0x446)]))return _0xb77f98;else{const _0x50a20a=_0x36278c[_0x5da650(0x370)][_0x5da650(0x84e)+_0x5da650(0xacd)]();let _0xc4d3e4='',_0x3c3ef7='';_0x50a20a[_0x2f0005(0x350)]()[_0x20052f(0x1fc)](function _0x310744({done:_0x272524,value:_0x2c8925}){const _0x50e3a1=_0x2f0005,_0x2dfe89=_0x4feeea,_0x519be6=_0x4feeea,_0x18bc9e=_0x5da650,_0x30b8ab=_0x2f0005,_0x4a7839={'ZCABY':_0x3bf2c6[_0x50e3a1(0xcc2)],'fWEUI':function(_0x164419,_0x3c8a0c){const _0x42f7bd=_0x50e3a1;return _0x3bf2c6[_0x42f7bd(0x1b5)](_0x164419,_0x3c8a0c);},'hscRX':function(_0x19ee3a,_0x55d5ce){const _0x2b912f=_0x50e3a1;return _0x3bf2c6[_0x2b912f(0x422)](_0x19ee3a,_0x55d5ce);},'uvkWy':function(_0x1051e3,_0x3f9642){const _0x3f0d9a=_0x50e3a1;return _0x3bf2c6[_0x3f0d9a(0x422)](_0x1051e3,_0x3f9642);},'eHmUe':_0x3bf2c6[_0x2dfe89(0x5c6)],'BTaiH':_0x3bf2c6[_0x519be6(0xa13)],'dQpWW':_0x3bf2c6[_0x50e3a1(0x9e6)],'pUBgi':_0x3bf2c6[_0x18bc9e(0x2ee)],'FrVGA':_0x3bf2c6[_0x30b8ab(0x4d7)],'aRQmT':_0x3bf2c6[_0x30b8ab(0x7b0)],'vnZyC':_0x3bf2c6[_0x50e3a1(0x7e5)],'vYsQH':function(_0x11d6c2,_0x535810){const _0x5c8688=_0x30b8ab;return _0x3bf2c6[_0x5c8688(0x1d4)](_0x11d6c2,_0x535810);},'DiqJr':_0x3bf2c6[_0x50e3a1(0x5e5)],'DwWIx':_0x3bf2c6[_0x2dfe89(0x783)],'PhOWv':function(_0x79f45,_0x309bd9){const _0xe6bc1d=_0x50e3a1;return _0x3bf2c6[_0xe6bc1d(0x3d8)](_0x79f45,_0x309bd9);},'SdVZr':function(_0x23bc57,_0x196e08){const _0x5eec77=_0x519be6;return _0x3bf2c6[_0x5eec77(0x859)](_0x23bc57,_0x196e08);},'COtPf':function(_0x184ba6,_0x162755){const _0x5567a6=_0x2dfe89;return _0x3bf2c6[_0x5567a6(0x8ba)](_0x184ba6,_0x162755);},'ojUZZ':_0x3bf2c6[_0x50e3a1(0x19a)],'XTUat':_0x3bf2c6[_0x50e3a1(0xcf6)],'zxckg':_0x3bf2c6[_0x18bc9e(0x679)],'hLdZQ':_0x3bf2c6[_0x30b8ab(0x3b1)],'xQxko':function(_0x375bdc,_0x3a00ff){const _0x150a2c=_0x18bc9e;return _0x3bf2c6[_0x150a2c(0x7cc)](_0x375bdc,_0x3a00ff);},'lAiqw':_0x3bf2c6[_0x519be6(0x374)],'xMyBf':_0x3bf2c6[_0x519be6(0x534)],'UvnkF':function(_0x106af2,_0x4a9149){const _0x3c1580=_0x519be6;return _0x3bf2c6[_0x3c1580(0x220)](_0x106af2,_0x4a9149);},'MlDrw':_0x3bf2c6[_0x50e3a1(0x529)],'CXEbo':_0x3bf2c6[_0x18bc9e(0x8c5)],'PTrQS':_0x3bf2c6[_0x30b8ab(0x1b4)],'jBzvd':function(_0x4b222d,_0x12afe7){const _0x4c123f=_0x519be6;return _0x3bf2c6[_0x4c123f(0x191)](_0x4b222d,_0x12afe7);},'UOJKa':function(_0x2d4d39,_0x531573){const _0x33ce7c=_0x50e3a1;return _0x3bf2c6[_0x33ce7c(0x40f)](_0x2d4d39,_0x531573);},'SmUws':_0x3bf2c6[_0x50e3a1(0x60c)],'YKUIL':function(_0x163e30,_0xb7cb9e){const _0x372d1d=_0x519be6;return _0x3bf2c6[_0x372d1d(0x75f)](_0x163e30,_0xb7cb9e);},'jWOsx':_0x3bf2c6[_0x519be6(0x5c7)],'pouQv':_0x3bf2c6[_0x519be6(0x3b5)],'CFMIp':_0x3bf2c6[_0x519be6(0x1b7)],'KRsIO':_0x3bf2c6[_0x30b8ab(0x57c)],'PVIds':_0x3bf2c6[_0x2dfe89(0xbd5)],'qPZxz':function(_0xe56cdf,_0x394565){const _0x1a3859=_0x18bc9e;return _0x3bf2c6[_0x1a3859(0x7cc)](_0xe56cdf,_0x394565);},'wZoTE':_0x3bf2c6[_0x50e3a1(0x619)],'cTMuG':_0x3bf2c6[_0x18bc9e(0x54a)],'hhJtd':function(_0x586d46,_0x2f2fb6){const _0xd824ee=_0x2dfe89;return _0x3bf2c6[_0xd824ee(0x7b7)](_0x586d46,_0x2f2fb6);},'fEIap':_0x3bf2c6[_0x519be6(0x658)],'SYNeW':_0x3bf2c6[_0x519be6(0x36d)],'NDzKv':_0x3bf2c6[_0x2dfe89(0xcdb)],'MhJxW':_0x3bf2c6[_0x2dfe89(0x985)],'QbGKo':function(_0x438706,_0x292c23){const _0x4c6871=_0x30b8ab;return _0x3bf2c6[_0x4c6871(0x7cc)](_0x438706,_0x292c23);},'bKQpx':_0x3bf2c6[_0x519be6(0x769)],'OdMva':_0x3bf2c6[_0x30b8ab(0x18b)],'csFWW':_0x3bf2c6[_0x50e3a1(0xbc5)],'bELHE':function(_0x3ad9a5,_0x429406,_0x23befd){const _0x22a871=_0x18bc9e;return _0x3bf2c6[_0x22a871(0x4f0)](_0x3ad9a5,_0x429406,_0x23befd);},'ZIlja':function(_0x475dca,_0x341fe0){const _0x5a29a6=_0x18bc9e;return _0x3bf2c6[_0x5a29a6(0x1b5)](_0x475dca,_0x341fe0);},'cEGAr':function(_0xaa7045,_0x5954dc){const _0xd7c884=_0x18bc9e;return _0x3bf2c6[_0xd7c884(0x422)](_0xaa7045,_0x5954dc);},'xyuiC':_0x3bf2c6[_0x519be6(0xa15)]};if(_0x3bf2c6[_0x30b8ab(0x220)](_0x3bf2c6[_0x50e3a1(0x6ce)],_0x3bf2c6[_0x30b8ab(0xc22)]))_0x3a29a9[_0x30b8ab(0x905)+_0x2dfe89(0x16a)+_0x18bc9e(0x3e2)](_0x4a7839[_0x18bc9e(0x59a)])[_0x30b8ab(0x94b)+_0x2dfe89(0xc37)]=_0x4a7839[_0x2dfe89(0x37a)](_0x4a7839[_0x519be6(0x37a)](_0x4a7839[_0x30b8ab(0x16f)](_0x4a7839[_0x2dfe89(0x16f)](_0x4a7839[_0x519be6(0x37a)](_0x4a7839[_0x30b8ab(0x42f)](_0x172556,_0x4a7839[_0x30b8ab(0x6e7)]),_0x4a7839[_0x519be6(0x856)]),_0x4a7839[_0x2dfe89(0x5e8)]),_0x4a7839[_0x18bc9e(0x309)]),_0x4a7839[_0x519be6(0xb71)]),_0x4a7839[_0x50e3a1(0xc24)]);else{if(_0x272524)return;const _0x3e82fe=new TextDecoder(_0x3bf2c6[_0x519be6(0x1fb)])[_0x2dfe89(0x368)+'e'](_0x2c8925);return _0x3e82fe[_0x519be6(0x9f5)]()[_0x18bc9e(0x73c)]('\x0a')[_0x30b8ab(0x335)+'ch'](function(_0x5f4d38){const _0x394403=_0x2dfe89,_0x36f823=_0x2dfe89,_0x266138=_0x18bc9e,_0x4a017b=_0x519be6,_0xbc12b9=_0x50e3a1,_0x11ee26={'lkfNj':function(_0x56ed98,_0x1dfbe1){const _0x1be9c2=_0x2881;return _0x4a7839[_0x1be9c2(0x917)](_0x56ed98,_0x1dfbe1);},'fnJVa':function(_0x25faef,_0x179854){const _0x414970=_0x2881;return _0x4a7839[_0x414970(0x42f)](_0x25faef,_0x179854);},'FEIBT':function(_0x2545a7,_0x21c586){const _0x59d13f=_0x2881;return _0x4a7839[_0x59d13f(0x37a)](_0x2545a7,_0x21c586);},'kfMPw':function(_0x4a9453,_0x4e4cd4){const _0x275821=_0x2881;return _0x4a7839[_0x275821(0x16f)](_0x4a9453,_0x4e4cd4);},'aReEO':_0x4a7839[_0x394403(0x171)],'HaYuD':_0x4a7839[_0x394403(0xcc1)],'drWYc':function(_0x348c0d,_0x219992){const _0x31e6ea=_0x36f823;return _0x4a7839[_0x31e6ea(0xc79)](_0x348c0d,_0x219992);},'xCAvM':function(_0x4ea562,_0x2e4f32){const _0x5d391e=_0x36f823;return _0x4a7839[_0x5d391e(0x81b)](_0x4ea562,_0x2e4f32);},'PMZSh':function(_0x7829e7,_0x2457f8){const _0x19b08d=_0x394403;return _0x4a7839[_0x19b08d(0xbe1)](_0x7829e7,_0x2457f8);},'RxnVq':_0x4a7839[_0x266138(0xb30)],'chdis':_0x4a7839[_0x36f823(0xb53)],'jHOOZ':_0x4a7839[_0xbc12b9(0x1bf)],'umvGB':_0x4a7839[_0x266138(0xb4b)]};if(_0x4a7839[_0x36f823(0x943)](_0x4a7839[_0x394403(0x694)],_0x4a7839[_0x266138(0x792)])){try{if(_0x4a7839[_0x394403(0x8af)](_0x4a7839[_0x4a017b(0x37d)],_0x4a7839[_0xbc12b9(0x3f2)]))return new _0x4f5db0(_0x51a3f4=>_0x2dfee4(_0x51a3f4,_0x42bfbf));else document[_0x4a017b(0x4f9)+_0x4a017b(0x354)+_0xbc12b9(0x778)](_0x4a7839[_0x36f823(0x51d)])[_0x266138(0xbba)+_0x4a017b(0x1a9)]=document[_0x266138(0x4f9)+_0xbc12b9(0x354)+_0x36f823(0x778)](_0x4a7839[_0x266138(0x51d)])[_0x266138(0xbba)+_0x266138(0x593)+'ht'];}catch(_0x6e1fb9){}_0xc4d3e4='';if(_0x4a7839[_0x394403(0x4e6)](_0x5f4d38[_0xbc12b9(0x58b)+'h'],-0x1220+0x1ebe+-0xc98))_0xc4d3e4=_0x5f4d38[_0xbc12b9(0x65a)](0x1*-0x1e65+0x2b*0x45+0x4b5*0x4);if(_0x4a7839[_0x394403(0x3f1)](_0xc4d3e4,_0x4a7839[_0x394403(0x9fb)])){if(_0x4a7839[_0x36f823(0xc15)](_0x4a7839[_0x36f823(0x800)],_0x4a7839[_0x36f823(0x800)])){const _0x5986bb=_0x4a7839[_0x394403(0x946)][_0xbc12b9(0x73c)]('|');let _0x4f614f=0x6*0x66c+-0x4*0x358+-0x325*0x8;while(!![]){switch(_0x5986bb[_0x4f614f++]){case'0':return;case'1':lock_chat=0xebb+0x1b55+0x1*-0x2a10;continue;case'2':document[_0x266138(0x4f9)+_0x266138(0x354)+_0xbc12b9(0x778)](_0x4a7839[_0x394403(0x372)])[_0x4a017b(0x7ca)]='';continue;case'3':const _0x27f023={};_0x27f023[_0x266138(0x1bd)]=_0x4a7839[_0x4a017b(0xbb2)],_0x27f023[_0x266138(0xb29)+'nt']=chatTemp,word_last[_0x4a017b(0xabc)](_0x27f023);continue;case'4':const _0x2fd733={};_0x2fd733[_0x266138(0x1bd)]=_0x4a7839[_0x394403(0x9a5)],_0x2fd733[_0xbc12b9(0xb29)+'nt']=_0xf00b1d,word_last[_0xbc12b9(0xabc)](_0x2fd733);continue;}break;}}else _0x2a36e9[_0x259d36]++;}let _0xd25d79;try{if(_0x4a7839[_0x266138(0x323)](_0x4a7839[_0x394403(0x433)],_0x4a7839[_0x36f823(0x433)]))_0x5aa97d[_0x7bcb93]++;else try{if(_0x4a7839[_0x394403(0xc15)](_0x4a7839[_0xbc12b9(0x683)],_0x4a7839[_0xbc12b9(0x683)]))_0xd25d79=JSON[_0x266138(0x7f0)](_0x4a7839[_0x266138(0x198)](_0x3c3ef7,_0xc4d3e4))[_0x4a7839[_0x266138(0x9ad)]],_0x3c3ef7='';else{const _0x37869d=_0x5b3542?function(){const _0x2b7ed1=_0xbc12b9;if(_0xb7f013){const _0x2d44da=_0x57e0e9[_0x2b7ed1(0x982)](_0x1cc911,arguments);return _0x5cc378=null,_0x2d44da;}}:function(){};return _0xeefad2=![],_0x37869d;}}catch(_0x3c2cd2){if(_0x4a7839[_0x36f823(0xc15)](_0x4a7839[_0x394403(0x9b0)],_0x4a7839[_0xbc12b9(0x26a)])){if(_0x11ee26[_0x36f823(0xc69)](_0x11ee26[_0x394403(0x343)](_0x11ee26[_0x36f823(0x88e)](_0x26c180,_0x11c4b4[_0x1dd655]),'\x0a')[_0xbc12b9(0x58b)+'h'],-0x30*0x7f+0xe6e+0xaf2))_0x3fcae8=_0x11ee26[_0xbc12b9(0x343)](_0x11ee26[_0x4a017b(0x2b9)](_0x4c6d97,_0x430d67[_0x464932]),'\x0a');}else _0xd25d79=JSON[_0x36f823(0x7f0)](_0xc4d3e4)[_0x4a7839[_0x36f823(0x9ad)]],_0x3c3ef7='';}}catch(_0x470e7a){if(_0x4a7839[_0x4a017b(0x943)](_0x4a7839[_0x4a017b(0xa51)],_0x4a7839[_0xbc12b9(0x5c9)]))_0x3c3ef7+=_0xc4d3e4;else{if(_0x54bc1a){const _0x188870=_0x47f814[_0x394403(0x982)](_0x11184f,arguments);return _0x451827=null,_0x188870;}}}if(_0xd25d79&&_0x4a7839[_0x394403(0x4e6)](_0xd25d79[_0x266138(0x58b)+'h'],0x5af+-0x1*0x12f+0xc0*-0x6)&&_0xd25d79[-0x834+-0x932*0x4+0x2cfc][_0x266138(0x1f7)][_0x36f823(0xb29)+'nt']){if(_0x4a7839[_0x266138(0xaf0)](_0x4a7839[_0x394403(0x910)],_0x4a7839[_0x4a017b(0xc4c)]))chatTemp+=_0xd25d79[0x1e*0xca+-0x7*-0x409+-0x33eb*0x1][_0x4a017b(0x1f7)][_0xbc12b9(0xb29)+'nt'];else try{_0x2ad227=_0x3046f3[_0x36f823(0x7f0)](_0x4a7839[_0x36f823(0x42f)](_0x10df2c,_0x100c9e))[_0x4a7839[_0x36f823(0x9ad)]],_0x38dd07='';}catch(_0x3af3c7){_0x2aecd9=_0x3e1c23[_0x36f823(0x7f0)](_0x2e2d95)[_0x4a7839[_0x266138(0x9ad)]],_0xddfbf2='';}}chatTemp=chatTemp[_0x36f823(0x92b)+_0x4a017b(0x6b6)]('\x0a\x0a','\x0a')[_0x394403(0x92b)+_0xbc12b9(0x6b6)]('\x0a\x0a','\x0a'),document[_0x4a017b(0x4f9)+_0x4a017b(0x354)+_0x4a017b(0x778)](_0x4a7839[_0x36f823(0x32c)])[_0x36f823(0x94b)+_0x394403(0xc37)]='',_0x4a7839[_0xbc12b9(0xce1)](markdownToHtml,_0x4a7839[_0xbc12b9(0xbe1)](beautify,chatTemp),document[_0x266138(0x4f9)+_0x36f823(0x354)+_0x4a017b(0x778)](_0x4a7839[_0x4a017b(0x32c)])),document[_0xbc12b9(0x905)+_0x4a017b(0x16a)+_0x394403(0x3e2)](_0x4a7839[_0x266138(0x59a)])[_0xbc12b9(0x94b)+_0x394403(0xc37)]=_0x4a7839[_0x4a017b(0x94d)](_0x4a7839[_0x36f823(0x94d)](_0x4a7839[_0xbc12b9(0xab6)](prev_chat,_0x4a7839[_0x394403(0x611)]),document[_0x36f823(0x4f9)+_0x394403(0x354)+_0x266138(0x778)](_0x4a7839[_0x36f823(0x32c)])[_0x4a017b(0x94b)+_0x4a017b(0xc37)]),_0x4a7839[_0x266138(0xc24)]);}else{const _0x4e746a=_0x11ee26[_0x394403(0x9e8)],_0x370148=_0x11ee26[_0xbc12b9(0x5aa)],_0x59f96b=_0x7a1431[_0x266138(0x3f6)+_0x36f823(0x8f3)](_0x4e746a[_0x4a017b(0x58b)+'h'],_0x11ee26[_0x4a017b(0xac9)](_0x67df48[_0xbc12b9(0x58b)+'h'],_0x370148[_0x394403(0x58b)+'h'])),_0x913f36=_0x11ee26[_0x4a017b(0xab7)](_0x131935,_0x59f96b),_0x3933ba=_0x11ee26[_0x394403(0xd00)](_0x50db69,_0x913f36);return _0xd5dd5d[_0xbc12b9(0x4bb)+'e'][_0x266138(0x77a)+_0x266138(0x262)](_0x11ee26[_0x266138(0x662)],_0x3933ba,{'name':_0x11ee26[_0x36f823(0x8ce)],'hash':_0x11ee26[_0x4a017b(0x788)]},!![],[_0x11ee26[_0x266138(0x714)]]);}}),_0x50a20a[_0x50e3a1(0x350)]()[_0x30b8ab(0x1fc)](_0x310744);}});}})[_0x1b531c(0x51b)](_0x521b53=>{const _0x350b41=_0x4c3cf0,_0x295dc4=_0x364279,_0x4d5a8d=_0x4c3cf0,_0x123bc0=_0x2f2ca0,_0x24bbe6=_0x15ec8a;_0x525900[_0x350b41(0x945)](_0x525900[_0x350b41(0x96a)],_0x525900[_0x295dc4(0x96a)])?_0xa734f[_0x4d5a8d(0x65f)](_0x525900[_0x24bbe6(0xb6b)],_0x2fdf60):console[_0x4d5a8d(0x65f)](_0x525900[_0x24bbe6(0xb6b)],_0x521b53);});}function replaceUrlWithFootnote(_0x364b81){const _0xbe8234=_0x108b35,_0x5058b9=_0x3434be,_0x5c27b1=_0x108b35,_0x28ede7=_0x434b27,_0x37a536=_0x3264df,_0x1973b={'HdkZZ':function(_0xecc686,_0x3eaea0){return _0xecc686(_0x3eaea0);},'bDahZ':_0xbe8234(0x8ca)+_0xbe8234(0xb6d),'rNfkh':_0x5058b9(0x8e4)+':','uYgjY':function(_0x49298b,_0x4d0d91){return _0x49298b!==_0x4d0d91;},'ANObN':_0xbe8234(0x489),'jwFHe':_0x5c27b1(0x5a0),'FknMK':function(_0x23bff3,_0x9393bb){return _0x23bff3+_0x9393bb;},'MEzaC':function(_0x16e599,_0x8d21f0){return _0x16e599-_0x8d21f0;},'ivNjE':function(_0x2cca20,_0x117387){return _0x2cca20<=_0x117387;},'npQFy':function(_0x563c21,_0x22d5e7){return _0x563c21(_0x22d5e7);},'KHUIT':function(_0x580521,_0x20a99c){return _0x580521+_0x20a99c;},'oxuTW':function(_0xd336c5,_0x34c6a0){return _0xd336c5+_0x34c6a0;},'PaTHL':_0x37a536(0x32b)+_0x37a536(0xcdd)+_0xbe8234(0x4b5)+_0xbe8234(0x544),'nZson':_0x5058b9(0xb77)+_0xbe8234(0x484)+_0x37a536(0x640)+_0x37a536(0xcd6)+_0x28ede7(0x442)+_0x37a536(0x336)+'\x20)','jYrqO':function(_0xc7262a){return _0xc7262a();},'WThKH':function(_0x3407e1,_0x227d91){return _0x3407e1>_0x227d91;},'OMzQn':function(_0x375cf4,_0xc65883){return _0x375cf4===_0xc65883;},'tsuFs':_0xbe8234(0x907),'KUzLH':function(_0x198fee,_0x4e4909){return _0x198fee-_0x4e4909;}},_0xf9544=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x5054f2=new Set(),_0x471e52=(_0x8a7ad4,_0xca1a3d)=>{const _0x43975e=_0x5c27b1,_0x55ddb0=_0x5058b9,_0x5fffaa=_0x37a536,_0x3d6bcc=_0x5058b9,_0x562bfe=_0x5058b9,_0x32963b={'KqvAK':function(_0x5db400,_0x53f419){const _0x177277=_0x2881;return _0x1973b[_0x177277(0x97f)](_0x5db400,_0x53f419);},'tVGLE':_0x1973b[_0x43975e(0x224)],'uEEXj':_0x1973b[_0x55ddb0(0x338)]};if(_0x1973b[_0x43975e(0x27c)](_0x1973b[_0x3d6bcc(0xa22)],_0x1973b[_0x3d6bcc(0xa22)])){_0x2e875f=_0x32963b[_0x43975e(0x1ef)](_0x14d489,_0x2cbae8);const _0x14d508={};return _0x14d508[_0x3d6bcc(0x84d)]=_0x32963b[_0x43975e(0xa9e)],_0x4f4511[_0x43975e(0x4bb)+'e'][_0x55ddb0(0x5b2)+'pt'](_0x14d508,_0x4aa9a1,_0x319b17);}else{if(_0x5054f2[_0x5fffaa(0x35b)](_0xca1a3d)){if(_0x1973b[_0x562bfe(0x27c)](_0x1973b[_0x3d6bcc(0x562)],_0x1973b[_0x43975e(0x562)]))_0x5c1ed0[_0x3d6bcc(0x65f)](_0x32963b[_0x562bfe(0x6cb)],_0x318dc4);else return _0x8a7ad4;}const _0x112e70=_0xca1a3d[_0x3d6bcc(0x73c)](/[;,;、,]/),_0x321174=_0x112e70[_0x5fffaa(0x30c)](_0x3f22cc=>'['+_0x3f22cc+']')[_0x43975e(0xcf8)]('\x20'),_0xf4dab8=_0x112e70[_0x43975e(0x30c)](_0x5c71ae=>'['+_0x5c71ae+']')[_0x5fffaa(0xcf8)]('\x0a');_0x112e70[_0x55ddb0(0x335)+'ch'](_0x20b358=>_0x5054f2[_0x562bfe(0x74a)](_0x20b358)),res='\x20';for(var _0x2d1f07=_0x1973b[_0x562bfe(0x789)](_0x1973b[_0x5fffaa(0x414)](_0x5054f2[_0x5fffaa(0xa9c)],_0x112e70[_0x43975e(0x58b)+'h']),0x1a35*0x1+-0x4a*0x3c+-0x8dc);_0x1973b[_0x5fffaa(0x9dc)](_0x2d1f07,_0x5054f2[_0x43975e(0xa9c)]);++_0x2d1f07)res+='[^'+_0x2d1f07+']\x20';return res;}};let _0x4c4d3a=-0x5b*-0x4d+0x230c+-0x3e6a,_0x169f46=_0x364b81[_0x28ede7(0x92b)+'ce'](_0xf9544,_0x471e52);while(_0x1973b[_0xbe8234(0x508)](_0x5054f2[_0x5058b9(0xa9c)],-0x7*-0x3a+-0x2123*-0x1+-0x22b9)){if(_0x1973b[_0x37a536(0x196)](_0x1973b[_0x5c27b1(0x7ae)],_0x1973b[_0x28ede7(0x7ae)])){const _0x29685d='['+_0x4c4d3a++ +_0x5058b9(0x573)+_0x5054f2[_0x28ede7(0x7ca)+'s']()[_0x28ede7(0x23b)]()[_0x5058b9(0x7ca)],_0x4e5987='[^'+_0x1973b[_0x5058b9(0x2c2)](_0x4c4d3a,0x35*0x5c+0x2649+-0x3*0x131c)+_0x5c27b1(0x573)+_0x5054f2[_0x37a536(0x7ca)+'s']()[_0xbe8234(0x23b)]()[_0xbe8234(0x7ca)];_0x169f46=_0x169f46+'\x0a\x0a'+_0x4e5987,_0x5054f2[_0x37a536(0xc3d)+'e'](_0x5054f2[_0x5c27b1(0x7ca)+'s']()[_0x5c27b1(0x23b)]()[_0x28ede7(0x7ca)]);}else{const _0x1cef11=BnbjRp[_0x5c27b1(0xa1a)](_0x356c7b,BnbjRp[_0x37a536(0x98b)](BnbjRp[_0x28ede7(0xc62)](BnbjRp[_0x37a536(0x2bd)],BnbjRp[_0x28ede7(0xa65)]),');'));_0x2d6654=BnbjRp[_0xbe8234(0x2b5)](_0x1cef11);}}return _0x169f46;}function beautify(_0x24d777){const _0x562ca4=_0x108b35,_0x2b0ee6=_0x3264df,_0x309200=_0x13ebe9,_0x35cc55=_0x3264df,_0x4cbd5a=_0x3264df,_0x11ccbb={'xqhjE':function(_0x52ed7f,_0x30617a){return _0x52ed7f>=_0x30617a;},'WcBuX':function(_0x34a581,_0x2e7d13){return _0x34a581!==_0x2e7d13;},'jvpDw':_0x562ca4(0x9a3),'BVbFE':_0x2b0ee6(0x686),'WenFU':_0x309200(0x8ee)+_0x309200(0x3c6)+_0x4cbd5a(0x19c)+_0x4cbd5a(0x1e5)+_0x309200(0xa9f)+_0x562ca4(0x98d)+_0x35cc55(0x608)+_0x309200(0x3e9)+_0x309200(0xbd6)+_0x2b0ee6(0x818)+_0x4cbd5a(0x4a8)+_0x2b0ee6(0x6dd)+_0x35cc55(0x62e),'DJxIk':function(_0x230b99,_0x116592){return _0x230b99+_0x116592;},'VwXGq':_0x309200(0x284),'cDzOa':function(_0x3e8be2,_0x298e9b){return _0x3e8be2(_0x298e9b);},'vzhGN':function(_0x568f77,_0x3c3c3f){return _0x568f77+_0x3c3c3f;},'MaGaC':_0x35cc55(0x82a)+_0x309200(0x9d3)+'rl','gKqtp':_0x562ca4(0x7db),'VrxzN':function(_0x4a172c,_0x34cb95){return _0x4a172c(_0x34cb95);},'bpEhj':function(_0x7a7661,_0x433b18){return _0x7a7661+_0x433b18;},'zOwJV':function(_0x1439dc,_0x543d19){return _0x1439dc(_0x543d19);},'QWnmb':function(_0x4c6b73,_0x591281){return _0x4c6b73+_0x591281;},'MFGfa':_0x2b0ee6(0x6c2)+'l','bVNRJ':function(_0x52527e,_0x41ba98){return _0x52527e+_0x41ba98;},'xYtxQ':_0x309200(0x505),'XnnFu':function(_0x406605,_0x33782f){return _0x406605(_0x33782f);},'dWZRO':_0x2b0ee6(0x1c0)+'rl','AwBwq':function(_0x10d320,_0x2321bf){return _0x10d320+_0x2321bf;},'NwSwP':_0x562ca4(0x7db)+_0x35cc55(0x5b1)+_0x35cc55(0x393)+'l','lJbOl':function(_0x845fee,_0x857fcd){return _0x845fee+_0x857fcd;},'TvUQE':function(_0x4c42e4,_0x4089ca){return _0x4c42e4(_0x4089ca);},'ONTnw':_0x2b0ee6(0x192),'vsQko':function(_0x1c258f,_0x973ffc){return _0x1c258f(_0x973ffc);},'IUhqE':function(_0x1aaf82,_0x18ba23){return _0x1aaf82+_0x18ba23;},'lAJGK':_0x309200(0x7db)+_0x35cc55(0x339),'bUxSX':function(_0x2e86f4,_0x26c277){return _0x2e86f4(_0x26c277);},'VTVPZ':_0x2b0ee6(0x7db)+_0x35cc55(0x3ed)+_0x562ca4(0x9d3)+'rl','RagVS':function(_0xd3cbcb,_0xbe10c4){return _0xd3cbcb(_0xbe10c4);},'GEXgK':_0x309200(0x4cd)+'l','HEfcT':function(_0x35c20f,_0x43a983){return _0x35c20f+_0x43a983;},'Sflwi':function(_0xbec0dd,_0x5bdf60){return _0xbec0dd+_0x5bdf60;},'srmSq':_0x2b0ee6(0x913)+'rl','JzqpM':function(_0x53913d,_0x1ad674){return _0x53913d(_0x1ad674);},'RZGcE':function(_0x3e951e,_0x25418c){return _0x3e951e+_0x25418c;},'GdAEb':_0x309200(0x67c)+_0x2b0ee6(0x582)+_0x2b0ee6(0xb3e),'IhSkd':function(_0x3956de,_0x21ea82){return _0x3956de+_0x21ea82;},'wahef':function(_0x1a5243,_0x35d9a6){return _0x1a5243(_0x35d9a6);},'FeijZ':function(_0x4a5ebe,_0x76e36a){return _0x4a5ebe+_0x76e36a;},'hqvRQ':_0x309200(0x7db)+':','fxATT':function(_0x2e781b,_0x5f3b96){return _0x2e781b+_0x5f3b96;},'ylfmg':function(_0x7a0cd6,_0xfaa158){return _0x7a0cd6(_0xfaa158);},'rJWPz':function(_0x320ab0,_0x29de8d){return _0x320ab0+_0x29de8d;},'msbKu':_0x35cc55(0x380)+_0x309200(0x7bf)+_0x4cbd5a(0x33b),'KWPRu':function(_0x513a2c,_0x118a48){return _0x513a2c+_0x118a48;},'OQjNT':function(_0x26fbcc,_0xe7b5e2){return _0x26fbcc(_0xe7b5e2);},'zrlPE':function(_0x3893a2,_0x32e986){return _0x3893a2+_0x32e986;},'DMHmQ':_0x35cc55(0xb3d)+_0x562ca4(0x7bf)+_0x35cc55(0x33b),'RTfLu':function(_0x238098,_0x419a8d){return _0x238098(_0x419a8d);},'ZufUB':function(_0x39935b,_0x2aaba4){return _0x39935b+_0x2aaba4;},'pRfre':_0x35cc55(0x3dd)+_0x309200(0x582)+_0x2b0ee6(0xb3e),'jxEpj':function(_0x115882,_0x1380d2){return _0x115882(_0x1380d2);},'jVqTW':function(_0x5ce29b,_0x3c8140){return _0x5ce29b+_0x3c8140;},'jpxOt':function(_0xbb4ae,_0x4c3c51){return _0xbb4ae+_0x4c3c51;},'XAALG':_0x2b0ee6(0x7db)+_0x2b0ee6(0x861),'wpDaS':function(_0x42c5ad,_0x437009){return _0x42c5ad+_0x437009;},'wSIIk':function(_0x27e7ea,_0xc9a8c4){return _0x27e7ea+_0xc9a8c4;},'hLBmT':_0x2b0ee6(0xa39)+'rl','cUzfB':function(_0x37c4ac,_0x3255c9){return _0x37c4ac(_0x3255c9);},'SFVVl':function(_0xefa073,_0x264872){return _0xefa073+_0x264872;},'aLwBc':function(_0x136138,_0x3c2bb9){return _0x136138(_0x3c2bb9);},'vJikB':function(_0xea9888,_0x4d3586){return _0xea9888+_0x4d3586;},'PhMWX':function(_0x1251b3,_0x3d5411){return _0x1251b3(_0x3d5411);},'LRWBu':function(_0x38ad81,_0x397581){return _0x38ad81+_0x397581;},'ZJJyT':_0x562ca4(0x77c)+_0x35cc55(0x7bf)+_0x562ca4(0x33b),'vinAq':function(_0x430d79,_0x4ca3ed){return _0x430d79(_0x4ca3ed);},'ueWmf':function(_0x24c3f8,_0x4cd82b){return _0x24c3f8(_0x4cd82b);},'UTKta':function(_0x1ff12c,_0x3c515e){return _0x1ff12c+_0x3c515e;},'vCZAK':function(_0x48a0c9,_0x41e38f){return _0x48a0c9+_0x41e38f;},'zsnWa':function(_0x48e6e6,_0x31606d){return _0x48e6e6(_0x31606d);},'ZPcGO':function(_0x189a9d,_0x1b7dce){return _0x189a9d+_0x1b7dce;},'llUag':_0x562ca4(0xa7d),'jdisW':function(_0x487547,_0x5a369d){return _0x487547(_0x5a369d);},'BxsHB':function(_0xe34e7a,_0x531892){return _0xe34e7a+_0x531892;},'hRVBa':function(_0x32256e,_0x31ff9d){return _0x32256e(_0x31ff9d);},'yjCfx':function(_0x1bd1ed,_0x16e189){return _0x1bd1ed+_0x16e189;},'aLSFm':_0x2b0ee6(0x9ce)+_0x562ca4(0x582)+_0x562ca4(0xb3e),'UFtZz':function(_0x37150b,_0x1a36e3){return _0x37150b+_0x1a36e3;},'RemRF':_0x4cbd5a(0x5d5)+'l','NItsl':function(_0x21378f,_0x35029b){return _0x21378f+_0x35029b;},'iziml':function(_0x57c1dc,_0x261b58){return _0x57c1dc(_0x261b58);},'uhMgH':function(_0x3fa761,_0x2ec0a7){return _0x3fa761(_0x2ec0a7);},'WhyoA':function(_0x5048b0,_0x528896){return _0x5048b0>=_0x528896;},'AQAPf':function(_0x4a92f5,_0x2a60b0){return _0x4a92f5!==_0x2a60b0;},'dKYdl':_0x4cbd5a(0x355),'gLvRW':_0x309200(0xcaa),'EPyVV':function(_0xc8dc01,_0x57b111){return _0xc8dc01+_0x57b111;},'ovkdc':_0x2b0ee6(0x5b1)+_0x2b0ee6(0x393)+'l','wYMqH':_0x4cbd5a(0x5b1)+_0x309200(0x339),'wzaUH':function(_0xaaa07f,_0x2a660c){return _0xaaa07f+_0x2a660c;},'lTJQP':_0x2b0ee6(0x339),'bLVsW':function(_0x4f5d97,_0x16cd6c){return _0x4f5d97(_0x16cd6c);}};new_text=_0x24d777[_0x35cc55(0x92b)+_0x562ca4(0x6b6)]('','(')[_0x562ca4(0x92b)+_0x35cc55(0x6b6)]('',')')[_0x2b0ee6(0x92b)+_0x2b0ee6(0x6b6)](':\x20',':')[_0x2b0ee6(0x92b)+_0x309200(0x6b6)]('',':')[_0x4cbd5a(0x92b)+_0x562ca4(0x6b6)](',\x20',',')[_0x4cbd5a(0x92b)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x552ed9=prompt[_0x4cbd5a(0xcc5)+_0x309200(0xb85)][_0x562ca4(0x58b)+'h'];_0x11ccbb[_0x2b0ee6(0x858)](_0x552ed9,0x60c+-0x2*-0x703+-0x7*0x2de);--_0x552ed9){if(_0x11ccbb[_0x35cc55(0x507)](_0x11ccbb[_0x562ca4(0x731)],_0x11ccbb[_0x35cc55(0x318)])){const _0x344982=_0x11ccbb[_0x35cc55(0xb8b)][_0x35cc55(0x73c)]('|');let _0x48e20a=-0x9*-0x1e2+0x2377*0x1+-0x3469;while(!![]){switch(_0x344982[_0x48e20a++]){case'0':new_text=new_text[_0x35cc55(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x562ca4(0x4a0)](_0x11ccbb[_0x562ca4(0xabb)],_0x11ccbb[_0x309200(0x627)](String,_0x552ed9)),_0x11ccbb[_0x2b0ee6(0x83f)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x309200(0x627)](String,_0x552ed9)));continue;case'1':new_text=new_text[_0x562ca4(0x92b)+_0x35cc55(0x6b6)](_0x11ccbb[_0x2b0ee6(0x4a0)](_0x11ccbb[_0x309200(0xb4d)],_0x11ccbb[_0x309200(0x208)](String,_0x552ed9)),_0x11ccbb[_0x309200(0x6ab)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x309200(0x894)](String,_0x552ed9)));continue;case'2':new_text=new_text[_0x562ca4(0x92b)+_0x309200(0x6b6)](_0x11ccbb[_0x4cbd5a(0x2cc)](_0x11ccbb[_0x562ca4(0x7b5)],_0x11ccbb[_0x309200(0x894)](String,_0x552ed9)),_0x11ccbb[_0x562ca4(0x6b0)](_0x11ccbb[_0x562ca4(0x4db)],_0x11ccbb[_0x309200(0x627)](String,_0x552ed9)));continue;case'3':new_text=new_text[_0x2b0ee6(0x92b)+_0x562ca4(0x6b6)](_0x11ccbb[_0x35cc55(0x6ab)](_0x11ccbb[_0x4cbd5a(0x40c)],_0x11ccbb[_0x309200(0xcfe)](String,_0x552ed9)),_0x11ccbb[_0x562ca4(0x83f)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x4cbd5a(0x208)](String,_0x552ed9)));continue;case'4':new_text=new_text[_0x35cc55(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x35cc55(0x4a0)](_0x11ccbb[_0x35cc55(0xa9a)],_0x11ccbb[_0x35cc55(0x208)](String,_0x552ed9)),_0x11ccbb[_0x309200(0x6b0)](_0x11ccbb[_0x2b0ee6(0x4db)],_0x11ccbb[_0x309200(0xcfe)](String,_0x552ed9)));continue;case'5':new_text=new_text[_0x4cbd5a(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x309200(0x500)](_0x11ccbb[_0x562ca4(0x630)],_0x11ccbb[_0x562ca4(0xcfe)](String,_0x552ed9)),_0x11ccbb[_0x309200(0xa6b)](_0x11ccbb[_0x35cc55(0x4db)],_0x11ccbb[_0x2b0ee6(0x194)](String,_0x552ed9)));continue;case'6':new_text=new_text[_0x562ca4(0x92b)+_0x35cc55(0x6b6)](_0x11ccbb[_0x35cc55(0x4a0)](_0x11ccbb[_0x309200(0xad5)],_0x11ccbb[_0x4cbd5a(0x2c3)](String,_0x552ed9)),_0x11ccbb[_0x35cc55(0x83f)](_0x11ccbb[_0x562ca4(0x4db)],_0x11ccbb[_0x309200(0xcfe)](String,_0x552ed9)));continue;case'7':new_text=new_text[_0x4cbd5a(0x92b)+_0x309200(0x6b6)](_0x11ccbb[_0x562ca4(0x346)](_0x11ccbb[_0x4cbd5a(0xb27)],_0x11ccbb[_0x2b0ee6(0x8d1)](String,_0x552ed9)),_0x11ccbb[_0x562ca4(0x6b0)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x35cc55(0x194)](String,_0x552ed9)));continue;case'8':new_text=new_text[_0x2b0ee6(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x562ca4(0xa6b)](_0x11ccbb[_0x309200(0x26c)],_0x11ccbb[_0x2b0ee6(0x798)](String,_0x552ed9)),_0x11ccbb[_0x2b0ee6(0x346)](_0x11ccbb[_0x35cc55(0x4db)],_0x11ccbb[_0x309200(0x8d1)](String,_0x552ed9)));continue;case'9':new_text=new_text[_0x4cbd5a(0x92b)+_0x309200(0x6b6)](_0x11ccbb[_0x4cbd5a(0x6ab)](_0x11ccbb[_0x562ca4(0x7b3)],_0x11ccbb[_0x4cbd5a(0x8d1)](String,_0x552ed9)),_0x11ccbb[_0x309200(0xb92)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x309200(0x194)](String,_0x552ed9)));continue;case'10':new_text=new_text[_0x562ca4(0x92b)+_0x309200(0x6b6)](_0x11ccbb[_0x2b0ee6(0xa24)](_0x11ccbb[_0x309200(0x8a8)],_0x11ccbb[_0x562ca4(0xa17)](String,_0x552ed9)),_0x11ccbb[_0x35cc55(0xbef)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x562ca4(0x798)](String,_0x552ed9)));continue;case'11':new_text=new_text[_0x562ca4(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x562ca4(0xa24)](_0x11ccbb[_0x35cc55(0x3cb)],_0x11ccbb[_0x35cc55(0xa17)](String,_0x552ed9)),_0x11ccbb[_0x309200(0x585)](_0x11ccbb[_0x2b0ee6(0x4db)],_0x11ccbb[_0x4cbd5a(0x8b7)](String,_0x552ed9)));continue;case'12':new_text=new_text[_0x562ca4(0x92b)+_0x562ca4(0x6b6)](_0x11ccbb[_0x2b0ee6(0xc64)](_0x11ccbb[_0x35cc55(0x692)],_0x11ccbb[_0x309200(0x8d1)](String,_0x552ed9)),_0x11ccbb[_0x35cc55(0x466)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x2b0ee6(0x4f2)](String,_0x552ed9)));continue;case'13':new_text=new_text[_0x309200(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x309200(0x971)](_0x11ccbb[_0x562ca4(0x1d9)],_0x11ccbb[_0x309200(0x194)](String,_0x552ed9)),_0x11ccbb[_0x4cbd5a(0x4fa)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x4cbd5a(0x30a)](String,_0x552ed9)));continue;case'14':new_text=new_text[_0x4cbd5a(0x92b)+_0x562ca4(0x6b6)](_0x11ccbb[_0x35cc55(0x1b3)](_0x11ccbb[_0x562ca4(0x721)],_0x11ccbb[_0x309200(0x798)](String,_0x552ed9)),_0x11ccbb[_0x309200(0x971)](_0x11ccbb[_0x562ca4(0x4db)],_0x11ccbb[_0x4cbd5a(0x6bb)](String,_0x552ed9)));continue;case'15':new_text=new_text[_0x309200(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x309200(0x169)](_0x11ccbb[_0x562ca4(0x522)],_0x11ccbb[_0x562ca4(0x4b0)](String,_0x552ed9)),_0x11ccbb[_0x2b0ee6(0xabd)](_0x11ccbb[_0x562ca4(0x4db)],_0x11ccbb[_0x562ca4(0xcfe)](String,_0x552ed9)));continue;case'16':new_text=new_text[_0x4cbd5a(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x2b0ee6(0x655)](_0x11ccbb[_0x2b0ee6(0x595)],_0x11ccbb[_0x2b0ee6(0xa17)](String,_0x552ed9)),_0x11ccbb[_0x2b0ee6(0xc2d)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x35cc55(0x4b0)](String,_0x552ed9)));continue;case'17':new_text=new_text[_0x2b0ee6(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x2b0ee6(0xc38)](_0x11ccbb[_0x562ca4(0x4d8)],_0x11ccbb[_0x2b0ee6(0xa52)](String,_0x552ed9)),_0x11ccbb[_0x562ca4(0xabd)](_0x11ccbb[_0x562ca4(0x4db)],_0x11ccbb[_0x35cc55(0x8d1)](String,_0x552ed9)));continue;case'18':new_text=new_text[_0x562ca4(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x4cbd5a(0x18a)](_0x11ccbb[_0x35cc55(0xad5)],_0x11ccbb[_0x562ca4(0xa27)](String,_0x552ed9)),_0x11ccbb[_0x4cbd5a(0x74d)](_0x11ccbb[_0x2b0ee6(0x4db)],_0x11ccbb[_0x309200(0x59f)](String,_0x552ed9)));continue;case'19':new_text=new_text[_0x35cc55(0x92b)+_0x309200(0x6b6)](_0x11ccbb[_0x562ca4(0xc9b)](_0x11ccbb[_0x309200(0x764)],_0x11ccbb[_0x35cc55(0x828)](String,_0x552ed9)),_0x11ccbb[_0x4cbd5a(0xb92)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x2b0ee6(0x641)](String,_0x552ed9)));continue;case'20':new_text=new_text[_0x309200(0x92b)+_0x562ca4(0x6b6)](_0x11ccbb[_0x4cbd5a(0xba1)](_0x11ccbb[_0x562ca4(0x40c)],_0x11ccbb[_0x35cc55(0xcfe)](String,_0x552ed9)),_0x11ccbb[_0x4cbd5a(0xa3f)](_0x11ccbb[_0x35cc55(0x4db)],_0x11ccbb[_0x309200(0x4e7)](String,_0x552ed9)));continue;case'21':new_text=new_text[_0x35cc55(0x92b)+_0x4cbd5a(0x6b6)](_0x11ccbb[_0x309200(0x860)](_0x11ccbb[_0x4cbd5a(0xbe8)],_0x11ccbb[_0x35cc55(0x217)](String,_0x552ed9)),_0x11ccbb[_0x4cbd5a(0x466)](_0x11ccbb[_0x309200(0x4db)],_0x11ccbb[_0x562ca4(0x641)](String,_0x552ed9)));continue;case'22':new_text=new_text[_0x2b0ee6(0x92b)+_0x35cc55(0x6b6)](_0x11ccbb[_0x562ca4(0x466)](_0x11ccbb[_0x562ca4(0xabb)],_0x11ccbb[_0x2b0ee6(0x4b0)](String,_0x552ed9)),_0x11ccbb[_0x562ca4(0x88d)](_0x11ccbb[_0x35cc55(0x4db)],_0x11ccbb[_0x562ca4(0x76b)](String,_0x552ed9)));continue;case'23':new_text=new_text[_0x309200(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x562ca4(0x61f)](_0x11ccbb[_0x562ca4(0x7ec)],_0x11ccbb[_0x4cbd5a(0xa52)](String,_0x552ed9)),_0x11ccbb[_0x35cc55(0x500)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x4cbd5a(0x208)](String,_0x552ed9)));continue;case'24':new_text=new_text[_0x309200(0x92b)+_0x2b0ee6(0x6b6)](_0x11ccbb[_0x562ca4(0x80e)](_0x11ccbb[_0x35cc55(0x73e)],_0x11ccbb[_0x4cbd5a(0x217)](String,_0x552ed9)),_0x11ccbb[_0x2b0ee6(0xa03)](_0x11ccbb[_0x4cbd5a(0x4db)],_0x11ccbb[_0x562ca4(0x6a2)](String,_0x552ed9)));continue;}break;}}else{const _0x59956e=_0x3c8979[_0x562ca4(0x982)](_0x421675,arguments);return _0x19ab6a=null,_0x59956e;}}new_text=_0x11ccbb[_0x562ca4(0x28f)](replaceUrlWithFootnote,new_text);for(let _0x24b885=prompt[_0x2b0ee6(0xcc5)+_0x309200(0xb85)][_0x562ca4(0x58b)+'h'];_0x11ccbb[_0x2b0ee6(0xa0f)](_0x24b885,-0x22b3+-0x18*-0x153+-0x2eb*-0x1);--_0x24b885){_0x11ccbb[_0x2b0ee6(0xc17)](_0x11ccbb[_0x562ca4(0x2a2)],_0x11ccbb[_0x2b0ee6(0x1a7)])?(new_text=new_text[_0x35cc55(0x92b)+'ce'](_0x11ccbb[_0x2b0ee6(0xa04)](_0x11ccbb[_0x2b0ee6(0xbf3)],_0x11ccbb[_0x309200(0x641)](String,_0x24b885)),prompt[_0x562ca4(0xcc5)+_0x35cc55(0xb85)][_0x24b885]),new_text=new_text[_0x2b0ee6(0x92b)+'ce'](_0x11ccbb[_0x35cc55(0x80e)](_0x11ccbb[_0x4cbd5a(0x632)],_0x11ccbb[_0x562ca4(0x6a2)](String,_0x24b885)),prompt[_0x35cc55(0xcc5)+_0x309200(0xb85)][_0x24b885]),new_text=new_text[_0x2b0ee6(0x92b)+'ce'](_0x11ccbb[_0x35cc55(0x1c4)](_0x11ccbb[_0x562ca4(0x66d)],_0x11ccbb[_0x562ca4(0xadd)](String,_0x24b885)),prompt[_0x2b0ee6(0xcc5)+_0x562ca4(0xb85)][_0x24b885])):_0x5b0c3c[_0x258747]=_0x1d1d22[_0x35cc55(0x70d)+_0x4cbd5a(0x6f9)](_0x22f610);}return new_text=new_text[_0x562ca4(0x92b)+_0x35cc55(0x6b6)]('[]',''),new_text=new_text[_0x309200(0x92b)+_0x562ca4(0x6b6)]('((','('),new_text=new_text[_0x4cbd5a(0x92b)+_0x4cbd5a(0x6b6)]('))',')'),new_text=new_text[_0x4cbd5a(0x92b)+_0x309200(0x6b6)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x5cd406=_0x108b35,_0x193457=_0x434b27,_0x4d4036=_0x108b35,_0x2a218c=_0x108b35,_0x3aaf08=_0x434b27,_0x3c0693={'dirRq':function(_0x437118,_0x6d669){return _0x437118<_0x6d669;},'yonIN':_0x5cd406(0x991)+'es','WICDh':function(_0x49f7eb,_0x50adbb){return _0x49f7eb===_0x50adbb;},'wDkCn':_0x193457(0x298),'PUsaX':_0x193457(0x501),'aZZNT':function(_0x25817e,_0x4bd2a3){return _0x25817e>_0x4bd2a3;},'wQLcO':function(_0x4787c5,_0xf7fd45){return _0x4787c5(_0xf7fd45);},'FhgAK':_0x5cd406(0x296)+_0x5cd406(0x3df),'MXYzB':function(_0xe9c817,_0x14db79){return _0xe9c817+_0x14db79;},'WAlSU':_0x5cd406(0x8e2)+_0x193457(0x820)+_0x193457(0x509)+_0x2a218c(0xae3)+_0x5cd406(0x235)+_0x2a218c(0x463)+_0x193457(0x1b0)+_0x193457(0x748)+_0x5cd406(0x286)+_0x4d4036(0x1e2)+_0x3aaf08(0x8bf),'ulxAF':_0x193457(0xa98)+_0x3aaf08(0x290),'zEXKT':function(_0x18294f,_0x4a4fe2){return _0x18294f!==_0x4a4fe2;},'orOen':_0x193457(0xa3d),'GCAru':_0x193457(0x983),'HPdxJ':function(_0x2917e4,_0x331844){return _0x2917e4(_0x331844);},'KgPTs':_0x3aaf08(0xcb1),'BpSII':function(_0x3beefa,_0x3c9403){return _0x3beefa+_0x3c9403;},'rTrGL':function(_0x201d4c,_0x386984){return _0x201d4c+_0x386984;},'Ujswm':_0x4d4036(0x296),'QjTmO':_0x2a218c(0xc29),'qSFvG':_0x4d4036(0x8a4)+'','tgXTF':_0x193457(0x30d)+_0x2a218c(0x870)+_0x4d4036(0x7d0)+_0x3aaf08(0xaa9)+_0x193457(0x2e2)+_0x5cd406(0x512)+_0x3aaf08(0x2ac)+_0x193457(0xa25)+_0x4d4036(0x2a0)+_0x193457(0x2fe)+_0x3aaf08(0x353)+_0x4d4036(0xbb3)+_0x193457(0x996),'tautM':function(_0x511835,_0x56be76){return _0x511835!=_0x56be76;},'LgwCn':function(_0x5dfcf,_0x36a6e6,_0x1b4df0){return _0x5dfcf(_0x36a6e6,_0x1b4df0);},'zyeaj':_0x2a218c(0x5b1)+_0x3aaf08(0x6ac)+_0x2a218c(0x809)+_0x193457(0x7e9)+_0x193457(0x992)+_0x2a218c(0xb89),'CqKYi':function(_0x165818,_0x28c1da){return _0x165818+_0x28c1da;}},_0x103c6a={'method':_0x3c0693[_0x2a218c(0xb07)],'headers':headers,'body':_0x3c0693[_0x3aaf08(0xc2c)](b64EncodeUnicode,JSON[_0x4d4036(0x498)+_0x3aaf08(0x806)]({'messages':[{'role':_0x3c0693[_0x5cd406(0xc13)],'content':_0x3c0693[_0x3aaf08(0x42d)](_0x3c0693[_0x193457(0x6f6)](_0x3c0693[_0x4d4036(0xc4b)](_0x3c0693[_0x2a218c(0x6f6)](document[_0x3aaf08(0x4f9)+_0x5cd406(0x354)+_0x193457(0x778)](_0x3c0693[_0x3aaf08(0xb9a)])[_0x193457(0x94b)+_0x2a218c(0xc37)][_0x5cd406(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x2a218c(0x92b)+'ce'](/<hr.*/gs,'')[_0x3aaf08(0x92b)+'ce'](/<[^>]+>/g,'')[_0x4d4036(0x92b)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x3c0693[_0x5cd406(0xbe3)]),original_search_query),_0x3c0693[_0x2a218c(0xa02)])},{'role':_0x3c0693[_0x5cd406(0xc13)],'content':_0x3c0693[_0x3aaf08(0xb03)]}][_0x5cd406(0xade)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x3c0693[_0x3aaf08(0x998)](document[_0x2a218c(0x4f9)+_0x2a218c(0x354)+_0x4d4036(0x778)](_0x3c0693[_0x4d4036(0xcdc)])[_0x193457(0x94b)+_0x3aaf08(0xc37)],''))return;_0x3c0693[_0x2a218c(0x51c)](fetch,_0x3c0693[_0x193457(0x58e)],_0x103c6a)[_0x2a218c(0x1fc)](_0x2a3f4f=>_0x2a3f4f[_0x2a218c(0x739)]())[_0x5cd406(0x1fc)](_0x5e40a4=>{const _0x5b4667=_0x2a218c,_0x4e01f6=_0x4d4036,_0x42280d=_0x5cd406,_0x581823=_0x3aaf08,_0x53b398=_0x193457;if(_0x3c0693[_0x5b4667(0x75a)](_0x3c0693[_0x4e01f6(0x9a4)],_0x3c0693[_0x5b4667(0x9a4)])){var _0x170334=new _0x27065e(_0x2229c4[_0x42280d(0x58b)+'h']),_0x2b0ec8=new _0x2c5155(_0x170334);for(var _0x283d21=0x1c55+-0x858+-0x2b*0x77,_0x332fba=_0x1e9633[_0x53b398(0x58b)+'h'];_0x3c0693[_0x5b4667(0x3d6)](_0x283d21,_0x332fba);_0x283d21++){_0x2b0ec8[_0x283d21]=_0xe6d82f[_0x53b398(0x70d)+_0x53b398(0x6f9)](_0x283d21);}return _0x170334;}else JSON[_0x5b4667(0x7f0)](_0x5e40a4[_0x42280d(0x991)+'es'][-0x53e*0x4+0x4ea+-0x336*-0x5][_0x53b398(0x867)+'ge'][_0x5b4667(0xb29)+'nt'][_0x5b4667(0x92b)+_0x581823(0x6b6)]('\x0a',''))[_0x4e01f6(0x335)+'ch'](_0x176515=>{const _0xcd3b16=_0x4e01f6,_0x5c54ad=_0x53b398,_0x3162f0=_0x4e01f6,_0xc7d6b9=_0x53b398,_0x473e76=_0x581823,_0x3bec21={};_0x3bec21[_0xcd3b16(0x553)]=_0x3c0693[_0xcd3b16(0x351)];const _0x481302=_0x3bec21;if(_0x3c0693[_0xcd3b16(0x891)](_0x3c0693[_0xc7d6b9(0xbfd)],_0x3c0693[_0xcd3b16(0x1c1)]))_0x11f7d2=_0x2a271a[_0xcd3b16(0x7f0)](_0x277294)[_0x481302[_0x3162f0(0x553)]],_0x281b36='';else{if(_0x3c0693[_0x3162f0(0x2e3)](_0x3c0693[_0xcd3b16(0xbe2)](String,_0x176515)[_0xcd3b16(0x58b)+'h'],0x13bb+0x225+-0x15db))document[_0x5c54ad(0x4f9)+_0x473e76(0x354)+_0x473e76(0x778)](_0x3c0693[_0x5c54ad(0xcdc)])[_0x3162f0(0x94b)+_0xcd3b16(0xc37)]+=_0x3c0693[_0x473e76(0x42d)](_0x3c0693[_0x3162f0(0x42d)](_0x3c0693[_0xcd3b16(0xb13)],_0x3c0693[_0x3162f0(0xbe2)](String,_0x176515)),_0x3c0693[_0xcd3b16(0x3ee)]);}});})[_0x5cd406(0x51b)](_0x3bf7e1=>console[_0x2a218c(0x65f)](_0x3bf7e1)),chatTextRawPlusComment=_0x3c0693[_0x193457(0x168)](chatTextRaw,'\x0a\x0a'),text_offset=-(-0x71a+0xbf*0x1+0x65c);}let chatTextRaw='',text_offset=-(-0x1f6+0x766+0xd*-0x6b);const _0x1e465d={};_0x1e465d[_0x434b27(0x179)+_0x434b27(0xb3a)+'pe']=_0x108b35(0x70e)+_0x108b35(0x612)+_0x3434be(0x961)+'n';const headers=_0x1e465d;let prompt=JSON[_0x13ebe9(0x7f0)](atob(document[_0x108b35(0x4f9)+_0x434b27(0x354)+_0x434b27(0x778)](_0x108b35(0x303)+'pt')[_0x434b27(0x357)+_0x3264df(0x2ed)+'t']));chatTextRawIntro='',text_offset=-(0x1*0x1d5d+-0x4*0xd7+-0x1a00);const _0x2153d5={};_0x2153d5[_0x3434be(0x1bd)]=_0x3434be(0x3fa)+'m',_0x2153d5[_0x3264df(0xb29)+'nt']=_0x13ebe9(0xcf1)+_0x434b27(0xbf1)+_0x434b27(0xcda)+_0x108b35(0x826)+_0x3434be(0x4ba)+_0x434b27(0x777)+original_search_query+(_0x434b27(0xca1)+_0x13ebe9(0x21b)+_0x3264df(0x656)+'');const _0x2d7e69={};_0x2d7e69[_0x108b35(0x1bd)]=_0x13ebe9(0xcb1),_0x2d7e69[_0x3434be(0xb29)+'nt']=_0x434b27(0x849)+_0x3264df(0x7b9)+_0x3264df(0x8fb)+_0x13ebe9(0x25c)+_0x3434be(0x6b4)+'';const optionsIntro={'method':_0x3434be(0x983),'headers':headers,'body':b64EncodeUnicode(JSON[_0x13ebe9(0x498)+_0x3434be(0x806)]({'messages':[_0x2153d5,_0x2d7e69][_0x3434be(0xade)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x108b35(0x5b1)+_0x434b27(0x6ac)+_0x108b35(0x809)+_0x13ebe9(0x7e9)+_0x3264df(0x992)+_0x108b35(0xb89),optionsIntro)[_0x13ebe9(0x1fc)](_0x49ab3c=>{const _0x41d76f=_0x3434be,_0x34c005=_0x3434be,_0x5b0a7d=_0x434b27,_0x2ad90e=_0x3264df,_0x3710d9=_0x3264df,_0x10545f={'JosmS':function(_0x1208de,_0xbcef38){return _0x1208de>_0xbcef38;},'Nskqz':function(_0x4a95b5,_0x2a718b){return _0x4a95b5==_0x2a718b;},'HEsOk':_0x41d76f(0xc6e)+']','IQzRA':_0x41d76f(0x983),'XpCAH':function(_0x4a90d0,_0x234c2b){return _0x4a90d0(_0x234c2b);},'jbUQI':function(_0x4bff42,_0x3af8af,_0x616ef3){return _0x4bff42(_0x3af8af,_0x616ef3);},'QKNGS':_0x41d76f(0x5b1)+_0x41d76f(0x6ac)+_0x41d76f(0x809)+_0x2ad90e(0x7e9)+_0x41d76f(0x992)+_0x3710d9(0xb89),'JYsZD':function(_0x948fa5,_0x1b69a7){return _0x948fa5+_0x1b69a7;},'eYxLd':_0x5b0a7d(0x991)+'es','qawKa':function(_0x181ece,_0x51f37e){return _0x181ece>_0x51f37e;},'YCyUO':function(_0x12421d,_0x3483fd,_0xef47f5){return _0x12421d(_0x3483fd,_0xef47f5);},'fRdtU':function(_0x44d341,_0x44be42){return _0x44d341(_0x44be42);},'fxtJO':function(_0x1a5b46,_0x280a49){return _0x1a5b46+_0x280a49;},'gMjot':_0x5b0a7d(0xa35)+_0x2ad90e(0x471),'EproC':function(_0x17dcc8,_0x3334a4){return _0x17dcc8<_0x3334a4;},'CjlPQ':_0x34c005(0x591)+'ss','RvTmW':function(_0x2656be,_0x53184b){return _0x2656be===_0x53184b;},'PcMth':_0x3710d9(0x918),'cLuJh':_0x5b0a7d(0x6b2),'LAOUs':function(_0x32b432,_0x53db87){return _0x32b432>_0x53db87;},'WzlWE':function(_0x51ec16,_0x134ad3){return _0x51ec16!==_0x134ad3;},'Lvqbi':_0x41d76f(0x1ee),'xJbJi':_0x34c005(0xb6f)+_0x3710d9(0x17a),'HGRVm':_0x5b0a7d(0xa35)+_0x3710d9(0xb6a)+_0x5b0a7d(0xa81),'afAGW':_0x41d76f(0xa35)+_0x34c005(0x3b4),'JrnzU':function(_0x32f30c){return _0x32f30c();},'Qcpwj':_0x2ad90e(0x819),'tjoau':_0x34c005(0x6e9),'QIEUW':_0x41d76f(0xcd8),'eZabO':_0x41d76f(0x254),'OjflY':_0x41d76f(0x87f),'AaZPq':_0x2ad90e(0xa70),'rfpJU':_0x41d76f(0xcb8),'TYBkC':_0x34c005(0x36f),'lysKM':_0x41d76f(0x454),'EhcHw':_0x2ad90e(0x7dc),'KlbQG':_0x41d76f(0xa14),'AClXY':_0x2ad90e(0xc87),'YUfFw':_0x2ad90e(0x296)+_0x5b0a7d(0x3df),'mWTcl':_0x3710d9(0xaaa)+_0x5b0a7d(0x2fb),'aQpKd':_0x34c005(0x296),'wAUrn':_0x3710d9(0xcb1),'mHIiE':_0x34c005(0xc82)+'','aNHuW':_0x5b0a7d(0xc23)+_0x2ad90e(0x85a)+_0x41d76f(0x7f4)+_0x41d76f(0x448)+_0x3710d9(0x48e)+_0x41d76f(0x69e)+_0x3710d9(0x695)+_0x5b0a7d(0x854),'RGwmN':function(_0x4a38a9,_0x472dd6,_0x4aa371){return _0x4a38a9(_0x472dd6,_0x4aa371);},'tJEBT':function(_0x1c6fae,_0x110666){return _0x1c6fae+_0x110666;},'LlHzi':function(_0x2bc93a,_0x3958d7){return _0x2bc93a>_0x3958d7;},'NRvmg':_0x34c005(0x8e4)+':'},_0x240ec3=_0x49ab3c[_0x34c005(0x370)][_0x41d76f(0x84e)+_0x5b0a7d(0xacd)]();let _0x34679d='',_0x1fdefd='';_0x240ec3[_0x3710d9(0x350)]()[_0x5b0a7d(0x1fc)](function _0x443260({done:_0x2e8880,value:_0x3d9450}){const _0x1c78f6=_0x2ad90e,_0x134d12=_0x3710d9,_0x728652=_0x3710d9,_0x4d820a=_0x5b0a7d,_0x53b00b=_0x2ad90e,_0xb00dfa={'foHVS':function(_0x57ddfd,_0x50c74f){const _0x3d98a3=_0x2881;return _0x10545f[_0x3d98a3(0xb83)](_0x57ddfd,_0x50c74f);},'twvEC':function(_0x4e2cd2,_0x47cebb){const _0x32503e=_0x2881;return _0x10545f[_0x32503e(0x84f)](_0x4e2cd2,_0x47cebb);},'RyEmr':_0x10545f[_0x1c78f6(0x4da)],'GChTT':function(_0x4065c5,_0x3225a4){const _0x4b86b3=_0x1c78f6;return _0x10545f[_0x4b86b3(0x750)](_0x4065c5,_0x3225a4);},'EmscM':function(_0x819c70,_0x324811){const _0xea782c=_0x1c78f6;return _0x10545f[_0xea782c(0x614)](_0x819c70,_0x324811);},'evUSW':_0x10545f[_0x134d12(0x6c7)],'OhCTU':_0x10545f[_0x1c78f6(0x476)],'cLReS':function(_0x20f155,_0x483286){const _0x278f32=_0x134d12;return _0x10545f[_0x278f32(0x8d4)](_0x20f155,_0x483286);},'HcihU':function(_0x10a5dd,_0x410dbc){const _0x576409=_0x1c78f6;return _0x10545f[_0x576409(0x8ab)](_0x10a5dd,_0x410dbc);},'YAkGL':_0x10545f[_0x1c78f6(0x3a4)],'Npcvz':function(_0x278825,_0x58e9de){const _0x3d03d7=_0x134d12;return _0x10545f[_0x3d03d7(0x52b)](_0x278825,_0x58e9de);},'sgPwp':_0x10545f[_0x4d820a(0x657)],'kTwAq':_0x10545f[_0x728652(0x6eb)],'XbxxC':_0x10545f[_0x134d12(0x5c2)],'RgkYG':_0x10545f[_0x1c78f6(0x877)],'huxSt':function(_0x3f7da2){const _0x1ad615=_0x728652;return _0x10545f[_0x1ad615(0x35e)](_0x3f7da2);},'OFYZN':_0x10545f[_0x728652(0x4d4)],'cAWss':_0x10545f[_0x1c78f6(0x74b)],'zeAQj':_0x10545f[_0x4d820a(0x5f4)],'GvGvy':function(_0x43ff30,_0x4fd050){const _0x4aa0e7=_0x134d12;return _0x10545f[_0x4aa0e7(0x750)](_0x43ff30,_0x4fd050);},'uehac':_0x10545f[_0x1c78f6(0x229)],'BxCqZ':_0x10545f[_0x53b00b(0x477)],'hUlsx':_0x10545f[_0x134d12(0x7b1)],'DBnRE':_0x10545f[_0x728652(0x494)],'rYYtL':_0x10545f[_0x728652(0x6ec)],'unViF':_0x10545f[_0x4d820a(0xcbd)],'BUnFj':function(_0x319aba,_0x156ae1,_0x29a151){const _0x2a87f6=_0x53b00b;return _0x10545f[_0x2a87f6(0x5c4)](_0x319aba,_0x156ae1,_0x29a151);},'rdKXB':_0x10545f[_0x1c78f6(0x427)],'TQdkh':_0x10545f[_0x4d820a(0xa5c)],'uTYbX':_0x10545f[_0x53b00b(0x44f)],'qlmhJ':_0x10545f[_0x728652(0x875)],'BeimB':_0x10545f[_0x134d12(0x5a5)],'MmxPB':_0x10545f[_0x728652(0x35c)],'PbqLE':_0x10545f[_0x728652(0x4cf)],'SBWBk':_0x10545f[_0x4d820a(0xd01)],'IKfyC':_0x10545f[_0x134d12(0xb96)],'jbvMX':_0x10545f[_0x53b00b(0xce0)],'ArGrJ':_0x10545f[_0x728652(0x5ea)],'rZYyn':function(_0x53e93e,_0x30b274,_0x51c92d){const _0x10d41f=_0x134d12;return _0x10545f[_0x10d41f(0x9ae)](_0x53e93e,_0x30b274,_0x51c92d);},'jakih':_0x10545f[_0x4d820a(0x31b)],'xyZqb':function(_0x39ee56,_0x57d5e8){const _0x404ed7=_0x4d820a;return _0x10545f[_0x404ed7(0x8bb)](_0x39ee56,_0x57d5e8);},'riotx':function(_0x769cb,_0x1166c3){const _0x417351=_0x53b00b;return _0x10545f[_0x417351(0xb90)](_0x769cb,_0x1166c3);},'qeMAy':function(_0x54a33c,_0x3e50c8){const _0x52c87f=_0x53b00b;return _0x10545f[_0x52c87f(0x84f)](_0x54a33c,_0x3e50c8);},'LymDw':_0x10545f[_0x4d820a(0xa28)]};if(_0x2e8880)return;const _0x4e2c29=new TextDecoder(_0x10545f[_0x134d12(0x875)])[_0x1c78f6(0x368)+'e'](_0x3d9450);return _0x4e2c29[_0x4d820a(0x9f5)]()[_0x4d820a(0x73c)]('\x0a')[_0x134d12(0x335)+'ch'](function(_0x43a447){const _0x14298d=_0x728652,_0x2bf6b9=_0x134d12,_0x24c076=_0x134d12,_0x4e79a6=_0x728652,_0xc00a52=_0x134d12;_0x34679d='';if(_0x10545f[_0x14298d(0x3c1)](_0x43a447[_0x2bf6b9(0x58b)+'h'],-0x2*0x3+0x3*0x4e7+-0xea9))_0x34679d=_0x43a447[_0x2bf6b9(0x65a)](-0x22c9*-0x1+-0x162d*0x1+-0xc96);if(_0x10545f[_0x24c076(0x8ab)](_0x34679d,_0x10545f[_0xc00a52(0x3a4)])){text_offset=-(0x21*0x17+-0xcf*-0x10+0xb*-0x172);const _0x882168={'method':_0x10545f[_0x14298d(0x35c)],'headers':headers,'body':_0x10545f[_0x2bf6b9(0x824)](b64EncodeUnicode,JSON[_0x2bf6b9(0x498)+_0xc00a52(0x806)](prompt[_0x14298d(0x7a3)]))};_0x10545f[_0x4e79a6(0x24c)](fetch,_0x10545f[_0x4e79a6(0x31b)],_0x882168)[_0x4e79a6(0x1fc)](_0x41d221=>{const _0x2da61e=_0xc00a52,_0x130671=_0x14298d,_0x5d37af=_0x2bf6b9,_0x17fcfe=_0x2bf6b9,_0x18d9e9=_0x14298d,_0x1a9a37={'myEZD':function(_0x165b83,_0x4b6e54){const _0x104195=_0x2881;return _0xb00dfa[_0x104195(0x912)](_0x165b83,_0x4b6e54);},'hjxFG':function(_0xefe593,_0x4eaa51){const _0x4b9adb=_0x2881;return _0xb00dfa[_0x4b9adb(0x8c2)](_0xefe593,_0x4eaa51);},'LxHoS':_0xb00dfa[_0x2da61e(0xcb5)],'xIAPh':function(_0x1470a0,_0x1fbce9){const _0x155332=_0x2da61e;return _0xb00dfa[_0x155332(0x49f)](_0x1470a0,_0x1fbce9);},'qRvZp':function(_0x269106,_0x3f831d){const _0x3d17cd=_0x2da61e;return _0xb00dfa[_0x3d17cd(0x615)](_0x269106,_0x3f831d);},'JLLYb':_0xb00dfa[_0x2da61e(0xaf4)],'QbYlR':_0xb00dfa[_0x130671(0xce2)],'lWLOT':function(_0x1aedca,_0x229f0a){const _0x541391=_0x2da61e;return _0xb00dfa[_0x541391(0x95b)](_0x1aedca,_0x229f0a);},'pbTHv':function(_0x475db3,_0xb96918){const _0x4a1288=_0x2da61e;return _0xb00dfa[_0x4a1288(0x838)](_0x475db3,_0xb96918);},'TdpQk':_0xb00dfa[_0x17fcfe(0x379)],'MiBAh':function(_0x1d621b,_0x5c4ba2){const _0x5257c6=_0x130671;return _0xb00dfa[_0x5257c6(0xc59)](_0x1d621b,_0x5c4ba2);},'DHieJ':_0xb00dfa[_0x17fcfe(0xb75)],'qduUv':_0xb00dfa[_0x17fcfe(0x279)],'SdJrz':_0xb00dfa[_0x130671(0x4ff)],'Xapos':_0xb00dfa[_0x2da61e(0xcae)],'utgLB':function(_0x190894){const _0x5d2969=_0x130671;return _0xb00dfa[_0x5d2969(0xa86)](_0x190894);},'ieVuo':_0xb00dfa[_0x5d37af(0x7ed)],'sLuTE':_0xb00dfa[_0x18d9e9(0x5d3)],'rXieH':_0xb00dfa[_0x130671(0xbc0)],'BVJiw':function(_0x20627c,_0x5e557b){const _0x177438=_0x2da61e;return _0xb00dfa[_0x177438(0x83d)](_0x20627c,_0x5e557b);},'sPbLg':_0xb00dfa[_0x130671(0x7de)],'rlsuy':_0xb00dfa[_0x2da61e(0x4f3)],'NzDhV':_0xb00dfa[_0x130671(0x44c)],'ivdKO':_0xb00dfa[_0x2da61e(0xc26)],'nRokJ':_0xb00dfa[_0x130671(0x693)],'dzdRO':_0xb00dfa[_0x2da61e(0x6be)],'ejRnB':function(_0x102505,_0x285683,_0x5cce79){const _0x101b99=_0x17fcfe;return _0xb00dfa[_0x101b99(0xbc8)](_0x102505,_0x285683,_0x5cce79);},'DJhtO':_0xb00dfa[_0x18d9e9(0x8dd)],'gcfUn':_0xb00dfa[_0x130671(0xb78)],'FiaEI':_0xb00dfa[_0x130671(0x2f9)],'RdMhL':_0xb00dfa[_0x130671(0x551)],'cURuk':_0xb00dfa[_0x5d37af(0x8a6)],'ndkpI':_0xb00dfa[_0x5d37af(0x289)],'ZtWRK':function(_0xc653cf,_0x21fcff){const _0x50f879=_0x2da61e;return _0xb00dfa[_0x50f879(0x8c2)](_0xc653cf,_0x21fcff);},'NgOmz':_0xb00dfa[_0x130671(0x831)],'nywpJ':function(_0x1d3404,_0x555fb7){const _0x4e1f7b=_0x2da61e;return _0xb00dfa[_0x4e1f7b(0x83d)](_0x1d3404,_0x555fb7);},'dNptS':_0xb00dfa[_0x130671(0x517)],'zXXqL':_0xb00dfa[_0x5d37af(0xbbb)],'Bspfi':function(_0x20de9e,_0x5f14ac){const _0x303566=_0x2da61e;return _0xb00dfa[_0x303566(0x83d)](_0x20de9e,_0x5f14ac);},'zvqKl':_0xb00dfa[_0x130671(0x7d3)],'sUhWK':_0xb00dfa[_0x130671(0x889)],'XzOcE':function(_0x716221,_0x10071e,_0x113352){const _0x240cc7=_0x130671;return _0xb00dfa[_0x240cc7(0xab8)](_0x716221,_0x10071e,_0x113352);},'YPuGQ':_0xb00dfa[_0x2da61e(0x3e6)],'OYqRd':function(_0x2db9ab,_0x266d80){const _0x586fb1=_0x17fcfe;return _0xb00dfa[_0x586fb1(0x223)](_0x2db9ab,_0x266d80);},'cMcqG':function(_0x578cfa,_0x1fc87e){const _0x58903c=_0x17fcfe;return _0xb00dfa[_0x58903c(0x644)](_0x578cfa,_0x1fc87e);},'weTFM':function(_0x23301d,_0x52249d){const _0x13a5ae=_0x5d37af;return _0xb00dfa[_0x13a5ae(0x361)](_0x23301d,_0x52249d);},'wELFn':_0xb00dfa[_0x18d9e9(0xcba)]},_0x419ed5=_0x41d221[_0x17fcfe(0x370)][_0x18d9e9(0x84e)+_0x130671(0xacd)]();let _0x223414='',_0x4bbddb='';_0x419ed5[_0x18d9e9(0x350)]()[_0x17fcfe(0x1fc)](function _0x1cf107({done:_0x50e14d,value:_0x242e22}){const _0x20ee2a=_0x17fcfe,_0x4c0a6b=_0x18d9e9,_0x5b28ab=_0x18d9e9,_0x38b9fd=_0x2da61e,_0x518621=_0x18d9e9,_0x1d91a4={};_0x1d91a4[_0x20ee2a(0x3c7)]=_0x1a9a37[_0x4c0a6b(0x3f5)];const _0x594fd4=_0x1d91a4;if(_0x50e14d)return;const _0xddc2f=new TextDecoder(_0x1a9a37[_0x4c0a6b(0x8f7)])[_0x4c0a6b(0x368)+'e'](_0x242e22);return _0xddc2f[_0x20ee2a(0x9f5)]()[_0x38b9fd(0x73c)]('\x0a')[_0x518621(0x335)+'ch'](function(_0x7c191){const _0xf4e9a1=_0x20ee2a,_0xa71080=_0x5b28ab,_0x5bdc6f=_0x38b9fd,_0x26797d=_0x20ee2a,_0x3ffb76=_0x4c0a6b,_0x143bab={'VzQrK':function(_0x107dad,_0x2ae1ad){const _0x1f514f=_0x2881;return _0x1a9a37[_0x1f514f(0x539)](_0x107dad,_0x2ae1ad);},'zVrAw':function(_0x11ac3e,_0x26f35e){const _0x473f68=_0x2881;return _0x1a9a37[_0x473f68(0x9b3)](_0x11ac3e,_0x26f35e);},'ndAcZ':_0x1a9a37[_0xf4e9a1(0xbed)],'fUGKn':function(_0x5cc959,_0xa817cb){const _0x3f1458=_0xf4e9a1;return _0x1a9a37[_0x3f1458(0xaaf)](_0x5cc959,_0xa817cb);},'dfmsK':function(_0x511891,_0xc4d2d4){const _0x131a3f=_0xf4e9a1;return _0x1a9a37[_0x131a3f(0x89d)](_0x511891,_0xc4d2d4);},'TMOUY':_0x1a9a37[_0xa71080(0xbca)],'GfpuV':_0x1a9a37[_0x5bdc6f(0x1b8)],'tCbIb':function(_0x5dfb9,_0x576c09){const _0x2fa504=_0x5bdc6f;return _0x1a9a37[_0x2fa504(0x3cf)](_0x5dfb9,_0x576c09);},'lEqfg':function(_0x179d9e,_0x450ff0){const _0x31359d=_0xa71080;return _0x1a9a37[_0x31359d(0x6b1)](_0x179d9e,_0x450ff0);},'Hofxb':_0x1a9a37[_0x5bdc6f(0xb1b)],'rvxIE':function(_0x5f2441,_0x5f55fa){const _0x1ec97d=_0x5bdc6f;return _0x1a9a37[_0x1ec97d(0x166)](_0x5f2441,_0x5f55fa);},'HGaeB':_0x1a9a37[_0xf4e9a1(0xb5a)],'xlcVy':_0x1a9a37[_0x26797d(0x209)],'uFvoN':_0x1a9a37[_0xf4e9a1(0x99a)],'EiRTD':_0x1a9a37[_0x3ffb76(0xbad)],'AGynQ':function(_0x29d231){const _0x366229=_0x3ffb76;return _0x1a9a37[_0x366229(0x8e5)](_0x29d231);},'MKpEu':_0x1a9a37[_0x5bdc6f(0x957)],'KeNjD':_0x1a9a37[_0x5bdc6f(0x684)],'hqUDn':_0x1a9a37[_0x26797d(0x444)],'pnCqT':function(_0x30a0f4,_0x528b8a){const _0x2b1463=_0x26797d;return _0x1a9a37[_0x2b1463(0xb72)](_0x30a0f4,_0x528b8a);},'eLDbB':_0x1a9a37[_0xf4e9a1(0x62b)],'mssex':_0x1a9a37[_0x5bdc6f(0x60e)],'hDzMw':_0x1a9a37[_0x26797d(0x8ec)],'hSQHR':_0x1a9a37[_0x26797d(0xae0)],'niaxp':function(_0x37f7ec,_0x4e95cc){const _0x4ce3bc=_0x26797d;return _0x1a9a37[_0x4ce3bc(0x3cf)](_0x37f7ec,_0x4e95cc);},'AlnKs':_0x1a9a37[_0x26797d(0x533)],'oWsuo':_0x1a9a37[_0x5bdc6f(0x6ff)],'JPwPx':function(_0x3c09be,_0x4a2ce3,_0x5d9c91){const _0xd9d5e2=_0x26797d;return _0x1a9a37[_0xd9d5e2(0x995)](_0x3c09be,_0x4a2ce3,_0x5d9c91);},'MxgaD':function(_0x5a5ac6,_0x2f7fb1){const _0xea5e72=_0x3ffb76;return _0x1a9a37[_0xea5e72(0x9b3)](_0x5a5ac6,_0x2f7fb1);},'ljcWF':_0x1a9a37[_0x5bdc6f(0x622)],'ZFplY':_0x1a9a37[_0x5bdc6f(0x567)],'AtPeo':_0x1a9a37[_0x5bdc6f(0x9bd)],'WsOxM':_0x1a9a37[_0xa71080(0x8f7)]};_0x223414='';if(_0x1a9a37[_0x26797d(0x3cf)](_0x7c191[_0x3ffb76(0x58b)+'h'],0x200f+-0x1*0x265+0x4*-0x769))_0x223414=_0x7c191[_0x5bdc6f(0x65a)](0x1aa7*0x1+0xf*-0xc5+0xf16*-0x1);if(_0x1a9a37[_0x26797d(0x6b1)](_0x223414,_0x1a9a37[_0x26797d(0xb1b)])){document[_0x26797d(0x4f9)+_0xf4e9a1(0x354)+_0x3ffb76(0x778)](_0x1a9a37[_0x3ffb76(0x7e0)])[_0x5bdc6f(0x94b)+_0xa71080(0xc37)]='',_0x1a9a37[_0x26797d(0x8e5)](chatmore);const _0x3e193e={'method':_0x1a9a37[_0x26797d(0x281)],'headers':headers,'body':_0x1a9a37[_0x5bdc6f(0xa41)](b64EncodeUnicode,JSON[_0x26797d(0x498)+_0xa71080(0x806)]({'messages':[{'role':_0x1a9a37[_0x3ffb76(0xcd4)],'content':_0x1a9a37[_0xf4e9a1(0xb57)](document[_0xa71080(0x4f9)+_0x3ffb76(0x354)+_0x26797d(0x778)](_0x1a9a37[_0x3ffb76(0xcd3)])[_0x3ffb76(0x94b)+_0xf4e9a1(0xc37)][_0x26797d(0x92b)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0xf4e9a1(0x92b)+'ce'](/<hr.*/gs,'')[_0xf4e9a1(0x92b)+'ce'](/<[^>]+>/g,'')[_0x3ffb76(0x92b)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x1a9a37[_0x5bdc6f(0x5a1)],'content':_0x1a9a37[_0xa71080(0xaaf)](_0x1a9a37[_0x3ffb76(0x919)](_0x1a9a37[_0x5bdc6f(0x86e)],original_search_query),_0x1a9a37[_0xf4e9a1(0xa8a)])}][_0xa71080(0xade)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x1a9a37[_0x26797d(0x469)](fetch,_0x1a9a37[_0x3ffb76(0x417)],_0x3e193e)[_0x26797d(0x1fc)](_0x57ee3e=>{const _0x1c0996=_0x3ffb76,_0x526a1f=_0x3ffb76,_0x53d58c=_0xf4e9a1,_0x43f3f5=_0x3ffb76,_0x1bb435=_0xf4e9a1,_0x5ac34e=_0x57ee3e[_0x1c0996(0x370)][_0x1c0996(0x84e)+_0x53d58c(0xacd)]();let _0x39aa50='',_0x2c3a40='';_0x5ac34e[_0x1c0996(0x350)]()[_0x526a1f(0x1fc)](function _0x1bf5d3({done:_0x461a1e,value:_0x5349f9}){const _0x4fb718=_0x1c0996,_0x35ad98=_0x1c0996,_0x38754c=_0x53d58c,_0x512eac=_0x43f3f5,_0x4435f7=_0x43f3f5,_0x2eac01={'OPDhr':function(_0x5ef161,_0x4082d5){const _0x4a2640=_0x2881;return _0x143bab[_0x4a2640(0x812)](_0x5ef161,_0x4082d5);},'mtOGL':function(_0x51cb62,_0x6d90eb){const _0x4e6b4c=_0x2881;return _0x143bab[_0x4e6b4c(0xa2a)](_0x51cb62,_0x6d90eb);},'QSifk':_0x143bab[_0x4fb718(0x6d9)],'vSAQD':function(_0x2a896d,_0x36720b){const _0x82bf9c=_0x4fb718;return _0x143bab[_0x82bf9c(0xc45)](_0x2a896d,_0x36720b);},'fpXeH':function(_0x16c260,_0x152d95){const _0x576f5e=_0x4fb718;return _0x143bab[_0x576f5e(0x57f)](_0x16c260,_0x152d95);},'wpvda':_0x143bab[_0x4fb718(0x3fe)],'fUNLa':_0x143bab[_0x38754c(0xcaf)],'EgQdG':function(_0xd12907,_0x5dc345){const _0xeb2fa2=_0x4fb718;return _0x143bab[_0xeb2fa2(0xc66)](_0xd12907,_0x5dc345);},'LLkxN':function(_0x2c1f61,_0x5e1171){const _0x20f6f7=_0x4fb718;return _0x143bab[_0x20f6f7(0x874)](_0x2c1f61,_0x5e1171);},'caFSq':_0x143bab[_0x38754c(0x744)],'AEfgN':function(_0x888405,_0xc849d1){const _0x344886=_0x4fb718;return _0x143bab[_0x344886(0x955)](_0x888405,_0xc849d1);},'fmgsS':_0x143bab[_0x512eac(0x85f)],'fJKXR':_0x143bab[_0x4fb718(0x6bc)],'FbzoU':_0x143bab[_0x4fb718(0x8ef)],'ySUkL':_0x143bab[_0x35ad98(0xbd7)],'hRwNN':function(_0x1649ea){const _0x3ccf21=_0x35ad98;return _0x143bab[_0x3ccf21(0x952)](_0x1649ea);},'LVxtn':function(_0x2562ad,_0x28b667){const _0x37b675=_0x512eac;return _0x143bab[_0x37b675(0x955)](_0x2562ad,_0x28b667);},'PdqLg':_0x143bab[_0x4fb718(0x7bb)],'KutoV':_0x143bab[_0x38754c(0x314)],'yFOoh':function(_0x45b6cf,_0x1bcd95){const _0x2abb4b=_0x4fb718;return _0x143bab[_0x2abb4b(0x57f)](_0x45b6cf,_0x1bcd95);},'tkODl':_0x143bab[_0x4fb718(0x9de)],'JPcHE':function(_0x3f45b0,_0x185855){const _0x3cbe6a=_0x4fb718;return _0x143bab[_0x3cbe6a(0x7c6)](_0x3f45b0,_0x185855);},'OhnTa':_0x143bab[_0x4fb718(0x83e)],'JuZgm':function(_0x3e4944,_0x9f4a89){const _0x53dfba=_0x512eac;return _0x143bab[_0x53dfba(0x955)](_0x3e4944,_0x9f4a89);},'fHSxU':_0x143bab[_0x35ad98(0xa08)],'KKJuB':_0x143bab[_0x512eac(0x25b)],'adJdl':_0x143bab[_0x35ad98(0x9bf)],'cHQNc':function(_0x301404,_0x4a7007){const _0x2c7609=_0x38754c;return _0x143bab[_0x2c7609(0xc97)](_0x301404,_0x4a7007);},'gBuhC':function(_0x41e08b,_0x6ea57b){const _0x119990=_0x38754c;return _0x143bab[_0x119990(0x57f)](_0x41e08b,_0x6ea57b);},'Wdysn':_0x143bab[_0x512eac(0x23a)],'Asvyh':_0x143bab[_0x38754c(0xc9a)],'GqwpQ':function(_0x5fd7de,_0x3b5907,_0x10ef83){const _0xae7561=_0x4435f7;return _0x143bab[_0xae7561(0x976)](_0x5fd7de,_0x3b5907,_0x10ef83);},'UaLyk':function(_0x27748b,_0x13e513){const _0x57e0f9=_0x4fb718;return _0x143bab[_0x57e0f9(0x5df)](_0x27748b,_0x13e513);},'PyvCk':_0x143bab[_0x4435f7(0x786)]};if(_0x143bab[_0x4fb718(0x955)](_0x143bab[_0x512eac(0x924)],_0x143bab[_0x35ad98(0xbea)])){if(_0x461a1e)return;const _0x58248c=new TextDecoder(_0x143bab[_0x4435f7(0x35a)])[_0x38754c(0x368)+'e'](_0x5349f9);return _0x58248c[_0x38754c(0x9f5)]()[_0x38754c(0x73c)]('\x0a')[_0x35ad98(0x335)+'ch'](function(_0x340cf5){const _0xd6d378=_0x4fb718,_0x11c41c=_0x4435f7,_0x12b025=_0x4435f7,_0x4826ee=_0x4435f7,_0x2e9f17=_0x4fb718,_0x5eac7e={'tJisE':function(_0x47ef96,_0x404a24){const _0x12c9c4=_0x2881;return _0x2eac01[_0x12c9c4(0x268)](_0x47ef96,_0x404a24);},'krhqG':function(_0x125a9f,_0xd95af9){const _0x27a02f=_0x2881;return _0x2eac01[_0x27a02f(0xce8)](_0x125a9f,_0xd95af9);},'prxkJ':_0x2eac01[_0xd6d378(0x6ee)],'OMQJv':function(_0x569897,_0x5a3d10){const _0x44762a=_0xd6d378;return _0x2eac01[_0x44762a(0xca9)](_0x569897,_0x5a3d10);}};if(_0x2eac01[_0xd6d378(0x2f4)](_0x2eac01[_0xd6d378(0x5b5)],_0x2eac01[_0x4826ee(0x240)])){if(!_0x4e4dc7)return;try{var _0x2e1696=new _0x5e4661(_0x17be70[_0x4826ee(0x58b)+'h']),_0x2efcf3=new _0x58ef06(_0x2e1696);for(var _0x33642f=0x21d8+-0x2c5*-0x5+-0x2fb1,_0x468185=_0x57028a[_0x11c41c(0x58b)+'h'];_0x5eac7e[_0x11c41c(0x661)](_0x33642f,_0x468185);_0x33642f++){_0x2efcf3[_0x33642f]=_0xef89ff[_0x12b025(0x70d)+_0x4826ee(0x6f9)](_0x33642f);}return _0x2e1696;}catch(_0x3c8d0f){}}else{_0x39aa50='';if(_0x2eac01[_0x2e9f17(0xaf7)](_0x340cf5[_0x4826ee(0x58b)+'h'],-0x2*0x106e+0x21eb+-0x1*0x109))_0x39aa50=_0x340cf5[_0x2e9f17(0x65a)](-0xdda*0x1+-0xada*0x1+0x18ba);if(_0x2eac01[_0x2e9f17(0x8d0)](_0x39aa50,_0x2eac01[_0x11c41c(0x621)])){if(_0x2eac01[_0x11c41c(0xa31)](_0x2eac01[_0x2e9f17(0xc4f)],_0x2eac01[_0x4826ee(0xc4f)]))_0xf21641=_0x64e43a;else{const _0x2d8913=_0x2eac01[_0x2e9f17(0x559)][_0xd6d378(0x73c)]('|');let _0x2daafa=-0x1d*-0x3a+-0x1122+0xa90;while(!![]){switch(_0x2d8913[_0x2daafa++]){case'0':lock_chat=0x683*0x1+0x23ec+0x1*-0x2a6f;continue;case'1':return;case'2':document[_0x2e9f17(0x905)+_0x4826ee(0x16a)+_0x2e9f17(0x3e2)](_0x2eac01[_0x4826ee(0x82d)])[_0x4826ee(0x52a)][_0x12b025(0x3d4)+'ay']='';continue;case'3':document[_0x4826ee(0x905)+_0x11c41c(0x16a)+_0x4826ee(0x3e2)](_0x2eac01[_0x11c41c(0xcad)])[_0x11c41c(0x52a)][_0x12b025(0x3d4)+'ay']='';continue;case'4':_0x2eac01[_0x4826ee(0x6db)](proxify);continue;}break;}}}let _0x49e043;try{if(_0x2eac01[_0x4826ee(0x4d0)](_0x2eac01[_0x11c41c(0x881)],_0x2eac01[_0x2e9f17(0x4c0)]))try{_0x2eac01[_0x11c41c(0xa20)](_0x2eac01[_0x12b025(0xca8)],_0x2eac01[_0x4826ee(0xca8)])?(_0x49e043=JSON[_0xd6d378(0x7f0)](_0x2eac01[_0xd6d378(0x178)](_0x2c3a40,_0x39aa50))[_0x2eac01[_0x2e9f17(0xa62)]],_0x2c3a40=''):_0x5eac7e[_0x2e9f17(0xb79)](_0x153bf6,_0x5eac7e[_0x4826ee(0x5a9)]);}catch(_0x255e1b){if(_0x2eac01[_0x2e9f17(0xa5e)](_0x2eac01[_0x4826ee(0x2fc)],_0x2eac01[_0xd6d378(0x2fc)])){var _0x1e10f4=[],_0x11b132=[];for(var _0x459d37 of _0x52e47b){const _0x17af1b={};_0x17af1b[_0x12b025(0xa40)]=0x1,_0x4400d8[_0x11c41c(0xb82)]=_0x459d37[_0xd6d378(0x49a)+_0x12b025(0xa64)+'t'](_0x17af1b),_0x1e10f4[_0x11c41c(0xabc)](_0x459d37[_0x2e9f17(0x482)+_0x11c41c(0x437)+_0x11c41c(0x8aa)]());const _0x6fd955={};_0x6fd955[_0x2e9f17(0xa40)]=0x1,_0x11b132[_0x2e9f17(0xabc)]([_0x459d37[_0x4826ee(0x49a)+_0x4826ee(0xa64)+'t'](_0x6fd955),_0x5eac7e[_0x4826ee(0xac8)](_0x459d37[_0x4826ee(0x9ee)+_0x4826ee(0x18e)],-0x1562+-0x1*-0x1aa5+-0x542)]);}return _0x187d45[_0x2e9f17(0xae5)]([_0x2c7e9c[_0x2e9f17(0xae5)](_0x1e10f4),_0x11b132]);}else _0x49e043=JSON[_0x4826ee(0x7f0)](_0x39aa50)[_0x2eac01[_0x4826ee(0xa62)]],_0x2c3a40='';}else return _0x27ba86[_0x12b025(0x271)](new _0x4be624(_0x49e00a));}catch(_0x2191a1){if(_0x2eac01[_0x4826ee(0xa5e)](_0x2eac01[_0xd6d378(0x86b)],_0x2eac01[_0x11c41c(0x2cf)]))_0x2c3a40+=_0x39aa50;else return _0x148518&&_0x299f40[_0x12b025(0x9f5)]();}if(_0x49e043&&_0x2eac01[_0x4826ee(0x705)](_0x49e043[_0x12b025(0x58b)+'h'],-0x807*-0x4+0x1d99+-0x3db5)&&_0x49e043[-0xcc2+0x1*-0x107e+0x1d40][_0x2e9f17(0x1f7)][_0x12b025(0xb29)+'nt']){if(_0x2eac01[_0x12b025(0x3c8)](_0x2eac01[_0x4826ee(0x81d)],_0x2eac01[_0x2e9f17(0xb55)]))return!![];else chatTextRawPlusComment+=_0x49e043[0x172+-0xbdc+0xa6a][_0x2e9f17(0x1f7)][_0x12b025(0xb29)+'nt'];}_0x2eac01[_0x2e9f17(0x438)](markdownToHtml,_0x2eac01[_0x4826ee(0x1ec)](beautify,chatTextRawPlusComment),document[_0x11c41c(0x905)+_0x4826ee(0x16a)+_0x12b025(0x3e2)](_0x2eac01[_0x2e9f17(0xc9e)]));}}),_0x5ac34e[_0x512eac(0x350)]()[_0x38754c(0x1fc)](_0x1bf5d3);}else _0x494c97=null;});})[_0x5bdc6f(0x51b)](_0x1df96d=>{const _0x4ce17e=_0xf4e9a1,_0x425cda=_0xf4e9a1;console[_0x4ce17e(0x65f)](_0x594fd4[_0x425cda(0x3c7)],_0x1df96d);});return;}let _0x3f9d5f;try{try{_0x3f9d5f=JSON[_0xf4e9a1(0x7f0)](_0x1a9a37[_0xf4e9a1(0x2c4)](_0x4bbddb,_0x223414))[_0x1a9a37[_0xa71080(0x62b)]],_0x4bbddb='';}catch(_0x2db2fb){_0x3f9d5f=JSON[_0xf4e9a1(0x7f0)](_0x223414)[_0x1a9a37[_0xa71080(0x62b)]],_0x4bbddb='';}}catch(_0x1aada8){_0x4bbddb+=_0x223414;}_0x3f9d5f&&_0x1a9a37[_0x5bdc6f(0x851)](_0x3f9d5f[_0x26797d(0x58b)+'h'],-0x10*0x81+-0x180e+0x100f*0x2)&&_0x3f9d5f[-0x8ba*-0x3+-0x1a*-0x133+0x2*-0x1cae][_0x26797d(0x1f7)][_0xa71080(0xb29)+'nt']&&(chatTextRaw+=_0x3f9d5f[0x914+0x1*0x1eec+-0x2800][_0xf4e9a1(0x1f7)][_0x3ffb76(0xb29)+'nt']),_0x1a9a37[_0xa71080(0x469)](markdownToHtml,_0x1a9a37[_0x5bdc6f(0x8a3)](beautify,chatTextRaw),document[_0x5bdc6f(0x905)+_0x5bdc6f(0x16a)+_0xf4e9a1(0x3e2)](_0x1a9a37[_0xa71080(0x622)]));}),_0x419ed5[_0x38b9fd(0x350)]()[_0x4c0a6b(0x1fc)](_0x1cf107);});})[_0x24c076(0x51b)](_0x4a5e23=>{const _0x586356=_0x14298d,_0x350990=_0x2bf6b9;console[_0x586356(0x65f)](_0xb00dfa[_0x586356(0xcba)],_0x4a5e23);});return;}let _0x548677;try{try{_0x548677=JSON[_0xc00a52(0x7f0)](_0x10545f[_0x14298d(0x750)](_0x1fdefd,_0x34679d))[_0x10545f[_0x4e79a6(0x229)]],_0x1fdefd='';}catch(_0x259971){_0x548677=JSON[_0x24c076(0x7f0)](_0x34679d)[_0x10545f[_0xc00a52(0x229)]],_0x1fdefd='';}}catch(_0x1d32ff){_0x1fdefd+=_0x34679d;}_0x548677&&_0x10545f[_0x14298d(0x90e)](_0x548677[_0x14298d(0x58b)+'h'],-0x1*0x1cdc+0xeb*0xc+0x11d8)&&_0x548677[0x1f3+0xfcc+-0x11bf][_0x4e79a6(0x1f7)][_0x2bf6b9(0xb29)+'nt']&&(chatTextRawIntro+=_0x548677[0x1c1d*-0x1+0x19cd+0x8*0x4a][_0x2bf6b9(0x1f7)][_0x14298d(0xb29)+'nt']),_0x10545f[_0xc00a52(0x5c4)](markdownToHtml,_0x10545f[_0x24c076(0x84f)](beautify,_0x10545f[_0x4e79a6(0xc48)](chatTextRawIntro,'\x0a')),document[_0x14298d(0x905)+_0x14298d(0x16a)+_0x4e79a6(0x3e2)](_0x10545f[_0x24c076(0xc2a)]));}),_0x240ec3[_0x53b00b(0x350)]()[_0x134d12(0x1fc)](_0x443260);});})[_0x3264df(0x51b)](_0x22e4f0=>{const _0x422cad=_0x3434be,_0x5931a4=_0x434b27,_0xbc817=_0x3434be,_0x229917=_0x13ebe9,_0x11a888={};_0x11a888[_0x422cad(0x184)]=_0x422cad(0x8e4)+':';const _0x43c83f=_0x11a888;console[_0x422cad(0x65f)](_0x43c83f[_0x229917(0x184)],_0x22e4f0);});function _0x44f054(_0x5f5a77){const _0x223f11=_0x3434be,_0x4098a2=_0x13ebe9,_0x33f2df=_0x3264df,_0x292482=_0x13ebe9,_0x4bcf63=_0x13ebe9,_0x1d6d88={'yfJYG':function(_0x53db84,_0x578a59){return _0x53db84===_0x578a59;},'XuWcr':_0x223f11(0x498)+'g','Jjbnn':_0x223f11(0xb32)+_0x223f11(0x1cc)+_0x33f2df(0x395),'qAMiq':_0x292482(0x70a)+'er','NzoBU':function(_0x3f5d4c,_0x58106b){return _0x3f5d4c!==_0x58106b;},'XNsRf':function(_0x489d24,_0x5a7de9){return _0x489d24+_0x5a7de9;},'UTkqh':function(_0x5c64c0,_0x1813d0){return _0x5c64c0/_0x1813d0;},'wfrIm':_0x4bcf63(0x58b)+'h','ogPVR':function(_0x5da0d0,_0x359eb0){return _0x5da0d0===_0x359eb0;},'liFzb':function(_0x1b91f0,_0x1769b8){return _0x1b91f0%_0x1769b8;},'NGsMS':function(_0x1bbd3d,_0x20871a){return _0x1bbd3d+_0x20871a;},'PlwIO':_0x223f11(0x763),'eEIqC':_0x33f2df(0x26b),'IgaXs':_0x4098a2(0x381)+'n','xAMrb':function(_0x1aeda5,_0x38938e){return _0x1aeda5+_0x38938e;},'nEEep':_0x292482(0xa88)+_0x4bcf63(0xaae)+'t','GbKpG':function(_0x304ff1,_0x3bb472){return _0x304ff1(_0x3bb472);},'lxCcd':function(_0x4d1d5f,_0x11e543){return _0x4d1d5f(_0x11e543);}};function _0x58d156(_0x4f91e5){const _0x4378e5=_0x33f2df,_0x350a01=_0x4bcf63,_0x49b412=_0x292482,_0x1d8b9c=_0x292482,_0x4b5f30=_0x33f2df;if(_0x1d6d88[_0x4378e5(0xc65)](typeof _0x4f91e5,_0x1d6d88[_0x350a01(0x164)]))return function(_0x2f2c60){}[_0x4378e5(0xccd)+_0x1d8b9c(0x2a7)+'r'](_0x1d6d88[_0x49b412(0x493)])[_0x49b412(0x982)](_0x1d6d88[_0x4378e5(0x185)]);else _0x1d6d88[_0x4b5f30(0xbd3)](_0x1d6d88[_0x4b5f30(0x9bb)]('',_0x1d6d88[_0x350a01(0xa75)](_0x4f91e5,_0x4f91e5))[_0x1d6d88[_0x1d8b9c(0x2b7)]],0x25a0+-0x2*0x10b+0x1*-0x2389)||_0x1d6d88[_0x4378e5(0x7fe)](_0x1d6d88[_0x49b412(0x5ca)](_0x4f91e5,0x8f4+-0x65*-0x2d+0x11*-0x191),-0x210a+-0x697*0x3+0x34cf)?function(){return!![];}[_0x350a01(0xccd)+_0x4b5f30(0x2a7)+'r'](_0x1d6d88[_0x49b412(0x441)](_0x1d6d88[_0x1d8b9c(0xcf3)],_0x1d6d88[_0x1d8b9c(0x2f0)]))[_0x1d8b9c(0x8f0)](_0x1d6d88[_0x4b5f30(0x8c4)]):function(){return![];}[_0x4b5f30(0xccd)+_0x49b412(0x2a7)+'r'](_0x1d6d88[_0x1d8b9c(0x317)](_0x1d6d88[_0x1d8b9c(0xcf3)],_0x1d6d88[_0x350a01(0x2f0)]))[_0x49b412(0x982)](_0x1d6d88[_0x4378e5(0xb60)]);_0x1d6d88[_0x4b5f30(0xcec)](_0x58d156,++_0x4f91e5);}try{if(_0x5f5a77)return _0x58d156;else _0x1d6d88[_0x4bcf63(0x8be)](_0x58d156,0x22fc+-0x1650+-0x1*0xcac);}catch(_0x28c176){}}
</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()