searxng/searx/webapp.py
Joseph Cheung cdd330bde0 c
2023-03-13 08:22:17 +08:00

2153 lines
430 KiB
Python
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

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

#!/usr/bin/env python
# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
# pyright: basic
"""WebbApp
"""
# pylint: disable=use-dict-literal
import hashlib
import hmac
import json
import os
import sys
import base64
import requests
import markdown
import re
import datetime
from textrank4zh import TextRank4Keyword, TextRank4Sentence
import pycorrector
import threading
from timeit import default_timer
from html import escape
from io import StringIO
import typing
from typing import List, Dict, Iterable
import urllib
import urllib.parse
from urllib.parse import urlencode, unquote
import httpx
from pygments import highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter # pylint: disable=no-name-in-module
import flask
from flask import (
Flask,
render_template,
url_for,
make_response,
redirect,
send_from_directory,
)
from flask.wrappers import Response
from flask.json import jsonify
from flask_babel import (
Babel,
gettext,
format_decimal,
)
from searx import (
logger,
get_setting,
settings,
searx_debug,
)
from searx import infopage
from searx.data import ENGINE_DESCRIPTIONS
from searx.results import Timing, UnresponsiveEngine
from searx.settings_defaults import OUTPUT_FORMATS
from searx.settings_loader import get_default_settings_path
from searx.exceptions import SearxParameterException
from searx.engines import (
OTHER_CATEGORY,
categories,
engines,
engine_shortcuts,
)
from searx.webutils import (
UnicodeWriter,
highlight_content,
get_static_files,
get_result_templates,
get_themes,
prettify_url,
new_hmac,
is_hmac_of,
is_flask_run_cmdline,
group_engines_in_tab,
searxng_l10n_timespan,
)
from searx.webadapter import (
get_search_query_from_webapp,
get_selected_categories,
)
from searx.utils import (
html_to_text,
gen_useragent,
dict_subset,
match_language,
)
from searx.version import VERSION_STRING, GIT_URL, GIT_BRANCH
from searx.query import RawTextQuery
from searx.plugins import Plugin, plugins, initialize as plugin_initialize
from searx.plugins.oa_doi_rewrite import get_doi_resolver
from searx.preferences import (
Preferences,
ValidationException,
)
from searx.answerers import (
answerers,
ask,
)
from searx.metrics import (
get_engines_stats,
get_engine_errors,
get_reliabilities,
histogram,
counter,
)
from searx.flaskfix import patch_application
from searx.locales import (
LOCALE_NAMES,
RTL_LOCALES,
localeselector,
locales_initialize,
)
# renaming names from searx imports ...
from searx.autocomplete import search_autocomplete, backends as autocomplete_backends
from searx.languages import language_codes as languages
from searx.redisdb import initialize as redis_initialize
from searx.search import SearchWithPlugins, initialize as search_initialize
from searx.network import stream as http_stream, set_context_network_name
from searx.search.checker import get_result as checker_get_result
logger = logger.getChild('webapp')
# check secret_key
if not searx_debug and settings['server']['secret_key'] == 'ultrasecretkey':
logger.error('server.secret_key is not changed. Please use something else instead of ultrasecretkey.')
sys.exit(1)
# about static
logger.debug('static directory is %s', settings['ui']['static_path'])
static_files = get_static_files(settings['ui']['static_path'])
# about templates
logger.debug('templates directory is %s', settings['ui']['templates_path'])
default_theme = settings['ui']['default_theme']
templates_path = settings['ui']['templates_path']
themes = get_themes(templates_path)
result_templates = get_result_templates(templates_path)
STATS_SORT_PARAMETERS = {
'name': (False, 'name', ''),
'score': (True, 'score_per_result', 0),
'result_count': (True, 'result_count', 0),
'time': (False, 'total', 0),
'reliability': (False, 'reliability', 100),
}
# Flask app
app = Flask(__name__, static_folder=settings['ui']['static_path'], template_folder=templates_path)
app.jinja_env.trim_blocks = True
app.jinja_env.lstrip_blocks = True
app.jinja_env.add_extension('jinja2.ext.loopcontrols') # pylint: disable=no-member
app.jinja_env.filters['group_engines_in_tab'] = group_engines_in_tab # pylint: disable=no-member
app.secret_key = settings['server']['secret_key']
timeout_text = gettext('timeout')
parsing_error_text = gettext('parsing error')
http_protocol_error_text = gettext('HTTP protocol error')
network_error_text = gettext('network error')
ssl_cert_error_text = gettext("SSL error: certificate validation has failed")
exception_classname_to_text = {
None: gettext('unexpected crash'),
'timeout': timeout_text,
'asyncio.TimeoutError': timeout_text,
'httpx.TimeoutException': timeout_text,
'httpx.ConnectTimeout': timeout_text,
'httpx.ReadTimeout': timeout_text,
'httpx.WriteTimeout': timeout_text,
'httpx.HTTPStatusError': gettext('HTTP error'),
'httpx.ConnectError': gettext("HTTP connection error"),
'httpx.RemoteProtocolError': http_protocol_error_text,
'httpx.LocalProtocolError': http_protocol_error_text,
'httpx.ProtocolError': http_protocol_error_text,
'httpx.ReadError': network_error_text,
'httpx.WriteError': network_error_text,
'httpx.ProxyError': gettext("proxy error"),
'searx.exceptions.SearxEngineCaptchaException': gettext("CAPTCHA"),
'searx.exceptions.SearxEngineTooManyRequestsException': gettext("too many requests"),
'searx.exceptions.SearxEngineAccessDeniedException': gettext("access denied"),
'searx.exceptions.SearxEngineAPIException': gettext("server API error"),
'searx.exceptions.SearxEngineXPathException': parsing_error_text,
'KeyError': parsing_error_text,
'json.decoder.JSONDecodeError': parsing_error_text,
'lxml.etree.ParserError': parsing_error_text,
'ssl.SSLCertVerificationError': ssl_cert_error_text, # for Python > 3.7
'ssl.CertificateError': ssl_cert_error_text, # for Python 3.7
}
class ExtendedRequest(flask.Request):
"""This class is never initialized and only used for type checking."""
preferences: Preferences
errors: List[str]
user_plugins: List[Plugin]
form: Dict[str, str]
start_time: float
render_time: float
timings: List[Timing]
request = typing.cast(ExtendedRequest, flask.request)
def get_locale():
locale = localeselector()
logger.debug("%s uses locale `%s`", urllib.parse.quote(request.url), locale)
return locale
babel = Babel(app, locale_selector=get_locale)
def _get_browser_language(req, lang_list):
for lang in req.headers.get("Accept-Language", "en").split(","):
if ';' in lang:
lang = lang.split(';')[0]
if '-' in lang:
lang_parts = lang.split('-')
lang = "{}-{}".format(lang_parts[0], lang_parts[-1].upper())
locale = match_language(lang, lang_list, fallback=None)
if locale is not None:
return locale
return 'en'
def _get_locale_rfc5646(locale):
"""Get locale name for <html lang="...">
Chrom* browsers don't detect the language when there is a subtag (ie a territory).
For example "zh-TW" is detected but not "zh-Hant-TW".
This function returns a locale without the subtag.
"""
parts = locale.split('-')
return parts[0].lower() + '-' + parts[-1].upper()
# code-highlighter
@app.template_filter('code_highlighter')
def code_highlighter(codelines, language=None):
if not language:
language = 'text'
try:
# find lexer by programming language
lexer = get_lexer_by_name(language, stripall=True)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
# if lexer is not found, using default one
lexer = get_lexer_by_name('text', stripall=True)
html_code = ''
tmp_code = ''
last_line = None
line_code_start = None
# parse lines
for line, code in codelines:
if not last_line:
line_code_start = line
# new codeblock is detected
if last_line is not None and last_line + 1 != line:
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
# reset conditions for next codepart
tmp_code = ''
line_code_start = line
# add codepart
tmp_code += code + '\n'
# update line
last_line = line
# highlight last codepart
formatter = HtmlFormatter(linenos='inline', linenostart=line_code_start, cssclass="code-highlight")
html_code = html_code + highlight(tmp_code, lexer, formatter)
return html_code
def get_result_template(theme_name: str, template_name: str):
themed_path = theme_name + '/result_templates/' + template_name
if themed_path in result_templates:
return themed_path
return 'result_templates/' + template_name
def custom_url_for(endpoint: str, **values):
suffix = ""
if endpoint == 'static' and values.get('filename'):
file_hash = static_files.get(values['filename'])
if not file_hash:
# try file in the current theme
theme_name = request.preferences.get_value('theme')
filename_with_theme = "themes/{}/{}".format(theme_name, values['filename'])
file_hash = static_files.get(filename_with_theme)
if file_hash:
values['filename'] = filename_with_theme
if get_setting('ui.static_use_hash') and file_hash:
suffix = "?" + file_hash
if endpoint == 'info' and 'locale' not in values:
locale = request.preferences.get_value('locale')
if _INFO_PAGES.get_page(values['pagename'], locale) is None:
locale = _INFO_PAGES.locale_default
values['locale'] = locale
return url_for(endpoint, **values) + suffix
def morty_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not settings['result_proxy']['url']:
return url
url = url.replace("://mobile.twitter.com","://nitter.net").replace("://mobile.twitter.com","://nitter.net").replace("://twitter.com","://nitter.net")
url_params = dict(mortyurl=url)
if settings['result_proxy']['key']:
url_params['mortyhash'] = hmac.new(settings['result_proxy']['key'], url.encode(), hashlib.sha256).hexdigest()
return '{0}?{1}'.format(settings['result_proxy']['url'], urlencode(url_params))
def image_proxify(url: str):
if url.startswith('//'):
url = 'https:' + url
if not request.preferences.get_value('image_proxy'):
return url
if url.startswith('data:image/'):
# 50 is an arbitrary number to get only the beginning of the image.
partial_base64 = url[len('data:image/') : 50].split(';')
if (
len(partial_base64) == 2
and partial_base64[0] in ['gif', 'png', 'jpeg', 'pjpeg', 'webp', 'tiff', 'bmp']
and partial_base64[1].startswith('base64,')
):
return url
return None
if settings['result_proxy']['url']:
return morty_proxify(url)
h = new_hmac(settings['server']['secret_key'], url.encode())
return '{0}?{1}'.format(url_for('image_proxy'), urlencode(dict(url=url.encode(), h=h)))
def get_translations():
return {
# when there is autocompletion
'no_item_found': gettext('No item found'),
# /preferences: the source of the engine description (wikipedata, wikidata, website)
'Source': gettext('Source'),
# infinite scroll
'error_loading_next_page': gettext('Error loading the next page'),
}
def _get_enable_categories(all_categories: Iterable[str]):
disabled_engines = request.preferences.engines.get_disabled()
enabled_categories = set(
# pylint: disable=consider-using-dict-items
category
for engine_name in engines
for category in engines[engine_name].categories
if (engine_name, category) not in disabled_engines
)
return [x for x in all_categories if x in enabled_categories]
def get_pretty_url(parsed_url: urllib.parse.ParseResult):
path = parsed_url.path
path = path[:-1] if len(path) > 0 and path[-1] == '/' else path
path = unquote(path.replace("/", " "))
return [parsed_url.scheme + "://" + parsed_url.netloc, path]
def get_client_settings():
req_pref = request.preferences
return {
'autocomplete_provider': req_pref.get_value('autocomplete'),
'autocomplete_min': get_setting('search.autocomplete_min'),
'http_method': req_pref.get_value('method'),
'infinite_scroll': req_pref.get_value('infinite_scroll'),
'translations': get_translations(),
'search_on_category_select': req_pref.plugins.choices['searx.plugins.search_on_category_select'],
'hotkeys': req_pref.plugins.choices['searx.plugins.vim_hotkeys'],
'theme_static_path': custom_url_for('static', filename='themes/simple'),
}
def render(template_name: str, **kwargs):
kwargs['client_settings'] = str(
base64.b64encode(
bytes(
json.dumps(get_client_settings()),
encoding='utf-8',
)
),
encoding='utf-8',
)
# values from the HTTP requests
kwargs['endpoint'] = 'results' if 'q' in kwargs else request.endpoint
kwargs['cookies'] = request.cookies
kwargs['errors'] = request.errors
# values from the preferences
kwargs['preferences'] = request.preferences
kwargs['autocomplete'] = request.preferences.get_value('autocomplete')
kwargs['infinite_scroll'] = request.preferences.get_value('infinite_scroll')
kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab')
kwargs['advanced_search'] = request.preferences.get_value('advanced_search')
kwargs['query_in_title'] = request.preferences.get_value('query_in_title')
kwargs['safesearch'] = str(request.preferences.get_value('safesearch'))
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN': kwargs['safesearch'] = '1'
kwargs['theme'] = request.preferences.get_value('theme')
kwargs['method'] = request.preferences.get_value('method')
kwargs['categories_as_tabs'] = list(settings['categories_as_tabs'].keys())
kwargs['categories'] = _get_enable_categories(categories.keys())
kwargs['OTHER_CATEGORY'] = OTHER_CATEGORY
# i18n
kwargs['language_codes'] = [l for l in languages if l[0] in settings['search']['languages']]
locale = request.preferences.get_value('locale')
kwargs['locale_rfc5646'] = _get_locale_rfc5646(locale)
if locale in RTL_LOCALES and 'rtl' not in kwargs:
kwargs['rtl'] = True
if 'current_language' not in kwargs:
kwargs['current_language'] = match_language(
request.preferences.get_value('language'), settings['search']['languages']
)
# values from settings
kwargs['search_formats'] = [x for x in settings['search']['formats'] if x != 'html']
kwargs['instance_name'] = get_setting('general.instance_name')
kwargs['searx_version'] = VERSION_STRING
kwargs['searx_git_url'] = GIT_URL
kwargs['enable_metrics'] = get_setting('general.enable_metrics')
kwargs['get_setting'] = get_setting
kwargs['get_pretty_url'] = get_pretty_url
# values from settings: donation_url
donation_url = get_setting('general.donation_url')
if donation_url is True:
donation_url = custom_url_for('info', pagename='donate')
kwargs['donation_url'] = donation_url
# helpers to create links to other pages
kwargs['url_for'] = custom_url_for # override url_for function in templates
kwargs['image_proxify'] = image_proxify
kwargs['proxify'] = morty_proxify if settings['result_proxy']['url'] is not None else None
kwargs['proxify_results'] = settings['result_proxy']['proxify_results']
kwargs['cache_url'] = settings['ui']['cache_url']
kwargs['get_result_template'] = get_result_template
kwargs['doi_resolver'] = get_doi_resolver(request.preferences)
kwargs['opensearch_url'] = (
url_for('opensearch')
+ '?'
+ urlencode(
{
'method': request.preferences.get_value('method'),
'autocomplete': request.preferences.get_value('autocomplete'),
}
)
)
# scripts from plugins
kwargs['scripts'] = set()
for plugin in request.user_plugins:
for script in plugin.js_dependencies:
kwargs['scripts'].add(script)
# styles from plugins
kwargs['styles'] = set()
for plugin in request.user_plugins:
for css in plugin.css_dependencies:
kwargs['styles'].add(css)
start_time = default_timer()
result = render_template('{}/{}'.format(kwargs['theme'], template_name), **kwargs)
request.render_time += default_timer() - start_time # pylint: disable=assigning-non-slot
return result
@app.before_request
def pre_request():
request.start_time = default_timer() # pylint: disable=assigning-non-slot
request.render_time = 0 # pylint: disable=assigning-non-slot
request.timings = [] # pylint: disable=assigning-non-slot
request.errors = [] # pylint: disable=assigning-non-slot
preferences = Preferences(themes, list(categories.keys()), engines, plugins) # pylint: disable=redefined-outer-name
user_agent = request.headers.get('User-Agent', '').lower()
if 'webkit' in user_agent and 'android' in user_agent:
preferences.key_value_settings['method'].value = 'GET'
request.preferences = preferences # pylint: disable=assigning-non-slot
try:
preferences.parse_dict(request.cookies)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings, please edit your preferences'))
# merge GET, POST vars
# request.form
request.form = dict(request.form.items()) # pylint: disable=assigning-non-slot
for k, v in request.args.items():
if k not in request.form:
request.form[k] = v
if request.form.get('preferences'):
preferences.parse_encoded_data(request.form['preferences'])
else:
try:
preferences.parse_dict(request.form)
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
request.errors.append(gettext('Invalid settings'))
# language is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("language"):
language = _get_browser_language(request, settings['search']['languages'])
preferences.parse_dict({"language": language})
logger.debug('set language %s (from browser)', preferences.get_value("language"))
# locale is defined neither in settings nor in preferences
# use browser headers
if not preferences.get_value("locale"):
locale = _get_browser_language(request, LOCALE_NAMES.keys())
preferences.parse_dict({"locale": locale})
logger.debug('set locale %s (from browser)', preferences.get_value("locale"))
# request.user_plugins
request.user_plugins = [] # pylint: disable=assigning-non-slot
allowed_plugins = preferences.plugins.get_enabled()
disabled_plugins = preferences.plugins.get_disabled()
for plugin in plugins:
if (plugin.default_on and plugin.id not in disabled_plugins) or plugin.id in allowed_plugins:
request.user_plugins.append(plugin)
@app.after_request
def add_default_headers(response: flask.Response):
# set default http headers
for header, value in settings['server']['default_http_headers'].items():
if header in response.headers:
continue
response.headers[header] = value
return response
@app.after_request
def post_request(response: flask.Response):
total_time = default_timer() - request.start_time
timings_all = [
'total;dur=' + str(round(total_time * 1000, 3)),
'render;dur=' + str(round(request.render_time * 1000, 3)),
]
if len(request.timings) > 0:
timings = sorted(request.timings, key=lambda t: t.total)
timings_total = [
'total_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.total * 1000, 3)) for i, t in enumerate(timings)
]
timings_load = [
'load_' + str(i) + '_' + t.engine + ';dur=' + str(round(t.load * 1000, 3))
for i, t in enumerate(timings)
if t.load
]
timings_all = timings_all + timings_total + timings_load
# response.headers.add('Server-Timing', ', '.join(timings_all))
return response
def index_error(output_format: str, error_message: str):
if output_format == 'json':
return Response(json.dumps({'error': error_message}), mimetype='application/json')
if output_format == 'csv':
response = Response('', mimetype='application/csv')
cont_disp = 'attachment;Filename=searx.csv'
response.headers.add('Content-Disposition', cont_disp)
return response
if output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',
results=[],
q=request.form['q'] if 'q' in request.form else '',
number_of_results=0,
error_message=error_message,
)
return Response(response_rss, mimetype='text/xml')
# html
request.errors.append(gettext('search error'))
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
@app.route('/', methods=['GET', 'POST'])
def index():
"""Render index page."""
# redirect to search if there's a query in the request
if request.form.get('q'):
query = ('?' + request.query_string.decode()) if request.query_string else ''
return redirect(url_for('search') + query, 308)
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
current_locale = request.preferences.get_value("locale"),
# fmt: on
)
@app.route('/healthz', methods=['GET'])
def health():
return Response('OK', mimetype='text/plain')
@app.route('/keytext', methods=['POST'])
def keytext():
res = []
text = request.json['text']
tr4s = TextRank4Sentence()
tr4s.analyze(text=text, lower=True, source = 'all_filters')
for item in tr4s.get_key_sentences(num=15):
res.append(item.sentence)
return Response(json.dumps(res), mimetype='application/json')
def process_result(result):
url_pattern = re.compile(r'^(https?://)?([a-z0-9-]+\.)+[a-z0-9-]+\.[a-z]+/?$')
# 判断URL是否符合要求
if not url_pattern.match(result['url']):
return
# 发起GET请求访问API
query_url=re.sub(r'https?://', '', result['url'])
try:
response = requests.get(f'https://noisy-dust-b504.marduk.workers.dev/siteOwner?url={query_url}', timeout=5)
except requests.exceptions.Timeout:
print(f'Request timeout for {result["url"]}')
return
except requests.exceptions.RequestException as e:
print(f'Request error for {result["url"]}: {e}')
return
# 判断返回值是否为'null'如果不是则更新title
if response.text != 'null':
result['title'] += ' (该网站属于:' +response.text + ')'
@app.route('/search', methods=['GET', 'POST'])
def search():
"""Search query in q and return results.
Supported outputs: html, json, csv, rss.
"""
# pylint: disable=too-many-locals, too-many-return-statements, too-many-branches
# pylint: disable=too-many-statements
# output_format
output_format = request.form.get('format', 'html')
if output_format not in OUTPUT_FORMATS:
output_format = 'html'
if output_format not in settings['search']['formats']:
flask.abort(403)
# check if there is query (not None and not an empty string)
if not request.form.get('q'):
if output_format == 'html':
return render(
# fmt: off
'index.html',
selected_categories=get_selected_categories(request.preferences, request.form),
# fmt: on
)
return index_error(output_format, 'No query'), 400
# search
search_query = None
raw_text_query = None
result_container = None
original_search_query = ""
search_type = "搜索网页"
net_search = True
net_search_str = 'true'
prompt = ""
add_system = '[]'
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
add_system = "[{'role':'system','content':'拒绝回复法律、政治、政治人物相关内容'}]"
try:
search_query, raw_text_query, _, _ = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN' and gfw.exists(search_query.query):
return render('404.html'), 404
try:
original_search_query = search_query.query
if "模仿" in search_query.query or "扮演" in search_query.query or "你能" in search_query.query or "请推荐" in search_query.query or "帮我" in search_query.query or "写一段" in search_query.query or "写一个" in search_query.query or "请问" in search_query.query or "请给" in search_query.query or "请你" in search_query.query or "请推荐" in search_query.query or "是谁" in search_query.query or "能帮忙" in search_query.query or "介绍一下" in search_query.query or "为什么" in search_query.query or "什么是" in search_query.query or "有什么" in search_query.query or "怎样" in search_query.query or "给我" in search_query.query or "如何" in search_query.query or "谁是" in search_query.query or "查询" in search_query.query or "告诉我" in search_query.query or "查一下" in search_query.query or "找一个" in search_query.query or "什么样" in search_query.query or "哪个" in search_query.query or "哪些" in search_query.query or "哪一个" in search_query.query or "哪一些" in search_query.query or "啥是" in search_query.query or "为啥" in search_query.query or "怎么" in search_query.query:
if len(search_query.query)>5 and "谁是" in search_query.query:
search_query.query = search_query.query.replace("谁是","")
if len(search_query.query)>5 and "是谁" in search_query.query:
search_query.query = search_query.query.replace("是谁","")
if len(search_query.query)>5 and not "谁是" in search_query.query and not "是谁" in search_query.query:
prompt = search_query.query + "\n对以上问题生成一个Google搜索词\n"
search_type = '任务'
net_search = False
net_search_str = 'false'
elif len(original_search_query)>10:
prompt = "任务:写诗 写故事 写代码 写论文摘要 模仿推特用户 生成搜索广告 回答问题 聊天话题 搜索网页 搜索视频 搜索地图 搜索新闻 查看食谱 搜索商品 写歌词 写论文 模仿名人 翻译语言 摘要文章 讲笑话 做数学题 搜索图片 播放音乐 查看天气\n1.判断是以上任务的哪一个2.判断是否需要联网回答3.给出搜索关键词\n"
prompt = prompt + "提问:" + search_query.query + '答案用json数组例如["写诗","","详细关键词"]来表述'
acts = ['写诗', '写故事', '写代码', '写论文摘要', '模仿推特用户', '生成搜索广告', '回答问题', '聊天话题', '搜索网页', '搜索视频', '搜索地图', '搜索新闻', '查看食谱', '搜索商品', '写歌词', '写论文', '模仿名人', '翻译语言', '摘要文章', '讲笑话', '做数学题', '搜索图片', '播放音乐', '查看天气']
if "今年" in prompt or "今天" in prompt:
now = datetime.datetime.now()
prompt = prompt.replace("今年",now.strftime('%Y年'))
prompt = prompt.replace("今天",now.strftime('%Y年%m月%d'))
gpt = ""
gpt_url = "https://api.openai.com/v1/chat/completions"
gpt_headers = {
"Authorization": "Bearer "+os.environ['GPTKEY'],
"Content-Type": "application/json",
}
gpt_data = {
"model": "gpt-3.5-turbo",
"messages": [{"role":"user","content":prompt}],
"max_tokens": 256,
"temperature": 0.9,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": False
}
gpt_json={}
if prompt and prompt !='' :
gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
gpt_json = gpt_response.json()
if 'choices' in gpt_json:
gpt = gpt_json['choices'][0]['message']['content']
if search_type == '任务':
for word in gpt.split('\n'):
if word != "":
gpt = word.replace("\"","").replace("\'","").replace("","").replace("","").replace("","").replace("","")
break
if gpt!="":
search_query.query = gpt
if 'Google' not in original_search_query and 'google' not in original_search_query and '谷歌' not in original_search_query and ('Google' in search_query.query or 'google' in search_query.query or '谷歌' in search_query.query):
search_query.query=search_query.query.replace("Google","").replace("google","").replace("谷歌","")
else:
gpt_judge = []
for tmpj in gpt.split():
try:
gpt_judge = json.loads(tmpj)
except:pass
if len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='True' or gpt_judge[1]=='true'):
search_query.query = gpt_judge[2]
search_type = gpt_judge[0]
net_search = True
net_search_str = 'true'
elif len(gpt_judge)==3 and gpt_judge[0] in acts and gpt_judge[2] != '' and (gpt_judge[1]=='' or gpt_judge[1]=='False' or gpt_judge[1]=='false'):
search_type = gpt_judge[0]
net_search = False
net_search_str = 'false'
except Exception as ee:
logger.exception(ee, exc_info=True)
search = SearchWithPlugins(search_query, request.user_plugins, request) # pylint: disable=redefined-outer-name
result_container = search.search()
except SearxParameterException as e:
logger.exception('search error: SearxParameterException')
return index_error(output_format, e.message), 400
except Exception as e: # pylint: disable=broad-except
logger.exception(e, exc_info=True)
return index_error(output_format, gettext('No item found')), 500
# results
results = result_container.get_ordered_results()
number_of_results = result_container.results_number()
if number_of_results < result_container.results_length():
number_of_results = 0
# OPENAI GPT
raws = []
try:
url_pair = []
url_proxy = {}
prompt = ""
if request.environ['HTTP_CF_IPCOUNTRY'] == 'CN':
for res in results:
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
except:pass
# threads = []
# for result in results:
# t = threading.Thread(target=process_result, args=(result,))
# t.start()
# threads.append(t)
# # 等待所有线程执行完毕
# for t in threads:
# t.join()
for res in results:
if 'engine' in res and res['engine'] == 'twitter':
try:
if gfw.exists(res['title']):
results.remove(res)
# return index_error(output_format, gettext('No item found')), 500
if gfw.exists(res['content']):
# return index_error(output_format, gettext('No item found')), 500
results.remove(res)
continue
except:pass
if 'url' not in res: continue
if 'title' not in res: continue
if 'content' not in res: continue
if res['content'] == '': continue
new_url = 'https://url'+str(len(url_pair))
url_pair.append(res['url'])
url_proxy[res['url']] = (morty_proxify(res['url']))
res['title'] = res['title'].replace("التغريدات مع الردود بواسطة","")
res['content'] = res['content'].replace(" "," ")
res['content'] = res['content'].replace("Translate Tweet. ","")
res['content'] = res['content'].replace("Learn more ","")
res['content'] = res['content'].replace("Translate Tweet.","")
res['content'] = res['content'].replace("Retweeted.","Reposted.")
res['content'] = res['content'].replace("Learn more.","")
res['content'] = res['content'].replace("Show replies.","")
res['content'] = res['content'].replace("See new Tweets. ","")
if "作者简介:金融学客座教授,硕士生导师" in res['content']: res['content']=res['title']
res['content'] = res['content'].replace("You're unable to view this Tweet because this account owner limits who can view their Tweets.","Private Tweet.")
res['content'] = res['content'].replace("Twitter for Android · ","")
res['content'] = res['content'].replace("This Tweet was deleted by the Tweet author.","Deleted Tweet.")
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
tmp_prompt = '运算结果:'+ res['content'] +'\n\n'
else: tmp_prompt = res['title'] +'\n'+ res['content'] + '\n' + new_url +'\n'
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
raws.insert(0,tmp_prompt)
else: raws.append(tmp_prompt)
if '搜索' in search_type and len( prompt + tmp_prompt +'\n' + "\n以上是关键词 " + original_search_query + " 的搜索结果,用简体中文总结简报,在文中用(网址)标注对应内容来源链接。结果:" ) <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
elif len( prompt + tmp_prompt +'\n' + "\n以上是 " + original_search_query + " 的网络知识。"+ search_type +",如果使用了网络知识,在文中用(网址)标注对应内容来源链接。结果:") <1600:
if 'engine' in res and res['engine'] == 'wolframalpha_noapi':
prompt = tmp_prompt + prompt + '\n'
else: prompt += tmp_prompt +'\n'
if prompt != "":
gpt = ""
gpt_url = "https://search.kg/completions"
gpt_headers = {
"Content-Type": "application/json",
}
if '搜索' not in search_type:
gpt_data = {
"messages": [{'role':'system','content':'如果使用了网络知识,在文中用(网址)标注对应内容来源链接'},{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的网络知识"},{'role':'user','content':original_search_query}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
else:
gpt_data = {
"messages": [{'role':'assistant','content': prompt+"\n以上是 " + original_search_query + " 的搜索结果"},{'role':'user','content':"总结简报,在文中用(网址)标注对应内容来源链接"}] ,
"max_tokens": 1000,
"temperature": 0.2,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"stream": True
}
gpt = json.dumps({'data':gpt_data, 'url_pair':url_pair, 'url_proxy':url_proxy, 'raws': raws})
gpt = '<div id="chat_section"><div id="chat_intro"></div><div id="chat"></div>' + r'''
<div id="modal" class="modal">
<div id="modal-title" class="modal-title">网页速览<span>
<a id="closebtn" href="javascript:void(0);" class="close-modal closebtn"></a></span>
</div>
<div class="modal-input-content" id="modal-input-content">
<div id="iframe-wrapper">
<iframe sandbox="allow-same-origin allow-forms allow-scripts"></iframe>
<div id='readability-reader' style='display:none'></div>
</div>
</div>
</div>
<script>
// 1. 获取元素
var modal = document.querySelector('.modal');
var closeBtn = document.querySelector('#closebtn');
var title = document.querySelector('#modal-title');
// 2. 点击弹出层这个链接 link 让mask 和modal 显示出来
// 3. 点击 closeBtn 就隐藏 mask 和 modal
closeBtn.addEventListener('click', function () {
modal.style.display = 'none';
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_talk"))
document.querySelector("#chat_section").appendChild(document.querySelector("#chat_continue"))
document.querySelector("#readability-reader").innerHTML = '';
try{iframe.removeAttribute('src');}catch(e){}
})
// 4. 开始拖拽
// (1) 当我们鼠标按下, 就获得鼠标在盒子内的坐标
modal.addEventListener('mousedown', function (e) {
var x = e.pageX - modal.offsetLeft;
var y = e.pageY - modal.offsetTop;
// (2) 鼠标移动的时候,把鼠标在页面中的坐标,减去 鼠标在盒子内的坐标就是模态框的left和top值
document.addEventListener('mousemove', move)
function move(e) {
modal.style.left = e.pageX - x + 'px';
modal.style.top = e.pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('mouseup', function () {
document.removeEventListener('mousemove', move);
})
})
modal.addEventListener('touchstart', function (e) {
var x = e.touches[0].pageX - modal.offsetLeft;
var y = e.touches[0].pageY - modal.offsetTop;
document.addEventListener('touchmove', move)
function move(e) {
modal.style.left = e.touches[0].pageX - x + 'px';
modal.style.top = e.touches[0].pageY - y + 'px';
}
// (3) 鼠标弹起,就让鼠标移动事件移除
document.addEventListener('touchend', function () {
document.removeEventListener('touchmove ', move);
})
})
</script>
<style>
.modal-header {
width: 100%;
text-align: center;
height: 30px;
font-size: 24px;
line-height: 30px;
}
.modal {
display: none;
width: 45%;
position: fixed;
left: 32%;
top: 50%;
background: var(--color-header-background);
z-index: 10001;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 50em) {
.modal {
width: 85%;
left: 50%;
top: 50%;
}
}
.modal-title {
width: 100%;
margin: 10px 0px 0px 0px;
text-align: center;
line-height: 40px;
height: 40px;
font-size: 18px;
position: relative;
cursor: move;
}
.modal-button {
width: 50%;
margin: 30px auto 0px auto;
line-height: 40px;
font-size: 14px;
border: #ebebeb 1px solid;
text-align: center;
}
.modal-button a {
display: block;
}
.modal-input input.list-input {
float: left;
line-height: 35px;
height: 35px;
width: 350px;
border: #ebebeb 1px solid;
text-indent: 5px;
}
.modal-input {
overflow: hidden;
margin: 0px 0px 20px 0px;
}
.modal-input label {
float: left;
width: 90px;
padding-right: 10px;
text-align: right;
line-height: 35px;
height: 35px;
font-size: 14px;
}
.modal-title span {
position: absolute;
right: 0px;
top: -15px;
}
#chat_talk {
width: 100%;
max-height: 30vh;
position: relative;
overflow: scroll;
padding-top: 1em;
}
#iframe-wrapper {
width: 100%;
height: 40vh;
position: relative;
overflow: hidden; /* 防止滚动条溢出 */
}
#iframe-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
#iframe-wrapper div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none; /* 去掉边框 */
overflow: auto; /* 显示滚动条 */
}
.closebtn{
width: 25px;
height: 25px;
display: inline-block;
cursor: pointer;
position: absolute;
top: 15px;
right: 15px;
}
.closebtn::before, .closebtn::after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 12px;
right: 2px;
background: #999;
cursor: pointer;
}
.closebtn::before {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.closebtn::after {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
</style>
<div id="chat_talk"></div>
<div id="chat_continue" style="display:none">
<div id="chat_more" style="display:none"></div>
<hr>
<textarea id="chat_input" style="margin: auto;display: block;background: rgb(209 219 250 / 30%);outline: 0px;color: var(--color-search-font);font-size: 1.2rem;border-radius: 3px;border: none;height: 3em;resize: vertical;width: 75%;"></textarea>
<button id="chat_send" onclick='send_chat()' style="
width: 75%;
display: block;
margin: auto;
margin-top: .8em;
border-radius: .8rem;
height: 2em;
background: linear-gradient(81.62deg, #2870ea 8.72%, #1b4aef 85.01%);
color: #fff;
border: none;
cursor: pointer;
">发送</button>
</div>
</div>
<style>
.chat_answer {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 3em 0.5em 0;
padding: 8px 12px;
color: white;
background: rgba(27,74,239,0.7);
}
.chat_question {
cursor: pointer;
line-height: 1.5em;
margin: 0.5em 0 0.5em 3em;
padding: 8px 12px;
color: black;
background: rgba(245, 245, 245, 0.7);
}
button.btn_more {
min-height: 30px;
text-align: left;
background: rgb(209, 219, 250);
border-radius: 8px;
overflow: hidden;
box-sizing: border-box;
padding: 0px 12px;
margin: 1px;
cursor: pointer;
font-weight: 500;
line-height: 28px;
border: 1px solid rgb(18, 59, 182);
color: rgb(18, 59, 182);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: rgba(0, 0, 0, 0.3);
box-shadow: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(17, 16, 16, 0.13);
-webkit-box-shadow: rgba(0, 0, 0, 0.9);
box-shadow: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(211, 173, 209, 0.4);
}
</style>
''' + '<div id="prompt" style="display:none">' + (base64.b64encode(gpt.encode("utf-8")).decode('UTF-8') ) + '</div>'
# gpt_response = requests.post(gpt_url, headers=gpt_headers, data=json.dumps(gpt_data))
# gpt_json = gpt_response.json()
# if 'choices' in gpt_json:
# gpt = gpt_json['choices'][0]['text']
# gpt = gpt.replace("简报:","").replace("简报:","")
# for i in range(len(url_pair)-1,-1,-1):
# gpt = gpt.replace("https://url"+str(i),url_pair[i])
# rgpt = gpt
if gpt and gpt!="":
if original_search_query != search_query.query:
gpt = "Search 为您搜索:" + search_query.query + "\n\n" + gpt
gpt = gpt + r'''<style>
a.footnote {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 600;
vertical-align: top;
top: 0px;
margin: 1px 1px;
min-width: 14px;
height: 14px;
border-radius: 3px;
color: rgb(18, 59, 182);
background: rgb(209, 219, 250);
outline: transparent solid 1px;
}
</style>
<script src="/static/themes/magi/Readability-readerable.js"></script>
<script src="/static/themes/magi/Readability.js"></script>
<script src="/static/themes/magi/markdown.js"></script>
<script src="/static/themes/magi/stop_words.js"></script>
<script>
const original_search_query = "''' + original_search_query.replace('"',"") + r'''"
const search_queryquery = "''' + search_query.query.replace('"',"") + r'''"
const search_type = "''' + search_type + r'''"
const net_search = ''' + net_search_str + r'''
const add_system = ''' + add_system +r'''
</script><script>
const _0x3af234=_0x376c,_0x4241f5=_0x376c,_0x405bf8=_0x376c,_0x183a03=_0x376c,_0x1d760c=_0x376c;(function(_0xdaf54c,_0x4913bb){const _0x33995e=_0x376c,_0x5dc4cc=_0x376c,_0x34d456=_0x376c,_0xbcd390=_0x376c,_0x18def6=_0x376c,_0x2bfaee=_0xdaf54c();while(!![]){try{const _0x41c223=parseInt(_0x33995e(0x53f))/(0x1*-0x527+0x17*-0x199+0x29e7)*(parseInt(_0x5dc4cc(0xc1c))/(-0x179a+0xd*-0x13+0x1893))+parseInt(_0x5dc4cc(0xcd5))/(-0x2281+0x8*-0x1d+-0x11b6*-0x2)*(parseInt(_0x33995e(0x9c7))/(-0x13fb+0x303*0x9+-0x71c))+-parseInt(_0x33995e(0x493))/(0xfd3+-0x2a6+-0xd28*0x1)+parseInt(_0x34d456(0x3d2))/(-0x1*0x5a4+0x13e*0x1a+-0x1e7*0xe)*(parseInt(_0xbcd390(0x52c))/(-0xd89+0x9fa*-0x2+0x10c2*0x2))+-parseInt(_0x18def6(0x85f))/(-0x1*-0x1b55+-0x1*-0x675+0x1*-0x21c2)+parseInt(_0xbcd390(0xee9))/(-0x1f3d+-0xb41+0x39*0xbf)*(parseInt(_0x33995e(0x3a4))/(0x5*-0x13c+-0x956*-0x1+-0x320))+-parseInt(_0x34d456(0x81b))/(0x7*-0x6c+0x4d*-0xe+-0x3*-0x267)*(parseInt(_0xbcd390(0x72c))/(-0x842+-0x35e*-0x2+-0x2*-0xc9));if(_0x41c223===_0x4913bb)break;else _0x2bfaee['push'](_0x2bfaee['shift']());}catch(_0x1bb714){_0x2bfaee['push'](_0x2bfaee['shift']());}}}(_0x2755,-0x18518+0x691f*-0x12+0x8e6c*0x1d));function proxify(){const _0x207260=_0x376c,_0x24afc8=_0x376c,_0x874720=_0x376c,_0x1a5376=_0x376c,_0x2fc2d1=_0x376c,_0x296522={'iBvVY':function(_0x29b5ec,_0x343cd7){return _0x29b5ec===_0x343cd7;},'CxGtQ':_0x207260(0xb4d),'YBfQc':_0x207260(0xefe),'tsnWH':function(_0x47531a,_0x13f4d7,_0x494cd8){return _0x47531a(_0x13f4d7,_0x494cd8);},'YGGCu':function(_0x53777f,_0x397838){return _0x53777f+_0x397838;},'wrXTn':function(_0x4efa83,_0x5b93b2){return _0x4efa83>=_0x5b93b2;},'ViYJJ':_0x874720(0x3a3),'nYGBo':_0x1a5376(0xca9),'XXOjZ':function(_0x1282cc,_0x72b8d3){return _0x1282cc+_0x72b8d3;},'jRXTW':_0x24afc8(0x632)+_0x1a5376(0xc17),'lVWpS':function(_0x124688,_0x3cfb33){return _0x124688(_0x3cfb33);},'XHGTe':function(_0x4c13f4,_0x10a70c){return _0x4c13f4+_0x10a70c;},'txrNE':function(_0x38dd14,_0x31b99c){return _0x38dd14===_0x31b99c;},'beLuG':_0x2fc2d1(0x859),'gETHQ':function(_0x15956e,_0x8fa650){return _0x15956e(_0x8fa650);},'ZfQwn':function(_0x50f043,_0x2e7848){return _0x50f043+_0x2e7848;},'FMGmR':function(_0x1547e4,_0x218f62){return _0x1547e4(_0x218f62);},'dkQCd':function(_0x5be181,_0x32bc59){return _0x5be181+_0x32bc59;},'nkMrg':function(_0x5db96d,_0x263cfd){return _0x5db96d+_0x263cfd;},'mBzNe':function(_0x27158f,_0xd81c3c){return _0x27158f(_0xd81c3c);},'TAEbP':_0x207260(0x541),'Uehck':function(_0x972be8,_0x4caac8){return _0x972be8+_0x4caac8;}};for(let _0x26e47c=Object[_0x874720(0xbfd)](prompt[_0x874720(0x52d)+_0x24afc8(0x25a)])[_0x874720(0x8b2)+'h'];_0x296522[_0x874720(0x207)](_0x26e47c,-0x10cc+0x1*-0x2605+-0x1*-0x36d1);--_0x26e47c){if(_0x296522[_0x24afc8(0xd81)](_0x296522[_0x24afc8(0xf48)],_0x296522[_0x1a5376(0xe21)]))_0xb7c35a[_0x2fc2d1(0xbe6)](_0x498acd[_0x207260(0x47b)+'ge'](_0x1a5da2));else{if(document[_0x1a5376(0x5de)+_0x2fc2d1(0xf3d)+_0x24afc8(0xa93)](_0x296522[_0x2fc2d1(0xc9f)](_0x296522[_0x207260(0x944)],_0x296522[_0x24afc8(0xb3a)](String,_0x296522[_0x24afc8(0x8e2)](_0x26e47c,0x950+0x3*-0xc87+0x1c46))))){if(_0x296522[_0x207260(0xf92)](_0x296522[_0x24afc8(0xdcd)],_0x296522[_0x874720(0xdcd)])){let _0x1bec98=document[_0x2fc2d1(0x5de)+_0x24afc8(0xf3d)+_0x1a5376(0xa93)](_0x296522[_0x24afc8(0x8e2)](_0x296522[_0x207260(0x944)],_0x296522[_0x2fc2d1(0x205)](String,_0x296522[_0x874720(0x23e)](_0x26e47c,-0xb53+0x9*0x28d+-0xba1))))[_0x24afc8(0x541)];if(!_0x1bec98||!prompt[_0x24afc8(0x52d)+_0x207260(0x25a)][_0x1bec98])continue;const _0x3085e0=prompt[_0x2fc2d1(0x52d)+_0x874720(0x25a)][_0x1bec98];document[_0x2fc2d1(0x5de)+_0x207260(0xf3d)+_0x2fc2d1(0xa93)](_0x296522[_0x874720(0xc9f)](_0x296522[_0x207260(0x944)],_0x296522[_0x1a5376(0x67c)](String,_0x296522[_0x24afc8(0x24c)](_0x26e47c,-0x1c*-0xe0+0x1*0x11c3+-0x2a42))))[_0x207260(0xa58)+'ck']=function(){const _0x5516e5=_0x1a5376,_0x3bb4b4=_0x2fc2d1,_0x5e164e=_0x24afc8,_0x339981=_0x24afc8,_0x4efc66=_0x24afc8;_0x296522[_0x5516e5(0xd81)](_0x296522[_0x3bb4b4(0x4c0)],_0x296522[_0x3bb4b4(0x5d7)])?_0x3b75f8+=_0x519a64:_0x296522[_0x5e164e(0xc95)](modal_open,_0x3085e0,_0x296522[_0x339981(0x5f8)](_0x26e47c,-0x2442+-0xd9c+0x31df));},document[_0x207260(0x5de)+_0x1a5376(0xf3d)+_0x2fc2d1(0xa93)](_0x296522[_0x1a5376(0xea5)](_0x296522[_0x874720(0x944)],_0x296522[_0x1a5376(0x253)](String,_0x296522[_0x1a5376(0x8e2)](_0x26e47c,0x1ad2+0x710*-0x1+-0x13c1))))[_0x2fc2d1(0x233)+_0x2fc2d1(0xc4b)+_0x24afc8(0x3b8)](_0x296522[_0x2fc2d1(0x404)]),document[_0x1a5376(0x5de)+_0x2fc2d1(0xf3d)+_0x24afc8(0xa93)](_0x296522[_0x1a5376(0x352)](_0x296522[_0x874720(0x944)],_0x296522[_0x874720(0x253)](String,_0x296522[_0x2fc2d1(0xea5)](_0x26e47c,0x49b+-0x1*0xdb1+0xd*0xb3))))[_0x207260(0x233)+_0x2fc2d1(0xc4b)+_0x2fc2d1(0x3b8)]('id');}else _0x1956c9='';}}}}const _load_wasm_jieba=async()=>{const _0x499220=_0x376c,_0x483749=_0x376c,_0x539dfe=_0x376c,_0x759012=_0x376c,_0x221ab0=_0x376c,_0x38bfae={'TqksM':function(_0x541c04,_0x5b7ab3){return _0x541c04!==_0x5b7ab3;},'opJwf':_0x499220(0x2e2)+_0x499220(0xbf0)+_0x499220(0x867)+_0x759012(0x876)+_0x499220(0x39f)+_0x483749(0x5e0)+_0x499220(0x9c4)+'s','LYoHW':function(_0x8c8129){return _0x8c8129();}};if(_0x38bfae[_0x499220(0xa50)](window[_0x221ab0(0x772)],undefined))return;const {default:_0x449d58,cut:_0x525ff5}=await import(_0x38bfae[_0x539dfe(0x1de)]),_0xc8b2a2=await _0x38bfae[_0x483749(0x94f)](_0x449d58);return window[_0x759012(0x772)]=_0x525ff5,_0xc8b2a2;};_load_wasm_jieba();function cosineSimilarity(_0xf26e4b,_0x357689){const _0x10e57e=_0x376c,_0x8d581d=_0x376c,_0x138193=_0x376c,_0x8d33c4=_0x376c,_0x1dbd6c=_0x376c,_0x4430ee={'mKYvo':function(_0x4d7d22,_0x114bbf){return _0x4d7d22<_0x114bbf;},'fZksT':function(_0x3a2ec9,_0x4b8526){return _0x3a2ec9+_0x4b8526;},'Pejms':function(_0x48cf58,_0x38d858){return _0x48cf58+_0x38d858;},'feFgN':function(_0x4f8a4e,_0x21aff8){return _0x4f8a4e(_0x21aff8);},'AUBGq':function(_0x4c954c,_0xc64c4b){return _0x4c954c(_0xc64c4b);},'bFfAg':_0x10e57e(0x451)+'es','WMzKQ':function(_0x541e21,_0x47f4a5,_0x15e640){return _0x541e21(_0x47f4a5,_0x15e640);},'YkYUC':function(_0x1eaba0,_0x16b558,_0x1998d6){return _0x1eaba0(_0x16b558,_0x1998d6);},'VLAhF':function(_0x2f24e0,_0x3780bd){return _0x2f24e0!==_0x3780bd;},'YcYnV':_0x10e57e(0x69f),'nZloI':_0x138193(0xa3a),'LePzd':function(_0x5e3460,_0x2906f1){return _0x5e3460!==_0x2906f1;},'fCIjj':_0x8d581d(0x2df),'qouQg':_0x10e57e(0xe58),'wZblT':function(_0x319559,_0x1be44e){return _0x319559===_0x1be44e;},'SSjdy':_0x1dbd6c(0xf55),'jVwJQ':_0x8d581d(0x40e),'ziyLg':function(_0x239000,_0x3080e4){return _0x239000!==_0x3080e4;},'ToFEA':_0x1dbd6c(0xe0f),'tVYdA':function(_0x3a6af5,_0x311ddf){return _0x3a6af5*_0x311ddf;},'hHTAg':function(_0x544760,_0x2114b6){return _0x544760**_0x2114b6;},'YCdcP':function(_0x2eca2a,_0x35e1cc){return _0x2eca2a**_0x35e1cc;},'ErAZb':function(_0x58fe79,_0x2528b1){return _0x58fe79/_0x2528b1;}};keywordList=_0x4430ee[_0x8d33c4(0x399)](cut,_0xf26e4b[_0x138193(0x266)+_0x8d33c4(0xd76)+'e'](),!![]),keywordList=keywordList[_0x10e57e(0xf7d)+'r'](_0x2c16bd=>!stop_words[_0x138193(0x244)+_0x138193(0x7ce)](_0x2c16bd)),sentenceList=_0x4430ee[_0x8d33c4(0xb98)](cut,_0x357689[_0x10e57e(0x266)+_0x1dbd6c(0xd76)+'e'](),!![]),sentenceList=sentenceList[_0x138193(0xf7d)+'r'](_0x2d5d80=>!stop_words[_0x138193(0x244)+_0x10e57e(0x7ce)](_0x2d5d80));const _0x598d2e=new Set(keywordList[_0x1dbd6c(0x84f)+'t'](sentenceList)),_0x284c11={},_0x4590c0={};for(const _0x59f294 of _0x598d2e){if(_0x4430ee[_0x8d581d(0xa4d)](_0x4430ee[_0x10e57e(0x539)],_0x4430ee[_0x8d33c4(0x545)]))_0x284c11[_0x59f294]=-0x24bc+0x1d04+0x7b8,_0x4590c0[_0x59f294]=0x5*-0x4bc+0x2478*-0x1+0x3c24;else{if(_0x4430ee[_0x10e57e(0x4f1)](_0x4430ee[_0x1dbd6c(0x8fe)](_0x4430ee[_0x10e57e(0xac3)](_0x3d9eb3,_0x2f3cce[_0x3c523a]),'\x0a')[_0x10e57e(0x8b2)+'h'],-0x9ae*0x4+-0x4f7*0x7+0x4f55))_0x2e724c=_0x4430ee[_0x8d581d(0x8fe)](_0x4430ee[_0x8d581d(0x8fe)](_0x5a8e03,_0x4357ae[_0x57c3f9]),'\x0a');_0xdd402c=_0x4430ee[_0x8d581d(0xac3)](_0x53deab,-0x18e7+-0xc95*0x3+0x3ea7);}}for(const _0x49c994 of keywordList){if(_0x4430ee[_0x138193(0xad9)](_0x4430ee[_0x138193(0x5e7)],_0x4430ee[_0x8d581d(0x36b)]))_0x284c11[_0x49c994]++;else return _0x4430ee[_0x1dbd6c(0x787)](_0x5a2d34,_0x4430ee[_0x8d581d(0xed9)](_0x310eca,_0x271bd5));}for(const _0x392c61 of sentenceList){_0x4430ee[_0x1dbd6c(0xf6c)](_0x4430ee[_0x8d581d(0x643)],_0x4430ee[_0x1dbd6c(0x8d2)])?_0x563b6e+='':_0x4590c0[_0x392c61]++;}let _0x1f0d18=0x1002+0x1ae6+-0x2*0x1574,_0x39961f=0xcf7*-0x1+-0x21bd+0x7a*0x62,_0x5e8e0c=-0x1f*-0x47+-0x1*-0xa33+-0x6*0x322;for(const _0x462bee of _0x598d2e){_0x4430ee[_0x1dbd6c(0xc7d)](_0x4430ee[_0x10e57e(0x6b3)],_0x4430ee[_0x8d33c4(0x6b3)])?(_0x394059=_0x595f35[_0x1dbd6c(0xd22)](_0x4adce2)[_0x4430ee[_0x138193(0xf06)]],_0x24e34b=''):(_0x1f0d18+=_0x4430ee[_0x8d581d(0xf79)](_0x284c11[_0x462bee],_0x4590c0[_0x462bee]),_0x39961f+=_0x4430ee[_0x8d33c4(0x44d)](_0x284c11[_0x462bee],0x26f9+0x50c+0x251*-0x13),_0x5e8e0c+=_0x4430ee[_0x1dbd6c(0x530)](_0x4590c0[_0x462bee],-0x3*0xcb+-0x13*-0x18a+0x271*-0xb));}_0x39961f=Math[_0x138193(0xc05)](_0x39961f),_0x5e8e0c=Math[_0x138193(0xc05)](_0x5e8e0c);const _0x48db51=_0x4430ee[_0x138193(0x3cd)](_0x1f0d18,_0x4430ee[_0x8d33c4(0xf79)](_0x39961f,_0x5e8e0c));return _0x48db51;}let modalele=[],keytextres=[],fulltext=[],article,sentences=[];function modal_open(_0x46c9f2,_0x37788f){const _0x4b3400=_0x376c,_0x2047dc=_0x376c,_0x2c350d=_0x376c,_0x2e1284=_0x376c,_0x469689=_0x376c,_0x3a724f={'eGyzh':function(_0x3dae18,_0x2aecdc){return _0x3dae18(_0x2aecdc);},'VzNPi':function(_0x5c073d,_0x4cbc4a){return _0x5c073d>_0x4cbc4a;},'SsTAy':function(_0x2cea92,_0x33f1d7){return _0x2cea92(_0x33f1d7);},'DLKaP':function(_0x1e69dd,_0x484112){return _0x1e69dd===_0x484112;},'CbfoR':_0x4b3400(0x532),'PzOjr':_0x2047dc(0x2e9)+_0x2c350d(0xf3e)+'d','gNOcY':function(_0x45c498,_0x494e3e){return _0x45c498(_0x494e3e);},'MXDkH':_0x2c350d(0xd2f)+'ss','wsMxg':_0x2e1284(0x517)+':','HytDO':function(_0x5e60f2,_0x2dc931){return _0x5e60f2-_0x2dc931;},'SmgEK':function(_0x1c4207,_0x1731e0){return _0x1c4207(_0x1731e0);},'EnOyU':function(_0x2da49e,_0x6bb773){return _0x2da49e>_0x6bb773;},'giGAc':_0x2047dc(0x6c9)+_0x2c350d(0x562),'OmxJd':function(_0x40e2c0,_0x2a09fa){return _0x40e2c0+_0x2a09fa;},'pRAsh':_0x4b3400(0x4e0)+_0x2047dc(0xcab)+_0x2047dc(0xd67)+_0x469689(0x96b)+_0x2e1284(0xe20)+_0x2c350d(0xa58)+_0x2e1284(0x57d)+_0x4b3400(0xa64)+_0x2c350d(0xe1b)+_0x2047dc(0x503)+_0x2c350d(0x8f0),'SqzSN':_0x469689(0x337)+_0x2e1284(0x221),'xwJhf':_0x2c350d(0xb3f),'UOnnO':_0x4b3400(0x73f),'BZNrC':_0x2c350d(0x5cb)+_0x2e1284(0x8d7),'WwOKx':_0x2c350d(0x451)+'es','vCDDB':_0x2c350d(0x59e),'kpDHq':_0x4b3400(0x9eb)+_0x2047dc(0x5e9)+_0x2e1284(0x685),'Mpyrg':function(_0x4fda35,_0x3ca57b){return _0x4fda35!==_0x3ca57b;},'yvGbN':_0x4b3400(0xf7b),'MCqoJ':_0x2047dc(0x6d7),'eGNow':_0x2047dc(0x627),'GgGFF':function(_0x20b265,_0x2e1746){return _0x20b265!==_0x2e1746;},'rwwqU':_0x2e1284(0x1d7),'APfEG':_0x469689(0xd06),'yEIWm':_0x2c350d(0xb70)+_0x469689(0xd99)+_0x2e1284(0x599)+_0x469689(0xd34)+_0x2e1284(0x9d5),'GazOI':function(_0x34db2f,_0x2574ac){return _0x34db2f==_0x2574ac;},'lPzhl':_0x469689(0x243),'oYqwB':_0x4b3400(0xd94),'Wuyhr':_0x469689(0x1e5),'GrKRg':_0x4b3400(0x41f)+_0x4b3400(0xc00)+_0x2e1284(0x8d7),'uBvdI':function(_0x436c92,_0xb94d28){return _0x436c92===_0xb94d28;},'WXXBz':_0x2047dc(0x2d0),'NCgZB':_0x2c350d(0xae4)+'d','BOmIU':function(_0x182ab7,_0x22dd38){return _0x182ab7!==_0x22dd38;},'EwGJb':_0x2e1284(0xc44),'Ufsbl':_0x469689(0xa2e),'pvStC':_0x2e1284(0xaa8),'VcChI':function(_0x1f6575,_0x197340){return _0x1f6575===_0x197340;},'lWssV':_0x2c350d(0xeda),'wmenm':_0x2e1284(0xaf9)+_0x2e1284(0x974),'faUhu':_0x2e1284(0xf10),'EoyNi':_0x2e1284(0x6c9)+_0x2e1284(0xa7c)+'t','JYgoj':_0x2c350d(0xed7)+_0x4b3400(0x646),'XGbkQ':function(_0x1411c9,_0xe03449){return _0x1411c9(_0xe03449);},'xPNGe':function(_0x20b778,_0x344843){return _0x20b778(_0x344843);},'Rlnii':function(_0x5ae4ec,_0x465faa){return _0x5ae4ec+_0x465faa;},'aZRsk':_0x469689(0xd69)+_0x2e1284(0xd4e)+_0x4b3400(0x285)+_0x2c350d(0x1e4),'RzzMx':_0x2047dc(0xcb3)+_0x469689(0xcd9)+_0x2c350d(0xa0b)+_0x2047dc(0x5b0)+_0x2047dc(0xd03)+_0x4b3400(0xae9)+'\x20)','mbxqj':function(_0x2e39d6){return _0x2e39d6();},'RaxPW':function(_0x4c0cf7,_0x1776f1){return _0x4c0cf7===_0x1776f1;},'uydGX':_0x2c350d(0x471),'LLMhj':function(_0xc7deae,_0x4b25a8){return _0xc7deae!==_0x4b25a8;},'STSsI':_0x4b3400(0x5d6),'xyaua':function(_0x47b0d1,_0x3db6e3){return _0x47b0d1===_0x3db6e3;},'VLfqi':_0x4b3400(0x6ac),'Dcchq':function(_0x6aabd7,_0x23a0cc){return _0x6aabd7<=_0x23a0cc;},'zcYCp':_0x2047dc(0xf60),'piVAR':_0x469689(0xbb5),'OtTaX':_0x2047dc(0xb11),'qffhn':function(_0x52b6fe,_0x541f06){return _0x52b6fe(_0x541f06);},'FZdCS':function(_0x4caf1a,_0x56cb04){return _0x4caf1a===_0x56cb04;},'QkkTx':_0x2e1284(0xcce),'CYyDm':_0x2047dc(0xed0),'iCwpn':function(_0x28f326,_0x51b8ce,_0xa43f12){return _0x28f326(_0x51b8ce,_0xa43f12);},'nTOOs':_0x469689(0x420),'xhlBr':_0x469689(0xb47),'oFFnG':_0x2047dc(0xf75),'wOGBE':function(_0x122672,_0x563333){return _0x122672===_0x563333;},'boBkh':_0x4b3400(0xcb9),'EsxVd':_0x2e1284(0xcb4),'pZlqP':_0x469689(0x751)+_0x2c350d(0x718)+'结束','slUTy':_0x2c350d(0x7fd),'fJVLj':_0x2e1284(0xf24)+_0x2047dc(0x99d),'XYrff':_0x2c350d(0xb46)+_0x4b3400(0xe97),'LXkCa':_0x4b3400(0xb46)+_0x469689(0xa62)+_0x4b3400(0xbe3),'rrkYD':function(_0x3423c0,_0x29d4b0){return _0x3423c0+_0x29d4b0;},'BNtue':_0x4b3400(0x36c)+_0x2c350d(0xbba),'JBqEc':function(_0x4015df,_0x448df4){return _0x4015df>_0x448df4;},'DMpcM':_0x469689(0x507),'ImNxz':function(_0x5b81f2,_0x2d731f){return _0x5b81f2<_0x2d731f;},'YVPyo':_0x2c350d(0x4c3),'ajLNw':_0x2c350d(0x9d0),'BCsCR':_0x4b3400(0xaba),'NuSzv':function(_0x1fc32a,_0x4cf072){return _0x1fc32a>_0x4cf072;},'QTzNs':_0x2c350d(0xf09),'nTJAl':_0x2e1284(0x7bd),'avcLC':_0x2047dc(0xba7),'mVzeV':_0x4b3400(0xdcc),'AgUTa':_0x469689(0x79e),'cmPOQ':function(_0x2d1330,_0x49ad55){return _0x2d1330<_0x49ad55;},'QOQGQ':function(_0x248bf8,_0xe372ff){return _0x248bf8===_0xe372ff;},'iLOFR':_0x2c350d(0x495),'CpeKd':function(_0x42dac2,_0x5dcf10){return _0x42dac2===_0x5dcf10;},'bCtTF':_0x2e1284(0x30e),'XdCPo':function(_0x1cd934,_0x5f0bfe){return _0x1cd934/_0x5f0bfe;},'IWruD':function(_0x8c1690,_0x153863){return _0x8c1690-_0x153863;},'oeBMC':_0x2047dc(0xefd),'uXFDQ':_0x4b3400(0x650),'mwypa':function(_0x2cef42,_0x1ad45c){return _0x2cef42===_0x1ad45c;},'rPJNK':_0x2047dc(0xf3c),'SLaQe':_0x2047dc(0xa75),'QccdZ':_0x469689(0x661),'VjWgy':_0x469689(0xb1a),'ICuBF':_0x4b3400(0x600),'rkgUp':function(_0x2dc5b7,_0x519410){return _0x2dc5b7<_0x519410;},'xmRIQ':function(_0x1732a8,_0x11e3ff){return _0x1732a8/_0x11e3ff;},'cndtx':_0x2c350d(0x50d),'nxvxc':function(_0x325eb7,_0x4de12f){return _0x325eb7*_0x4de12f;},'aAkRG':function(_0x13d198,_0x1517e9){return _0x13d198!==_0x1517e9;},'EBuAU':_0x2c350d(0x728),'wJHUn':_0x4b3400(0xae6),'aCAyg':_0x2e1284(0xec5),'xWMCR':_0x2c350d(0x371)+_0x2047dc(0xc0e),'UgQVK':function(_0x50d18d,_0xdacd23){return _0x50d18d<_0xdacd23;},'Onxmx':function(_0x457f13,_0x54fc85){return _0x457f13===_0x54fc85;},'KwmVg':_0x2e1284(0x7de),'OITtM':function(_0x53de15,_0x5bd4ce){return _0x53de15+_0x5bd4ce;},'FdkKS':_0x4b3400(0x635),'yjPhH':_0x2c350d(0x9a7),'fgmVy':_0x2e1284(0x366),'OEDVC':_0x4b3400(0x3ef),'QWhrT':_0x2c350d(0x419)+_0x4b3400(0xc08)+'+$','VyeRn':function(_0x39ddd2){return _0x39ddd2();},'vxQWs':function(_0x3ce0fc,_0x3fef73){return _0x3ce0fc**_0x3fef73;},'zwUai':function(_0x14c6d6,_0x3f955d){return _0x14c6d6===_0x3f955d;},'pncau':_0x4b3400(0xef6),'CZmYH':_0x2047dc(0xb94),'htTTz':_0x2e1284(0x351),'SdPSE':_0x2047dc(0x6e5)+_0x469689(0xb76)+_0x2047dc(0xf9c)+_0x2e1284(0xd47)+_0x4b3400(0xbd8)+_0x2047dc(0xc51)+_0x2e1284(0xdea)+_0x2c350d(0x271)+_0x2047dc(0x33d)+_0x2c350d(0x953)+_0x2047dc(0x4d3)+_0x2e1284(0x6ab)+_0x2047dc(0x8cc),'oSRDS':_0x4b3400(0xbef)+_0x2e1284(0xb37)+_0x469689(0xcb5),'XRJyO':_0x2e1284(0xa11)+_0x469689(0xe69)+'rl','azXdE':_0x4b3400(0x6dd)+'l','ZNCpn':_0x4b3400(0x23a),'jMsrk':_0x469689(0xa1f)+'l','WMfxK':function(_0x2ae3fe,_0x5e99e6){return _0x2ae3fe(_0x5e99e6);},'SgCQe':_0x4b3400(0x9b9),'JrCnq':_0x2e1284(0x412)+_0x469689(0x731)+_0x2047dc(0x99f),'jVXvg':_0x469689(0xacf),'gbFUh':_0x2047dc(0x93a),'oNJki':_0x2047dc(0xb49),'iwyqe':_0x2047dc(0xa76)+_0x2c350d(0xb37)+_0x469689(0xcb5),'thSdK':_0x2047dc(0x7a0)+_0x2c350d(0x731)+_0x2c350d(0x99f),'BAgSg':_0x2047dc(0xc6e)+_0x4b3400(0xb37)+_0x2c350d(0xcb5),'XCkmZ':_0x4b3400(0xd09)+'l','Lzkat':_0x469689(0x703)+'rl','SyOsj':_0x2047dc(0x93a)+':','fpeUb':_0x2c350d(0x93a)+_0x469689(0xa08),'sfzAQ':_0x2e1284(0xcf2)+'rl','fJHGO':_0x2047dc(0x93a)+_0x2e1284(0x20b)+_0x469689(0xd42)+'l','nJbsC':_0x2047dc(0x93a)+_0x4b3400(0xc20),'CSDEb':_0x2e1284(0xc66)+'rl','pgMIB':_0x4b3400(0xa2f)+_0x4b3400(0x731)+_0x469689(0x99f),'XPgDI':_0x469689(0x93a)+_0x2047dc(0x37d)+_0x2047dc(0xe69)+'rl','iEmBx':_0x2047dc(0x623),'ljZeF':function(_0x2680cb,_0x567b08){return _0x2680cb==_0x567b08;},'iOZem':_0x2c350d(0xcde),'YhtBk':_0x2047dc(0xe37),'EmZuJ':_0x4b3400(0xa68),'VkChQ':_0x2047dc(0x4ba),'tjNmi':_0x4b3400(0x6c9)+_0x2047dc(0xe4d),'qUIbp':_0x4b3400(0xe45)+']','ejPdN':_0x4b3400(0x571),'FFsyW':_0x4b3400(0xa42),'yWbEG':_0x469689(0xc21),'bzAps':_0x2c350d(0x42c),'tpbTW':_0x2c350d(0x7b3),'GITfQ':_0x2e1284(0x274),'guaTL':_0x469689(0xc18),'zihGQ':_0x2e1284(0x7cb),'JLwir':_0x2e1284(0x926),'KsSkq':_0x469689(0xc10)+'pt','pnZeq':_0x2c350d(0xb46)+_0x2047dc(0xb69),'svVzS':_0x2047dc(0xe5b)+_0x4b3400(0xca4)+_0x4b3400(0xcbf)+_0x2c350d(0x2d1)+_0x469689(0x844),'kVWrh':_0x2047dc(0xc96)+'>','JHPYc':_0x469689(0xf94),'NsDLf':_0x469689(0xb20),'LZEEr':_0x2e1284(0x332),'ceNHm':_0x2c350d(0xced),'nrHtp':_0x469689(0xb1c)+'\x0a','aKWZa':_0x2047dc(0x7df),'Lukgm':_0x2047dc(0xb61)+'\x0a','AXGlH':_0x2c350d(0x25b),'iIYKO':_0x2c350d(0x98f),'nMfty':function(_0xde0c94,_0x4b1965){return _0xde0c94+_0x4b1965;},'PCByG':_0x2c350d(0xf47)+_0x4b3400(0x9e5)+_0x2e1284(0xd0a)+_0x4b3400(0xd3b),'kChsy':_0x2e1284(0x8c1),'fwTrI':_0x469689(0x20b)+_0x2e1284(0x3fe)+_0x4b3400(0xcef)+_0x2047dc(0x5f7)+_0x2e1284(0x580)+_0x2047dc(0xb52),'LWZWc':_0x2e1284(0xd14),'wZmnP':_0x2e1284(0xe86),'hMOFt':function(_0x3904c7,_0x2340a8,_0x20b34e,_0xf0058){return _0x3904c7(_0x2340a8,_0x20b34e,_0xf0058);},'yuxvJ':_0x4b3400(0x20b)+_0x2e1284(0x3fe)+_0x2047dc(0xcef)+_0x2c350d(0x6cb)+_0x2e1284(0xecc),'uylAP':function(_0x2c16c6,_0x36b384){return _0x2c16c6===_0x36b384;},'LpKvn':_0x4b3400(0x20a),'suZbP':_0x2c350d(0x25d),'tRqzm':function(_0x1e7694,_0x1db4f9){return _0x1e7694<_0x1db4f9;},'nZQhe':function(_0x54d194,_0x4c45bf){return _0x54d194!==_0x4c45bf;},'trKlh':_0x469689(0x1e2),'GAcXJ':_0x2c350d(0x9f7),'MpGYi':_0x2e1284(0xb59)+_0x2c350d(0x847)+_0x469689(0x4ab)+_0x469689(0x6ad),'cXYsd':_0x4b3400(0x6c9)+_0x4b3400(0xc9c)+_0x2c350d(0xabe),'yUEMD':_0x2e1284(0x59f),'eGJLa':_0x4b3400(0x9c2),'SrSRu':function(_0x544ff4,_0x871d92){return _0x544ff4(_0x871d92);},'BCnsQ':function(_0x34c6c3,_0xabea01){return _0x34c6c3!==_0xabea01;},'QjjeZ':_0x2c350d(0x20e),'tNwTI':function(_0x47f8a9,_0x33050a){return _0x47f8a9+_0x33050a;},'SqzMS':function(_0x495013,_0x56ad19){return _0x495013+_0x56ad19;},'vOEkU':function(_0x422298,_0x40edab){return _0x422298+_0x40edab;},'AVMRL':_0x2e1284(0xe5b)+_0x2047dc(0xca4)+_0x2047dc(0xcbf)+_0x4b3400(0x6ef)+_0x2e1284(0xe2f)+'\x22>','kolrD':_0x2047dc(0x4f3),'MrLZq':_0x2047dc(0xed8)+_0x4b3400(0xd67)+_0x2c350d(0x59d)+_0x469689(0x910),'NOdNs':_0x469689(0x872),'wgJgn':_0x2047dc(0x53d),'BqIVM':function(_0x121fed,_0x56e4f5){return _0x121fed!==_0x56e4f5;},'bUIhT':_0x2c350d(0x969),'DFfpI':_0x2e1284(0xc53),'edClC':function(_0x3585c3,_0x4dda5c){return _0x3585c3+_0x4dda5c;},'Xwdmf':function(_0x5ada1b,_0x3e40e7){return _0x5ada1b+_0x3e40e7;},'sOekA':function(_0x1dab47,_0x81f0e5){return _0x1dab47+_0x81f0e5;},'JQtyM':function(_0x871ac6,_0x35b82c){return _0x871ac6(_0x35b82c);},'teeXy':_0x2047dc(0xd36),'GidPG':_0x4b3400(0x891)+_0x2047dc(0x9f3)+_0x2047dc(0xf82)+_0x2e1284(0xab3)};if(_0x3a724f[_0x2e1284(0x4bd)](lock_chat,-0xe30+0xb8a+0x2a7)){if(_0x3a724f[_0x2047dc(0xdbb)](_0x3a724f[_0x2c350d(0x453)],_0x3a724f[_0x2e1284(0x453)])){_0x3a724f[_0x2c350d(0xeae)](alert,_0x3a724f[_0x2e1284(0x480)]);return;}else mmkddD[_0x2047dc(0x5fa)](_0x1f57ee,-0x2*0x740+0x463*-0x5+-0x246f*-0x1);}prev_chat=document[_0x469689(0x93e)+_0x2047dc(0x48f)+_0x2047dc(0x9b1)](_0x3a724f[_0x2c350d(0x69e)])[_0x469689(0xdde)+_0x2e1284(0x4ea)];if(_0x3a724f[_0x469689(0x820)](_0x37788f,_0x3a724f[_0x4b3400(0x915)])){if(_0x3a724f[_0x4b3400(0x7aa)](_0x3a724f[_0x2047dc(0x669)],_0x3a724f[_0x4b3400(0x669)]))return![];else document[_0x2e1284(0x93e)+_0x2c350d(0x48f)+_0x469689(0x9b1)](_0x3a724f[_0x469689(0x69e)])[_0x2c350d(0xdde)+_0x4b3400(0x4ea)]=_0x3a724f[_0x4b3400(0x830)](_0x3a724f[_0x4b3400(0x830)](_0x3a724f[_0x469689(0xc70)](_0x3a724f[_0x2c350d(0xad3)](_0x3a724f[_0x2c350d(0xd77)](_0x3a724f[_0x4b3400(0x88b)](prev_chat,_0x3a724f[_0x2047dc(0x47c)]),_0x3a724f[_0x4b3400(0x676)]),_0x3a724f[_0x2047dc(0x624)]),_0x3a724f[_0x469689(0xb14)]),_0x3a724f[_0x4b3400(0x87d)]),_0x3a724f[_0x2e1284(0xe60)]);}else{if(_0x3a724f[_0x2e1284(0xee6)](_0x3a724f[_0x2e1284(0x209)],_0x3a724f[_0x4b3400(0xee4)]))document[_0x2047dc(0x93e)+_0x2e1284(0x48f)+_0x2c350d(0x9b1)](_0x3a724f[_0x2c350d(0x69e)])[_0x469689(0xdde)+_0x2047dc(0x4ea)]=_0x3a724f[_0x2047dc(0x7d0)](_0x3a724f[_0x2c350d(0x7d0)](_0x3a724f[_0x2c350d(0x8b1)](_0x3a724f[_0x2e1284(0x4f2)](_0x3a724f[_0x4b3400(0xcac)](_0x3a724f[_0x469689(0x8b1)](prev_chat,_0x3a724f[_0x469689(0x47c)]),_0x3a724f[_0x4b3400(0x676)]),_0x3a724f[_0x2e1284(0x624)]),_0x3a724f[_0x2e1284(0xe34)](String,_0x37788f)),_0x3a724f[_0x2047dc(0x87d)]),_0x3a724f[_0x2c350d(0xe60)]);else while(_0x3a724f[_0x469689(0x553)](_0x3a724f[_0x2047dc(0x679)](_0x398eec,_0x4eed42),_0x948d8c)){_0x18c09c[_0x4b3400(0xc48)]();}}modal[_0x2c350d(0x8b8)][_0x2e1284(0xd73)+'ay']=_0x3a724f[_0x2047dc(0x6eb)],document[_0x2047dc(0x5de)+_0x2e1284(0xf3d)+_0x4b3400(0xa93)](_0x3a724f[_0x469689(0x709)])[_0x4b3400(0xdde)+_0x2c350d(0x4ea)]='';var _0x45ace2=new Promise((_0x58f198,_0xd97029)=>{const _0x1076d6=_0x2e1284,_0x243be2=_0x4b3400,_0x4cec85=_0x2e1284,_0x58758f=_0x469689,_0x164d81=_0x4b3400,_0xd0d6e6={'CBaFi':function(_0x4ed888,_0x267ef2){const _0x3d2c55=_0x376c;return _0x3a724f[_0x3d2c55(0xeba)](_0x4ed888,_0x267ef2);},'hUcWZ':function(_0x2ec975,_0x5a4d0b){const _0x5c3682=_0x376c;return _0x3a724f[_0x5c3682(0xa77)](_0x2ec975,_0x5a4d0b);},'YtFzB':function(_0x555123,_0x2222f9){const _0x6f8952=_0x376c;return _0x3a724f[_0x6f8952(0x957)](_0x555123,_0x2222f9);},'gwecM':_0x3a724f[_0x1076d6(0x83e)],'Nzrbw':function(_0x1c3795,_0x196443){const _0x318dbf=_0x1076d6;return _0x3a724f[_0x318dbf(0xd77)](_0x1c3795,_0x196443);},'QRXlg':_0x3a724f[_0x243be2(0x2a6)],'NSyVd':_0x3a724f[_0x4cec85(0x475)],'bHXwa':function(_0x34c121,_0x291d86){const _0x490a72=_0x1076d6;return _0x3a724f[_0x490a72(0x239)](_0x34c121,_0x291d86);},'sDEoX':_0x3a724f[_0x243be2(0xa7d)],'YsApb':_0x3a724f[_0x243be2(0x7ff)],'WyVzw':_0x3a724f[_0x164d81(0xbed)],'CkUiu':_0x3a724f[_0x58758f(0x3a7)],'keLYd':_0x3a724f[_0x1076d6(0x360)],'cbhuv':_0x3a724f[_0x243be2(0xdf8)],'EHThm':_0x3a724f[_0x4cec85(0xf9e)],'RxRFI':function(_0x309529,_0x24b36e){const _0x2063af=_0x4cec85;return _0x3a724f[_0x2063af(0x29f)](_0x309529,_0x24b36e);},'akQRa':_0x3a724f[_0x4cec85(0x32f)],'fokpo':_0x3a724f[_0x164d81(0xf69)],'zQVxF':_0x3a724f[_0x164d81(0xd1b)],'nZYzS':_0x3a724f[_0x4cec85(0xcb0)],'CEhcB':_0x3a724f[_0x164d81(0xc0b)],'ouLzj':function(_0xbcb0f,_0x3d576c){const _0x5f3b09=_0x4cec85;return _0x3a724f[_0x5f3b09(0xa77)](_0xbcb0f,_0x3d576c);}};if(_0x3a724f[_0x1076d6(0x38f)](_0x3a724f[_0x58758f(0x8fc)],_0x3a724f[_0x1076d6(0xd48)])){var _0x37d074=document[_0x58758f(0x5de)+_0x164d81(0xf3d)+_0x243be2(0xa93)](_0x3a724f[_0x4cec85(0xebf)]);_0x37d074[_0x1076d6(0xc31)]=_0x46c9f2;if(_0x3a724f[_0x164d81(0x4bd)](_0x37788f,_0x3a724f[_0x4cec85(0x915)])){if(_0x3a724f[_0x164d81(0x38f)](_0x3a724f[_0x164d81(0x3b5)],_0x3a724f[_0x1076d6(0xa8e)]))document[_0x1076d6(0xd33)+_0x243be2(0x3eb)+_0x1076d6(0x51a)+'r'](_0x3a724f[_0x4cec85(0x3b1)],function(){const _0x4fde45=_0x243be2,_0x150caa=_0x243be2,_0x29f4f2=_0x1076d6,_0x4231fd=_0x1076d6,_0x16f88d=_0x58758f,_0x1d8265={'iIpQg':function(_0xb0b3c0,_0x1693c2){const _0x24178d=_0x376c;return _0xd0d6e6[_0x24178d(0xef9)](_0xb0b3c0,_0x1693c2);},'mFCGz':function(_0x10b18b,_0x1e4a01){const _0x2d36e5=_0x376c;return _0xd0d6e6[_0x2d36e5(0xc16)](_0x10b18b,_0x1e4a01);},'QNxrS':_0xd0d6e6[_0x4fde45(0xc74)],'YfjXg':function(_0x11833e,_0x3aa050){const _0x55de34=_0x4fde45;return _0xd0d6e6[_0x55de34(0x65f)](_0x11833e,_0x3aa050);},'EWurm':function(_0x1bd1b2,_0x487b89){const _0x23fb74=_0x4fde45;return _0xd0d6e6[_0x23fb74(0x65f)](_0x1bd1b2,_0x487b89);},'UGmMc':_0xd0d6e6[_0x150caa(0xd5b)],'CIwtE':_0xd0d6e6[_0x150caa(0x698)],'tkjje':function(_0x364ca7,_0x35fdf4){const _0x195ae5=_0x150caa;return _0xd0d6e6[_0x195ae5(0x905)](_0x364ca7,_0x35fdf4);},'kmdAw':_0xd0d6e6[_0x4231fd(0xcc7)],'RBcFX':_0xd0d6e6[_0x4231fd(0xc33)],'IwHSJ':_0xd0d6e6[_0x150caa(0x29d)],'jIQAa':_0xd0d6e6[_0x150caa(0x9dd)],'WyneJ':_0xd0d6e6[_0x16f88d(0x62d)],'VUFOG':_0xd0d6e6[_0x16f88d(0x4f5)],'jrWlk':_0xd0d6e6[_0x29f4f2(0xa9f)]};if(_0xd0d6e6[_0x4231fd(0x2a8)](_0xd0d6e6[_0x16f88d(0xaaf)],_0xd0d6e6[_0x150caa(0x68f)]))_0x37d074[_0x4fde45(0x91a)+_0x29f4f2(0xbe5)+_0x29f4f2(0x463)][_0x29f4f2(0x585)+_0x150caa(0x54c)+_0x29f4f2(0xaee)+_0x4fde45(0x593)][_0x4231fd(0x902)+_0x4fde45(0x225)+_0x4231fd(0xa7a)+_0x150caa(0x26f)][_0x4231fd(0x95c)](function(){const _0x2f3302=_0x4231fd,_0x2d4199=_0x4fde45,_0x16d9a9=_0x150caa,_0x463f1c=_0x150caa,_0x1a10e1=_0x16f88d,_0xd77513={'RVhkF':function(_0x3edde8,_0x8b380f){const _0x5ece61=_0x376c;return _0x1d8265[_0x5ece61(0x37c)](_0x3edde8,_0x8b380f);},'Vlswv':function(_0x17302a,_0x25777e){const _0x46ff76=_0x376c;return _0x1d8265[_0x46ff76(0x270)](_0x17302a,_0x25777e);},'qTBMe':_0x1d8265[_0x2f3302(0xd5d)],'scWXF':function(_0x2ee016,_0x5c303d){const _0x55de3a=_0x2f3302;return _0x1d8265[_0x55de3a(0xf1d)](_0x2ee016,_0x5c303d);},'KevUf':function(_0x400a19,_0x119b08){const _0x5433c=_0x2f3302;return _0x1d8265[_0x5433c(0xe1c)](_0x400a19,_0x119b08);},'XUrya':_0x1d8265[_0x2d4199(0x30d)],'KauBj':function(_0xbc960c,_0x2fa41c){const _0x2fd34b=_0x2d4199;return _0x1d8265[_0x2fd34b(0x270)](_0xbc960c,_0x2fa41c);},'hyqzr':_0x1d8265[_0x16d9a9(0xae2)],'BWwNj':function(_0x202625,_0x47bea9){const _0x250673=_0x2f3302;return _0x1d8265[_0x250673(0xd0e)](_0x202625,_0x47bea9);},'LNYPN':_0x1d8265[_0x2d4199(0x38c)],'LlAyO':_0x1d8265[_0x463f1c(0xe7c)],'RMLab':_0x1d8265[_0x1a10e1(0xd13)],'dsPGy':_0x1d8265[_0x2f3302(0x377)],'jMrce':_0x1d8265[_0x1a10e1(0x962)]};_0x1d8265[_0x16d9a9(0xd0e)](_0x1d8265[_0x2d4199(0x55c)],_0x1d8265[_0x1a10e1(0x55c)])?_0x37d074[_0x1a10e1(0x91a)+_0x463f1c(0xbe5)+_0x1a10e1(0x463)][_0x1a10e1(0x585)+_0x16d9a9(0x54c)+_0x2d4199(0xaee)+_0x463f1c(0x593)][_0x2f3302(0x662)+_0x16d9a9(0xb18)]['on'](_0x1d8265[_0x463f1c(0xe6a)],function(_0x5ac0a0){const _0xebff94=_0x463f1c,_0x1f40dc=_0x2d4199,_0x243cf9=_0x2f3302,_0x26c495=_0x1a10e1,_0x40c641=_0x1a10e1;if(_0xd77513[_0xebff94(0x2b8)](_0xd77513[_0x1f40dc(0x98a)],_0xd77513[_0x243cf9(0x289)])){if(_0xd77513[_0x26c495(0x735)](_0xd77513[_0x1f40dc(0x92e)](_0x5229ba,_0x597fec)[_0x40c641(0x8b2)+'h'],-0x1d7e+0x1de4+-0x61))_0x38dd29[_0x40c641(0x5de)+_0x1f40dc(0xf3d)+_0x40c641(0xa93)](_0xd77513[_0xebff94(0xc6b)])[_0x1f40dc(0xdde)+_0x1f40dc(0x4ea)]+=_0xd77513[_0x40c641(0xeee)](_0xd77513[_0x40c641(0xc6c)](_0xd77513[_0x243cf9(0x927)],_0xd77513[_0x1f40dc(0x690)](_0x341559,_0x47e504)),_0xd77513[_0xebff94(0x863)]);}else console[_0x40c641(0x7b2)](_0xd77513[_0x243cf9(0xdc1)]),_0xd77513[_0x243cf9(0x690)](_0x58f198,_0xd77513[_0xebff94(0x74a)]);}):(_0x10db5a=_0x54b324[_0x16d9a9(0xd22)](_0x172ed4)[_0xd77513[_0x2f3302(0x34c)]],_0x165eae='');});else{_0x1e3752=_0xd0d6e6[_0x4231fd(0xbda)](_0xefa32a,0x1a3f+0x1aa8+-0x34e6);if(!_0x4d0a26)throw _0x1a2387;return _0xd0d6e6[_0x4231fd(0xc16)](_0x5d00ef,0x1811+0x1d3a+-0x3357)[_0x150caa(0x95c)](()=>_0x127d45(_0x4a9a7f,_0x592ab1,_0x4520d6));}});else return-(0x8f5+0x54*0x17+-0x210*0x8);}else{if(_0x37d074[_0x4cec85(0xa8b)+_0x4cec85(0xf27)+'t']){if(_0x3a724f[_0x58758f(0xdbb)](_0x3a724f[_0x1076d6(0xc37)],_0x3a724f[_0x58758f(0xc37)]))_0x37d074[_0x4cec85(0xa8b)+_0x58758f(0xf27)+'t'](_0x3a724f[_0x164d81(0x44b)],function(){const _0x52703d=_0x58758f,_0x22e13c=_0x1076d6,_0x3bd911=_0x4cec85,_0x11d647=_0x4cec85,_0x1cbe2b=_0x4cec85;_0x3a724f[_0x52703d(0x239)](_0x3a724f[_0x22e13c(0x8ec)],_0x3a724f[_0x3bd911(0x8ec)])?(console[_0x52703d(0x7b2)](_0x3a724f[_0x3bd911(0xc0b)]),_0x3a724f[_0x22e13c(0x6cd)](_0x58f198,_0x3a724f[_0x3bd911(0x3a7)])):_0x2b873c[_0x52703d(0x79c)](_0xd0d6e6[_0x3bd911(0x7a3)],_0x189644);});else{const _0x2e1946=_0x70b397?function(){const _0x244448=_0x58758f;if(_0x62fc5b){const _0x336160=_0xeaebf3[_0x244448(0xd6d)](_0x48d954,arguments);return _0x5208b2=null,_0x336160;}}:function(){};return _0x56267e=![],_0x2e1946;}}else _0x3a724f[_0x164d81(0x4d7)](_0x3a724f[_0x58758f(0x7a5)],_0x3a724f[_0x4cec85(0x7a5)])?(_0x3378f5[_0x1076d6(0x7b2)](_0x3a724f[_0x164d81(0xc0b)]),_0x3a724f[_0x58758f(0x6cd)](_0x584c93,_0x3a724f[_0x243be2(0x3a7)])):_0x37d074[_0x164d81(0xae4)+'d']=function(){const _0x1ed580=_0x4cec85,_0x15b345=_0x164d81,_0x24e29a=_0x243be2,_0x4b1313=_0x58758f,_0xe3cde7=_0x164d81;if(_0xd0d6e6[_0x1ed580(0x2a8)](_0xd0d6e6[_0x15b345(0x417)],_0xd0d6e6[_0x24e29a(0x417)]))return-0x184d+-0xf7b+-0x27c9*-0x1;else console[_0x1ed580(0x7b2)](_0xd0d6e6[_0x4b1313(0xf44)]),_0xd0d6e6[_0x24e29a(0xbe7)](_0x58f198,_0xd0d6e6[_0x1ed580(0x9dd)]);};}}else _0x28a405[_0x243be2(0x79c)](_0x3a724f[_0x4cec85(0xd1b)],_0x2141fb);});keytextres=[],_0x45ace2[_0x4b3400(0x95c)](()=>{const _0x58195d=_0x469689,_0x59686f=_0x2c350d,_0x1c3e09=_0x2c350d,_0x4cd48e=_0x2047dc,_0xc60f68=_0x2c350d,_0x2ad218={'uqfMs':function(_0x10975b,_0x55ec25,_0x5080b6){const _0x18dafd=_0x376c;return _0x3a724f[_0x18dafd(0xee2)](_0x10975b,_0x55ec25,_0x5080b6);},'qqnzv':_0x3a724f[_0x58195d(0x932)],'RZTRt':_0x3a724f[_0x59686f(0x360)],'YWDZp':function(_0x469f8a,_0x1ab2ce){const _0x4824a2=_0x59686f;return _0x3a724f[_0x4824a2(0x4d7)](_0x469f8a,_0x1ab2ce);},'VkRBR':_0x3a724f[_0x58195d(0x546)],'lKSYH':_0x3a724f[_0x1c3e09(0xdb4)],'cdwUK':function(_0x1cc878,_0x19e2a5){const _0x3c1d64=_0x58195d;return _0x3a724f[_0x3c1d64(0x500)](_0x1cc878,_0x19e2a5);},'sXZAt':_0x3a724f[_0x59686f(0x382)],'QCEWK':_0x3a724f[_0x4cd48e(0xa95)],'PqMlz':function(_0x1091ed,_0x2480ef){const _0x468e44=_0x58195d;return _0x3a724f[_0x468e44(0xe88)](_0x1091ed,_0x2480ef);},'HCryY':_0x3a724f[_0x59686f(0x480)],'TniLh':_0x3a724f[_0x59686f(0x968)],'KLYnz':function(_0x58d2fd,_0x4ed807,_0x17e589){const _0x15748f=_0x1c3e09;return _0x3a724f[_0x15748f(0xee2)](_0x58d2fd,_0x4ed807,_0x17e589);},'YcCBa':_0x3a724f[_0xc60f68(0xde9)],'ePHBN':_0x3a724f[_0x59686f(0xd2b)],'nCcYm':_0x3a724f[_0x59686f(0x4a8)],'RtnCK':function(_0xf19a7c){const _0x240377=_0x1c3e09;return _0x3a724f[_0x240377(0x28e)](_0xf19a7c);},'GjoMb':function(_0x3b9ee1,_0x531dd9){const _0x9426f0=_0x4cd48e;return _0x3a724f[_0x9426f0(0x88b)](_0x3b9ee1,_0x531dd9);},'msntf':_0x3a724f[_0xc60f68(0xccf)],'cPQgB':function(_0xe899de,_0x572535){const _0x146dbf=_0x58195d;return _0x3a724f[_0x146dbf(0xf20)](_0xe899de,_0x572535);},'gJrSR':_0x3a724f[_0x1c3e09(0x83e)],'QgAvd':_0x3a724f[_0xc60f68(0x2a6)],'uSZZQ':_0x3a724f[_0x59686f(0x475)],'GsKbQ':_0x3a724f[_0x4cd48e(0xf2a)],'tujIs':function(_0x23e471,_0x217917){const _0x34790f=_0x59686f;return _0x3a724f[_0x34790f(0x7c6)](_0x23e471,_0x217917);},'IyCEQ':_0x3a724f[_0x1c3e09(0xd9b)],'DOORg':_0x3a724f[_0x59686f(0xb0a)],'szBhG':_0x3a724f[_0x1c3e09(0xb78)],'BnFYx':function(_0x5718ba,_0x41d210){const _0x28e156=_0x1c3e09;return _0x3a724f[_0x28e156(0x3ad)](_0x5718ba,_0x41d210);},'qUmbW':_0x3a724f[_0x59686f(0xce9)],'yWJSt':_0x3a724f[_0x58195d(0x5e8)],'pkKVy':_0x3a724f[_0x1c3e09(0x215)],'isBha':function(_0x2ae909,_0x17630a){const _0x153fc1=_0x59686f;return _0x3a724f[_0x153fc1(0x500)](_0x2ae909,_0x17630a);},'dNgJl':_0x3a724f[_0x58195d(0xd74)],'QKxCA':_0x3a724f[_0x58195d(0x858)],'MhHzs':function(_0xf4baf9,_0x16fa8b){const _0x58e5e8=_0x1c3e09;return _0x3a724f[_0x58e5e8(0xdfa)](_0xf4baf9,_0x16fa8b);},'aKyam':function(_0x724329,_0x48b57d){const _0x50f54c=_0x1c3e09;return _0x3a724f[_0x50f54c(0x9f2)](_0x724329,_0x48b57d);},'ULdDf':_0x3a724f[_0x59686f(0x75c)],'aNUKY':function(_0x52672f,_0x4d3bc7){const _0xdefedd=_0x4cd48e;return _0x3a724f[_0xdefedd(0xef2)](_0x52672f,_0x4d3bc7);},'xLkbD':_0x3a724f[_0x59686f(0x9ad)],'dZQCH':function(_0x24984f,_0x43afff){const _0x11749a=_0x59686f;return _0x3a724f[_0x11749a(0xdfa)](_0x24984f,_0x43afff);},'pXcgn':function(_0x5ccd1a,_0x3ca94e){const _0x4d6768=_0x4cd48e;return _0x3a724f[_0x4d6768(0xa3e)](_0x5ccd1a,_0x3ca94e);},'AqtQx':function(_0x4fd1ec,_0x3791d2){const _0x33d8d5=_0x4cd48e;return _0x3a724f[_0x33d8d5(0x95b)](_0x4fd1ec,_0x3791d2);},'YwJAt':_0x3a724f[_0x59686f(0x7a1)],'ZAKIH':_0x3a724f[_0xc60f68(0x6ba)],'rELnM':function(_0x1c5055,_0x552130){const _0x3caa94=_0x1c3e09;return _0x3a724f[_0x3caa94(0x257)](_0x1c5055,_0x552130);},'IVibb':_0x3a724f[_0x58195d(0xaa1)],'lCuPK':_0x3a724f[_0x1c3e09(0x8bb)],'CmUZp':_0x3a724f[_0xc60f68(0x640)],'hbDmz':_0x3a724f[_0x4cd48e(0xee3)],'XLGAu':function(_0x1bddb0,_0x94e370){const _0x3ae16=_0x58195d;return _0x3a724f[_0x3ae16(0x4d7)](_0x1bddb0,_0x94e370);},'Iminz':_0x3a724f[_0x59686f(0xe74)],'SWsnS':function(_0x595394,_0x198f9d){const _0x55fea8=_0xc60f68;return _0x3a724f[_0x55fea8(0x23f)](_0x595394,_0x198f9d);},'SpDIq':function(_0x5b880f,_0x360510){const _0x262ce9=_0x59686f;return _0x3a724f[_0x262ce9(0xdb9)](_0x5b880f,_0x360510);},'poPMt':function(_0x4e8d91,_0x558879){const _0x585e1e=_0x4cd48e;return _0x3a724f[_0x585e1e(0x767)](_0x4e8d91,_0x558879);},'JmLoy':_0x3a724f[_0x1c3e09(0xf03)],'eOJRm':function(_0x25b67d,_0x4d6910){const _0x1736db=_0x59686f;return _0x3a724f[_0x1736db(0x97f)](_0x25b67d,_0x4d6910);},'XlPWR':function(_0x2ac15a,_0xa57b0f){const _0x3d7947=_0x58195d;return _0x3a724f[_0x3d7947(0x5e6)](_0x2ac15a,_0xa57b0f);},'XNBBK':_0x3a724f[_0x59686f(0x367)],'dPFsk':_0x3a724f[_0x4cd48e(0x416)],'XoNxA':_0x3a724f[_0x4cd48e(0xb5c)],'sfeyD':_0x3a724f[_0x1c3e09(0xb87)],'gfitl':function(_0x4603da,_0x5d3de9){const _0x1c4c37=_0x59686f;return _0x3a724f[_0x1c4c37(0xc02)](_0x4603da,_0x5d3de9);},'tMTJc':function(_0x5ba765,_0x54b088){const _0x4f6f52=_0x58195d;return _0x3a724f[_0x4f6f52(0xbe1)](_0x5ba765,_0x54b088);},'beumL':_0x3a724f[_0x59686f(0xa7e)],'dMizC':_0x3a724f[_0x58195d(0x3a7)],'acsHV':function(_0x23eba9,_0x4572a5){const _0x41ca70=_0x1c3e09;return _0x3a724f[_0x41ca70(0x23f)](_0x23eba9,_0x4572a5);},'WQqPQ':function(_0x24cf4d,_0x9b4fb1){const _0x5ebffc=_0xc60f68;return _0x3a724f[_0x5ebffc(0xd77)](_0x24cf4d,_0x9b4fb1);},'oorVY':function(_0x376631,_0x5a29a4){const _0x44bbb9=_0x1c3e09;return _0x3a724f[_0x44bbb9(0x3b2)](_0x376631,_0x5a29a4);},'Pqbvm':function(_0x3c143c,_0x26d315){const _0x386a3d=_0x58195d;return _0x3a724f[_0x386a3d(0x5e6)](_0x3c143c,_0x26d315);},'dIjEV':_0x3a724f[_0x4cd48e(0xd11)],'teydT':function(_0x55d3df,_0x473d16){const _0x10bfb2=_0x1c3e09;return _0x3a724f[_0x10bfb2(0xef2)](_0x55d3df,_0x473d16);},'EryYL':_0x3a724f[_0x4cd48e(0x638)],'PdQpz':_0x3a724f[_0x59686f(0xc6a)],'uqqAe':function(_0x25e1e1,_0x50e7b6){const _0x115559=_0x58195d;return _0x3a724f[_0x115559(0xa77)](_0x25e1e1,_0x50e7b6);},'pixLD':_0x3a724f[_0x58195d(0x27a)],'qYZuG':_0x3a724f[_0x58195d(0xd1b)],'XvxvD':_0x3a724f[_0x59686f(0x7fb)],'hmQuV':function(_0x14c297){const _0x651300=_0x1c3e09;return _0x3a724f[_0x651300(0xb10)](_0x14c297);},'VgOIF':function(_0x70cc3f,_0x4411ab){const _0x55f0c8=_0xc60f68;return _0x3a724f[_0x55f0c8(0x78e)](_0x70cc3f,_0x4411ab);},'WiHCQ':function(_0x4d4830,_0x3be078){const _0x37e675=_0xc60f68;return _0x3a724f[_0x37e675(0x6f9)](_0x4d4830,_0x3be078);},'VhdHZ':_0x3a724f[_0x1c3e09(0x4cb)],'kCQjL':_0x3a724f[_0x59686f(0x811)],'OMHxm':_0x3a724f[_0x58195d(0xb84)],'xgMVy':_0x3a724f[_0x58195d(0x95d)],'WOzej':_0x3a724f[_0x4cd48e(0xc8f)],'eWJCB':_0x3a724f[_0x1c3e09(0x6e0)],'UKDKs':_0x3a724f[_0x4cd48e(0xb45)],'PpHYL':_0x3a724f[_0x59686f(0x621)],'viQXB':_0x3a724f[_0x58195d(0x5f2)],'VfqoT':function(_0x4c804a,_0x728dc9){const _0x406852=_0x59686f;return _0x3a724f[_0x406852(0xd1d)](_0x4c804a,_0x728dc9);},'qPSEH':_0x3a724f[_0xc60f68(0xc5a)],'zjXfF':_0x3a724f[_0x1c3e09(0xb02)],'ffLdk':_0x3a724f[_0x1c3e09(0x20c)],'KoEfm':_0x3a724f[_0x59686f(0xf00)],'UACIE':_0x3a724f[_0x4cd48e(0xbee)],'RVCnb':_0x3a724f[_0x1c3e09(0xcad)],'BmHxR':_0x3a724f[_0x59686f(0x54e)],'vqoUU':_0x3a724f[_0x1c3e09(0x9e7)],'vyKZs':_0x3a724f[_0xc60f68(0x81c)],'AKKie':_0x3a724f[_0x1c3e09(0x50a)],'iJlPu':_0x3a724f[_0x4cd48e(0xbad)],'lAzWy':_0x3a724f[_0xc60f68(0x7d7)],'sYyXc':_0x3a724f[_0x58195d(0xf91)],'AzNNT':_0x3a724f[_0x1c3e09(0x5db)],'OhuTO':_0x3a724f[_0x1c3e09(0x8a1)],'fbdjI':_0x3a724f[_0x58195d(0x6c6)],'HtVbR':_0x3a724f[_0x4cd48e(0x27c)],'MNmgm':_0x3a724f[_0x58195d(0x5f1)],'uYBqc':_0x3a724f[_0x1c3e09(0x24b)],'jFdRu':function(_0x1205d0,_0x373203){const _0x16ee82=_0xc60f68;return _0x3a724f[_0x16ee82(0x820)](_0x1205d0,_0x373203);},'gzxDs':_0x3a724f[_0x4cd48e(0x2f2)],'iVDVm':_0x3a724f[_0x1c3e09(0xc85)],'sXEIs':_0x3a724f[_0x59686f(0x4e3)],'kKEjB':_0x3a724f[_0x58195d(0x4e2)],'PjEPz':_0x3a724f[_0xc60f68(0x8e8)],'gnBwG':_0x3a724f[_0xc60f68(0xd2c)],'hIxqd':_0x3a724f[_0xc60f68(0xd35)],'Nocrr':_0x3a724f[_0x4cd48e(0x71b)],'oLJAp':_0x3a724f[_0x58195d(0xd7d)],'dpRGP':_0x3a724f[_0x58195d(0xdf1)],'oJOuL':_0x3a724f[_0x58195d(0x29e)],'lOnxJ':_0x3a724f[_0x1c3e09(0x7c2)],'LZGHz':_0x3a724f[_0xc60f68(0x7d5)],'vquMe':_0x3a724f[_0x59686f(0x3f1)],'kKRWn':_0x3a724f[_0xc60f68(0xd8f)],'rsFKw':_0x3a724f[_0xc60f68(0xe95)],'dezPh':_0x3a724f[_0x4cd48e(0x69e)],'Yopdz':_0x3a724f[_0x58195d(0x62a)],'QJnnD':_0x3a724f[_0xc60f68(0xe60)],'jTBAi':_0x3a724f[_0x1c3e09(0x5c4)],'TWTLa':_0x3a724f[_0xc60f68(0x57c)],'HUEhz':_0x3a724f[_0x59686f(0x240)],'IAxqw':_0x3a724f[_0x59686f(0x50c)],'OYVQp':_0x3a724f[_0xc60f68(0x3d8)],'SZRLv':_0x3a724f[_0x4cd48e(0x5a9)],'RkrWs':_0x3a724f[_0x59686f(0x335)],'CXfSL':_0x3a724f[_0x58195d(0x88e)],'PlyXq':_0x3a724f[_0x59686f(0x526)],'DPPVe':function(_0x23d1f1,_0x29d54f){const _0x31b8e5=_0xc60f68;return _0x3a724f[_0x31b8e5(0xc02)](_0x23d1f1,_0x29d54f);},'sVHOh':function(_0x270c17,_0xa5b27b){const _0xf3d497=_0xc60f68;return _0x3a724f[_0xf3d497(0x7d0)](_0x270c17,_0xa5b27b);},'WIRrY':_0x3a724f[_0x59686f(0xa1e)],'enABw':_0x3a724f[_0x1c3e09(0x9ea)],'hSbhh':_0x3a724f[_0x4cd48e(0x97e)],'pqVVU':_0x3a724f[_0x4cd48e(0x76a)],'aDTFk':_0x3a724f[_0x59686f(0xce6)],'fUiIM':function(_0x28ab95,_0x24451b){const _0x5283ac=_0x59686f;return _0x3a724f[_0x5283ac(0x9f2)](_0x28ab95,_0x24451b);},'xwzVN':_0x3a724f[_0x59686f(0x477)],'DyipQ':_0x3a724f[_0x59686f(0x208)],'AwAMy':function(_0x49d9e9,_0x18c299,_0x14af5d,_0xe34022){const _0x25a108=_0x58195d;return _0x3a724f[_0x25a108(0xcb1)](_0x49d9e9,_0x18c299,_0x14af5d,_0xe34022);},'KENSZ':_0x3a724f[_0x4cd48e(0xee1)]};if(_0x3a724f[_0x4cd48e(0xf3a)](_0x3a724f[_0xc60f68(0xb62)],_0x3a724f[_0x59686f(0x5c3)]))_0x31e3d4+=_0x257a33[-0x2cf*-0x5+0x1b1*0x2+0x5cf*-0x3][_0x1c3e09(0x83f)][_0x59686f(0x91a)+'nt'];else{const _0x25feed=document[_0xc60f68(0x5de)+_0x1c3e09(0xf3d)+_0x59686f(0xa93)](_0x3a724f[_0x1c3e09(0xebf)])[_0x4cd48e(0x91a)+_0x58195d(0xbe5)+_0x4cd48e(0x463)][_0x4cd48e(0x9eb)+_0x4cd48e(0x95a)],_0x116555=_0x25feed[_0xc60f68(0x93e)+_0x59686f(0x48f)+_0x59686f(0x3d6)+_0x4cd48e(0xc64)]('a');for(let _0x3ca64b=-0xd18+0x1b12+-0xdfa;_0x3a724f[_0x59686f(0xdff)](_0x3ca64b,_0x116555[_0x59686f(0x8b2)+'h']);_0x3ca64b++){if(_0x3a724f[_0x4cd48e(0x2ce)](_0x3a724f[_0x1c3e09(0x2a0)],_0x3a724f[_0x59686f(0x2a0)]))_0x2ad218[_0x1c3e09(0xc7e)](_0x236662,_0x2a4b04[_0x2525d1][_0x1c3e09(0x541)],_0x2ad218[_0x4cd48e(0xd84)]);else{if(!_0x116555[_0x3ca64b][_0x58195d(0x541)])continue;_0x116555[_0x3ca64b][_0x59686f(0xd33)+_0xc60f68(0x3eb)+_0x58195d(0x51a)+'r'](_0x3a724f[_0xc60f68(0x9f5)],function(_0x534107){const _0x58ad63=_0x1c3e09,_0x307df5=_0x1c3e09,_0x40cb33=_0xc60f68,_0x5db0b8=_0x59686f,_0x3b42f6=_0x58195d,_0x3ce112={};_0x3ce112[_0x58ad63(0xf54)]=_0x2ad218[_0x58ad63(0xd68)];const _0x22a615=_0x3ce112;_0x2ad218[_0x58ad63(0x505)](_0x2ad218[_0x40cb33(0x31c)],_0x2ad218[_0x5db0b8(0xca1)])?_0x2ad218[_0x5db0b8(0xa2a)](window[_0x58ad63(0x39b)+_0x5db0b8(0xdaa)],0x1e31+0x13ff*0x1+-0x322f)?_0x2ad218[_0x5db0b8(0xa2a)](_0x2ad218[_0x5db0b8(0x899)],_0x2ad218[_0x5db0b8(0xcfb)])?_0x4e909d+=_0x2ce37d[_0x18fbd9][-0x993+-0x1ce9+0x267d]:(_0x534107[_0x40cb33(0x985)+_0x3b42f6(0xd3f)+_0x5db0b8(0x708)](),_0x2ad218[_0x307df5(0xf77)](alert,_0x2ad218[_0x40cb33(0x5f4)])):_0x2ad218[_0x5db0b8(0xa2a)](_0x2ad218[_0x3b42f6(0x96d)],_0x2ad218[_0x307df5(0x96d)])?_0x2ad218[_0x307df5(0x6a7)](modal_open,_0x116555[_0x3ca64b][_0x3b42f6(0x541)],_0x2ad218[_0x40cb33(0xd84)]):(_0xc8cfa3=_0x1d9665[_0x3b42f6(0xd22)](_0x43eb0c)[_0x22a615[_0x40cb33(0xf54)]],_0x2a2f54=''):_0x51aa93=_0x25fa27;});}}document[_0x58195d(0x5de)+_0x59686f(0xf3d)+_0xc60f68(0xa93)](_0x3a724f[_0x1c3e09(0xb19)])[_0x59686f(0xaf6)+_0x1c3e09(0xd5f)+'d'](document[_0x58195d(0x5de)+_0x1c3e09(0xf3d)+_0x59686f(0xa93)](_0x3a724f[_0xc60f68(0x8e8)])),document[_0x4cd48e(0x5de)+_0x1c3e09(0xf3d)+_0x58195d(0xa93)](_0x3a724f[_0x4cd48e(0xb19)])[_0x58195d(0xaf6)+_0x1c3e09(0xd5f)+'d'](document[_0x59686f(0x5de)+_0xc60f68(0xf3d)+_0x59686f(0xa93)](_0x3a724f[_0x58195d(0x9bf)]));var _0x1a1520=document[_0xc60f68(0x5de)+_0xc60f68(0xf3d)+_0x1c3e09(0xa93)](_0x3a724f[_0x58195d(0xebf)]);new Promise((_0x313acb,_0x142baa)=>{const _0x879419=_0x4cd48e,_0x38cc77=_0x59686f,_0x3f838a=_0x59686f,_0x277df7=_0xc60f68,_0xbb6844=_0xc60f68,_0x188a34={'LktZk':function(_0x38d3b2,_0xcb8c2b){const _0x5f9615=_0x376c;return _0x3a724f[_0x5f9615(0xd77)](_0x38d3b2,_0xcb8c2b);},'jrTrX':_0x3a724f[_0x879419(0x360)],'QaNpr':function(_0x1b2b51,_0x20e651){const _0xcb78ed=_0x879419;return _0x3a724f[_0xcb78ed(0xd77)](_0x1b2b51,_0x20e651);},'OGLFG':_0x3a724f[_0x879419(0x3b1)],'NMWVS':_0x3a724f[_0x879419(0xbed)],'gvkPy':function(_0x58cb46,_0x113a2c){const _0x3cf7f2=_0x38cc77;return _0x3a724f[_0x3cf7f2(0x5fa)](_0x58cb46,_0x113a2c);},'lNTzf':_0x3a724f[_0x879419(0x3a7)],'WTZxC':_0x3a724f[_0xbb6844(0xf9e)],'SXrVf':function(_0x3d30f5,_0x51dea8){const _0x56300b=_0x38cc77;return _0x3a724f[_0x56300b(0x38f)](_0x3d30f5,_0x51dea8);},'zCkqG':_0x3a724f[_0x277df7(0x973)],'yMErn':_0x3a724f[_0x277df7(0xe80)],'UpYRd':function(_0x17106a,_0x431cc2){const _0x3b6cbd=_0x3f838a;return _0x3a724f[_0x3b6cbd(0x83a)](_0x17106a,_0x431cc2);},'NFaNM':_0x3a724f[_0xbb6844(0x6f7)],'bInhn':function(_0x30d7bd,_0xa0bc86){const _0x2e2ec3=_0x38cc77;return _0x3a724f[_0x2e2ec3(0xd77)](_0x30d7bd,_0xa0bc86);},'hheES':_0x3a724f[_0x3f838a(0xaff)],'hEeMa':_0x3a724f[_0x38cc77(0x9ea)],'NxMHQ':_0x3a724f[_0xbb6844(0x2e8)],'nJVTp':_0x3a724f[_0x277df7(0xa1e)],'KZQvu':function(_0x78ad44,_0x28d783){const _0xd247f2=_0x3f838a;return _0x3a724f[_0xd247f2(0x950)](_0x78ad44,_0x28d783);},'PIouu':function(_0x4a39ea,_0x43af75){const _0x16eed0=_0xbb6844;return _0x3a724f[_0x16eed0(0xe88)](_0x4a39ea,_0x43af75);},'rLZXR':function(_0x16d9c6,_0x1df511){const _0x39f44e=_0x38cc77;return _0x3a724f[_0x39f44e(0x216)](_0x16d9c6,_0x1df511);},'uokgl':function(_0x154f8e,_0xbbfbd8){const _0xc4531d=_0x38cc77;return _0x3a724f[_0xc4531d(0xd77)](_0x154f8e,_0xbbfbd8);},'FljkH':_0x3a724f[_0x277df7(0x6ec)],'mzCXv':_0x3a724f[_0x38cc77(0xac8)],'Fepns':function(_0x27ac54){const _0x3397bb=_0x3f838a;return _0x3a724f[_0x3397bb(0x28e)](_0x27ac54);},'qhEMG':function(_0x591c15,_0x17017c){const _0xfdfb35=_0x38cc77;return _0x3a724f[_0xfdfb35(0x1d9)](_0x591c15,_0x17017c);},'IrEQN':_0x3a724f[_0x277df7(0x388)]};if(_0x3a724f[_0x3f838a(0x767)](_0x3a724f[_0x879419(0x888)],_0x3a724f[_0x879419(0x888)]))_0x69d3f3=_0x43a2b6[_0x879419(0xd22)](_0x188a34[_0xbb6844(0xb44)](_0xec45f,_0x49af08))[_0x188a34[_0x38cc77(0x737)]],_0x3b0883='';else{lock_chat=0x1d03+0xc5c+-0x295e;if(_0x3a724f[_0xbb6844(0x4bd)](_0x37788f,_0x3a724f[_0x277df7(0x915)])){if(_0x3a724f[_0x3f838a(0xa28)](_0x3a724f[_0x3f838a(0x81f)],_0x3a724f[_0x38cc77(0x81f)])){var _0x4a2cf1=_0x1a1520[_0x277df7(0x91a)+_0x3f838a(0xbe5)+_0x38cc77(0x463)][_0x3f838a(0x585)+_0x277df7(0x54c)+_0xbb6844(0xaee)+_0x38cc77(0x593)][_0x38cc77(0xe00)+_0x3f838a(0x250)+'t'],_0x591d1b=_0x4a2cf1[_0x3f838a(0x773)+_0x3f838a(0x8f1)],_0x2dafdb=[];sentences=[];for(var _0x4f600c=0x2d*0xa+0x3*-0xf+-0x194;_0x3a724f[_0x38cc77(0xbd9)](_0x4f600c,_0x591d1b);_0x4f600c++){if(_0x3a724f[_0xbb6844(0x1d9)](_0x3a724f[_0x38cc77(0xbb2)],_0x3a724f[_0x879419(0xbb2)]))_0x2dafdb[_0x277df7(0xbe6)](_0x4a2cf1[_0x277df7(0x47b)+'ge'](_0x4f600c));else{const _0x3e8d92={};_0x3e8d92[_0x38cc77(0xef3)]=0x1,_0xc0de73[_0xbb6844(0x4dc)]=_0x34e0a6[_0xbb6844(0xd75)+_0xbb6844(0xb99)+'t'](_0x3e8d92),_0x52fc92[_0x879419(0xbe6)](_0x582959[_0x3f838a(0x8df)+_0xbb6844(0xeaa)+_0x38cc77(0xf1b)]());const _0x275ae7={};_0x275ae7[_0x879419(0xef3)]=0x1,_0x366168[_0x277df7(0xbe6)]([_0x5c4aa7[_0x3f838a(0xd75)+_0x277df7(0xb99)+'t'](_0x275ae7),_0x188a34[_0x38cc77(0x324)](_0x49c8ef[_0x38cc77(0x87f)+_0x3f838a(0x455)],0x1a38+0x9ae*0x3+-0x3741)]);}}Promise[_0xbb6844(0xdd0)](_0x2dafdb)[_0x277df7(0x95c)](function(_0x5341c2){const _0x40d9e1=_0x879419,_0x186dc0=_0x879419,_0x249b6a=_0x277df7,_0x355683=_0x38cc77,_0xa4fe1e=_0x38cc77,_0x5f092b={'cLwqY':_0x188a34[_0x40d9e1(0xec0)],'ibUMp':function(_0x3194d3,_0x120ee7){const _0x103c7d=_0x40d9e1;return _0x188a34[_0x103c7d(0xb2f)](_0x3194d3,_0x120ee7);},'djQun':_0x188a34[_0x186dc0(0xc46)],'mDkRF':_0x188a34[_0x186dc0(0x338)]};if(_0x188a34[_0x186dc0(0x542)](_0x188a34[_0x249b6a(0xbfa)],_0x188a34[_0x186dc0(0x7ae)])){var _0x13829c=[],_0x3c06a7=[];for(var _0x6c8340 of _0x5341c2){if(_0x188a34[_0x249b6a(0x323)](_0x188a34[_0x186dc0(0x705)],_0x188a34[_0xa4fe1e(0x705)])){const _0x335a96={};_0x335a96[_0x186dc0(0xef3)]=0x1,_0x4a2cf1[_0xa4fe1e(0x4dc)]=_0x6c8340[_0x355683(0xd75)+_0x40d9e1(0xb99)+'t'](_0x335a96),_0x13829c[_0x355683(0xbe6)](_0x6c8340[_0x249b6a(0x8df)+_0x249b6a(0xeaa)+_0xa4fe1e(0xf1b)]());const _0x1f09aa={};_0x1f09aa[_0x40d9e1(0xef3)]=0x1,_0x3c06a7[_0x40d9e1(0xbe6)]([_0x6c8340[_0x40d9e1(0xd75)+_0x186dc0(0xb99)+'t'](_0x1f09aa),_0x188a34[_0x186dc0(0x9b2)](_0x6c8340[_0x355683(0x87f)+_0x40d9e1(0x455)],0x18a3*0x1+0xae0+-0xa*0x38d)]);}else try{_0x31639a=_0x1d9655[_0x40d9e1(0xd22)](_0x188a34[_0xa4fe1e(0x324)](_0x133572,_0x5acfe7))[_0x188a34[_0x355683(0x737)]],_0x5c4a8f='';}catch(_0x3d8795){_0x36f355=_0x50c061[_0x40d9e1(0xd22)](_0x535ef4)[_0x188a34[_0xa4fe1e(0x737)]],_0x43d550='';}}return Promise[_0x40d9e1(0xdd0)]([Promise[_0x186dc0(0xdd0)](_0x13829c),_0x3c06a7]);}else _0x253841[_0x40d9e1(0xd33)+_0x186dc0(0x3eb)+_0x186dc0(0x51a)+'r'](_0x188a34[_0xa4fe1e(0xf4b)],function(){const _0x41b959=_0x186dc0,_0xcc1326=_0x186dc0,_0x52347=_0xa4fe1e,_0x593072=_0x40d9e1,_0x261228=_0x40d9e1,_0x5c28ec={'DMYye':_0x5f092b[_0x41b959(0x5eb)],'TbuFl':function(_0x1ab454,_0x513818){const _0x1fa105=_0x41b959;return _0x5f092b[_0x1fa105(0x688)](_0x1ab454,_0x513818);},'KZTVZ':_0x5f092b[_0xcc1326(0x1fa)],'MUhCI':_0x5f092b[_0x52347(0x7c9)]};_0x4b917b[_0x52347(0x91a)+_0x261228(0xbe5)+_0x593072(0x463)][_0xcc1326(0x585)+_0x261228(0x54c)+_0x41b959(0xaee)+_0x41b959(0x593)][_0x593072(0x902)+_0x52347(0x225)+_0x41b959(0xa7a)+_0x41b959(0x26f)][_0x52347(0x95c)](function(){const _0x168b36=_0xcc1326,_0x57897b=_0x41b959,_0x2e253c=_0x261228,_0x3ea2e0=_0x52347,_0x4a9fce=_0xcc1326,_0x32f24b={'DHWRG':_0x5c28ec[_0x168b36(0x7b5)],'kkOOw':function(_0x5de31a,_0x384d4d){const _0x291d83=_0x168b36;return _0x5c28ec[_0x291d83(0xb22)](_0x5de31a,_0x384d4d);},'IdtDZ':_0x5c28ec[_0x57897b(0xf85)]};_0x31467d[_0x168b36(0x91a)+_0x2e253c(0xbe5)+_0x4a9fce(0x463)][_0x2e253c(0x585)+_0x57897b(0x54c)+_0x3ea2e0(0xaee)+_0x57897b(0x593)][_0x2e253c(0x662)+_0x4a9fce(0xb18)]['on'](_0x5c28ec[_0x4a9fce(0x699)],function(_0x902a0a){const _0x541cd3=_0x2e253c,_0x53d925=_0x168b36,_0x5d3c4d=_0x2e253c,_0x42d331=_0x168b36;_0x1605e2[_0x541cd3(0x7b2)](_0x32f24b[_0x53d925(0x504)]),_0x32f24b[_0x5d3c4d(0xc8a)](_0x420d68,_0x32f24b[_0x541cd3(0x46a)]);});});});})[_0xbb6844(0x95c)](function(_0x2162b1){const _0x4fa75c=_0x277df7,_0x58a63f=_0x3f838a,_0x3fb0f7=_0x38cc77,_0x1155c4=_0x277df7,_0x2c44e0=_0xbb6844,_0x5eb52b={'ogFic':_0x2ad218[_0x4fa75c(0x515)],'blIeB':_0x2ad218[_0x58a63f(0x987)],'YacjF':_0x2ad218[_0x58a63f(0x258)],'kZFHH':function(_0x2d8ed5){const _0x27745a=_0x4fa75c;return _0x2ad218[_0x27745a(0x87a)](_0x2d8ed5);},'GkBSs':_0x2ad218[_0x3fb0f7(0xd68)],'BvwVt':function(_0x2770b0,_0x4b326a){const _0x336740=_0x1155c4;return _0x2ad218[_0x336740(0xace)](_0x2770b0,_0x4b326a);},'xrTVP':function(_0x5605b9,_0x1749aa){const _0xa033f7=_0x3fb0f7;return _0x2ad218[_0xa033f7(0xf77)](_0x5605b9,_0x1749aa);},'AMbNr':_0x2ad218[_0x58a63f(0x5f4)],'WZvBY':_0x2ad218[_0x1155c4(0xeb0)],'dExtA':function(_0x2aba3e,_0x5dfde9){const _0x1ac540=_0x1155c4;return _0x2ad218[_0x1ac540(0x2db)](_0x2aba3e,_0x5dfde9);},'zzNoq':function(_0x43d5b9,_0x2cb026){const _0x581c6f=_0x58a63f;return _0x2ad218[_0x581c6f(0xf77)](_0x43d5b9,_0x2cb026);},'RBFth':_0x2ad218[_0x1155c4(0xcd8)],'nRDRH':_0x2ad218[_0x58a63f(0x5a1)],'vXjNg':_0x2ad218[_0x4fa75c(0x942)],'qeVAI':function(_0x29f4ce,_0x77bbe1){const _0x517ff7=_0x4fa75c;return _0x2ad218[_0x517ff7(0xa2a)](_0x29f4ce,_0x77bbe1);},'mQcKK':_0x2ad218[_0x4fa75c(0xc0f)],'AgWMW':function(_0xd726c5,_0x379f2b){const _0x342112=_0x1155c4;return _0x2ad218[_0x342112(0x838)](_0xd726c5,_0x379f2b);},'mBXhI':function(_0x17f1bb,_0x2a7bac){const _0x481d68=_0x58a63f;return _0x2ad218[_0x481d68(0x505)](_0x17f1bb,_0x2a7bac);},'fyucS':_0x2ad218[_0x2c44e0(0xb6a)],'QDpSB':function(_0x31e278,_0x2f4e47){const _0x1cc2e9=_0x3fb0f7;return _0x2ad218[_0x1cc2e9(0x505)](_0x31e278,_0x2f4e47);},'OEiCp':_0x2ad218[_0x4fa75c(0x90c)],'BLnrB':function(_0x49b881,_0x5739cd){const _0x506275=_0x58a63f;return _0x2ad218[_0x506275(0x2db)](_0x49b881,_0x5739cd);},'RvtcS':_0x2ad218[_0x2c44e0(0xf9a)],'lNeFh':function(_0x50fa5b,_0x2ec714){const _0x4c3652=_0x4fa75c;return _0x2ad218[_0x4c3652(0x2db)](_0x50fa5b,_0x2ec714);},'YnawD':function(_0xf84337,_0x29dc05){const _0x1f1bc1=_0x3fb0f7;return _0x2ad218[_0x1f1bc1(0xf8a)](_0xf84337,_0x29dc05);},'NNiUl':function(_0x3f2246,_0x163d0e){const _0x197a25=_0x58a63f;return _0x2ad218[_0x197a25(0x505)](_0x3f2246,_0x163d0e);},'keFbi':_0x2ad218[_0x2c44e0(0x51b)],'PxWtw':_0x2ad218[_0x1155c4(0x45d)],'LSztY':_0x2ad218[_0x2c44e0(0xc07)]};if(_0x2ad218[_0x3fb0f7(0xcba)](_0x2ad218[_0x4fa75c(0xa4a)],_0x2ad218[_0x3fb0f7(0xdb6)])){const _0x5a77d4=_0x188a34[_0x2c44e0(0x6f2)][_0x3fb0f7(0xa49)]('|');let _0x5e5f1b=-0x2327*0x1+0x2373+-0x4c;while(!![]){switch(_0x5a77d4[_0x5e5f1b++]){case'0':const _0x3e3496={};_0x3e3496[_0x3fb0f7(0xc59)]=_0x188a34[_0x58a63f(0x886)],_0x3e3496[_0x2c44e0(0x91a)+'nt']=_0x7b35b5,_0xfac90d[_0x1155c4(0xbe6)](_0x3e3496);continue;case'1':_0x8b5481[_0x58a63f(0x5de)+_0x3fb0f7(0xf3d)+_0x3fb0f7(0xa93)](_0x188a34[_0x58a63f(0x3d4)])[_0x3fb0f7(0x619)]='';continue;case'2':_0x2dda7e=0xad*0x36+-0x971+-0x1b0d;continue;case'3':return;case'4':const _0x4bca02={};_0x4bca02[_0x1155c4(0xc59)]=_0x188a34[_0x2c44e0(0xa6a)],_0x4bca02[_0x58a63f(0x91a)+'nt']=_0x46d4e1,_0x16d035[_0x3fb0f7(0xbe6)](_0x4bca02);continue;}break;}}else{for(var _0x6a074e=0x58*-0x10+-0x1*0x14a+0x6ca;_0x2ad218[_0x58a63f(0xe41)](_0x6a074e,_0x2162b1[-0x20ca*-0x1+0x1c61+-0x3d2b][_0x2c44e0(0x8b2)+'h']);++_0x6a074e){if(_0x2ad218[_0x58a63f(0xf63)](_0x2ad218[_0x2c44e0(0x6b0)],_0x2ad218[_0x2c44e0(0x6b0)])){var _0x3b79fb=_0x2162b1[0x1*0x1fb5+0x11*-0xec+-0x1009][_0x6a074e];_0x4a2cf1[_0x3fb0f7(0xd18)+'ge']=_0x2162b1[0x1*-0xef+-0xd9+0x1c9*0x1][_0x6a074e][-0x1f08+-0x7c5+0x2*0x1367],_0x4a2cf1[_0x1155c4(0x4dc)]=_0x2162b1[-0x3*-0xec+0xbbf*0x1+-0xe82][_0x6a074e][-0xde4+-0x1d56+0x2b3a];var _0x34bd81=_0x3b79fb[_0x1155c4(0x70a)],_0x4dc38e='',_0x7ec3b8='',_0x3b299d='',_0x2be3ec=_0x34bd81[0x8*-0x413+0x1b*-0x13a+0x41b6][_0x58a63f(0x5b6)+_0x2c44e0(0xb68)][0xa56+-0x1*0x1669+-0x56*-0x24],_0x15ba64=_0x34bd81[-0x12eb+0x2*0x719+-0x27*-0x1f][_0x1155c4(0x5b6)+_0x1155c4(0xb68)][-0x101c+0x239*0x11+-0x15a9*0x1];for(var _0x4139bf of _0x34bd81){if(_0x2ad218[_0x58a63f(0x8ab)](_0x2ad218[_0x58a63f(0x464)],_0x2ad218[_0x3fb0f7(0x464)])){_0x2ad218[_0x58a63f(0xbd5)](_0x2ad218[_0x3fb0f7(0x413)](_0x4a2cf1[_0x58a63f(0x4dc)][_0x2c44e0(0x468)],0x1c25*-0x1+-0x284*0x7+0x2dc4),_0x2ad218[_0x3fb0f7(0xc5e)](_0x15ba64,_0x4139bf[_0x2c44e0(0x5b6)+_0x2c44e0(0xb68)][0x3*0xa31+-0x1a0a+-0x485]))&&(_0x2ad218[_0x58a63f(0xcba)](_0x2ad218[_0x4fa75c(0xd4a)],_0x2ad218[_0x3fb0f7(0x5dc)])?_0x4c2f4f+=_0x5a7184[-0x1abf+-0xf*-0xa0+0x1*0x115f][_0x2c44e0(0x83f)][_0x2c44e0(0x91a)+'nt']:(sentences[_0x58a63f(0xbe6)]([_0x4a2cf1[_0x1155c4(0xd18)+'ge'],_0x4dc38e,_0x7ec3b8,_0x3b299d]),_0x4dc38e='',_0x7ec3b8=''));_0x15ba64=_0x4139bf[_0x58a63f(0x5b6)+_0x3fb0f7(0xb68)][0xcf+0x6b3+-0x77e*0x1],_0x4dc38e+=_0x4139bf[_0x3fb0f7(0xc3a)];if(/[\.\?\!。,?!]$/[_0x2c44e0(0xe40)](_0x4139bf[_0x1155c4(0xc3a)])){if(_0x2ad218[_0x2c44e0(0xe5a)](_0x2ad218[_0x2c44e0(0x8c3)],_0x2ad218[_0x4fa75c(0xb74)])){const _0x420ea9=_0x5eb52b[_0x58a63f(0xba4)][_0x58a63f(0xa49)]('|');let _0x25c4db=-0x1196+0xfde+0x1b8;while(!![]){switch(_0x420ea9[_0x25c4db++]){case'0':return;case'1':_0x1c4291[_0x1155c4(0x93e)+_0x1155c4(0x48f)+_0x4fa75c(0x9b1)](_0x5eb52b[_0x1155c4(0x9ab)])[_0x3fb0f7(0x8b8)][_0x3fb0f7(0xd73)+'ay']='';continue;case'2':_0x141195[_0x2c44e0(0x93e)+_0x58a63f(0x48f)+_0x58a63f(0x9b1)](_0x5eb52b[_0x2c44e0(0x5d4)])[_0x58a63f(0x8b8)][_0x4fa75c(0xd73)+'ay']='';continue;case'3':_0x5eb52b[_0x3fb0f7(0x5f5)](_0x37057e);continue;case'4':_0x5097a0=-0x181d*0x1+-0x1*-0xd25+0xaf8;continue;}break;}}else sentences[_0x2c44e0(0xbe6)]([_0x4a2cf1[_0x1155c4(0xd18)+'ge'],_0x4dc38e,_0x7ec3b8,_0x3b299d]),_0x4dc38e='',_0x7ec3b8='';}if(_0x4a2cf1[_0x2c44e0(0x4dc)]&&_0x4a2cf1[_0x2c44e0(0x4dc)][_0x4fa75c(0x468)]&&_0x4a2cf1[_0x1155c4(0x4dc)][_0x58a63f(0xe6e)+'t']){if(_0x2ad218[_0x4fa75c(0xa2a)](_0x2ad218[_0x2c44e0(0x610)],_0x2ad218[_0x3fb0f7(0x610)])){if(_0x2ad218[_0x2c44e0(0xe41)](_0x4139bf[_0x3fb0f7(0x5b6)+_0x3fb0f7(0xb68)][0x27*0x53+-0xf3d+0x29c],_0x2ad218[_0x1155c4(0x413)](_0x4a2cf1[_0x4fa75c(0x4dc)][_0x3fb0f7(0x468)],-0x156a+0x19c1*-0x1+0x2f2d))){if(_0x2ad218[_0x4fa75c(0x505)](_0x2ad218[_0x4fa75c(0x422)],_0x2ad218[_0x2c44e0(0x422)])){const _0x581a6e={'rzkTu':_0x188a34[_0x3fb0f7(0xec0)],'pYLmU':function(_0x1b547d,_0x57eb53){const _0x4d52c6=_0x3fb0f7;return _0x188a34[_0x4d52c6(0x991)](_0x1b547d,_0x57eb53);},'eEWyl':_0x188a34[_0x4fa75c(0xc46)],'dmgAR':_0x188a34[_0x58a63f(0x338)]};_0x1e78a0[_0x1155c4(0x91a)+_0x3fb0f7(0xbe5)+_0x1155c4(0x463)][_0x1155c4(0x585)+_0x4fa75c(0x54c)+_0x1155c4(0xaee)+_0x58a63f(0x593)][_0x58a63f(0x902)+_0x1155c4(0x225)+_0x4fa75c(0xa7a)+_0x58a63f(0x26f)][_0x3fb0f7(0x95c)](function(){const _0x5dd659=_0x3fb0f7,_0x247a92=_0x58a63f,_0xc1e576=_0x58a63f,_0x44ca47=_0x4fa75c,_0xdfd54a=_0x4fa75c,_0x13eeb3={'JriHU':_0x581a6e[_0x5dd659(0x3b9)],'KHaLf':function(_0x5e8669,_0x54c21a){const _0x12383b=_0x5dd659;return _0x581a6e[_0x12383b(0x284)](_0x5e8669,_0x54c21a);},'hjHyF':_0x581a6e[_0x247a92(0x601)]};_0x4387bb[_0x5dd659(0x91a)+_0xc1e576(0xbe5)+_0xdfd54a(0x463)][_0x44ca47(0x585)+_0xdfd54a(0x54c)+_0x247a92(0xaee)+_0xc1e576(0x593)][_0x44ca47(0x662)+_0xc1e576(0xb18)]['on'](_0x581a6e[_0xc1e576(0xaf7)],function(_0xf62682){const _0x4c5b23=_0x44ca47,_0x413072=_0x44ca47,_0x388e27=_0xc1e576,_0x4c7764=_0xc1e576;_0x20e216[_0x4c5b23(0x7b2)](_0x13eeb3[_0x413072(0xaf2)]),_0x13eeb3[_0x388e27(0xb2d)](_0x5c8258,_0x13eeb3[_0x388e27(0x78a)]);});});}else _0x7ec3b8='';}else _0x2ad218[_0x1155c4(0x630)](_0x2ad218[_0x2c44e0(0xbd6)],_0x2ad218[_0x58a63f(0xbd6)])?(_0x21be6e=_0x394625[_0x1155c4(0x696)+_0x3fb0f7(0x7ee)+'t'],_0x511a25[_0x1155c4(0x233)+'e']()):_0x7ec3b8='';if(_0x2ad218[_0x3fb0f7(0x8bd)](_0x4139bf[_0x1155c4(0x5b6)+_0x58a63f(0xb68)][-0x3*-0x4bc+0x31*-0x66+0x1*0x557],_0x2ad218[_0x58a63f(0x374)](_0x4a2cf1[_0x4fa75c(0x4dc)][_0x1155c4(0xe6e)+'t'],0x14af+0x1c2e+0x1e1*-0x1a))){if(_0x2ad218[_0x4fa75c(0x825)](_0x2ad218[_0x58a63f(0x826)],_0x2ad218[_0x1155c4(0x826)]))return _0x264a15;else _0x7ec3b8+='';}else _0x2ad218[_0x2c44e0(0xf8a)](_0x4139bf[_0x1155c4(0x5b6)+_0x58a63f(0xb68)][-0x210c+-0x1*0x57+0x2168],_0x2ad218[_0x58a63f(0x413)](_0x2ad218[_0x1155c4(0x713)](_0x4a2cf1[_0x1155c4(0x4dc)][_0x58a63f(0xe6e)+'t'],-0x2*-0xae7+-0x1*-0x2462+0x3a2e*-0x1),-0x85d*0x1+0xb6b+-0x30b))?_0x2ad218[_0x4fa75c(0xa9d)](_0x2ad218[_0x2c44e0(0xb0b)],_0x2ad218[_0x2c44e0(0xb90)])?_0x7ec3b8+='':_0x41bf69+='':_0x2ad218[_0x2c44e0(0xe5a)](_0x2ad218[_0x4fa75c(0xf67)],_0x2ad218[_0x4fa75c(0xf67)])?_0x7ec3b8+='':(_0x550a83=_0x28abbf[_0x58a63f(0xd22)](_0x28d1f4)[_0x5eb52b[_0x58a63f(0x6a0)]],_0x1b3f9e='');}else _0x24b925=_0x2f1abd[_0x58a63f(0x696)+_0x1155c4(0x7ee)+'t'],_0x2dce11[_0x4fa75c(0x233)+'e'](),_0x5eb52b[_0x4fa75c(0x5f5)](_0x1e0060);}_0x3b299d=Math[_0x3fb0f7(0x739)](_0x2ad218[_0x58a63f(0x413)](_0x4139bf[_0x58a63f(0x5b6)+_0x4fa75c(0xb68)][-0x1*0xd3f+0xb*-0x305+0x2e7b],_0x4139bf[_0x58a63f(0xe6e)+'t']));}else try{_0x54da0c=_0x5bccfc[_0x2c44e0(0xd22)](_0x5eb52b[_0x58a63f(0x711)](_0x1d260b,_0x5e07f1))[_0x5eb52b[_0x3fb0f7(0x6a0)]],_0x470264='';}catch(_0xf464c){_0x4d43f7=_0x426481[_0x2c44e0(0xd22)](_0x2fe554)[_0x5eb52b[_0x2c44e0(0x6a0)]],_0x22b6ae='';}}}else{const _0x36b2c6=NFPWoI[_0x1155c4(0x7c0)](_0xfc038c,NFPWoI[_0x58a63f(0xcf9)](NFPWoI[_0x58a63f(0x291)](NFPWoI[_0x4fa75c(0x36e)],NFPWoI[_0x1155c4(0x5ba)]),');'));_0x1418cd=NFPWoI[_0x4fa75c(0xcb6)](_0x36b2c6);}}sentences[_0x1155c4(0x796)]((_0x4ca5e2,_0xcdbd9c)=>{const _0x3402bf=_0x4fa75c,_0x133306=_0x58a63f,_0x107200=_0x4fa75c,_0x268e57=_0x2c44e0,_0x170a11=_0x4fa75c,_0x4aa549={'JUZXH':function(_0x1c05a7,_0x46dbdb){const _0x210bf4=_0x376c;return _0x5eb52b[_0x210bf4(0x860)](_0x1c05a7,_0x46dbdb);},'dFJoV':function(_0xd0fefe,_0x2057bc){const _0x3d9d7b=_0x376c;return _0x5eb52b[_0x3d9d7b(0x8c0)](_0xd0fefe,_0x2057bc);},'fnVxY':_0x5eb52b[_0x3402bf(0x79d)],'ZLBUZ':function(_0x604460,_0x1a2e32){const _0x3c9723=_0x3402bf;return _0x5eb52b[_0x3c9723(0x711)](_0x604460,_0x1a2e32);},'igpQm':_0x5eb52b[_0x3402bf(0xc71)],'LqdfE':_0x5eb52b[_0x133306(0x941)],'UMJpl':_0x5eb52b[_0x268e57(0x6a0)],'WBKzX':function(_0x3a95ad,_0x335b88){const _0x5a5464=_0x3402bf;return _0x5eb52b[_0x5a5464(0x711)](_0x3a95ad,_0x335b88);}};if(_0x5eb52b[_0x3402bf(0x4a1)](_0x5eb52b[_0x268e57(0xc56)],_0x5eb52b[_0x268e57(0xc56)])){if(_0x5eb52b[_0x133306(0xf6b)](_0x4ca5e2[0x1c0f+0x1b*-0x65+-0x1168],_0xcdbd9c[0x1740+0x5*-0x3e1+0x15*-0x2f])){if(_0x5eb52b[_0x268e57(0x94d)](_0x5eb52b[_0x268e57(0xda9)],_0x5eb52b[_0x3402bf(0xda9)])){const _0x379a6a={'DXbac':function(_0x4d2381,_0x335e66){const _0x1645c3=_0x133306;return _0x4aa549[_0x1645c3(0xdf4)](_0x4d2381,_0x335e66);},'xqHhz':function(_0x473d7b,_0x581c92){const _0x4fe1b2=_0x107200;return _0x4aa549[_0x4fe1b2(0x9f9)](_0x473d7b,_0x581c92);},'edVYD':_0x4aa549[_0x107200(0x933)],'IAojc':function(_0x456f2f,_0xcc68ce){const _0x125c8a=_0x268e57;return _0x4aa549[_0x125c8a(0x8d4)](_0x456f2f,_0xcc68ce);},'gZHcW':_0x4aa549[_0x133306(0xa00)],'CKcWg':_0x4aa549[_0x107200(0xdaf)]};_0x482da3[_0x107200(0xd22)](_0x6e46a9[_0x107200(0x451)+'es'][0x22*0x65+0xe51+-0x1bbb][_0x107200(0x878)+'ge'][_0x107200(0x91a)+'nt'][_0x170a11(0x69d)+_0x268e57(0x9ec)]('\x0a',''))[_0x3402bf(0xd9e)+'ch'](_0x290ff2=>{const _0x1deddd=_0x3402bf,_0xfd7013=_0x268e57,_0x352cb8=_0x268e57,_0x514ac1=_0x3402bf,_0x29e9b0=_0x3402bf;if(_0x379a6a[_0x1deddd(0x564)](_0x379a6a[_0x1deddd(0x87e)](_0x30b8b5,_0x290ff2)[_0xfd7013(0x8b2)+'h'],0x9fa+-0x1*0x4c6+-0x52f*0x1))_0x3b2194[_0x1deddd(0x5de)+_0x1deddd(0xf3d)+_0x352cb8(0xa93)](_0x379a6a[_0x29e9b0(0x85b)])[_0x29e9b0(0xdde)+_0xfd7013(0x4ea)]+=_0x379a6a[_0x1deddd(0x531)](_0x379a6a[_0x352cb8(0x531)](_0x379a6a[_0x352cb8(0xd88)],_0x379a6a[_0x514ac1(0x87e)](_0x5c0953,_0x290ff2)),_0x379a6a[_0x352cb8(0xfa2)]);});}else return-(0x613*0x1+0x1b61+-0x2173);}if(_0x5eb52b[_0x133306(0x860)](_0x4ca5e2[0x1dbf+-0x2*-0x1141+-0x4041],_0xcdbd9c[0x21f5+0x195a*0x1+-0x13c5*0x3])){if(_0x5eb52b[_0x3402bf(0x76e)](_0x5eb52b[_0x133306(0xe52)],_0x5eb52b[_0x107200(0xe52)])){_0x5eb52b[_0x3402bf(0xd6a)](_0xc977b6,_0x5eb52b[_0x170a11(0x75d)]);return;}else return 0x1*0x13f3+-0x99b*-0x1+-0x1d8d;}if(_0x5eb52b[_0x170a11(0xb07)](_0x4ca5e2[0x3*-0x913+-0xb*0x293+0x378c][_0x133306(0x8b2)+'h'],-0x20*0x10c+-0xcdc+0x437*0xb)&&_0x5eb52b[_0x170a11(0xb07)](_0xcdbd9c[-0x739*-0x3+0x17b*0x1a+-0x105*0x3b][_0x3402bf(0x8b2)+'h'],0x14de+0x5*0x57+-0x1690)&&_0x5eb52b[_0x268e57(0xf6b)](_0x4ca5e2[0x343*0x9+-0x1813*0x1+-0x546][-0x10a*-0x2+-0x1*0xde5+0x1*0xbd1],_0xcdbd9c[-0x165c+-0x1f1b+0x75*0x75][-0x9cd+0x1f73+-0x15a6])){if(_0x5eb52b[_0x268e57(0x94d)](_0x5eb52b[_0x3402bf(0x3ce)],_0x5eb52b[_0x107200(0x3ce)]))_0x3313f5+=_0x2db0a6[0x1bc9*-0x1+0x179d+-0x216*-0x2][_0x268e57(0x83f)][_0x107200(0x91a)+'nt'];else return-(0x4*0x56a+-0x2656*0x1+0x10af);}if(_0x5eb52b[_0x107200(0x4fd)](_0x4ca5e2[-0xb*-0x264+0x21e6+-0x3c30][_0x170a11(0x8b2)+'h'],0x1d*-0x90+0xf75+0xdc)&&_0x5eb52b[_0x268e57(0x977)](_0xcdbd9c[-0xd44+-0x1*-0x16e6+-0x9a0][_0x268e57(0x8b2)+'h'],-0xf4f*0x1+0x488*-0x3+0x5*0x5c8)&&_0x5eb52b[_0x170a11(0x4fd)](_0x4ca5e2[-0x3*0x1df+0x5*0xed+0xfe][0x41*0x2a+-0x12ee+-0x4*-0x211],_0xcdbd9c[-0xb7d+0x1*0x20d4+-0x1555][-0x3*-0x10b+-0x64f+0x32e])){if(_0x5eb52b[_0x107200(0x6e6)](_0x5eb52b[_0x133306(0x723)],_0x5eb52b[_0x268e57(0x723)])){const _0x302d9f=_0x126ee8[_0x133306(0xd6d)](_0x1397e4,arguments);return _0x2c3058=null,_0x302d9f;}else return-0x3*-0x581+0x11ae+-0x2230;}if(_0x5eb52b[_0x3402bf(0xf6b)](_0x4ca5e2[-0xe27+0x3d1*-0x2+0x744*0x3],_0xcdbd9c[-0x13b5*0x1+0xe6b*-0x2+0x308e])){if(_0x5eb52b[_0x107200(0x4a1)](_0x5eb52b[_0x3402bf(0x25f)],_0x5eb52b[_0x3402bf(0x25f)]))return-(0xafa+0xc*-0x6d+-0x5dd);else try{_0x184057=_0x5eb52b[_0x107200(0xd6a)](_0x2216b9,_0x1ed19e);const _0x5b499b={};return _0x5b499b[_0x133306(0x7a7)]=_0x5eb52b[_0x133306(0xad6)],_0x47c537[_0x133306(0x4a3)+'e'][_0x3402bf(0xb65)+'pt'](_0x5b499b,_0x725b13,_0x97fb9d);}catch(_0x26eec4){}}if(_0x5eb52b[_0x3402bf(0x977)](_0x4ca5e2[-0xc9*0x1+-0x1330*0x1+0x13fc],_0xcdbd9c[0x13d*0xe+0x128c+-0x23df])){if(_0x5eb52b[_0x107200(0x4a1)](_0x5eb52b[_0x268e57(0x5cc)],_0x5eb52b[_0x107200(0x5cc)]))return-0x2457+-0x1*-0x1067+0x3fd*0x5;else _0x496fd1=_0x3f8e22[_0x268e57(0xd22)](_0x4aa549[_0x107200(0x8d4)](_0x3fd7fe,_0x4bf518))[_0x4aa549[_0x268e57(0x77e)]],_0x2b0042='';}return 0xe1*-0x5+-0xdff+-0x499*-0x4;}else{var _0x2e340f=[],_0x5f1d53=[];for(var _0x5a5037 of _0x2bc851){const _0x771a24={};_0x771a24[_0x170a11(0xef3)]=0x1,_0x21012f[_0x107200(0x4dc)]=_0x5a5037[_0x170a11(0xd75)+_0x133306(0xb99)+'t'](_0x771a24),_0x2e340f[_0x268e57(0xbe6)](_0x5a5037[_0x170a11(0x8df)+_0x268e57(0xeaa)+_0x133306(0xf1b)]());const _0x1a607e={};_0x1a607e[_0x170a11(0xef3)]=0x1,_0x5f1d53[_0x107200(0xbe6)]([_0x5a5037[_0x170a11(0xd75)+_0x170a11(0xb99)+'t'](_0x1a607e),_0x4aa549[_0x107200(0x390)](_0x5a5037[_0x133306(0x87f)+_0x3402bf(0x455)],-0x29*0xd9+-0x531*0x5+0x3*0x143d)]);}return _0xc6cfae[_0x170a11(0xdd0)]([_0x429c6c[_0x3402bf(0xdd0)](_0x2e340f),_0x5f1d53]);}}),modalele=[_0x2ad218[_0x3fb0f7(0x603)]],sentencesContent='';for(let _0x56497e=-0xedf+-0x1b9d+0x2a7c;_0x2ad218[_0x4fa75c(0x492)](_0x56497e,sentences[_0x3fb0f7(0x8b2)+'h']);_0x56497e++){if(_0x2ad218[_0x4fa75c(0x883)](_0x2ad218[_0x4fa75c(0xb12)],_0x2ad218[_0x2c44e0(0xb12)]))sentencesContent+=sentences[_0x56497e][-0x1eec*-0x1+0x1*-0x2045+-0x15a*-0x1];else return-(-0x6a7+-0xc7+0x76f);}const _0x478853={};_0x478853[_0x58a63f(0x696)+_0x3fb0f7(0x7ee)+'t']=sentencesContent,_0x478853[_0x58a63f(0xf98)]=_0x1a1520[_0x4fa75c(0x91a)+_0x2c44e0(0xbe5)+_0x2c44e0(0x463)][_0x2c44e0(0x585)+_0x2c44e0(0x54c)+_0x58a63f(0xaee)+_0x58a63f(0x593)][_0x2c44e0(0x334)+'e'],article=_0x478853,_0x2ad218[_0x4fa75c(0xf77)](_0x313acb,_0x2ad218[_0x58a63f(0x6b7)]);}})[_0xbb6844(0x670)](function(_0x45fd45){const _0x1f541c=_0x3f838a,_0x375610=_0x879419,_0x105a05=_0xbb6844,_0x558299=_0x38cc77,_0x4c3bf2=_0x879419;if(_0x188a34[_0x1f541c(0x2e1)](_0x188a34[_0x375610(0xd52)],_0x188a34[_0x105a05(0xd52)]))lock_chat=0x150b+-0x1c4d+-0x742*-0x1,console[_0x558299(0x79c)](_0x45fd45);else{const _0x2ac52b=/^[0-9,\s]+$/;return!_0x2ac52b[_0x558299(0xe40)](_0x247478);}});}else _0x595264+=_0x3e4cce[_0x38cc77(0xe4f)+_0xbb6844(0x29a)+_0x38cc77(0x58b)](_0x8ba43d[_0x25bcb5]);}else{if(_0x3a724f[_0x277df7(0x29f)](_0x3a724f[_0x277df7(0x2ea)],_0x3a724f[_0x879419(0xea1)]))modalele=_0x3a724f[_0x879419(0xa77)](eleparse,_0x1a1520[_0xbb6844(0x91a)+_0xbb6844(0x572)+_0x3f838a(0x358)]),article=new Readability(_0x1a1520[_0x38cc77(0x91a)+_0x277df7(0x572)+_0x3f838a(0x358)][_0xbb6844(0x930)+_0x38cc77(0xb03)](!![]))[_0xbb6844(0xd22)](),_0x3a724f[_0x277df7(0x769)](_0x313acb,_0x3a724f[_0x879419(0x3a7)]);else{_0x57699c=-0x1*-0x2556+-0x116d+-0x3*0x6a3;return;}}}})[_0x59686f(0x95c)](()=>{const _0x44386d=_0xc60f68,_0x5e82dd=_0x58195d,_0xd3171a=_0x59686f,_0x2d2b26=_0x4cd48e,_0x2dfb34=_0x4cd48e,_0x276c95={'dspUd':function(_0x478327,_0x6a3267){const _0x162c27=_0x376c;return _0x2ad218[_0x162c27(0x381)](_0x478327,_0x6a3267);},'xHLpf':_0x2ad218[_0x44386d(0x7bc)],'lurfX':_0x2ad218[_0x44386d(0xf0c)],'tYMgl':function(_0x222893,_0x13c475){const _0x1391d0=_0x5e82dd;return _0x2ad218[_0x1391d0(0x2c6)](_0x222893,_0x13c475);},'nUYsi':_0x2ad218[_0x5e82dd(0x5f4)],'BJWwd':_0x2ad218[_0x2d2b26(0x88f)],'EHqYh':_0x2ad218[_0x2d2b26(0x9d2)],'prSkV':_0x2ad218[_0x5e82dd(0x86f)],'zWvxL':function(_0x132618){const _0x5855d0=_0x44386d;return _0x2ad218[_0x5855d0(0x2b9)](_0x132618);},'WFSvV':function(_0x32b3cd,_0x3f694f){const _0x1273a1=_0x2d2b26;return _0x2ad218[_0x1273a1(0x713)](_0x32b3cd,_0x3f694f);},'YDedT':function(_0x579ce3,_0x22e103){const _0x3b8a5d=_0xd3171a;return _0x2ad218[_0x3b8a5d(0x1f1)](_0x579ce3,_0x22e103);},'mseZs':function(_0x472c52,_0x4ca8a0){const _0x41840e=_0x2dfb34;return _0x2ad218[_0x41840e(0x3f8)](_0x472c52,_0x4ca8a0);},'KTtJC':_0x2ad218[_0xd3171a(0x2b7)],'njTOe':_0x2ad218[_0x2d2b26(0x839)],'KPLLv':_0x2ad218[_0x5e82dd(0x3ea)],'OkbqH':_0x2ad218[_0x44386d(0x559)],'LiLMU':function(_0x450044,_0x3d34d5){const _0x1dd2ab=_0x2d2b26;return _0x2ad218[_0x1dd2ab(0x7e8)](_0x450044,_0x3d34d5);},'fstpj':_0x2ad218[_0x2dfb34(0xe6d)],'NVwzj':_0x2ad218[_0x5e82dd(0x5da)],'GFPvs':_0x2ad218[_0xd3171a(0x7db)],'fMDUH':_0x2ad218[_0x44386d(0x6fd)],'rwIld':_0x2ad218[_0x2dfb34(0x4b8)],'rFKdM':function(_0xa48810,_0x6e005b){const _0x5c8623=_0x2dfb34;return _0x2ad218[_0x5c8623(0xe6b)](_0xa48810,_0x6e005b);},'iRFnu':function(_0x103c7e,_0x4fae01){const _0xb3aa2a=_0x44386d;return _0x2ad218[_0xb3aa2a(0x368)](_0x103c7e,_0x4fae01);},'fCeRj':_0x2ad218[_0x44386d(0xe9d)],'QgAkl':_0x2ad218[_0x44386d(0x6b9)],'yJazh':_0x2ad218[_0x44386d(0x30c)],'BrzEm':_0x2ad218[_0x2dfb34(0xa2b)],'XABkb':_0x2ad218[_0xd3171a(0x87c)],'ojKYb':function(_0x36258e,_0x4e67df){const _0x348326=_0x2d2b26;return _0x2ad218[_0x348326(0xe6b)](_0x36258e,_0x4e67df);},'rxgeb':_0x2ad218[_0x44386d(0x3bc)],'kMicW':function(_0x215ba3,_0x3cedf8){const _0x501bf1=_0xd3171a;return _0x2ad218[_0x501bf1(0xe6b)](_0x215ba3,_0x3cedf8);},'qEpVv':_0x2ad218[_0x44386d(0x9de)],'arJqs':_0x2ad218[_0x5e82dd(0xb04)],'dmtUG':_0x2ad218[_0xd3171a(0xe13)],'tZcom':_0x2ad218[_0x44386d(0x94b)],'cFsCY':_0x2ad218[_0xd3171a(0x900)],'AUWmy':_0x2ad218[_0x2dfb34(0x5a0)],'ADcZV':function(_0x1325b8,_0x320fa5){const _0x32be67=_0x2d2b26;return _0x2ad218[_0x32be67(0x2c6)](_0x1325b8,_0x320fa5);},'LCJpe':_0x2ad218[_0x5e82dd(0xc65)],'PZauC':_0x2ad218[_0x2dfb34(0x3c0)],'muRyX':_0x2ad218[_0x44386d(0xfa7)],'xgNlX':_0x2ad218[_0x2d2b26(0x7b0)],'TcEde':_0x2ad218[_0x44386d(0x2ac)],'cbbGG':_0x2ad218[_0x2dfb34(0x52e)],'FyHsL':_0x2ad218[_0xd3171a(0x3f4)],'lAQQR':function(_0x56794a,_0x3ae030){const _0x12db7b=_0x2d2b26;return _0x2ad218[_0x12db7b(0xea9)](_0x56794a,_0x3ae030);},'wAnRh':_0x2ad218[_0xd3171a(0x4fb)],'YUfot':_0x2ad218[_0x2d2b26(0x9e1)],'nHcYG':function(_0x1e1fca,_0x3e1ca6){const _0x2c86aa=_0xd3171a;return _0x2ad218[_0x2c86aa(0x825)](_0x1e1fca,_0x3e1ca6);},'vviZx':_0x2ad218[_0x44386d(0x81e)],'sQDJd':_0x2ad218[_0x2dfb34(0x884)],'vgHYQ':_0x2ad218[_0x44386d(0xd57)],'QfzGM':function(_0xcf03ba,_0x4f29a6){const _0x474b87=_0xd3171a;return _0x2ad218[_0x474b87(0xf8a)](_0xcf03ba,_0x4f29a6);},'PUlYK':function(_0x3cad8a,_0x299316){const _0x5670ce=_0x2dfb34;return _0x2ad218[_0x5670ce(0xea9)](_0x3cad8a,_0x299316);},'qnPWS':_0x2ad218[_0xd3171a(0x28c)],'iyZzl':function(_0x36b3a1,_0x14dd7e){const _0x342d62=_0xd3171a;return _0x2ad218[_0x342d62(0xf63)](_0x36b3a1,_0x14dd7e);},'FijGt':_0x2ad218[_0x5e82dd(0xc27)],'phQbS':_0x2ad218[_0x44386d(0xe61)],'dtuEX':_0x2ad218[_0x2dfb34(0x72e)],'fDypM':_0x2ad218[_0x2dfb34(0x82c)],'HtARM':_0x2ad218[_0x44386d(0x617)],'XDIrl':_0x2ad218[_0x44386d(0xd68)],'igviV':_0x2ad218[_0x2d2b26(0xc81)],'ecwJs':_0x2ad218[_0xd3171a(0xa6c)],'GvtYJ':_0x2ad218[_0x2dfb34(0x64f)],'ncOMw':_0x2ad218[_0x5e82dd(0x656)],'WSiPN':_0x2ad218[_0x2dfb34(0x90d)],'fWIjU':function(_0xafbe0f,_0x4aabe4,_0x51a5f9){const _0x427099=_0x2dfb34;return _0x2ad218[_0x427099(0x6a7)](_0xafbe0f,_0x4aabe4,_0x51a5f9);},'kmwZK':function(_0x46b435,_0x59f242){const _0x132f11=_0x44386d;return _0x2ad218[_0x132f11(0xe6b)](_0x46b435,_0x59f242);},'unAZm':_0x2ad218[_0xd3171a(0xe78)],'CmZip':function(_0x2f8930,_0x315629){const _0x70cc9a=_0x5e82dd;return _0x2ad218[_0x70cc9a(0x7e8)](_0x2f8930,_0x315629);},'fKtUA':_0x2ad218[_0xd3171a(0x391)],'FEYpy':_0x2ad218[_0x5e82dd(0x5fd)],'waKkI':_0x2ad218[_0x44386d(0x73c)],'mNyZm':_0x2ad218[_0xd3171a(0x7a2)],'rBtRG':_0x2ad218[_0x2dfb34(0x6d1)],'lnebe':function(_0x20dd60,_0x25f43f){const _0x22b46c=_0xd3171a;return _0x2ad218[_0x22b46c(0xf77)](_0x20dd60,_0x25f43f);},'AxpPi':function(_0x33bce0,_0x5ebd9a){const _0x39688d=_0x5e82dd;return _0x2ad218[_0x39688d(0x7e8)](_0x33bce0,_0x5ebd9a);},'BHWIK':_0x2ad218[_0x44386d(0xb97)],'cSoPg':_0x2ad218[_0x2d2b26(0x639)],'dxpyP':_0x2ad218[_0xd3171a(0xec1)],'kgIpb':function(_0x36e757,_0x45b01f){const _0xac8b9c=_0x5e82dd;return _0x2ad218[_0xac8b9c(0x838)](_0x36e757,_0x45b01f);},'PjmHC':function(_0xa1d44f,_0x10d6c3){const _0x406cb5=_0x5e82dd;return _0x2ad218[_0x406cb5(0x7e8)](_0xa1d44f,_0x10d6c3);},'nFGpp':function(_0x43b687,_0xf43970){const _0x2555e2=_0x2dfb34;return _0x2ad218[_0x2555e2(0x368)](_0x43b687,_0xf43970);},'oyRlh':_0x2ad218[_0x2dfb34(0xf59)],'tPdiy':function(_0x43e4fb,_0x476949){const _0x428df1=_0x2d2b26;return _0x2ad218[_0x428df1(0x3f8)](_0x43e4fb,_0x476949);},'NJHQV':_0x2ad218[_0x44386d(0x24f)],'mdQNt':_0x2ad218[_0x5e82dd(0xacc)],'dxYGy':function(_0x79b4f8,_0x4090d1){const _0x4509c6=_0x2d2b26;return _0x2ad218[_0x4509c6(0x8af)](_0x79b4f8,_0x4090d1);},'OmaHc':function(_0xec2d91,_0x3c13aa){const _0x2659f0=_0x5e82dd;return _0x2ad218[_0x2659f0(0x7e8)](_0xec2d91,_0x3c13aa);},'WnjcC':function(_0x366fc0,_0x5aeb32){const _0x63d3b6=_0x2d2b26;return _0x2ad218[_0x63d3b6(0x342)](_0x366fc0,_0x5aeb32);},'bIFvJ':_0x2ad218[_0x2d2b26(0x3ae)],'Pknba':_0x2ad218[_0x5e82dd(0xa30)],'xLiZG':_0x2ad218[_0x44386d(0x671)],'pqSeN':_0x2ad218[_0x2dfb34(0x852)],'iUQMX':_0x2ad218[_0x44386d(0xa19)]};if(_0x2ad218[_0xd3171a(0x6f0)](_0x2ad218[_0xd3171a(0x664)],_0x2ad218[_0xd3171a(0xf50)]))_0x31c0da+='';else{fulltext=article[_0x2d2b26(0x696)+_0x2dfb34(0x7ee)+'t'],fulltext=fulltext[_0x2d2b26(0x69d)+_0x2d2b26(0x9ec)]('\x0a\x0a','\x0a')[_0x44386d(0x69d)+_0x2d2b26(0x9ec)]('\x0a\x0a','\x0a');const _0x137961=/[?!;\?\n。………]/g;fulltext=fulltext[_0x2dfb34(0xa49)](_0x137961),fulltext=fulltext[_0x2dfb34(0xf7d)+'r'](_0x289eac=>{const _0x383fe5=_0xd3171a,_0x5a253f=_0x44386d,_0x4cc929=_0x44386d,_0x41feaa=_0x2dfb34,_0xbf4709=_0x44386d;if(_0x276c95[_0x383fe5(0xd1a)](_0x276c95[_0x383fe5(0xeb7)],_0x276c95[_0x383fe5(0x3c4)])){if(_0x58ab59){const _0x46eb4a=_0x5bdc63[_0x5a253f(0xd6d)](_0x2e754f,arguments);return _0x3aeefe=null,_0x46eb4a;}}else{const _0x5a53c0=/^[0-9,\s]+$/;return!_0x5a53c0[_0x383fe5(0xe40)](_0x289eac);}}),fulltext=fulltext[_0x2d2b26(0xf7d)+'r'](function(_0x189a33){const _0x661782=_0xd3171a,_0x5a712f=_0xd3171a,_0x9505bf=_0xd3171a,_0x491fd1=_0x44386d,_0x48160e=_0x5e82dd,_0x56bccb={'dUvyr':function(_0x17ef4b,_0x24809b){const _0x37e068=_0x376c;return _0x2ad218[_0x37e068(0x5d2)](_0x17ef4b,_0x24809b);},'XQsHx':function(_0xfc859b,_0x3b407d){const _0x185f00=_0x376c;return _0x2ad218[_0x185f00(0xace)](_0xfc859b,_0x3b407d);},'fvuiA':function(_0x1393b6,_0x7d67f2){const _0x10e9cc=_0x376c;return _0x2ad218[_0x10e9cc(0x7e8)](_0x1393b6,_0x7d67f2);},'eFuMI':function(_0x36fba3,_0x3e7e3f){const _0x33df26=_0x376c;return _0x2ad218[_0x33df26(0x368)](_0x36fba3,_0x3e7e3f);}};if(_0x2ad218[_0x661782(0xe9f)](_0x2ad218[_0x661782(0xc36)],_0x2ad218[_0x661782(0xc36)])){if(_0x56bccb[_0x491fd1(0x952)](_0x56bccb[_0x491fd1(0xba3)](_0x56bccb[_0x48160e(0x5c2)](_0x2d4034,_0x243318[_0x1ce1cd]),'\x0a')[_0x491fd1(0x8b2)+'h'],0x1432+-0xf22+-0x60))_0x5d2d75=_0x56bccb[_0x9505bf(0x395)](_0x56bccb[_0x9505bf(0xba3)](_0x3ff7af,_0x4744f6[_0x253a81]),'\x0a');_0x3f152f=_0x56bccb[_0x5a712f(0xba3)](_0x4612d4,-0x3*0x80f+-0x1173*0x1+0x29a1);}else return _0x189a33&&_0x189a33[_0x48160e(0x4c7)]();}),optkeytext={'method':_0x2ad218[_0x5e82dd(0x852)],'headers':headers,'body':JSON[_0x2d2b26(0xdfb)+_0x44386d(0x22d)]({'text':fulltext[_0x2dfb34(0x591)]('\x0a')})},_0x2ad218[_0x2dfb34(0x4a0)](fetchRetry,_0x2ad218[_0x5e82dd(0xcfd)],0x2311*0x1+-0x26dd*-0x1+-0x49eb,optkeytext)[_0x5e82dd(0x95c)](_0x2f3093=>_0x2f3093[_0xd3171a(0x943)]())[_0xd3171a(0x95c)](_0x3ebeb7=>{const _0x268d66=_0xd3171a,_0x421177=_0x2d2b26,_0x47083f=_0x2dfb34,_0x4e4776=_0xd3171a,_0x5da111=_0x2dfb34,_0x2b92e4={'DwXdE':_0x276c95[_0x268d66(0x396)],'ykWrN':function(_0x37019b){const _0x3a4878=_0x268d66;return _0x276c95[_0x3a4878(0xd96)](_0x37019b);},'TBMli':function(_0x140045,_0x19945c){const _0x51bd38=_0x268d66;return _0x276c95[_0x51bd38(0xbf9)](_0x140045,_0x19945c);},'bwCud':function(_0x318ab7,_0x3b9298){const _0x3bf992=_0x268d66;return _0x276c95[_0x3bf992(0xb06)](_0x318ab7,_0x3b9298);},'vdEIx':function(_0xbbac40,_0x2cff2e){const _0x329cbd=_0x268d66;return _0x276c95[_0x329cbd(0xd61)](_0xbbac40,_0x2cff2e);},'HgqiX':_0x276c95[_0x421177(0xe01)],'kjaGy':_0x276c95[_0x47083f(0xabb)],'qvjFp':_0x276c95[_0x421177(0x2d2)],'ySlon':_0x276c95[_0x47083f(0x2a1)],'nTBEO':function(_0x405412,_0x2f261d){const _0x179d5a=_0x5da111;return _0x276c95[_0x179d5a(0xf2d)](_0x405412,_0x2f261d);},'zuCSf':_0x276c95[_0x268d66(0xadb)],'ieQem':function(_0x11c4bc,_0x10afcc){const _0x28c819=_0x268d66;return _0x276c95[_0x28c819(0x7af)](_0x11c4bc,_0x10afcc);},'isuiM':_0x276c95[_0x4e4776(0xe19)],'herxg':_0x276c95[_0x268d66(0x296)],'ankbd':_0x276c95[_0x5da111(0xb4e)],'GgzNu':_0x276c95[_0x268d66(0xaa2)],'WbygO':function(_0x4185b5,_0x5ed35b){const _0x1d175b=_0x4e4776;return _0x276c95[_0x1d175b(0xf2d)](_0x4185b5,_0x5ed35b);},'QqTlZ':function(_0x3cece2,_0xb18e6d){const _0x2354ef=_0x4e4776;return _0x276c95[_0x2354ef(0x9a6)](_0x3cece2,_0xb18e6d);},'rrETG':function(_0x147f8e,_0x2819a8){const _0x511e6a=_0x268d66;return _0x276c95[_0x511e6a(0xe3f)](_0x147f8e,_0x2819a8);},'lEyfe':_0x276c95[_0x4e4776(0x9be)],'meHSd':function(_0x1713f5,_0x52b9b1){const _0x335b94=_0x268d66;return _0x276c95[_0x335b94(0x9a6)](_0x1713f5,_0x52b9b1);},'xqjBs':_0x276c95[_0x47083f(0x550)],'hCPHy':_0x276c95[_0x4e4776(0x24d)],'XLFTq':_0x276c95[_0x5da111(0xf4d)],'MQfPQ':_0x276c95[_0x268d66(0x3a0)],'dUuTX':function(_0x3cf5d5,_0x5bb1d0){const _0x2fe4d0=_0x5da111;return _0x276c95[_0x2fe4d0(0x7af)](_0x3cf5d5,_0x5bb1d0);},'AhaaO':function(_0x13f694,_0x4d8142){const _0x49984b=_0x5da111;return _0x276c95[_0x49984b(0x67e)](_0x13f694,_0x4d8142);},'RsguJ':_0x276c95[_0x4e4776(0x8ad)],'UMNMi':function(_0x40bc7d,_0x2688c9){const _0x1de811=_0x421177;return _0x276c95[_0x1de811(0xaf5)](_0x40bc7d,_0x2688c9);},'CAaDW':function(_0x2e8725,_0x5d5926){const _0x8189a1=_0x421177;return _0x276c95[_0x8189a1(0xf2d)](_0x2e8725,_0x5d5926);},'VBMvI':function(_0x30dff2,_0x13744e){const _0x563d7a=_0x4e4776;return _0x276c95[_0x563d7a(0xf2d)](_0x30dff2,_0x13744e);},'zLljH':_0x276c95[_0x47083f(0x727)],'fXhXN':_0x276c95[_0x4e4776(0xc0a)],'GxcMt':function(_0x501b20,_0x3cad15){const _0x52f59e=_0x4e4776;return _0x276c95[_0x52f59e(0xf2d)](_0x501b20,_0x3cad15);},'tuiJV':_0x276c95[_0x268d66(0xd66)],'Zopzk':_0x276c95[_0x4e4776(0xddd)],'xzOMq':function(_0x1ef7e8,_0x46d9f2){const _0x342073=_0x4e4776;return _0x276c95[_0x342073(0x7af)](_0x1ef7e8,_0x46d9f2);},'EqhhY':_0x276c95[_0x421177(0xb91)],'yvBkz':function(_0x1d229b,_0x598980){const _0x1b56c5=_0x5da111;return _0x276c95[_0x1b56c5(0xf2d)](_0x1d229b,_0x598980);},'tkCFl':_0x276c95[_0x47083f(0x8d5)],'BqRjT':function(_0x2f148d,_0x2ef2e9){const _0x345831=_0x47083f;return _0x276c95[_0x345831(0xa16)](_0x2f148d,_0x2ef2e9);},'HNOZk':_0x276c95[_0x4e4776(0x680)],'buGNX':function(_0xf29907,_0x170248){const _0x2e1a01=_0x5da111;return _0x276c95[_0x2e1a01(0x9a6)](_0xf29907,_0x170248);},'tILiH':_0x276c95[_0x5da111(0x249)],'OVjwK':_0x276c95[_0x5da111(0x61b)],'LeURX':function(_0x172528,_0x210111){const _0x220a21=_0x421177;return _0x276c95[_0x220a21(0x67e)](_0x172528,_0x210111);},'cExwn':_0x276c95[_0x5da111(0x4a7)],'IRTph':_0x276c95[_0x4e4776(0xd2a)],'eUxqk':_0x276c95[_0x4e4776(0xbcb)],'poiSt':_0x276c95[_0x268d66(0xe44)],'CLqLf':function(_0x2bc893,_0x22b67b){const _0xbdcd2f=_0x268d66;return _0x276c95[_0xbdcd2f(0xb40)](_0x2bc893,_0x22b67b);},'uKQQR':_0x276c95[_0x5da111(0xf5c)],'JdRcY':_0x276c95[_0x421177(0x5a7)],'RNLBk':function(_0x37e06f,_0x4a7264){const _0x2c1585=_0x47083f;return _0x276c95[_0x2c1585(0x7c5)](_0x37e06f,_0x4a7264);},'cKlZt':_0x276c95[_0x5da111(0x4a9)],'tUThO':_0x276c95[_0x268d66(0x955)],'OnEmu':_0x276c95[_0x47083f(0x8ff)],'yWtVf':function(_0x1641d9,_0x542c0e){const _0x2539f6=_0x5da111;return _0x276c95[_0x2539f6(0x403)](_0x1641d9,_0x542c0e);},'DGXyC':function(_0x4dd744,_0x2c0f3a){const _0x385557=_0x5da111;return _0x276c95[_0x385557(0xce4)](_0x4dd744,_0x2c0f3a);},'eAcRU':_0x276c95[_0x4e4776(0x691)],'VEknX':function(_0xa6bca9,_0x50ed19){const _0x47d2b5=_0x4e4776;return _0x276c95[_0x47d2b5(0x91d)](_0xa6bca9,_0x50ed19);},'kkhKn':_0x276c95[_0x5da111(0x7dc)],'jnjqM':_0x276c95[_0x421177(0x8f8)],'xdLzB':_0x276c95[_0x268d66(0x6c7)],'BzrMi':_0x276c95[_0x4e4776(0x831)],'rPlOr':_0x276c95[_0x4e4776(0x964)],'XCMBI':_0x276c95[_0x421177(0x759)],'SPqhn':_0x276c95[_0x47083f(0x3ff)],'fzQIE':_0x276c95[_0x421177(0xd01)],'JXThS':_0x276c95[_0x47083f(0xfa6)],'WiQXW':_0x276c95[_0x5da111(0xa25)],'chaSZ':_0x276c95[_0x268d66(0xde7)],'WOgLx':function(_0x7088ba,_0x3d4bc8,_0x3bea37){const _0x4e92ce=_0x268d66;return _0x276c95[_0x4e92ce(0x89e)](_0x7088ba,_0x3d4bc8,_0x3bea37);},'XzIoC':function(_0xd6f195,_0xd58434){const _0x1ed933=_0x47083f;return _0x276c95[_0x1ed933(0x76f)](_0xd6f195,_0xd58434);},'wXrGX':_0x276c95[_0x268d66(0xd64)],'xGRbF':function(_0x5ccf8a,_0x1b2a16){const _0x3e1477=_0x4e4776;return _0x276c95[_0x3e1477(0xc78)](_0x5ccf8a,_0x1b2a16);},'oXIta':function(_0x3a2950,_0x4b8824){const _0x32800b=_0x421177;return _0x276c95[_0x32800b(0xc78)](_0x3a2950,_0x4b8824);},'awbJZ':_0x276c95[_0x4e4776(0x488)],'Rhvvv':_0x276c95[_0x268d66(0xdf5)],'nRYzD':_0x276c95[_0x4e4776(0x3d3)],'NYICz':_0x276c95[_0x421177(0xd8d)]};if(_0x276c95[_0x4e4776(0x7c5)](_0x276c95[_0x268d66(0xb2e)],_0x276c95[_0x421177(0xb2e)])){_0x276c95[_0x421177(0x7af)](_0x2eea3f,_0x276c95[_0x268d66(0x948)]);return;}else{keytextres=_0x276c95[_0x5da111(0x3d7)](unique,_0x3ebeb7),promptWebpage=_0x276c95[_0x47083f(0xf2d)](_0x276c95[_0x5da111(0xf2d)](_0x276c95[_0x268d66(0x65b)](_0x276c95[_0x268d66(0xaa5)],article[_0x47083f(0xf98)]),'\x0a'),_0x276c95[_0x421177(0x3f7)]);for(el in modalele){if(_0x276c95[_0x5da111(0xd61)](_0x276c95[_0x5da111(0x520)],_0x276c95[_0x5da111(0x520)])){if(_0x276c95[_0x4e4776(0xc89)](_0x276c95[_0x421177(0xf2d)](_0x276c95[_0x47083f(0x862)](promptWebpage,modalele[el]),'\x0a')[_0x4e4776(0x8b2)+'h'],0x1d7f+-0x1+0xd*-0x226))promptWebpage=_0x276c95[_0x421177(0x862)](_0x276c95[_0x5da111(0xc78)](promptWebpage,modalele[el]),'\x0a');}else _0x1ace29=_0x18703b;}promptWebpage=_0x276c95[_0x5da111(0xb1b)](promptWebpage,_0x276c95[_0x47083f(0x203)]),keySentencesCount=0x9*-0x17f+-0x269a+0x3411*0x1;for(st in keytextres){if(_0x276c95[_0x268d66(0xcc1)](_0x276c95[_0x5da111(0xbaf)],_0x276c95[_0x421177(0x2c9)]))return _0x26dc45[_0x268d66(0x590)+_0x268d66(0x300)]()[_0x5da111(0x3bb)+'h'](FfBEee[_0x5da111(0x32c)])[_0x4e4776(0x590)+_0x4e4776(0x300)]()[_0x5da111(0xf53)+_0x421177(0xcf3)+'r'](_0x11a6e0)[_0x268d66(0x3bb)+'h'](FfBEee[_0x268d66(0x32c)]);else{if(_0x276c95[_0x421177(0xd28)](_0x276c95[_0x268d66(0xc78)](_0x276c95[_0x5da111(0x7fe)](promptWebpage,keytextres[st]),'\x0a')[_0x5da111(0x8b2)+'h'],-0xd73+0x2a1*0xb+-0xc*0xe6))promptWebpage=_0x276c95[_0x421177(0x7fe)](_0x276c95[_0x268d66(0x5ef)](promptWebpage,keytextres[st]),'\x0a');keySentencesCount=_0x276c95[_0x47083f(0xf2d)](keySentencesCount,0x2*0xeec+-0x8f*0x11+-0x1458);}}const _0x160b76={};_0x160b76[_0x4e4776(0xc59)]=_0x276c95[_0x4e4776(0xc97)],_0x160b76[_0x47083f(0x91a)+'nt']=promptWebpage;const _0x407d3f={};_0x407d3f[_0x47083f(0xc59)]=_0x276c95[_0x5da111(0x898)],_0x407d3f[_0x268d66(0x91a)+'nt']=_0x276c95[_0x268d66(0x842)],promptWeb=[_0x160b76,_0x407d3f];const _0x25d823={'method':_0x276c95[_0x47083f(0x437)],'headers':headers,'body':_0x276c95[_0x268d66(0xaf5)](b64EncodeUnicode,JSON[_0x4e4776(0xdfb)+_0x5da111(0x22d)]({'messages':promptWeb[_0x421177(0x84f)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};chatTemp='',text_offset=-(-0xb68+-0xfea+0x1b53*0x1),prev_chat=document[_0x5da111(0x93e)+_0x421177(0x48f)+_0x421177(0x9b1)](_0x276c95[_0x4e4776(0xd64)])[_0x268d66(0xdde)+_0x47083f(0x4ea)],_0x276c95[_0x4e4776(0x89e)](fetch,_0x276c95[_0x4e4776(0xba2)],_0x25d823)[_0x268d66(0x95c)](_0x3ad801=>{const _0x2223a5=_0x268d66,_0x428000=_0x5da111,_0x1307d1=_0x421177,_0x41ce94=_0x268d66,_0x189886=_0x4e4776,_0x31a993={'XUbju':_0x2b92e4[_0x2223a5(0x41b)],'CVBTk':function(_0x22adaa,_0x2408fb){const _0x2b0c3f=_0x2223a5;return _0x2b92e4[_0x2b0c3f(0x8a4)](_0x22adaa,_0x2408fb);},'XGtYg':_0x2b92e4[_0x2223a5(0x263)],'OaWll':function(_0x5e3dd0,_0x55e5bd){const _0x55d171=_0x2223a5;return _0x2b92e4[_0x55d171(0x9e3)](_0x5e3dd0,_0x55e5bd);},'mZttP':_0x2b92e4[_0x2223a5(0xd1c)],'CUCoO':_0x2b92e4[_0x2223a5(0x31f)],'CtvwV':function(_0x58fa90,_0x588bbf){const _0x133041=_0x2223a5;return _0x2b92e4[_0x133041(0x8a4)](_0x58fa90,_0x588bbf);},'HFopb':_0x2b92e4[_0x41ce94(0xe5e)],'omwOw':function(_0x55b6e7,_0x39b2d4){const _0x4594b5=_0x1307d1;return _0x2b92e4[_0x4594b5(0x9e3)](_0x55b6e7,_0x39b2d4);},'lUbZk':_0x2b92e4[_0x1307d1(0xa2c)],'FxkTk':function(_0xf93e61,_0x1edc95){const _0x26344e=_0x1307d1;return _0x2b92e4[_0x26344e(0xc2d)](_0xf93e61,_0x1edc95);},'Xlseo':function(_0x183ff5,_0x395ba8){const _0x32a567=_0x428000;return _0x2b92e4[_0x32a567(0x82e)](_0x183ff5,_0x395ba8);},'YVxOP':function(_0xa0e3fe,_0x58a939){const _0x94d9e3=_0x1307d1;return _0x2b92e4[_0x94d9e3(0x5b2)](_0xa0e3fe,_0x58a939);},'SOsjF':_0x2b92e4[_0x428000(0x5e1)],'FSILW':function(_0x3740e9,_0xb6abb5){const _0x576ab7=_0x41ce94;return _0x2b92e4[_0x576ab7(0xf46)](_0x3740e9,_0xb6abb5);},'LYcgb':_0x2b92e4[_0x1307d1(0x667)],'IlNog':_0x2b92e4[_0x189886(0x63e)],'HnLxL':function(_0x9f5ad7,_0x96ebbb){const _0x140ed1=_0x41ce94;return _0x2b92e4[_0x140ed1(0xf46)](_0x9f5ad7,_0x96ebbb);},'JPYvn':_0x2b92e4[_0x41ce94(0xac9)],'hCPhh':function(_0x46e899,_0x5e8539){const _0x46e1e9=_0x1307d1;return _0x2b92e4[_0x46e1e9(0x82e)](_0x46e899,_0x5e8539);},'mLaEX':_0x2b92e4[_0x41ce94(0xb2a)],'IwxPS':function(_0x3d89a7,_0x24c382){const _0x22ea00=_0x1307d1;return _0x2b92e4[_0x22ea00(0x1ed)](_0x3d89a7,_0x24c382);},'JJjMN':function(_0x24a660,_0x2c5afd){const _0x2a9d77=_0x189886;return _0x2b92e4[_0x2a9d77(0xe92)](_0x24a660,_0x2c5afd);},'IaYgV':_0x2b92e4[_0x428000(0xedb)],'GAhCw':function(_0x3fe772,_0x5bce39){const _0x2cac3f=_0x428000;return _0x2b92e4[_0x2cac3f(0x286)](_0x3fe772,_0x5bce39);},'myFAr':function(_0x3bba64,_0x4a116f){const _0x318798=_0x428000;return _0x2b92e4[_0x318798(0xbdb)](_0x3bba64,_0x4a116f);},'IlsVL':function(_0x22372c,_0x36d112){const _0x2c0afa=_0x1307d1;return _0x2b92e4[_0x2c0afa(0x9e3)](_0x22372c,_0x36d112);},'YvttO':function(_0xaf208,_0x4928c5){const _0x5926ac=_0x428000;return _0x2b92e4[_0x5926ac(0xa90)](_0xaf208,_0x4928c5);},'aHtqo':_0x2b92e4[_0x41ce94(0xf8f)],'qTpKI':function(_0x2d298f,_0x5ced2a){const _0x1d6871=_0x189886;return _0x2b92e4[_0x1d6871(0xe92)](_0x2d298f,_0x5ced2a);},'njeZZ':_0x2b92e4[_0x1307d1(0xe67)],'uuNYj':function(_0x48fde4,_0x3cc059){const _0xc89478=_0x428000;return _0x2b92e4[_0xc89478(0x879)](_0x48fde4,_0x3cc059);},'PKMFR':_0x2b92e4[_0x189886(0x63a)],'VyrzM':function(_0x40c73f,_0x10705){const _0x4f459f=_0x41ce94;return _0x2b92e4[_0x4f459f(0x8a4)](_0x40c73f,_0x10705);},'ctIEO':_0x2b92e4[_0x41ce94(0xd4c)],'sgbCm':function(_0x4408ab,_0x12b2bc){const _0x46d699=_0x41ce94;return _0x2b92e4[_0x46d699(0x31e)](_0x4408ab,_0x12b2bc);},'RUkcL':function(_0x47ba09,_0x540996){const _0x317d9f=_0x189886;return _0x2b92e4[_0x317d9f(0xc2d)](_0x47ba09,_0x540996);},'XBPur':_0x2b92e4[_0x41ce94(0xd89)],'YKtSC':function(_0x3e022f,_0x12c72c){const _0x599f00=_0x1307d1;return _0x2b92e4[_0x599f00(0x8a4)](_0x3e022f,_0x12c72c);},'Vinrz':function(_0x556c4a,_0x894ec7){const _0x13ed08=_0x2223a5;return _0x2b92e4[_0x13ed08(0xb93)](_0x556c4a,_0x894ec7);},'UkZtv':_0x2b92e4[_0x189886(0x5a2)],'MaTsp':function(_0x46c11e,_0x3529c1){const _0x2c9458=_0x428000;return _0x2b92e4[_0x2c9458(0xc3c)](_0x46c11e,_0x3529c1);},'URdHi':_0x2b92e4[_0x41ce94(0x8c6)],'WiIgG':function(_0x1a32c8,_0x2460fc){const _0x357434=_0x189886;return _0x2b92e4[_0x357434(0x6aa)](_0x1a32c8,_0x2460fc);},'iIGxS':_0x2b92e4[_0x2223a5(0xd08)],'mBCpA':function(_0x40029b,_0x1ac312){const _0x561a78=_0x41ce94;return _0x2b92e4[_0x561a78(0x31e)](_0x40029b,_0x1ac312);},'UQEbK':_0x2b92e4[_0x2223a5(0x357)],'fyHep':function(_0x120d12,_0x3fa17c){const _0x40863e=_0x1307d1;return _0x2b92e4[_0x40863e(0xb21)](_0x120d12,_0x3fa17c);},'shBBO':function(_0x53ead7,_0x54c1aa){const _0x411dbb=_0x41ce94;return _0x2b92e4[_0x411dbb(0xf46)](_0x53ead7,_0x54c1aa);},'AtHRo':_0x2b92e4[_0x428000(0x9a9)],'hTlsZ':function(_0x1d9ea0,_0x418014){const _0x4f6bf5=_0x41ce94;return _0x2b92e4[_0x4f6bf5(0xf46)](_0x1d9ea0,_0x418014);},'AQMhX':_0x2b92e4[_0x428000(0xda1)],'iBMSy':_0x2b92e4[_0x1307d1(0x313)],'Tircw':function(_0x5e750a,_0x1adfda){const _0x5aa671=_0x189886;return _0x2b92e4[_0x5aa671(0xb21)](_0x5e750a,_0x1adfda);},'nJdUp':_0x2b92e4[_0x189886(0xe32)],'srxpc':function(_0xfb4286,_0x32f7be){const _0x3ac0b6=_0x1307d1;return _0x2b92e4[_0x3ac0b6(0x2fc)](_0xfb4286,_0x32f7be);},'XYRjZ':function(_0x21c201,_0x8e4ccb){const _0x199228=_0x2223a5;return _0x2b92e4[_0x199228(0xbb1)](_0x21c201,_0x8e4ccb);},'TlTMY':_0x2b92e4[_0x428000(0x55a)],'oTcaR':_0x2b92e4[_0x41ce94(0xd85)],'XiBkm':function(_0x524808,_0xc534a0){const _0x1e7a21=_0x189886;return _0x2b92e4[_0x1e7a21(0xab4)](_0x524808,_0xc534a0);},'MGXPd':_0x2b92e4[_0x41ce94(0xdd2)],'igDyV':_0x2b92e4[_0x428000(0x5ee)],'SejYC':_0x2b92e4[_0x1307d1(0x59a)],'NNNQk':function(_0x414844,_0x2edb24){const _0x2039b1=_0x189886;return _0x2b92e4[_0x2039b1(0x348)](_0x414844,_0x2edb24);},'AkveG':function(_0x17e4b4,_0x55b523){const _0x1ad237=_0x189886;return _0x2b92e4[_0x1ad237(0x4b7)](_0x17e4b4,_0x55b523);},'GkDsf':_0x2b92e4[_0x189886(0x41e)],'seEEn':function(_0x513bfa,_0x47705d){const _0xb91836=_0x428000;return _0x2b92e4[_0xb91836(0x210)](_0x513bfa,_0x47705d);},'VOUuF':_0x2b92e4[_0x428000(0xf36)],'oMIOf':_0x2b92e4[_0x189886(0x65d)],'RzISj':_0x2b92e4[_0x2223a5(0xbc2)],'tRtky':_0x2b92e4[_0x2223a5(0x9b6)],'GJlsY':_0x2b92e4[_0x1307d1(0x49f)],'vMVwt':function(_0x27aeb4,_0x457ace){const _0x19fd1e=_0x1307d1;return _0x2b92e4[_0x19fd1e(0xbdb)](_0x27aeb4,_0x457ace);},'esSaa':_0x2b92e4[_0x428000(0x697)],'EpOph':_0x2b92e4[_0x428000(0xcf8)],'SIkGv':_0x2b92e4[_0x41ce94(0x4eb)],'rkQyl':_0x2b92e4[_0x428000(0x3f9)],'jGczl':_0x2b92e4[_0x2223a5(0xc25)],'MdwAt':_0x2b92e4[_0x41ce94(0xb29)],'mKWzk':function(_0xe03051,_0x3734f4,_0x549b31){const _0x4ceee3=_0x41ce94;return _0x2b92e4[_0x4ceee3(0xe09)](_0xe03051,_0x3734f4,_0x549b31);},'goFpJ':function(_0x5c39a4,_0x1eacb6){const _0x3f627f=_0x41ce94;return _0x2b92e4[_0x3f627f(0x510)](_0x5c39a4,_0x1eacb6);},'ceEcI':_0x2b92e4[_0x2223a5(0x928)],'LQlDN':function(_0x5ce3ad,_0x201de0){const _0x26c4ce=_0x1307d1;return _0x2b92e4[_0x26c4ce(0x8a4)](_0x5ce3ad,_0x201de0);},'etKtK':function(_0x2170e6,_0x3abca8){const _0x37a091=_0x428000;return _0x2b92e4[_0x37a091(0x9ee)](_0x2170e6,_0x3abca8);},'WKVjX':function(_0x572563,_0x3a18ce){const _0x45cc67=_0x189886;return _0x2b92e4[_0x45cc67(0x213)](_0x572563,_0x3a18ce);},'kgBeW':_0x2b92e4[_0x189886(0xe08)],'LHyjx':_0x2b92e4[_0x428000(0x2d5)]};if(_0x2b92e4[_0x428000(0x210)](_0x2b92e4[_0x189886(0x4a4)],_0x2b92e4[_0x428000(0x362)]))_0x4991bd+=_0x2c4f0f;else{const _0x5402a1=_0x3ad801[_0x1307d1(0x770)][_0x41ce94(0xc2c)+_0x1307d1(0xab3)]();let _0x345433='',_0x51bbbe='';_0x5402a1[_0x189886(0x67b)]()[_0x1307d1(0x95c)](function _0x5c8de2({done:_0x5c4399,value:_0x26d4fc}){const _0x5c6359=_0x41ce94,_0x68a526=_0x2223a5,_0x21a17b=_0x428000,_0x2a8143=_0x428000,_0x265269=_0x2223a5,_0x147b82={'LHaiw':function(_0x20f359){const _0x197255=_0x376c;return _0x2b92e4[_0x197255(0x3ab)](_0x20f359);},'MQiWc':function(_0xec7514,_0x2bf58a){const _0xd58646=_0x376c;return _0x2b92e4[_0xd58646(0x9d6)](_0xec7514,_0x2bf58a);},'tJnGL':function(_0x1ee1e9,_0x17f565){const _0x50c60e=_0x376c;return _0x2b92e4[_0x50c60e(0x3de)](_0x1ee1e9,_0x17f565);}};if(_0x2b92e4[_0x5c6359(0xbb1)](_0x2b92e4[_0x5c6359(0xf81)],_0x2b92e4[_0x5c6359(0x77d)]))_0xf47737='表单';else{if(_0x5c4399)return;const _0x55e9b8=new TextDecoder(_0x2b92e4[_0x5c6359(0x511)])[_0x2a8143(0x771)+'e'](_0x26d4fc);return _0x55e9b8[_0x68a526(0x4c7)]()[_0x21a17b(0xa49)]('\x0a')[_0x265269(0xd9e)+'ch'](function(_0x34bf9f){const _0x53e4ed=_0x265269,_0x553aa3=_0x68a526,_0x3152da=_0x2a8143,_0x59d9d9=_0x265269,_0xa99cda=_0x265269,_0x1a321a={'geXWu':_0x31a993[_0x53e4ed(0x76c)],'QJerB':function(_0x4bff8b,_0x4142c3){const _0x125122=_0x53e4ed;return _0x31a993[_0x125122(0x1df)](_0x4bff8b,_0x4142c3);},'WIxxE':_0x31a993[_0x53e4ed(0x2ed)],'pdLHb':function(_0x1dc7fa,_0x38a72f){const _0x1c090b=_0x553aa3;return _0x31a993[_0x1c090b(0x330)](_0x1dc7fa,_0x38a72f);},'QQHeW':_0x31a993[_0x53e4ed(0x93b)],'UoQlG':_0x31a993[_0x3152da(0x281)],'GvGdK':function(_0x20a439,_0x59d610){const _0x5e4aa1=_0x59d9d9;return _0x31a993[_0x5e4aa1(0x3fb)](_0x20a439,_0x59d610);},'pnXIV':_0x31a993[_0x3152da(0x72d)],'rYtLC':function(_0x518b4b,_0x1c00ec){const _0x565575=_0x53e4ed;return _0x31a993[_0x565575(0x682)](_0x518b4b,_0x1c00ec);},'pyvvh':function(_0xed10e9,_0x26f626){const _0x6fb0f3=_0xa99cda;return _0x31a993[_0x6fb0f3(0x1df)](_0xed10e9,_0x26f626);},'bpGtS':function(_0x27b0ee,_0x368882){const _0x107611=_0x3152da;return _0x31a993[_0x107611(0x1df)](_0x27b0ee,_0x368882);},'ipjpC':_0x31a993[_0xa99cda(0x65e)],'geDTb':function(_0x49e6b2,_0x4c3315){const _0x2923e5=_0x553aa3;return _0x31a993[_0x2923e5(0x449)](_0x49e6b2,_0x4c3315);},'vheJr':function(_0x235b5a,_0x34febb){const _0x54dd20=_0x553aa3;return _0x31a993[_0x54dd20(0xe64)](_0x235b5a,_0x34febb);},'TlaiF':function(_0x1d06c4,_0x33cefe){const _0x132d75=_0x53e4ed;return _0x31a993[_0x132d75(0xe64)](_0x1d06c4,_0x33cefe);},'UkIUB':function(_0x3abf48,_0x1691ba){const _0x23ca1b=_0x553aa3;return _0x31a993[_0x23ca1b(0x308)](_0x3abf48,_0x1691ba);},'mwFgn':_0x31a993[_0x59d9d9(0xe2a)],'CIJUM':function(_0x424c6a,_0x10fdce){const _0x38ab9e=_0x53e4ed;return _0x31a993[_0x38ab9e(0x5fe)](_0x424c6a,_0x10fdce);},'IMnOR':function(_0x1a3d0d,_0x2f3f31){const _0x38bfb4=_0x59d9d9;return _0x31a993[_0x38bfb4(0x3fb)](_0x1a3d0d,_0x2f3f31);},'cTRhK':_0x31a993[_0x553aa3(0xb4c)],'kWigX':function(_0x5c1965,_0x3cf032){const _0x5e66a5=_0x59d9d9;return _0x31a993[_0x5e66a5(0x1df)](_0x5c1965,_0x3cf032);},'LgGtx':function(_0x4fce04,_0x2390fa){const _0x455ba2=_0xa99cda;return _0x31a993[_0x455ba2(0x3fb)](_0x4fce04,_0x2390fa);},'wUlSw':_0x31a993[_0x553aa3(0x47d)],'nbaoK':function(_0xb3e36,_0xb83b4a){const _0x468240=_0x59d9d9;return _0x31a993[_0x468240(0x937)](_0xb3e36,_0xb83b4a);},'oAIPC':function(_0x25f369,_0x14343d){const _0x2ba891=_0x3152da;return _0x31a993[_0x2ba891(0x449)](_0x25f369,_0x14343d);},'RgVTW':_0x31a993[_0x53e4ed(0x73e)],'DUfMs':function(_0x366c95,_0x2591cd){const _0x5247b7=_0xa99cda;return _0x31a993[_0x5247b7(0x449)](_0x366c95,_0x2591cd);},'ODYYT':function(_0x3765c2,_0x58f74e){const _0x118336=_0x53e4ed;return _0x31a993[_0x118336(0x9af)](_0x3765c2,_0x58f74e);},'yacIW':_0x31a993[_0x553aa3(0xc40)],'CKhHw':function(_0x296eb0,_0x50c0de){const _0x22c6f4=_0x553aa3;return _0x31a993[_0x22c6f4(0x8de)](_0x296eb0,_0x50c0de);},'qVyig':function(_0x1480aa,_0x5b5b68){const _0xf6fab2=_0x553aa3;return _0x31a993[_0xf6fab2(0x449)](_0x1480aa,_0x5b5b68);},'dPEDA':function(_0xe6ef19,_0x1ebddc){const _0x1d0429=_0xa99cda;return _0x31a993[_0x1d0429(0x628)](_0xe6ef19,_0x1ebddc);},'Tyttw':_0x31a993[_0x53e4ed(0x4f8)],'vDnwi':function(_0x2ac497,_0x2d2be7){const _0x370a31=_0x53e4ed;return _0x31a993[_0x370a31(0xea6)](_0x2ac497,_0x2d2be7);},'cPlvV':function(_0x71b56a,_0x225d4c){const _0xd693f=_0x53e4ed;return _0x31a993[_0xd693f(0x3e2)](_0x71b56a,_0x225d4c);},'dMCCR':function(_0x528f3d,_0x34878c){const _0x2d0af2=_0x553aa3;return _0x31a993[_0x2d0af2(0x329)](_0x528f3d,_0x34878c);},'YolVu':function(_0x1620a9,_0x2b5f7b){const _0x3a2ae4=_0x59d9d9;return _0x31a993[_0x3a2ae4(0xa61)](_0x1620a9,_0x2b5f7b);},'AxsuV':_0x31a993[_0x53e4ed(0xd59)],'yHmjZ':function(_0x11b147,_0x2828ff){const _0x52b1b6=_0x59d9d9;return _0x31a993[_0x52b1b6(0xc52)](_0x11b147,_0x2828ff);},'eraQI':_0x31a993[_0xa99cda(0xf18)],'qCvxR':function(_0x2a2f2c,_0x9790f7){const _0x1f7b62=_0x553aa3;return _0x31a993[_0x1f7b62(0x308)](_0x2a2f2c,_0x9790f7);},'FGWST':function(_0x36e61c,_0x107844){const _0xea712=_0x3152da;return _0x31a993[_0xea712(0xcd4)](_0x36e61c,_0x107844);},'hJXkC':_0x31a993[_0x553aa3(0x305)],'cExQF':function(_0x5d91ae,_0x1bd935){const _0xb5b4c8=_0x59d9d9;return _0x31a993[_0xb5b4c8(0xabc)](_0x5d91ae,_0x1bd935);},'xVsfC':_0x31a993[_0xa99cda(0x3e5)],'jvWfi':function(_0x1f27a3,_0x3616f5){const _0x5a4d0f=_0x59d9d9;return _0x31a993[_0x5a4d0f(0x8c4)](_0x1f27a3,_0x3616f5);},'JHoZe':function(_0x2f19ad,_0x2d23b6){const _0x4a3035=_0xa99cda;return _0x31a993[_0x4a3035(0xe64)](_0x2f19ad,_0x2d23b6);},'lDmoP':function(_0x54eef3,_0x3d1687){const _0x1362c3=_0x53e4ed;return _0x31a993[_0x1362c3(0x7f1)](_0x54eef3,_0x3d1687);},'llbwL':_0x31a993[_0x553aa3(0x423)],'yxkyl':function(_0x37bddd,_0x1fb6f2){const _0x331603=_0x553aa3;return _0x31a993[_0x331603(0x9af)](_0x37bddd,_0x1fb6f2);},'ExWbM':function(_0x160363,_0x331a1d){const _0x8e6553=_0x59d9d9;return _0x31a993[_0x8e6553(0x80f)](_0x160363,_0x331a1d);},'VbqTf':function(_0x5cce0b,_0x3c7dbd){const _0x190612=_0xa99cda;return _0x31a993[_0x190612(0xe12)](_0x5cce0b,_0x3c7dbd);},'zVGkC':_0x31a993[_0xa99cda(0xdfc)],'XIWxm':function(_0x15f696,_0x1c515d){const _0x3570e4=_0xa99cda;return _0x31a993[_0x3570e4(0x80f)](_0x15f696,_0x1c515d);},'fOgjy':function(_0x40d3ca,_0x386d67){const _0x471e7c=_0xa99cda;return _0x31a993[_0x471e7c(0x66e)](_0x40d3ca,_0x386d67);},'sqwzn':function(_0x4dadff,_0x425d01){const _0x3030da=_0xa99cda;return _0x31a993[_0x3030da(0xabc)](_0x4dadff,_0x425d01);},'flvCG':_0x31a993[_0x553aa3(0x470)],'wnUUd':function(_0x5c4c37,_0xecd99c){const _0x133279=_0x553aa3;return _0x31a993[_0x133279(0x1f3)](_0x5c4c37,_0xecd99c);},'gSgos':_0x31a993[_0x553aa3(0xbac)],'ruUYF':function(_0x52438e,_0x1743c8){const _0x1192f3=_0xa99cda;return _0x31a993[_0x1192f3(0xe72)](_0x52438e,_0x1743c8);},'MhXrO':function(_0x13a50a,_0x13482f){const _0x304e23=_0x553aa3;return _0x31a993[_0x304e23(0x3fb)](_0x13a50a,_0x13482f);},'OuLTd':_0x31a993[_0x59d9d9(0x836)],'RaAVx':function(_0x166975,_0x4bff17){const _0x35fe70=_0x553aa3;return _0x31a993[_0x35fe70(0x8de)](_0x166975,_0x4bff17);},'hZAkI':function(_0x17d6ae,_0x1ca489){const _0x560c78=_0xa99cda;return _0x31a993[_0x560c78(0xd5e)](_0x17d6ae,_0x1ca489);},'llzHn':function(_0x51accd,_0x364b4a){const _0x50a3db=_0x553aa3;return _0x31a993[_0x50a3db(0x310)](_0x51accd,_0x364b4a);},'avmle':function(_0x34487e,_0x978d55){const _0x3f096b=_0x59d9d9;return _0x31a993[_0x3f096b(0xcd4)](_0x34487e,_0x978d55);},'YSlak':_0x31a993[_0x53e4ed(0x8bf)],'ByBFS':function(_0x181e71,_0x260925){const _0x49e096=_0x3152da;return _0x31a993[_0x49e096(0x937)](_0x181e71,_0x260925);},'DIHgt':function(_0x5ce140,_0x5b541d){const _0x4c29f2=_0x553aa3;return _0x31a993[_0x4c29f2(0x97b)](_0x5ce140,_0x5b541d);},'vqBkt':_0x31a993[_0x553aa3(0xbe9)],'yMuSW':function(_0x47cd5f,_0x373b00){const _0x1780da=_0x3152da;return _0x31a993[_0x1780da(0x3e2)](_0x47cd5f,_0x373b00);},'aguos':_0x31a993[_0x553aa3(0xda5)],'fKqjK':function(_0x31f345,_0xa4a29d){const _0x54a859=_0x53e4ed;return _0x31a993[_0x54a859(0xd5e)](_0x31f345,_0xa4a29d);},'OxRUo':function(_0x1280e0,_0xcf016e){const _0x207018=_0x3152da;return _0x31a993[_0x207018(0xaeb)](_0x1280e0,_0xcf016e);},'qZtXT':_0x31a993[_0xa99cda(0x9ba)],'SsUPp':function(_0x65bdfb,_0x156202){const _0x44ccf6=_0x3152da;return _0x31a993[_0x44ccf6(0x269)](_0x65bdfb,_0x156202);}};if(_0x31a993[_0x59d9d9(0x9db)](_0x31a993[_0x53e4ed(0xc63)],_0x31a993[_0x553aa3(0x2a9)]))return 0x1876+-0x2079+-0xc*-0xab;else{try{if(_0x31a993[_0x553aa3(0xba6)](_0x31a993[_0x553aa3(0x325)],_0x31a993[_0x3152da(0xd16)]))document[_0x3152da(0x5de)+_0x59d9d9(0xf3d)+_0x59d9d9(0xa93)](_0x31a993[_0x553aa3(0x8a8)])[_0x553aa3(0xe91)+_0x553aa3(0xebc)]=document[_0x3152da(0x5de)+_0x53e4ed(0xf3d)+_0x553aa3(0xa93)](_0x31a993[_0x3152da(0x8a8)])[_0xa99cda(0xe91)+_0x3152da(0x4a2)+'ht'];else return!![];}catch(_0x85534d){}_0x345433='';if(_0x31a993[_0x3152da(0xd17)](_0x34bf9f[_0x3152da(0x8b2)+'h'],0x1*0x25e7+0x2*0x126e+-0x4abd))_0x345433=_0x34bf9f[_0x3152da(0xe3b)](0xb8d*-0x1+0x17*0xbd+-0x568);if(_0x31a993[_0x3152da(0x410)](_0x345433,_0x31a993[_0x53e4ed(0xc26)])){if(_0x31a993[_0xa99cda(0x5fb)](_0x31a993[_0x59d9d9(0x583)],_0x31a993[_0x53e4ed(0xbff)]))UdQHEv[_0x553aa3(0x925)](_0x54a5f6);else{lock_chat=-0x3*-0x607+0x652*0x2+0x625*-0x5;return;}}let _0x496b79;try{if(_0x31a993[_0x3152da(0x5fb)](_0x31a993[_0x53e4ed(0xb8e)],_0x31a993[_0x553aa3(0xb8e)]))try{if(_0x31a993[_0xa99cda(0x5fb)](_0x31a993[_0x3152da(0x70f)],_0x31a993[_0x3152da(0x48a)]))return _0x209a52;else _0x496b79=JSON[_0xa99cda(0xd22)](_0x31a993[_0x53e4ed(0xc39)](_0x51bbbe,_0x345433))[_0x31a993[_0x3152da(0x641)]],_0x51bbbe='';}catch(_0x477c33){if(_0x31a993[_0x59d9d9(0xba6)](_0x31a993[_0x3152da(0xe54)],_0x31a993[_0x3152da(0xe54)])){const _0x54bb1a=_0x1a321a[_0x3152da(0xc14)][_0x53e4ed(0xa49)]('|');let _0x37a231=-0x73*-0x2d+-0x52b+0x24*-0x6b;while(!![]){switch(_0x54bb1a[_0x37a231++]){case'0':_0x3f989f=_0x54685e[_0x553aa3(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0xa99cda(0x637)](_0x1a321a[_0xa99cda(0x7c8)],_0x1a321a[_0x53e4ed(0xbeb)](_0x4792e6,_0x5aa59d)),_0x1a321a[_0xa99cda(0x637)](_0x1a321a[_0x53e4ed(0x7bb)],_0x1a321a[_0x553aa3(0xbeb)](_0x5be78e,_0x20e512)));continue;case'1':_0x56033b=_0x30c1b9[_0x3152da(0x69d)+_0x59d9d9(0x9ec)](_0x1a321a[_0xa99cda(0x637)](_0x1a321a[_0x3152da(0xaad)],_0x1a321a[_0x553aa3(0xbeb)](_0x25b155,_0x32f814)),_0x1a321a[_0x553aa3(0x311)](_0x1a321a[_0xa99cda(0x7bb)],_0x1a321a[_0x53e4ed(0xbeb)](_0x3a5c6c,_0x3c1403)));continue;case'2':_0x3c771b=_0x6505d5[_0xa99cda(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x59d9d9(0x311)](_0x1a321a[_0x553aa3(0xa4e)],_0x1a321a[_0xa99cda(0xd12)](_0x1cfa46,_0x39f442)),_0x1a321a[_0x53e4ed(0xacd)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x59d9d9(0xbeb)](_0x17fbc6,_0x142a98)));continue;case'3':_0x28ac10=_0x311c9a[_0x553aa3(0x69d)+_0x3152da(0x9ec)](_0x1a321a[_0x553aa3(0x30a)](_0x1a321a[_0x553aa3(0xd0d)],_0x1a321a[_0x3152da(0xd12)](_0x268214,_0x2f7594)),_0x1a321a[_0x59d9d9(0xbbc)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x59d9d9(0xd12)](_0x228a19,_0x770b42)));continue;case'4':_0x16cf19=_0x1c6d14[_0x59d9d9(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x553aa3(0xbbc)](_0x1a321a[_0x3152da(0xa4e)],_0x1a321a[_0x3152da(0x49d)](_0xb11b6f,_0xac9897)),_0x1a321a[_0x59d9d9(0xbbc)](_0x1a321a[_0x59d9d9(0x7bb)],_0x1a321a[_0x59d9d9(0xdb5)](_0x39680b,_0x2f1ef9)));continue;case'5':_0x2a4de7=_0x202290[_0x59d9d9(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x59d9d9(0x6c5)](_0x1a321a[_0x553aa3(0xdda)],_0x1a321a[_0xa99cda(0xf1e)](_0x114b1a,_0x4093d3)),_0x1a321a[_0x59d9d9(0x6c5)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x3152da(0xbeb)](_0x47040a,_0x18b826)));continue;case'6':_0xeda87e=_0x508629[_0x3152da(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0xa99cda(0x230)](_0x1a321a[_0x3152da(0x827)],_0x1a321a[_0xa99cda(0x49d)](_0x112566,_0x2a2c22)),_0x1a321a[_0x553aa3(0x74d)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x553aa3(0xf1e)](_0x141e3e,_0x15ac20)));continue;case'7':_0x53c200=_0x2e7db5[_0x553aa3(0x69d)+_0x53e4ed(0x9ec)](_0x1a321a[_0x3152da(0x219)](_0x1a321a[_0xa99cda(0x415)],_0x1a321a[_0xa99cda(0xfa0)](_0x713159,_0x33a973)),_0x1a321a[_0x553aa3(0x311)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x3152da(0xfa0)](_0x4e2a73,_0x87e6c)));continue;case'8':_0x2d3a89=_0xc42d62[_0xa99cda(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x553aa3(0xbd2)](_0x1a321a[_0x553aa3(0x355)],_0x1a321a[_0x53e4ed(0xfa0)](_0x58cac9,_0x2ffcda)),_0x1a321a[_0x3152da(0xed4)](_0x1a321a[_0xa99cda(0x7bb)],_0x1a321a[_0x553aa3(0x86a)](_0x38ff7d,_0x276d89)));continue;case'9':_0x2d5694=_0x12e0f5[_0x3152da(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x59d9d9(0xbbc)](_0x1a321a[_0x553aa3(0x276)],_0x1a321a[_0xa99cda(0x911)](_0x2a4cbc,_0x3f7fea)),_0x1a321a[_0x553aa3(0x50b)](_0x1a321a[_0x59d9d9(0x7bb)],_0x1a321a[_0x53e4ed(0x6ed)](_0x121977,_0x3fc01d)));continue;case'10':_0x3a44e8=_0x125bc4[_0x53e4ed(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x59d9d9(0x6c5)](_0x1a321a[_0x553aa3(0xccb)],_0x1a321a[_0xa99cda(0x499)](_0x5cf81c,_0x4198b0)),_0x1a321a[_0x3152da(0x242)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0xa99cda(0x8fb)](_0x45a80e,_0x111507)));continue;case'11':_0x2fd045=_0x6fb454[_0xa99cda(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x3152da(0x20f)](_0x1a321a[_0x3152da(0x7e5)],_0x1a321a[_0xa99cda(0xd12)](_0x2f13ea,_0x4ccb42)),_0x1a321a[_0x553aa3(0x637)](_0x1a321a[_0x59d9d9(0x7bb)],_0x1a321a[_0x3152da(0x9b0)](_0x4f1950,_0x427bfd)));continue;case'12':_0x598006=_0x34764d[_0x59d9d9(0x69d)+_0x59d9d9(0x9ec)](_0x1a321a[_0x553aa3(0xbbc)](_0x1a321a[_0x553aa3(0x3db)],_0x1a321a[_0x53e4ed(0x911)](_0x5ae3a5,_0x65f64e)),_0x1a321a[_0x59d9d9(0x34b)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x3152da(0x911)](_0x1c0e47,_0x282449)));continue;case'13':_0x35a495=_0x2bb0ab[_0x59d9d9(0x69d)+_0x53e4ed(0x9ec)](_0x1a321a[_0x3152da(0x212)](_0x1a321a[_0xa99cda(0x83d)],_0x1a321a[_0x59d9d9(0x8fb)](_0x3b1e16,_0x25b21e)),_0x1a321a[_0x59d9d9(0x6c5)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x553aa3(0xf1e)](_0x31d882,_0x40e620)));continue;case'14':_0x3b799a=_0x58e904[_0x59d9d9(0x69d)+_0x3152da(0x9ec)](_0x1a321a[_0x553aa3(0x7b4)](_0x1a321a[_0x3152da(0x238)],_0x1a321a[_0x59d9d9(0x1f6)](_0x153188,_0x486061)),_0x1a321a[_0x3152da(0xbbc)](_0x1a321a[_0x53e4ed(0x7bb)],_0x1a321a[_0x3152da(0xa8a)](_0x4f78bb,_0x2e8999)));continue;case'15':_0x4d3a8e=_0x53c7f7[_0x53e4ed(0x69d)+_0x53e4ed(0x9ec)](_0x1a321a[_0xa99cda(0x579)](_0x1a321a[_0x59d9d9(0xcca)],_0x1a321a[_0x53e4ed(0xf0d)](_0x5b55e8,_0xae8f84)),_0x1a321a[_0x59d9d9(0x763)](_0x1a321a[_0xa99cda(0x7bb)],_0x1a321a[_0x53e4ed(0xdb5)](_0x52887c,_0x9cc4fb)));continue;case'16':_0x4aca2e=_0x5481c9[_0x553aa3(0x69d)+_0x3152da(0x9ec)](_0x1a321a[_0x553aa3(0xf72)](_0x1a321a[_0x59d9d9(0x6d8)],_0x1a321a[_0x3152da(0xa8a)](_0x20c586,_0x221b82)),_0x1a321a[_0x3152da(0x6c5)](_0x1a321a[_0x53e4ed(0x7bb)],_0x1a321a[_0x553aa3(0xbeb)](_0x497a8b,_0x3cb1e4)));continue;case'17':_0x33feae=_0x1feae9[_0x59d9d9(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x59d9d9(0xea8)](_0x1a321a[_0x59d9d9(0x276)],_0x1a321a[_0x553aa3(0x96c)](_0x216540,_0x413d9b)),_0x1a321a[_0x3152da(0x230)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x3152da(0xbeb)](_0x37a9eb,_0x5536de)));continue;case'18':_0x4498c0=_0x46a4f7[_0x53e4ed(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x59d9d9(0x34d)](_0x1a321a[_0xa99cda(0x57b)],_0x1a321a[_0x53e4ed(0x9b0)](_0x1cd569,_0x573013)),_0x1a321a[_0x3152da(0x311)](_0x1a321a[_0x53e4ed(0x7bb)],_0x1a321a[_0xa99cda(0xe47)](_0x25a448,_0x482112)));continue;case'19':_0x37972b=_0x5d56a7[_0x59d9d9(0x69d)+_0x3152da(0x9ec)](_0x1a321a[_0x3152da(0xf72)](_0x1a321a[_0x59d9d9(0x938)],_0x1a321a[_0x553aa3(0xa8a)](_0x50225a,_0x2b15cc)),_0x1a321a[_0xa99cda(0x74d)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x3152da(0xb3c)](_0x582a7e,_0x491444)));continue;case'20':_0x14f820=_0x5cf891[_0x553aa3(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x553aa3(0xadc)](_0x1a321a[_0x59d9d9(0x2da)],_0x1a321a[_0x59d9d9(0x3aa)](_0x1c0f90,_0x50db83)),_0x1a321a[_0x3152da(0x50b)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x553aa3(0xaa0)](_0x53c30f,_0x29a413)));continue;case'21':_0x10c857=_0x25306b[_0x53e4ed(0x69d)+_0xa99cda(0x9ec)](_0x1a321a[_0x53e4ed(0x219)](_0x1a321a[_0x59d9d9(0xdda)],_0x1a321a[_0x53e4ed(0xdb5)](_0x486b86,_0x18e321)),_0x1a321a[_0x59d9d9(0x219)](_0x1a321a[_0xa99cda(0x7bb)],_0x1a321a[_0x53e4ed(0xe39)](_0x2d5410,_0x109056)));continue;case'22':_0x2db026=_0xcbaf99[_0x59d9d9(0x69d)+_0x59d9d9(0x9ec)](_0x1a321a[_0x3152da(0x949)](_0x1a321a[_0xa99cda(0xaf4)],_0x1a321a[_0x59d9d9(0x89b)](_0x4d4322,_0xf3b7ea)),_0x1a321a[_0xa99cda(0x637)](_0x1a321a[_0xa99cda(0x7bb)],_0x1a321a[_0x3152da(0x6a1)](_0xa21f93,_0x231b2f)));continue;case'23':_0x1a96e1=_0x5d0e28[_0x59d9d9(0x69d)+_0x3152da(0x9ec)](_0x1a321a[_0x59d9d9(0xadc)](_0x1a321a[_0xa99cda(0xf68)],_0x1a321a[_0x59d9d9(0xaa0)](_0x434c67,_0x31c9e8)),_0x1a321a[_0x59d9d9(0x235)](_0x1a321a[_0x3152da(0x7bb)],_0x1a321a[_0x53e4ed(0x96c)](_0x4a8bed,_0x2e8543)));continue;case'24':_0x5d8621=_0x37d967[_0x53e4ed(0x69d)+_0x553aa3(0x9ec)](_0x1a321a[_0x53e4ed(0x7b4)](_0x1a321a[_0x59d9d9(0x6cf)],_0x1a321a[_0x553aa3(0xc4f)](_0x46a45a,_0x2dc044)),_0x1a321a[_0x59d9d9(0xbbc)](_0x1a321a[_0x553aa3(0x7bb)],_0x1a321a[_0x59d9d9(0x5ed)](_0x284c5a,_0x3d323f)));continue;}break;}}else _0x496b79=JSON[_0x59d9d9(0xd22)](_0x345433)[_0x31a993[_0xa99cda(0x641)]],_0x51bbbe='';}else _0x5b38c8=_0x1a321a[_0x3152da(0x3a2)];}catch(_0x55ed20){_0x31a993[_0x3152da(0x5fb)](_0x31a993[_0x553aa3(0xd04)],_0x31a993[_0xa99cda(0xd04)])?_0x51bbbe+=_0x345433:(_0x1e173c+=_0x147b82[_0xa99cda(0xafe)](_0x4819af[_0x6d87d3],_0x47d53e[_0xa7b585]),_0xb205c4+=_0x147b82[_0xa99cda(0xab6)](_0x168c6b[_0x45f944],0x43*0x1f+0x1ff6+-0x2811),_0x2628af+=_0x147b82[_0x3152da(0xab6)](_0x190abf[_0x4396a4],0x2236+0xcdd+-0x2f11));}if(_0x496b79&&_0x31a993[_0x553aa3(0xd17)](_0x496b79[_0x53e4ed(0x8b2)+'h'],-0x49*0x88+0xeb3*-0x1+-0x357b*-0x1)&&_0x496b79[0x1d41*0x1+0x1*-0xc07+-0x113a][_0x53e4ed(0x83f)][_0x59d9d9(0x91a)+'nt']){if(_0x31a993[_0x59d9d9(0x9db)](_0x31a993[_0xa99cda(0xe5c)],_0x31a993[_0xa99cda(0x513)])){if(_0x1a321a[_0x53e4ed(0xb73)](_0x493def[_0x59d9d9(0x21b)+'Of'](_0xbd829f[_0x385300]),-(0x3*0x29f+0xbd9*0x1+-0x13b5)))_0x12e57d[_0xa99cda(0x6bb)+'ft'](_0x590dbd[_0x5cca6f]);}else chatTemp+=_0x496b79[-0x2d4+0x1*0xbbc+-0x8e8][_0x59d9d9(0x83f)][_0x59d9d9(0x91a)+'nt'];}chatTemp=chatTemp[_0xa99cda(0x69d)+_0x553aa3(0x9ec)]('\x0a\x0a','\x0a')[_0xa99cda(0x69d)+_0x53e4ed(0x9ec)]('\x0a\x0a','\x0a'),document[_0x553aa3(0x5de)+_0x59d9d9(0xf3d)+_0x59d9d9(0xa93)](_0x31a993[_0x59d9d9(0x1db)])[_0x59d9d9(0xdde)+_0xa99cda(0x4ea)]='',_0x31a993[_0xa99cda(0x6db)](markdownToHtml,_0x31a993[_0x53e4ed(0xb15)](beautify,chatTemp),document[_0xa99cda(0x5de)+_0xa99cda(0xf3d)+_0x59d9d9(0xa93)](_0x31a993[_0x3152da(0x1db)])),document[_0x553aa3(0x93e)+_0x53e4ed(0x48f)+_0x553aa3(0x9b1)](_0x31a993[_0x53e4ed(0xbcd)])[_0x3152da(0xdde)+_0xa99cda(0x4ea)]=_0x31a993[_0xa99cda(0x596)](_0x31a993[_0x53e4ed(0x7a4)](_0x31a993[_0x3152da(0x364)](prev_chat,_0x31a993[_0x3152da(0xb13)]),document[_0xa99cda(0x5de)+_0x3152da(0xf3d)+_0x59d9d9(0xa93)](_0x31a993[_0xa99cda(0x1db)])[_0x53e4ed(0xdde)+_0x553aa3(0x4ea)]),_0x31a993[_0xa99cda(0xf0a)]);}}),_0x5402a1[_0x5c6359(0x67b)]()[_0x2a8143(0x95c)](_0x5c8de2);}});}})[_0x268d66(0x670)](_0x5361be=>{const _0x3ca39a=_0x47083f,_0x1fa79d=_0x47083f,_0x45cba6=_0x4e4776,_0x16b38a=_0x4e4776,_0x540241=_0x47083f;_0x276c95[_0x3ca39a(0xd1a)](_0x276c95[_0x1fa79d(0xf57)],_0x276c95[_0x3ca39a(0xf57)])?(lock_chat=-0x5*0x5d7+-0x216e+0x1*0x3ea1,console[_0x3ca39a(0x79c)](_0x276c95[_0x45cba6(0xeb6)],_0x5361be)):_0x54c258+=_0x1e54c6;});}});}},_0xcf92a7=>{const _0x2684d4=_0xc60f68,_0x3d0083=_0xc60f68,_0x267854=_0x4cd48e,_0x3b6ccd=_0x1c3e09,_0x8748d=_0x58195d;_0x3a724f[_0x2684d4(0xc2f)](_0x3a724f[_0x2684d4(0x5b8)],_0x3a724f[_0x267854(0xa85)])?_0x30e51e+=_0xbe62cd[0x198+-0x3*0x593+0xf21][_0x3d0083(0x83f)][_0x8748d(0x91a)+'nt']:console[_0x3d0083(0x7b2)](_0xcf92a7);});}},_0x3b5322=>{const _0x4428f1=_0x2047dc,_0xfc02d6=_0x4b3400,_0x520b96=_0x2047dc,_0x54f29f=_0x469689,_0x5ee58f=_0x2e1284;_0x3a724f[_0x4428f1(0x4d7)](_0x3a724f[_0xfc02d6(0xdb8)],_0x3a724f[_0xfc02d6(0xdb8)])?(_0x14a691=_0x1c126a[_0xfc02d6(0xd22)](_0x3a724f[_0x4428f1(0x216)](_0x495296,_0x1e5272))[_0x3a724f[_0x520b96(0x360)]],_0x432e9f=''):console[_0xfc02d6(0x7b2)](_0x3b5322);});}function eleparse(_0x26b32c){const _0x3145ff=_0x376c,_0x3ad966=_0x376c,_0x602fb8=_0x376c,_0x12eaa2=_0x376c,_0x632f10=_0x376c,_0x34b5d8={'xtLaT':_0x3145ff(0x2e9)+_0x3ad966(0xf3e)+'d','QMUWg':function(_0x709983,_0x25f880){return _0x709983(_0x25f880);},'LdpDI':_0x3ad966(0xd2f)+'ss','xxofu':_0x3145ff(0x5cb)+_0x602fb8(0x8d7),'cVJXI':_0x3ad966(0x9eb)+_0x632f10(0x5e9)+_0x602fb8(0x685),'qpSBh':function(_0xeff372,_0x2a6281){return _0xeff372+_0x2a6281;},'Guebd':function(_0x3ec02d,_0x30d270){return _0x3ec02d-_0x30d270;},'EzRvY':function(_0x224211,_0x268f88){return _0x224211<=_0x268f88;},'hpOsM':function(_0x4b4a1e,_0x1b22f){return _0x4b4a1e+_0x1b22f;},'kGvVX':function(_0x732e74,_0x50e1d8){return _0x732e74-_0x50e1d8;},'kVgKG':function(_0x8c3673,_0x1ff598){return _0x8c3673<=_0x1ff598;},'qjVWV':function(_0x580381,_0x23cf70){return _0x580381>_0x23cf70;},'sGxYw':function(_0x435eb0,_0xe7789c){return _0x435eb0-_0xe7789c;},'IgGaW':_0x3145ff(0x451)+'es','OvYTo':_0x3ad966(0x4d8)+'te','xqkQz':_0x602fb8(0xd39)+_0x602fb8(0xbae),'cSuZD':_0x602fb8(0x4da)+'ss','YDEQE':_0x3145ff(0x290)+_0x3145ff(0x8e7)+_0x3ad966(0x51f),'OVgIP':_0x632f10(0x560)+_0x12eaa2(0xe5d)+'n','kKFMI':_0x602fb8(0x33f)+_0x3145ff(0xc67),'BDoHt':_0x12eaa2(0x9c6),'slVhD':function(_0x61a7b4,_0x2a88b0){return _0x61a7b4<_0x2a88b0;},'XNDtQ':function(_0x38b72c,_0x279faa){return _0x38b72c!==_0x279faa;},'nMfsl':_0x12eaa2(0x9d4),'tcfJX':_0x632f10(0xad8),'TDacF':_0x3145ff(0xa79),'jLBIn':_0x12eaa2(0xcec),'ibhRI':function(_0xa46044,_0x41a2e9){return _0xa46044===_0x41a2e9;},'iqXOw':_0x632f10(0xedd),'negSP':function(_0x19e4f5,_0x2b1718){return _0x19e4f5===_0x2b1718;},'yKaMK':_0x602fb8(0x3bb)+'h','eEyVP':_0x3ad966(0xa54)+_0x602fb8(0x9d8),'KtPmW':function(_0x5595c8,_0x46294d){return _0x5595c8!==_0x46294d;},'qSRLY':function(_0x3b67be,_0x56ceb4){return _0x3b67be===_0x56ceb4;},'KzMwm':_0x3ad966(0xf99),'JJVvo':_0x3145ff(0x81a),'ndypS':_0x3145ff(0xf74),'rngxv':function(_0x3a2acf,_0x9cb9e0){return _0x3a2acf===_0x9cb9e0;},'LDTGF':_0x602fb8(0xf12)+'t','isYRk':function(_0x2098ec,_0x4a4930){return _0x2098ec===_0x4a4930;},'eZkxf':_0x12eaa2(0x9fd)+_0x12eaa2(0xde4),'fFmKD':function(_0x33f395,_0x2518dd){return _0x33f395!==_0x2518dd;},'eljhR':_0x3ad966(0x999),'dSAQY':_0x3145ff(0x26a),'XBzPd':_0x602fb8(0x9c0)+'n','BZnMG':_0x3ad966(0x6a2),'uzzdb':_0x632f10(0xf6a),'KZzBv':function(_0x2298a4,_0xcbb34){return _0x2298a4===_0xcbb34;},'Ybrce':_0x12eaa2(0xb9d),'cAGuH':_0x632f10(0x232),'iwcyd':_0x632f10(0x22c),'yDqgc':function(_0x5ffc77,_0x2fa6f0){return _0x5ffc77===_0x2fa6f0;},'ZGbXY':_0x3145ff(0xb68),'aTLYY':_0x602fb8(0xaa9),'KjMTV':_0x3145ff(0xb54),'bYJIN':function(_0x23363d,_0x29156d){return _0x23363d===_0x29156d;},'XKpMG':_0x3145ff(0x809),'LZzil':function(_0x1ec1bc,_0x4123fb){return _0x1ec1bc===_0x4123fb;},'lXlFb':_0x3ad966(0x46f),'Krxhi':_0x3ad966(0x46d),'MvWiv':_0x602fb8(0x6ff),'QWcUv':_0x632f10(0x623),'BHpTs':_0x602fb8(0x7d8),'vrVmW':_0x3145ff(0x9f4),'JPfgH':function(_0x326566,_0x1c2031){return _0x326566==_0x1c2031;},'ODJYv':function(_0x5ea78e,_0x301b68){return _0x5ea78e!==_0x301b68;},'JChAd':_0x3ad966(0xd2e),'YrTzx':_0x12eaa2(0x28d),'iTKrJ':function(_0x5a9f34,_0x1d6169){return _0x5a9f34!==_0x1d6169;},'lasqW':_0x12eaa2(0x9e2),'XCgXL':_0x3145ff(0x40b),'ssybi':function(_0x54d59d,_0x5d0558){return _0x54d59d!=_0x5d0558;},'UFmVu':_0x602fb8(0xa0d)+'r','Swyqp':function(_0x120e1f,_0x27c178){return _0x120e1f===_0x27c178;},'aNAjA':_0x632f10(0x8f6),'jsRYu':_0x602fb8(0x6e2)+_0x3145ff(0x6e2)+_0x602fb8(0xf89),'KKkPa':function(_0x122852,_0x4e8559){return _0x122852==_0x4e8559;},'XIsKU':_0x3145ff(0x693)+'\x200','xAwVo':function(_0x1e1764,_0x4f9523){return _0x1e1764!==_0x4f9523;},'zDYtu':_0x632f10(0x8f5),'vXjvF':function(_0x7b4dc2,_0x6705aa){return _0x7b4dc2(_0x6705aa);}},_0x1feab0=_0x26b32c[_0x3145ff(0x5de)+_0x3145ff(0xf3d)+_0x602fb8(0xe48)+'l']('*'),_0x152bbd={};_0x152bbd[_0x3145ff(0x8d8)+_0x3ad966(0xd27)]='左上',_0x152bbd[_0x3145ff(0x919)+_0x602fb8(0x710)]='上中',_0x152bbd[_0x12eaa2(0xdc0)+_0x602fb8(0xf6f)]='右上',_0x152bbd[_0x602fb8(0x43f)+_0x602fb8(0xdf0)+'T']='左中',_0x152bbd[_0x12eaa2(0x2bd)+'R']='中间',_0x152bbd[_0x602fb8(0x43f)+_0x632f10(0xf13)+'HT']='右中',_0x152bbd[_0x602fb8(0xc73)+_0x632f10(0x77f)+'T']='左下',_0x152bbd[_0x3145ff(0xc73)+_0x602fb8(0x73d)+_0x3ad966(0x1ea)]='下中',_0x152bbd[_0x602fb8(0xc73)+_0x602fb8(0xaf0)+'HT']='右下';const _0x55e4dd=_0x152bbd,_0x2025c0={};_0x2025c0[_0x602fb8(0x75e)+'00']='黑色',_0x2025c0[_0x3ad966(0x5b4)+'ff']='白色',_0x2025c0[_0x12eaa2(0x37b)+'00']='红色',_0x2025c0[_0x632f10(0x8ea)+'00']='绿色',_0x2025c0[_0x602fb8(0x75e)+'ff']='蓝色';const _0x4cc8ca=_0x2025c0;let _0x19ff09=[],_0x1dcd1e=[],_0x45d7aa=[_0x34b5d8[_0x602fb8(0xac7)],_0x34b5d8[_0x12eaa2(0x39d)],_0x34b5d8[_0x3145ff(0xddf)],_0x34b5d8[_0x12eaa2(0x733)],_0x34b5d8[_0x12eaa2(0xbf3)],_0x34b5d8[_0x602fb8(0x3c3)],_0x34b5d8[_0x632f10(0x4b0)]];for(let _0x48e8a8=-0xdf6+-0x15ab+0x23a1;_0x34b5d8[_0x12eaa2(0x385)](_0x48e8a8,_0x1feab0[_0x602fb8(0x8b2)+'h']);_0x48e8a8++){if(_0x34b5d8[_0x632f10(0x22b)](_0x34b5d8[_0x3145ff(0x23c)],_0x34b5d8[_0x632f10(0xb7b)])){const _0x2010d1=_0x1feab0[_0x48e8a8];let _0x3cfc0b='';if(_0x34b5d8[_0x12eaa2(0x6a4)](_0x2010d1[_0x3145ff(0xc58)+_0x632f10(0x54d)+'h'],0x3e6+0x741+-0xb27)||_0x34b5d8[_0x632f10(0x6a4)](_0x2010d1[_0x632f10(0xc58)+_0x3ad966(0x76d)+'ht'],0x1013+0x128f*-0x1+0x27c)){if(_0x34b5d8[_0x602fb8(0x22b)](_0x34b5d8[_0x12eaa2(0x789)],_0x34b5d8[_0x632f10(0xc5d)])){let _0x13160a=_0x2010d1[_0x12eaa2(0xf64)+'me'][_0x632f10(0x266)+_0x3ad966(0xd76)+'e']();if(_0x34b5d8[_0x632f10(0xc92)](_0x13160a,_0x34b5d8[_0x3145ff(0xb72)])&&(_0x34b5d8[_0x3ad966(0xd55)](_0x2010d1[_0x602fb8(0xd82)],_0x34b5d8[_0x602fb8(0x5d5)])||_0x2010d1[_0x602fb8(0x405)+_0x3ad966(0x26e)+'te'](_0x34b5d8[_0x632f10(0x349)])&&_0x34b5d8[_0x3145ff(0xb8f)](_0x2010d1[_0x12eaa2(0x405)+_0x12eaa2(0x26e)+'te'](_0x34b5d8[_0x632f10(0x349)])[_0x632f10(0x266)+_0x3ad966(0xd76)+'e']()[_0x12eaa2(0x21b)+'Of'](_0x34b5d8[_0x3145ff(0x5d5)]),-(0xe*-0x1df+-0x1*-0x39b+0x1698))))_0x34b5d8[_0x602fb8(0xc86)](_0x34b5d8[_0x3145ff(0x31d)],_0x34b5d8[_0x3145ff(0x7e6)])?_0x4189a4[_0x3ad966(0xae4)+'d']=function(){const _0x43f4de=_0x602fb8,_0x189bfd=_0x3ad966,_0x200088=_0x602fb8,_0x17b16c=_0x3145ff;_0x2625ed[_0x43f4de(0x7b2)](_0x34b5d8[_0x43f4de(0xe11)]),_0x34b5d8[_0x189bfd(0xdbf)](_0x3c7cf0,_0x34b5d8[_0x43f4de(0xbc6)]);}:_0x13160a=_0x34b5d8[_0x632f10(0x609)];else{if(_0x34b5d8[_0x3145ff(0xd55)](_0x13160a,_0x34b5d8[_0x602fb8(0xb72)])||_0x34b5d8[_0x3ad966(0x424)](_0x13160a,_0x34b5d8[_0x12eaa2(0xe7f)])||_0x34b5d8[_0x3145ff(0xc6d)](_0x13160a,_0x34b5d8[_0x602fb8(0x444)])){if(_0x34b5d8[_0x632f10(0x3fc)](_0x34b5d8[_0x602fb8(0x48e)],_0x34b5d8[_0x602fb8(0x48e)]))return-(0x13*-0xc7+0x95*-0x19+-0x1*-0x1d53);else _0x13160a=_0x34b5d8[_0x12eaa2(0xd6c)];}else{if(_0x34b5d8[_0x3145ff(0x3fc)](_0x13160a[_0x632f10(0x21b)+'Of'](_0x34b5d8[_0x3145ff(0x3c1)]),-(0x2d9*0x6+0xdf*0x13+0x29*-0xd2))||_0x34b5d8[_0x602fb8(0x22b)](_0x2010d1['id'][_0x3145ff(0x21b)+'Of'](_0x34b5d8[_0x12eaa2(0x3c1)]),-(-0x2014+0x44f*-0x3+0x2d02))){if(_0x34b5d8[_0x12eaa2(0xb8f)](_0x34b5d8[_0x632f10(0xb25)],_0x34b5d8[_0x602fb8(0x8a5)]))_0x13160a='按钮';else{const _0x18bd94={'lEvSV':_0x34b5d8[_0x3ad966(0xadf)],'AHxMv':function(_0x509562,_0x4e5710){const _0xd8e0b=_0x3ad966;return _0x34b5d8[_0xd8e0b(0xdbf)](_0x509562,_0x4e5710);},'TeCzO':_0x34b5d8[_0x3145ff(0xbc6)]};_0x489117[_0x3145ff(0x91a)+_0x3ad966(0xbe5)+_0x3ad966(0x463)][_0x12eaa2(0x585)+_0x3ad966(0x54c)+_0x632f10(0xaee)+_0x602fb8(0x593)][_0x12eaa2(0x662)+_0x3ad966(0xb18)]['on'](_0x34b5d8[_0x632f10(0xe30)],function(_0x5d2714){const _0xa66851=_0x3145ff,_0x4a3172=_0x3ad966,_0x12cdd5=_0x602fb8,_0x3d5959=_0x3ad966;_0x1f07a3[_0xa66851(0x7b2)](_0x18bd94[_0x4a3172(0x567)]),_0x18bd94[_0x12cdd5(0xf8c)](_0x4c6923,_0x18bd94[_0x3d5959(0xf25)]);});}}else{if(_0x34b5d8[_0x3145ff(0x548)](_0x13160a,_0x34b5d8[_0x602fb8(0xa39)]))_0x34b5d8[_0x3145ff(0x3fc)](_0x34b5d8[_0x3ad966(0xa3b)],_0x34b5d8[_0x3ad966(0xfa8)])?_0x13160a='图片':(_0x3ca4de=-0x701+0xb*0x233+-0x1130,_0x5e51ac[_0x12eaa2(0x79c)](_0x281ae5));else{if(_0x34b5d8[_0x12eaa2(0xe15)](_0x13160a,_0x34b5d8[_0x12eaa2(0x275)]))_0x34b5d8[_0x3145ff(0xc86)](_0x34b5d8[_0x3ad966(0x51d)],_0x34b5d8[_0x632f10(0xf90)])?_0x107a91+='':_0x13160a='表单';else{if(_0x34b5d8[_0x12eaa2(0x9ce)](_0x13160a,_0x34b5d8[_0x632f10(0xa82)])||_0x34b5d8[_0x3145ff(0x46b)](_0x13160a,_0x34b5d8[_0x12eaa2(0xa96)])){if(_0x34b5d8[_0x3145ff(0xd55)](_0x34b5d8[_0x12eaa2(0x88c)],_0x34b5d8[_0x3ad966(0x63d)])){if(_0x4201c9[_0x602fb8(0x6fc)](_0x584821))return _0x9dc57f;const _0x72e270=_0x5d2bd6[_0x602fb8(0xa49)](/[;,;、,]/),_0x429416=_0x72e270[_0x602fb8(0xf1a)](_0x3f5908=>'['+_0x3f5908+']')[_0x602fb8(0x591)]('\x20'),_0x2e8f84=_0x72e270[_0x632f10(0xf1a)](_0x51a0b8=>'['+_0x51a0b8+']')[_0x3ad966(0x591)]('\x0a');_0x72e270[_0x3145ff(0xd9e)+'ch'](_0x8672a8=>_0x4f37c8[_0x3145ff(0xc94)](_0x8672a8)),_0xec16ed='\x20';for(var _0x35d51b=_0x34b5d8[_0x3145ff(0xeb1)](_0x34b5d8[_0x632f10(0xf30)](_0xe39fe4[_0x632f10(0xb08)],_0x72e270[_0x3ad966(0x8b2)+'h']),-0x400+0x2*-0xea3+-0x7*-0x4c1);_0x34b5d8[_0x3145ff(0xf1c)](_0x35d51b,_0x2a0593[_0x3145ff(0xb08)]);++_0x35d51b)_0x32ef3f+='[^'+_0x35d51b+']\x20';return _0x35aee5;}else _0x13160a=_0x34b5d8[_0x12eaa2(0xdce)];}else _0x34b5d8[_0x3ad966(0x548)](_0x34b5d8[_0x602fb8(0x92d)],_0x34b5d8[_0x632f10(0x719)])?_0x14704c[_0x12eaa2(0x7b2)](_0x21d285):_0x13160a=null;}}}}}if(_0x13160a&&(_0x34b5d8[_0x12eaa2(0xc35)](_0x13160a,_0x34b5d8[_0x3ad966(0xdce)])||_0x2010d1[_0x3ad966(0xf98)]||_0x2010d1[_0x12eaa2(0x5fc)]||_0x2010d1[_0x3145ff(0x405)+_0x12eaa2(0x26e)+'te'](_0x34b5d8[_0x12eaa2(0x349)]))){if(_0x34b5d8[_0x3145ff(0x90b)](_0x34b5d8[_0x632f10(0xd1e)],_0x34b5d8[_0x12eaa2(0x4b1)])){_0x3cfc0b+=_0x13160a;if(_0x2010d1[_0x632f10(0xf98)]){if(_0x34b5d8[_0x602fb8(0xea4)](_0x34b5d8[_0x602fb8(0xa52)],_0x34b5d8[_0x12eaa2(0x24a)])){if(_0x34b5d8[_0x3ad966(0x9e0)](_0x2010d1[_0x632f10(0xf98)][_0x3ad966(0x21b)+'Of'](_0x34b5d8[_0x12eaa2(0xab9)]),-(0x31*-0x5+-0xc48*0x3+0x25ce))||_0x45d7aa[_0x12eaa2(0x244)+_0x602fb8(0x7ce)](_0x2010d1[_0x12eaa2(0xf98)][_0x12eaa2(0x266)+_0x3145ff(0xd76)+'e']()))continue;_0x3cfc0b+=':“'+_0x2010d1[_0x602fb8(0xf98)]+'';}else _0x2ae630[_0x632f10(0xc48)]();}else{if(_0x2010d1[_0x3145ff(0x5fc)]||_0x2010d1[_0x12eaa2(0x405)+_0x3ad966(0x26e)+'te'](_0x34b5d8[_0x12eaa2(0x349)])){if(_0x34b5d8[_0x12eaa2(0x828)](_0x34b5d8[_0x3145ff(0x651)],_0x34b5d8[_0x3145ff(0x651)])){if(_0x1dcd1e[_0x3ad966(0x244)+_0x12eaa2(0x7ce)](_0x2010d1[_0x632f10(0x5fc)]||_0x2010d1[_0x12eaa2(0x405)+_0x3145ff(0x26e)+'te'](_0x34b5d8[_0x3ad966(0x349)])))continue;if((_0x2010d1[_0x602fb8(0x5fc)]||_0x2010d1[_0x3145ff(0x405)+_0x12eaa2(0x26e)+'te'](_0x34b5d8[_0x3145ff(0x349)]))[_0x12eaa2(0x244)+_0x602fb8(0x7ce)](_0x34b5d8[_0x3ad966(0xab9)])||_0x45d7aa[_0x632f10(0x244)+_0x12eaa2(0x7ce)]((_0x2010d1[_0x632f10(0x5fc)]||_0x2010d1[_0x632f10(0x405)+_0x3ad966(0x26e)+'te'](_0x34b5d8[_0x632f10(0x349)]))[_0x3145ff(0x266)+_0x632f10(0xd76)+'e']()))continue;_0x3cfc0b+=':“'+(_0x2010d1[_0x3145ff(0x5fc)]||_0x2010d1[_0x3145ff(0x405)+_0x12eaa2(0x26e)+'te'](_0x34b5d8[_0x3ad966(0x349)]))+'',_0x1dcd1e[_0x12eaa2(0xbe6)](_0x2010d1[_0x3ad966(0x5fc)]||_0x2010d1[_0x632f10(0x405)+_0x3145ff(0x26e)+'te'](_0x34b5d8[_0x602fb8(0x349)]));}else return-(0x5e6+0x34*0x59+-0x17f9);}}if((_0x2010d1[_0x632f10(0x8b8)][_0x632f10(0x255)]||window[_0x632f10(0xc4d)+_0x12eaa2(0x326)+_0x3ad966(0xc3d)+'e'](_0x2010d1)[_0x3ad966(0xd10)+_0x3145ff(0x1fe)+_0x602fb8(0x666)]||window[_0x602fb8(0xc4d)+_0x3ad966(0x326)+_0x602fb8(0xc3d)+'e'](_0x2010d1)[_0x602fb8(0x255)])&&_0x34b5d8[_0x632f10(0xc35)]((''+(_0x2010d1[_0x3145ff(0x8b8)][_0x12eaa2(0x255)]||window[_0x3ad966(0xc4d)+_0x3ad966(0x326)+_0x3ad966(0xc3d)+'e'](_0x2010d1)[_0x3ad966(0xd10)+_0x12eaa2(0x1fe)+_0x3ad966(0x666)]||window[_0x12eaa2(0xc4d)+_0x12eaa2(0x326)+_0x3ad966(0xc3d)+'e'](_0x2010d1)[_0x3ad966(0x255)]))[_0x602fb8(0x21b)+'Of'](_0x34b5d8[_0x3ad966(0x40d)]),-(-0x1cb1*0x1+-0x17a1+0x3453))&&_0x34b5d8[_0x602fb8(0xc68)]((''+(_0x2010d1[_0x602fb8(0x8b8)][_0x632f10(0x255)]||window[_0x602fb8(0xc4d)+_0x3ad966(0x326)+_0x12eaa2(0xc3d)+'e'](_0x2010d1)[_0x12eaa2(0xd10)+_0x3145ff(0x1fe)+_0x3145ff(0x666)]||window[_0x3145ff(0xc4d)+_0x12eaa2(0x326)+_0x3145ff(0xc3d)+'e'](_0x2010d1)[_0x12eaa2(0x255)]))[_0x632f10(0x21b)+'Of'](_0x34b5d8[_0x3ad966(0xed6)]),-(0x1*0x1f3+-0x2358+0x2166))){if(_0x34b5d8[_0x3145ff(0x302)](_0x34b5d8[_0x632f10(0x83c)],_0x34b5d8[_0x632f10(0x83c)])){const _0x11c5af={'QNOlo':function(_0x38ca1c,_0xa64e63){const _0x1bbb61=_0x3145ff;return _0x34b5d8[_0x1bbb61(0x3c7)](_0x38ca1c,_0xa64e63);},'BgyHX':function(_0x319065,_0x4f0d5c){const _0x3e2b2f=_0x12eaa2;return _0x34b5d8[_0x3e2b2f(0xe23)](_0x319065,_0x4f0d5c);},'ysRaF':function(_0x4c1026,_0x2db799){const _0x3b6a22=_0x12eaa2;return _0x34b5d8[_0x3b6a22(0xf21)](_0x4c1026,_0x2db799);}},_0x492666=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0x1aefa8=new _0x414318(),_0x5e1ab6=(_0x339e43,_0x2b4400)=>{const _0x40c702=_0x632f10,_0x3f178a=_0x3145ff,_0x1d3c79=_0x12eaa2,_0x58164e=_0x12eaa2,_0x2be522=_0x12eaa2;if(_0x1aefa8[_0x40c702(0x6fc)](_0x2b4400))return _0x339e43;const _0x3bb0bc=_0x2b4400[_0x3f178a(0xa49)](/[;,;、,]/),_0x5896bd=_0x3bb0bc[_0x3f178a(0xf1a)](_0x42b54e=>'['+_0x42b54e+']')[_0x40c702(0x591)]('\x20'),_0x20de40=_0x3bb0bc[_0x1d3c79(0xf1a)](_0x347238=>'['+_0x347238+']')[_0x3f178a(0x591)]('\x0a');_0x3bb0bc[_0x1d3c79(0xd9e)+'ch'](_0x5be87f=>_0x1aefa8[_0x40c702(0xc94)](_0x5be87f)),_0x383101='\x20';for(var _0x2be0f9=_0x11c5af[_0x58164e(0x577)](_0x11c5af[_0x58164e(0x8c2)](_0x1aefa8[_0x40c702(0xb08)],_0x3bb0bc[_0x58164e(0x8b2)+'h']),-0x13d2*-0x1+-0xdf2+-0x5df);_0x11c5af[_0x2be522(0x309)](_0x2be0f9,_0x1aefa8[_0x2be522(0xb08)]);++_0x2be0f9)_0x2cdddc+='[^'+_0x2be0f9+']\x20';return _0x4d1f79;};let _0xcc8b55=-0x5a*-0x21+-0x6fe+-0x49b,_0x399447=_0x3bcad8[_0x3ad966(0x69d)+'ce'](_0x492666,_0x5e1ab6);while(_0x34b5d8[_0x602fb8(0x6a4)](_0x1aefa8[_0x602fb8(0xb08)],-0x173a+-0xc9*0x5+-0x7*-0x3e1)){const _0x2a981a='['+_0xcc8b55++ +_0x3145ff(0xb01)+_0x1aefa8[_0x602fb8(0x619)+'s']()[_0x602fb8(0xcc0)]()[_0x3ad966(0x619)],_0x2e1602='[^'+_0x34b5d8[_0x602fb8(0xed3)](_0xcc8b55,0x24f2*0x1+-0x8a8+-0x1c49*0x1)+_0x632f10(0xb01)+_0x1aefa8[_0x632f10(0x619)+'s']()[_0x3145ff(0xcc0)]()[_0x3ad966(0x619)];_0x399447=_0x399447+'\x0a\x0a'+_0x2e1602,_0x1aefa8[_0x12eaa2(0x7ea)+'e'](_0x1aefa8[_0x632f10(0x619)+'s']()[_0x3ad966(0xcc0)]()[_0x602fb8(0x619)]);}return _0x399447;}else _0x3cfc0b+=_0x632f10(0x78f)+(_0x2010d1[_0x3ad966(0x8b8)][_0x632f10(0x255)]||window[_0x3145ff(0xc4d)+_0x3145ff(0x326)+_0x3ad966(0xc3d)+'e'](_0x2010d1)[_0x3ad966(0xd10)+_0x632f10(0x1fe)+_0x12eaa2(0x666)]||window[_0x12eaa2(0xc4d)+_0x3ad966(0x326)+_0x3ad966(0xc3d)+'e'](_0x2010d1)[_0x3ad966(0x255)]);}const _0xae3506=_0x34b5d8[_0x3145ff(0xd5c)](getElementPosition,_0x2010d1);_0x3cfc0b+=_0x3ad966(0x393)+_0xae3506;}else _0x2b0fc4+=_0x14055d[_0x3145ff(0x91a)+'nt'][_0x602fb8(0x8b2)+'h'];}}else{const _0x1b815a=_0x3286e1[_0x602fb8(0xd6d)](_0x5d9763,arguments);return _0x5ec69f=null,_0x1b815a;}}if(_0x3cfc0b&&_0x34b5d8[_0x3ad966(0x9e0)](_0x3cfc0b,''))_0x19ff09[_0x632f10(0xbe6)](_0x3cfc0b);}else _0x566407=_0x4cb351[_0x12eaa2(0xd22)](_0x416f29)[_0x34b5d8[_0x602fb8(0x7ad)]],_0x169606='';}return _0x34b5d8[_0x602fb8(0xd5c)](unique,_0x19ff09);}function unique(_0x499baf){const _0x3c26b7=_0x376c;return Array[_0x3c26b7(0x361)](new Set(_0x499baf));}function getElementPosition(_0xecdd4){const _0x5624bd=_0x376c,_0xd59249=_0x376c,_0x32437e=_0x376c,_0x4f3baa=_0x376c,_0x1614f1=_0x376c,_0x22ca6b={'KFgLM':function(_0x4378c1,_0x4e653b){return _0x4378c1<_0x4e653b;},'vEWGF':function(_0x287350,_0x409a1b){return _0x287350+_0x409a1b;},'JhXQY':function(_0x29c277,_0x219807){return _0x29c277+_0x219807;},'kaZKm':_0x5624bd(0x517)+':','XGStv':function(_0x1268bc,_0x258d9d){return _0x1268bc===_0x258d9d;},'CMuQs':function(_0x4852ae,_0xf5170c){return _0x4852ae(_0xf5170c);},'kKJTJ':_0x5624bd(0x751)+_0x5624bd(0x718)+'结束','SsLDm':function(_0x4cf7de,_0x2f89fd,_0x5703af){return _0x4cf7de(_0x2f89fd,_0x5703af);},'LwJLp':_0xd59249(0x420),'LVIsv':_0xd59249(0xb46)+_0x5624bd(0xb69),'JHwaZ':function(_0x33aeed,_0x185f4a){return _0x33aeed+_0x185f4a;},'snAWo':function(_0x434b50,_0x430a94){return _0x434b50+_0x430a94;},'nTgNK':function(_0x18143b,_0x5ccea5){return _0x18143b+_0x5ccea5;},'AiEns':function(_0x1cb292,_0x4535b0){return _0x1cb292+_0x4535b0;},'IlqqM':function(_0x43f648,_0x1ec29a){return _0x43f648+_0x1ec29a;},'biAmV':_0xd59249(0xe5b)+_0xd59249(0xca4)+_0xd59249(0xcbf)+_0xd59249(0x6ef)+_0xd59249(0xe2f)+'\x22>','WBPaq':_0xd59249(0x4f3),'RMkEL':_0x5624bd(0xed8)+_0xd59249(0xd67)+_0x4f3baa(0x59d)+_0x4f3baa(0x910),'XJcdh':function(_0x543ee8,_0x2ed3fe){return _0x543ee8(_0x2ed3fe);},'VoeIo':_0x1614f1(0x53d),'CnWQT':_0x5624bd(0xc96)+'>','uWwKR':function(_0x44bdb4,_0x406fb0){return _0x44bdb4+_0x406fb0;},'tCqni':function(_0x44caf4,_0x2bfa92){return _0x44caf4/_0x2bfa92;},'JDhxT':function(_0x57fbbb,_0x4a55ee){return _0x57fbbb+_0x4a55ee;},'HGBMI':function(_0x2f4054,_0x310b82){return _0x2f4054/_0x310b82;},'gTgxJ':function(_0x5efd2e,_0x82dbf2){return _0x5efd2e/_0x82dbf2;},'hrCtC':_0x1614f1(0x426),'BFhEW':_0xd59249(0xd4b),'lSOns':function(_0x517b70,_0x595b0d){return _0x517b70>_0x595b0d;},'eBEfE':function(_0x1891d6,_0x1399da){return _0x1891d6/_0x1399da;},'QegoE':function(_0x3bd331,_0x3ce7cf){return _0x3bd331*_0x3ce7cf;},'Xpgqs':function(_0x4a8d0a,_0x11c216){return _0x4a8d0a!==_0x11c216;},'IhIuq':_0x4f3baa(0xb35),'ZCNcm':_0x4f3baa(0xc57),'kcLrK':_0x5624bd(0x38d),'nNkKO':function(_0x5f2769,_0x555a1d){return _0x5f2769<_0x555a1d;},'fchJv':function(_0x441df9,_0x30914c){return _0x441df9/_0x30914c;},'dtCBj':_0x5624bd(0xd91),'QjzCY':_0x5624bd(0xb9b),'yjTUo':function(_0x106cd0,_0x38f64a){return _0x106cd0*_0x38f64a;},'TkZNG':function(_0x5c00d6,_0x2514d4){return _0x5c00d6!==_0x2514d4;},'xaVIJ':_0x5624bd(0xdd7),'DJVIw':function(_0x365cb2,_0x46bd85){return _0x365cb2===_0x46bd85;},'UYaJz':_0x5624bd(0x224),'EFFef':_0x4f3baa(0x7d1)},_0x38a0df=_0xecdd4[_0x32437e(0x91e)+_0xd59249(0x35a)+_0x5624bd(0x6d5)+_0x5624bd(0x762)+'t'](),_0x22f56b=_0x22ca6b[_0x5624bd(0x320)](_0x38a0df[_0x32437e(0xa1a)],_0x22ca6b[_0x32437e(0xcf6)](_0x38a0df[_0xd59249(0x468)],-0xc31*-0x2+0xc80+0x2*-0x1270)),_0x1df878=_0x22ca6b[_0x4f3baa(0x626)](_0x38a0df[_0xd59249(0x68c)],_0x22ca6b[_0x5624bd(0xf5b)](_0x38a0df[_0x32437e(0xe6e)+'t'],0x2*-0x742+-0x148b+0xbf*0x2f));let _0x44fa00='';if(_0x22ca6b[_0xd59249(0x7c4)](_0x22f56b,_0x22ca6b[_0x5624bd(0xd24)](window[_0x32437e(0xdde)+_0x4f3baa(0xf6e)],-0x683*0x1+-0x5*0x301+-0x1*-0x158b))){if(_0x22ca6b[_0xd59249(0x889)](_0x22ca6b[_0x32437e(0x56c)],_0x22ca6b[_0x5624bd(0x41a)])){if(_0x22ca6b[_0x5624bd(0x7c4)](_0x22ca6b[_0xd59249(0xdd6)](_0x22ca6b[_0x1614f1(0xdd6)](_0x1b3f2a,_0x2c9c80[_0x2be833]),'\x0a')[_0x5624bd(0x8b2)+'h'],-0x2*0x10c6+-0x1*0x1993+-0xd*-0x4ab))_0x2da23b=_0x22ca6b[_0xd59249(0xdd6)](_0x22ca6b[_0x1614f1(0xb95)](_0x24e482,_0x52ba1a[_0x34b4b1]),'\x0a');}else _0x44fa00+='';}else _0x22ca6b[_0x4f3baa(0x5d0)](_0x22f56b,_0x22ca6b[_0x4f3baa(0xded)](_0x22ca6b[_0x5624bd(0xab8)](window[_0xd59249(0xdde)+_0x32437e(0xf6e)],-0x5ce*-0x4+0x842+-0x7de*0x4),0x1432+-0x445*0x7+0x9b4))?_0x22ca6b[_0xd59249(0xe59)](_0x22ca6b[_0x1614f1(0xd15)],_0x22ca6b[_0xd59249(0x797)])?_0x44fa00+='':_0x4d3000[_0x1614f1(0x79c)](_0x22ca6b[_0x1614f1(0x486)],_0x5b2b82):_0x22ca6b[_0x4f3baa(0x889)](_0x22ca6b[_0x1614f1(0xef8)],_0x22ca6b[_0x1614f1(0xef8)])?_0x44fa00+='':_0x211c2d+=_0x5587aa;if(_0x22ca6b[_0xd59249(0x327)](_0x1df878,_0x22ca6b[_0xd59249(0xa67)](window[_0x4f3baa(0xdde)+_0x4f3baa(0x74e)+'t'],0x1ac3+-0x2092+0x5d2)))_0x22ca6b[_0x1614f1(0x889)](_0x22ca6b[_0x5624bd(0xf73)],_0x22ca6b[_0x5624bd(0xddc)])?_0x22ca6b[_0x5624bd(0x889)](_0x2844c4[_0x5624bd(0x39b)+_0x32437e(0xdaa)],-0x2*0xb82+0xa81*-0x3+0xda2*0x4)?(_0x388868[_0xd59249(0x985)+_0x1614f1(0xd3f)+_0xd59249(0x708)](),_0x22ca6b[_0x4f3baa(0x677)](_0x582e3c,_0x22ca6b[_0x1614f1(0x3d0)])):_0x22ca6b[_0x32437e(0x60a)](_0x19e2f0,_0x3adafd[_0x596678][_0x5624bd(0x541)],_0x22ca6b[_0x1614f1(0x618)]):_0x44fa00+='';else{if(_0x22ca6b[_0x1614f1(0x5d0)](_0x1df878,_0x22ca6b[_0xd59249(0xa67)](_0x22ca6b[_0xd59249(0x7e2)](window[_0xd59249(0xdde)+_0x32437e(0x74e)+'t'],-0x3a*0x71+0x208d*0x1+-0x6f1),0x2e3*0x6+0x2*-0x419+-0x91d*0x1))){if(_0x22ca6b[_0x32437e(0xc28)](_0x22ca6b[_0x5624bd(0x2a2)],_0x22ca6b[_0x32437e(0x2a2)])){const _0x467c3f=_0x4255b6?function(){const _0x1b17eb=_0x32437e;if(_0xc1767b){const _0x2549b6=_0xeec6a3[_0x1b17eb(0xd6d)](_0x356d52,arguments);return _0x2b0d07=null,_0x2549b6;}}:function(){};return _0x56b5bd=![],_0x467c3f;}else _0x44fa00+='';}else _0x22ca6b[_0x4f3baa(0xecd)](_0x22ca6b[_0x1614f1(0x2ef)],_0x22ca6b[_0xd59249(0x5e5)])?_0x99b53a[_0x5624bd(0x93e)+_0x32437e(0x48f)+_0x5624bd(0x9b1)](_0x22ca6b[_0x32437e(0x8e3)])[_0x4f3baa(0xdde)+_0x1614f1(0x4ea)]=_0x22ca6b[_0x32437e(0xd5a)](_0x22ca6b[_0x5624bd(0x6c3)](_0x22ca6b[_0x5624bd(0xee0)](_0x22ca6b[_0x1614f1(0xdf7)](_0x22ca6b[_0xd59249(0x720)](_0x22ca6b[_0x1614f1(0xee0)](_0x5e10c2,_0x22ca6b[_0x1614f1(0x7eb)]),_0x22ca6b[_0x1614f1(0x848)]),_0x22ca6b[_0x1614f1(0x980)]),_0x22ca6b[_0x1614f1(0x7d3)](_0x290fc4,_0x4f007d)),_0x22ca6b[_0x1614f1(0x768)]),_0x22ca6b[_0x5624bd(0x4d6)]):_0x44fa00+='';}return _0x44fa00;}(function(){const _0x315ab8=_0x376c,_0x80f05b=_0x376c,_0x270d92=_0x376c,_0x31be83=_0x376c,_0x752a9b=_0x376c,_0x5eb21c={'CDQvD':function(_0x18b44b,_0x4840e0){return _0x18b44b<_0x4840e0;},'NbUJm':function(_0x4cd29d,_0x48ffcc,_0x722dfb){return _0x4cd29d(_0x48ffcc,_0x722dfb);},'vzSEb':function(_0x4faeb2,_0xba5079){return _0x4faeb2+_0xba5079;},'uzAQN':_0x315ab8(0x2e2)+_0x315ab8(0xbf0)+_0x80f05b(0x867)+_0x31be83(0x876)+_0x752a9b(0xb77)+_0x315ab8(0x4b4)+_0x752a9b(0xdbc)+_0x80f05b(0x608)+'e=','bdVCN':function(_0x1ce03c,_0x2281bd){return _0x1ce03c(_0x2281bd);},'RyUYm':_0x270d92(0x243),'cqhlh':function(_0x1ac8d4,_0x1644a6){return _0x1ac8d4!==_0x1644a6;},'kYXtO':_0x270d92(0xdeb),'AWhoY':_0x80f05b(0x5a5),'uNwOB':_0x31be83(0xd69)+_0x752a9b(0xd4e)+_0x80f05b(0x285)+_0x80f05b(0x1e4),'IdpTF':_0x31be83(0xcb3)+_0x270d92(0xcd9)+_0x31be83(0xa0b)+_0x31be83(0x5b0)+_0x315ab8(0xd03)+_0x31be83(0xae9)+'\x20)','sLNNH':function(_0x170e3b){return _0x170e3b();},'cTsZd':function(_0x56b6b3,_0x466fce){return _0x56b6b3===_0x466fce;},'CuREX':_0x752a9b(0x56a)};let _0x19bda2;try{if(_0x5eb21c[_0x315ab8(0x673)](_0x5eb21c[_0x752a9b(0xf41)],_0x5eb21c[_0x80f05b(0x45b)])){const _0x4d6a3c=_0x5eb21c[_0x80f05b(0x6bc)](Function,_0x5eb21c[_0x80f05b(0x386)](_0x5eb21c[_0x315ab8(0x386)](_0x5eb21c[_0x80f05b(0x824)],_0x5eb21c[_0x31be83(0x9cb)]),');'));_0x19bda2=_0x5eb21c[_0x315ab8(0xcf4)](_0x4d6a3c);}else try{var _0x367bab=new _0x4184d7(_0x58bce3),_0x173266='';for(var _0x2f0600=-0x1726+-0xbed*-0x1+-0xdd*-0xd;_0x5eb21c[_0x80f05b(0xdac)](_0x2f0600,_0x367bab[_0x31be83(0x96f)+_0x752a9b(0x3b3)]);_0x2f0600++){_0x173266+=_0x405137[_0x31be83(0xe4f)+_0x315ab8(0x29a)+_0x80f05b(0x58b)](_0x367bab[_0x2f0600]);}return _0x173266;}catch(_0x3f5429){}}catch(_0x4cf2d5){if(_0x5eb21c[_0x80f05b(0xb9c)](_0x5eb21c[_0x31be83(0xa12)],_0x5eb21c[_0x752a9b(0xa12)]))_0x19bda2=window;else{_0x259155=_0xee73dd[_0x31be83(0x752)](_0x744ce6)[0x2296+-0x661*0x5+0xd*-0x35],_0x5eb21c[_0x80f05b(0x6e4)](_0x1143ec,_0x5eb21c[_0x80f05b(0x386)](_0x5eb21c[_0x270d92(0x95f)],_0x5eb21c[_0x80f05b(0x6bc)](_0x3ef0fc,_0x27c57c)),_0x5eb21c[_0x270d92(0x707)]);return;}}_0x19bda2[_0x31be83(0x946)+_0x315ab8(0x758)+'l'](_0x2cc9e4,-0xfeb+-0x1*-0x1123+-0xe68*-0x1);}());function stringToArrayBuffer(_0x50e406){const _0x4c9b24=_0x376c,_0x4032fa=_0x376c,_0x2c5249=_0x376c,_0x507c5f=_0x376c,_0x2bf6a6=_0x376c,_0x384ad6={'JdtOk':function(_0x5f1107,_0x51184e){return _0x5f1107(_0x51184e);},'jPxtr':function(_0x8824dc,_0x4a112c){return _0x8824dc+_0x4a112c;},'eSDen':_0x4c9b24(0xd69)+_0x4032fa(0xd4e)+_0x4032fa(0x285)+_0x4c9b24(0x1e4),'hFtFt':_0x4032fa(0xcb3)+_0x507c5f(0xcd9)+_0x4032fa(0xa0b)+_0x4c9b24(0x5b0)+_0x2bf6a6(0xd03)+_0x507c5f(0xae9)+'\x20)','TBeWy':function(_0x3131d3){return _0x3131d3();},'xPZch':function(_0x590c5a,_0x2a2530){return _0x590c5a>_0x2a2530;},'JcCOc':function(_0x385935,_0x2a9381,_0x413c86){return _0x385935(_0x2a9381,_0x413c86);},'ZOqBT':function(_0x3ae720,_0x2507a7){return _0x3ae720+_0x2507a7;},'QeuJr':function(_0x47612f,_0x3339c5){return _0x47612f===_0x3339c5;},'wUfET':_0x2bf6a6(0x41d),'EIsbo':_0x4c9b24(0xcc9),'FMGDG':function(_0xe8bc69,_0x9054a5){return _0xe8bc69<_0x9054a5;},'RIZku':function(_0x58763a,_0x350968){return _0x58763a!==_0x350968;},'ZxpZw':_0x4c9b24(0x32a),'AmhDT':_0x2c5249(0xa66)};if(!_0x50e406)return;try{if(_0x384ad6[_0x2c5249(0x6fe)](_0x384ad6[_0x2bf6a6(0x46c)],_0x384ad6[_0x4032fa(0xf80)])){const _0xa721cc=gnFRrp[_0x507c5f(0xba5)](_0x35993d,gnFRrp[_0x2bf6a6(0xecf)](gnFRrp[_0x507c5f(0xecf)](gnFRrp[_0x4032fa(0x3ed)],gnFRrp[_0x4032fa(0xedf)]),');'));_0x23e526=gnFRrp[_0x2c5249(0x6b2)](_0xa721cc);}else{var _0x44ce02=new ArrayBuffer(_0x50e406[_0x507c5f(0x8b2)+'h']),_0x588720=new Uint8Array(_0x44ce02);for(var _0x454326=-0x1e74+-0x19f*-0x4+-0x34*-0x76,_0x2af6ad=_0x50e406[_0x4032fa(0x8b2)+'h'];_0x384ad6[_0x4c9b24(0x835)](_0x454326,_0x2af6ad);_0x454326++){if(_0x384ad6[_0x2c5249(0x445)](_0x384ad6[_0x2bf6a6(0xed1)],_0x384ad6[_0x2bf6a6(0x8ae)]))_0x588720[_0x454326]=_0x50e406[_0x2c5249(0xf2c)+_0x4032fa(0xa3d)](_0x454326);else return _0x384ad6[_0x507c5f(0xcdf)](_0x384ad6[_0x2c5249(0x521)](_0x4dd116,_0x384ad6[_0x4c9b24(0xecf)](_0x384ad6[_0x507c5f(0xecf)](_0x45f875,'\x20'),_0xf639d1),_0x4574ae[-0x487+-0x2d+-0x1*-0x4b5]),_0x384ad6[_0x4c9b24(0x521)](_0x4e4aae,_0x384ad6[_0x2c5249(0x237)](_0x384ad6[_0x2c5249(0xecf)](_0xaaf3b0,'\x20'),_0x581e7d),_0x3e4914[-0x2ab*0x8+0xdd7+0x782]))?-(0x265*-0x7+-0x5*-0x485+0x5d5*-0x1):-0x1724+-0x71*-0x53+0x13a*-0xb;}return _0x44ce02;}}catch(_0x1968da){}}function arrayBufferToString(_0x396a19){const _0xce34d5=_0x376c,_0x1813c0=_0x376c,_0x5053b4=_0x376c,_0x77e5b0=_0x376c,_0x575e3d=_0x376c,_0x1c48a6={'pupsi':function(_0x1a13a8,_0xc95287,_0x12ffe8){return _0x1a13a8(_0xc95287,_0x12ffe8);},'DSPRp':_0xce34d5(0xe8f)+_0x1813c0(0xb9f),'BSCAX':_0x5053b4(0x5b6),'WUkgT':function(_0x2cff87,_0x24bf74){return _0x2cff87===_0x24bf74;},'xjHhz':_0x77e5b0(0xca6),'acbCj':function(_0x1b2fec,_0x33327c){return _0x1b2fec<_0x33327c;},'Xurxx':_0x77e5b0(0x982),'HsBSC':_0xce34d5(0xbe0)};try{if(_0x1c48a6[_0x1813c0(0x298)](_0x1c48a6[_0x77e5b0(0xf40)],_0x1c48a6[_0x77e5b0(0xf40)])){var _0x12bb5a=new Uint8Array(_0x396a19),_0x50ec0f='';for(var _0x483586=0x31b+-0xb*-0x296+-0x1f8d;_0x1c48a6[_0xce34d5(0x474)](_0x483586,_0x12bb5a[_0x77e5b0(0x96f)+_0x5053b4(0x3b3)]);_0x483586++){if(_0x1c48a6[_0x5053b4(0x298)](_0x1c48a6[_0xce34d5(0x721)],_0x1c48a6[_0x77e5b0(0x3da)]))return-0x1d*-0x25+0xed3*0x1+-0x1303*0x1;else _0x50ec0f+=String[_0x1813c0(0xe4f)+_0xce34d5(0x29a)+_0xce34d5(0x58b)](_0x12bb5a[_0x483586]);}return _0x50ec0f;}else _0x1c48a6[_0xce34d5(0xd9a)](_0x4daac7,_0x16c685,_0x4992c5[_0x1c48a6[_0x1813c0(0x2e5)]][0x17b0+-0x2*-0x7ca+-0x2744][_0x1c48a6[_0x5053b4(0x9c8)]]);}catch(_0x4beebb){}}function importPrivateKey(_0x5c0413){const _0x2687e6=_0x376c,_0x3abadc=_0x376c,_0x40b441=_0x376c,_0x3c4b59=_0x376c,_0xd7a910=_0x376c,_0x58d65b={'FyUcN':_0x2687e6(0x2b6)+_0x3abadc(0xd31)+_0x2687e6(0x433)+_0x3c4b59(0x5ae)+_0x2687e6(0xe98)+'--','JRnGw':_0x2687e6(0x2b6)+_0x3c4b59(0x8b6)+_0xd7a910(0x7f3)+_0x40b441(0x5aa)+_0x3abadc(0x2b6),'DQiWC':function(_0x2bf465,_0x5ab309){return _0x2bf465-_0x5ab309;},'oJjVx':function(_0x38b79b,_0x21c0f3){return _0x38b79b(_0x21c0f3);},'jAKPP':_0x3c4b59(0xca0),'KEqFw':_0xd7a910(0x36c)+_0x3c4b59(0xbba),'IQcny':_0x3c4b59(0xd9d)+'56','DcuCK':_0x40b441(0x5ad)+'pt'},_0x231a06=_0x58d65b[_0xd7a910(0x336)],_0x251052=_0x58d65b[_0x3abadc(0x248)],_0x4eff67=_0x5c0413[_0x2687e6(0xb43)+_0xd7a910(0x93f)](_0x231a06[_0x40b441(0x8b2)+'h'],_0x58d65b[_0xd7a910(0x5ec)](_0x5c0413[_0x3abadc(0x8b2)+'h'],_0x251052[_0x2687e6(0x8b2)+'h'])),_0x21c074=_0x58d65b[_0xd7a910(0xf0e)](atob,_0x4eff67),_0x2fdb24=_0x58d65b[_0xd7a910(0xf0e)](stringToArrayBuffer,_0x21c074);return crypto[_0x40b441(0x4a3)+'e'][_0x2687e6(0x857)+_0x3abadc(0xa59)](_0x58d65b[_0x40b441(0xea7)],_0x2fdb24,{'name':_0x58d65b[_0x40b441(0xf8b)],'hash':_0x58d65b[_0xd7a910(0x981)]},!![],[_0x58d65b[_0x2687e6(0x523)]]);}function importPublicKey(_0x3f1214){const _0x308970=_0x376c,_0x413ede=_0x376c,_0x2026c0=_0x376c,_0x997bad=_0x376c,_0x4b1709=_0x376c,_0x55b759={'TCkbm':function(_0x1e31ae,_0x1924a8){return _0x1e31ae!==_0x1924a8;},'lhuTx':_0x308970(0x6af),'SOoci':_0x413ede(0xa3c),'tpYvL':function(_0x59f37a,_0x2ebfc6){return _0x59f37a===_0x2ebfc6;},'Mizap':_0x308970(0x2c2),'dmLrF':_0x997bad(0xaf8),'ospPn':_0x413ede(0xf11)+_0x2026c0(0x3be),'VgmwD':_0x997bad(0xf10),'HOqsF':_0x2026c0(0xed7)+_0x997bad(0x646),'VaCuF':_0x997bad(0x6c9)+_0x4b1709(0xa7c)+'t','NXbKA':_0x308970(0x8ce),'bjGYB':_0x4b1709(0x54a),'nziCZ':function(_0x174b11,_0x39ab10){return _0x174b11!==_0x39ab10;},'ZIFQJ':_0x413ede(0xa51),'SzQwg':function(_0x5aaece,_0x145015,_0xed961e){return _0x5aaece(_0x145015,_0xed961e);},'BYAup':function(_0x5e558f,_0x3b04fb){return _0x5e558f+_0x3b04fb;},'yQpxD':_0x413ede(0x21c),'XvwIA':_0x413ede(0x419)+_0x2026c0(0xc08)+'+$','hLysA':_0x997bad(0x517)+':','kmPAE':function(_0x34b561,_0x33a833){return _0x34b561+_0x33a833;},'axxBZ':_0x413ede(0x451)+'es','CgNPt':function(_0x13b0a6,_0x32af74){return _0x13b0a6==_0x32af74;},'zGBGW':function(_0x36942d,_0x323e72){return _0x36942d+_0x323e72;},'KEgHw':function(_0x10960c,_0x4d7779){return _0x10960c+_0x4d7779;},'Qyscq':function(_0x40bbfe,_0x5d956b){return _0x40bbfe(_0x5d956b);},'nTiGg':function(_0x1f0aa8,_0x24f151){return _0x1f0aa8(_0x24f151);},'RPjue':function(_0x255b33,_0x54c88d){return _0x255b33<_0x54c88d;},'gquQy':function(_0x15b2fc,_0x57e164){return _0x15b2fc===_0x57e164;},'lyAhb':_0x308970(0xf5e),'nlxWj':_0x997bad(0xec8),'BwUuI':_0x997bad(0x3af),'JLViL':_0x4b1709(0x993),'vZMLt':_0x308970(0xbfc),'SBGhJ':_0x2026c0(0xd53),'LzJrk':_0x413ede(0x986),'VRjky':_0x997bad(0x2b6)+_0x4b1709(0xd31)+_0x413ede(0x433)+_0x413ede(0x5ae)+_0x2026c0(0xe98)+'--','LHJhP':_0x997bad(0x2b6)+_0x2026c0(0x8b6)+_0x2026c0(0x7f3)+_0x308970(0x5aa)+_0x2026c0(0x2b6),'GzZXs':function(_0x148d29,_0x2969c9){return _0x148d29-_0x2969c9;},'skQXb':_0x2026c0(0xca0),'zryaZ':_0x308970(0x36c)+_0x997bad(0xbba),'QxOIB':_0x413ede(0xd9d)+'56','TmxUg':_0x308970(0x5ad)+'pt','DvOjJ':_0x4b1709(0xf38),'ajeJJ':_0x2026c0(0x5ac),'HUsFG':_0x4b1709(0x2e7)+_0x308970(0x821)+_0x413ede(0xbec)+')','DHVJR':_0x4b1709(0xb42)+_0x2026c0(0x7da)+_0x997bad(0x236)+_0x997bad(0xb58)+_0x2026c0(0x971)+_0x4b1709(0xcc4)+_0x2026c0(0x8e0),'TQrLk':_0x997bad(0x6f3),'ErCGP':function(_0x368bca,_0x3df26a){return _0x368bca+_0x3df26a;},'tURAQ':_0x997bad(0x7d2),'Niqiq':function(_0x1f0a33,_0x450634){return _0x1f0a33+_0x450634;},'xtyls':_0x308970(0xedd),'cCRyH':function(_0x45f5de,_0x407b84){return _0x45f5de===_0x407b84;},'bnISJ':_0x2026c0(0x79a),'xGwfd':_0x308970(0x3e0),'Pvuub':_0x4b1709(0x7c7),'fGyWW':function(_0x2b47c3){return _0x2b47c3();},'hQcnn':function(_0x10791f,_0x50d102){return _0x10791f!==_0x50d102;},'PKrzj':_0x413ede(0xe84),'jFJKQ':function(_0x4127fe,_0x25bb97){return _0x4127fe>_0x25bb97;},'bPZyG':function(_0x5f12b2,_0x902ae6,_0x113c14){return _0x5f12b2(_0x902ae6,_0x113c14);},'mmPRp':function(_0x2734a1,_0x357f49){return _0x2734a1+_0x357f49;},'cbWke':function(_0x226561,_0x16313e){return _0x226561+_0x16313e;},'pplmi':function(_0x497b67,_0x41bcff){return _0x497b67(_0x41bcff);},'MCMog':_0x997bad(0x2e9)+_0x413ede(0xf3e)+'d','BeFlt':_0x2026c0(0xd2f)+'ss','wRYCO':_0x4b1709(0x5a4),'YEMMC':_0x308970(0xa71),'Iyagf':function(_0x18a0a1,_0x33ed12){return _0x18a0a1===_0x33ed12;},'HEXzG':_0x2026c0(0x61f),'wjNkJ':_0x2026c0(0x4de),'aUFBG':_0x997bad(0x262),'ZhkdI':_0x997bad(0x967),'zxFjn':_0x4b1709(0x8a2),'DIElo':_0x2026c0(0x71d),'qJcXC':_0x4b1709(0x482)+_0x997bad(0x33b),'tsqSy':function(_0x22cc8a,_0x5cf40a){return _0x22cc8a(_0x5cf40a);},'qGOdF':function(_0x735a0,_0x326c6a){return _0x735a0(_0x326c6a);},'cusZC':function(_0x2e1f96,_0xb8803c){return _0x2e1f96-_0xb8803c;},'zDZjf':_0x4b1709(0x6c9)+_0x4b1709(0xe4d),'wlddy':function(_0xd88b63,_0x252674){return _0xd88b63===_0x252674;},'DaBUh':_0x413ede(0x8c8),'jKULp':_0x4b1709(0xa22),'wophg':_0x413ede(0x58f),'LWgib':_0x997bad(0x53c),'QqRcV':function(_0x2dfc16,_0x56f6ba){return _0x2dfc16+_0x56f6ba;},'FTcoT':function(_0xdae825,_0x523dc3){return _0xdae825+_0x523dc3;},'VyPqP':_0x2026c0(0xd69)+_0x997bad(0xd4e)+_0x413ede(0x285)+_0x997bad(0x1e4),'tEefL':_0x4b1709(0xcb3)+_0x413ede(0xcd9)+_0x4b1709(0xa0b)+_0x2026c0(0x5b0)+_0x413ede(0xd03)+_0x4b1709(0xae9)+'\x20)','vynnS':function(_0x29fc8){return _0x29fc8();},'CXOip':_0x4b1709(0x447),'YqlfT':_0x997bad(0x1ef),'zwDPN':_0x997bad(0x7b2),'QjcGy':_0x308970(0xdb1),'iAcTM':_0x2026c0(0xae8),'iPMvE':_0x2026c0(0x79c),'hBYjC':_0x2026c0(0x6d6)+_0x2026c0(0xd60),'iLOcE':_0x4b1709(0x988),'DXTHa':_0x2026c0(0xe2e),'Owixg':function(_0x2da7f7,_0x3cb040){return _0x2da7f7<_0x3cb040;},'kfIff':_0x308970(0x694),'CpLfW':function(_0xa8c7a0,_0x21d075,_0x2e3c06){return _0xa8c7a0(_0x21d075,_0x2e3c06);},'tCTaI':function(_0x266e2f){return _0x266e2f();},'dZtTe':function(_0x28519a,_0x266265,_0x57b9df){return _0x28519a(_0x266265,_0x57b9df);},'XmPLW':_0x413ede(0x2b6)+_0x997bad(0xd31)+_0x4b1709(0xb7e)+_0x4b1709(0xde6)+_0x308970(0x79f)+'-','tVxOb':_0x413ede(0x2b6)+_0x4b1709(0x8b6)+_0x308970(0xf23)+_0x308970(0xc34)+_0x997bad(0x3c2),'UrsMk':function(_0x7cc4f8,_0x97011d){return _0x7cc4f8-_0x97011d;},'LSGJc':function(_0x186b96,_0x16fa76){return _0x186b96(_0x16fa76);},'vMWwt':function(_0x4723f4,_0x5dac3e){return _0x4723f4(_0x5dac3e);},'eOzbc':_0x413ede(0x870),'uzLgZ':_0x4b1709(0xb65)+'pt'},_0x5b7f7d=(function(){const _0x2c1c36=_0x2026c0,_0x28c373=_0x4b1709,_0x19e959=_0x413ede,_0x7fd927=_0x2026c0,_0x627602=_0x308970,_0x2b215c={'FLaLz':function(_0x17000c,_0x3fe1f2){const _0x186c04=_0x376c;return _0x55b759[_0x186c04(0x496)](_0x17000c,_0x3fe1f2);},'gDIKU':_0x55b759[_0x2c1c36(0x2f9)],'KxksQ':_0x55b759[_0x28c373(0x672)],'jGErz':function(_0x7bf817,_0x1947f2){const _0x46a5e7=_0x28c373;return _0x55b759[_0x46a5e7(0x9ca)](_0x7bf817,_0x1947f2);},'KTWQt':_0x55b759[_0x28c373(0x427)],'dzZpl':_0x55b759[_0x2c1c36(0x35c)],'ESOAD':_0x55b759[_0x2c1c36(0xede)],'sjcdx':_0x55b759[_0x28c373(0x843)],'cFQlL':_0x55b759[_0x7fd927(0x69c)],'PsJdI':_0x55b759[_0x7fd927(0xc38)],'ANpIv':_0x55b759[_0x28c373(0x4d2)],'ChcyF':_0x55b759[_0x2c1c36(0xa3f)]};if(_0x55b759[_0x19e959(0x469)](_0x55b759[_0x19e959(0xa38)],_0x55b759[_0x7fd927(0xa38)]))_0x7cb3f[_0x54e62c]++;else{let _0x5db712=!![];return function(_0x3d5a38,_0x5e02f5){const _0x4b990b=_0x19e959,_0x288783=_0x28c373,_0x4f0c80=_0x19e959,_0x66888d=_0x19e959,_0xe12b29=_0x7fd927,_0x5987d1={};_0x5987d1[_0x4b990b(0x871)]=_0x2b215c[_0x288783(0x425)],_0x5987d1[_0x4b990b(0x44c)]=_0x2b215c[_0x4b990b(0x55f)],_0x5987d1[_0xe12b29(0xb51)]=_0x2b215c[_0x288783(0x459)],_0x5987d1[_0x66888d(0xa33)]=_0x2b215c[_0x4f0c80(0xa10)];const _0x1c936f=_0x5987d1;if(_0x2b215c[_0x66888d(0x992)](_0x2b215c[_0x4f0c80(0x80a)],_0x2b215c[_0x4b990b(0x544)])){const _0x5d825c=_0x1c936f[_0x4b990b(0x871)][_0x4b990b(0xa49)]('|');let _0x1ca675=0xdbd*0x1+0x15ed*0x1+-0x1*0x23aa;while(!![]){switch(_0x5d825c[_0x1ca675++]){case'0':_0x4eb28f=-0x22b1+-0x27*0x6c+-0x3325*-0x1;continue;case'1':const _0x5b8e1a={};_0x5b8e1a[_0xe12b29(0xc59)]=_0x1c936f[_0x4f0c80(0x44c)],_0x5b8e1a[_0x288783(0x91a)+'nt']=_0x48fb61,_0x41daa5[_0xe12b29(0xbe6)](_0x5b8e1a);continue;case'2':const _0x235210={};_0x235210[_0x4f0c80(0xc59)]=_0x1c936f[_0x4f0c80(0xb51)],_0x235210[_0x288783(0x91a)+'nt']=_0x553cfb,_0x21b523[_0x4b990b(0xbe6)](_0x235210);continue;case'3':_0x3e1b9e[_0x4f0c80(0x5de)+_0x4f0c80(0xf3d)+_0x288783(0xa93)](_0x1c936f[_0xe12b29(0xa33)])[_0x288783(0x619)]='';continue;case'4':return;}break;}}else{const _0x5cdfc2=_0x5db712?function(){const _0x5a1334=_0x66888d,_0x162fa6=_0xe12b29,_0x5a51c2=_0x288783,_0x165da2=_0x4f0c80,_0xfbea7f=_0x4f0c80;if(_0x2b215c[_0x5a1334(0x514)](_0x2b215c[_0x5a1334(0xa07)],_0x2b215c[_0x162fa6(0x885)])){if(_0x5e02f5){if(_0x2b215c[_0x162fa6(0x992)](_0x2b215c[_0x5a51c2(0x4c2)],_0x2b215c[_0x165da2(0xc75)]))_0x3a3170+=_0x1bf086[-0x10a6*0x1+-0x7*0x3e1+0x2bcd][_0x5a51c2(0x83f)][_0x5a1334(0x91a)+'nt'];else{const _0x1be7e0=_0x5e02f5[_0x5a1334(0xd6d)](_0x3d5a38,arguments);return _0x5e02f5=null,_0x1be7e0;}}}else{const _0x301636=_0x1871c7?function(){const _0xae9f52=_0x5a51c2;if(_0x2ecb76){const _0x498fbe=_0x5389b0[_0xae9f52(0xd6d)](_0x1480ed,arguments);return _0x3fefae=null,_0x498fbe;}}:function(){};return _0x5d4f15=![],_0x301636;}}:function(){};return _0x5db712=![],_0x5cdfc2;}};}}()),_0x5334c5=_0x55b759[_0x4b1709(0xe25)](_0x5b7f7d,this,function(){const _0xef38f1=_0x2026c0,_0x1325d7=_0x413ede,_0x5d5549=_0x997bad,_0x186098=_0x4b1709,_0x1827ba=_0x997bad;if(_0x55b759[_0xef38f1(0x496)](_0x55b759[_0x1325d7(0xad0)],_0x55b759[_0x5d5549(0xad0)]))_0x55b759[_0x186098(0x756)](_0x387620,_0x4f522e,_0x55b759[_0x186098(0x595)](_0x4ac09f,-0x2*0xacc+0x103*0x9+0x27*0x52));else return _0x5334c5[_0x186098(0x590)+_0x5d5549(0x300)]()[_0x1325d7(0x3bb)+'h'](_0x55b759[_0x5d5549(0x783)])[_0x1827ba(0x590)+_0x1827ba(0x300)]()[_0x5d5549(0xf53)+_0x186098(0xcf3)+'r'](_0x5334c5)[_0x186098(0x3bb)+'h'](_0x55b759[_0x1325d7(0x783)]);});_0x55b759[_0x4b1709(0x20d)](_0x5334c5);const _0x4718e2=(function(){const _0x552081=_0x997bad,_0x2d281c=_0x997bad,_0x1f264a=_0x2026c0,_0x56ab91=_0x413ede,_0x37fe5d=_0x2026c0,_0x23949a={'CfNxi':function(_0x28af3b,_0x546bfb){const _0xacb733=_0x376c;return _0x55b759[_0xacb733(0xa4c)](_0x28af3b,_0x546bfb);},'cNAGU':_0x55b759[_0x552081(0x7ab)],'IISGd':function(_0x1a8b0a,_0x45dabc){const _0x2cd246=_0x552081;return _0x55b759[_0x2cd246(0x7c3)](_0x1a8b0a,_0x45dabc);},'aUuoa':function(_0x3b0239,_0x497168){const _0x4712b9=_0x552081;return _0x55b759[_0x4712b9(0xa4c)](_0x3b0239,_0x497168);},'VJcVC':function(_0x3ce228,_0x1b26ae){const _0x351825=_0x552081;return _0x55b759[_0x351825(0x441)](_0x3ce228,_0x1b26ae);},'mCjYO':function(_0x513124,_0x29fc25){const _0x38a3b2=_0x552081;return _0x55b759[_0x38a3b2(0x90a)](_0x513124,_0x29fc25);},'YBUIO':function(_0x2372be,_0x409c1a){const _0x4a0de6=_0x552081;return _0x55b759[_0x4a0de6(0xf02)](_0x2372be,_0x409c1a);},'vYRTC':function(_0x270b2a,_0x582943){const _0x30e5b5=_0x552081;return _0x55b759[_0x30e5b5(0x54f)](_0x270b2a,_0x582943);},'yEFqK':function(_0x29e502,_0x186d16){const _0x2bbaa0=_0x552081;return _0x55b759[_0x2bbaa0(0xb85)](_0x29e502,_0x186d16);},'BaXdz':function(_0x5854bf,_0x1cbad7){const _0x17e758=_0x552081;return _0x55b759[_0x17e758(0x201)](_0x5854bf,_0x1cbad7);},'ryNQm':_0x55b759[_0x552081(0x40f)],'DxpBk':_0x55b759[_0x2d281c(0x535)],'bjrkM':_0x55b759[_0x552081(0x71e)],'IbfjH':function(_0x2b41cb,_0x120deb){const _0x2835fc=_0x56ab91;return _0x55b759[_0x2835fc(0x496)](_0x2b41cb,_0x120deb);},'rJUeI':_0x55b759[_0x2d281c(0xd1f)],'ZRsbN':_0x55b759[_0x1f264a(0xce5)]};if(_0x55b759[_0x1f264a(0x469)](_0x55b759[_0x56ab91(0x42d)],_0x55b759[_0x552081(0x282)])){let _0x37210f=!![];return function(_0x380de0,_0x9d3c58){const _0x488930=_0x56ab91,_0x36eb78=_0x1f264a,_0x5a93da=_0x552081,_0x208242=_0x552081,_0x31de3a=_0x552081,_0x3cce55={'NXPkf':function(_0x1921e4,_0x22f321){const _0x258cfc=_0x376c;return _0x23949a[_0x258cfc(0x3a1)](_0x1921e4,_0x22f321);},'lMXtq':function(_0x1b8cfc,_0xfdcadc){const _0x5c3b9b=_0x376c;return _0x23949a[_0x5c3b9b(0xb80)](_0x1b8cfc,_0xfdcadc);},'COuNC':function(_0x39fdd2,_0x5bddb7){const _0x513724=_0x376c;return _0x23949a[_0x513724(0x620)](_0x39fdd2,_0x5bddb7);},'xeKYh':function(_0x3195a4,_0x51be46){const _0x568ed9=_0x376c;return _0x23949a[_0x568ed9(0x2b0)](_0x3195a4,_0x51be46);},'YjDrf':function(_0x33e092,_0x384c0e){const _0x2ad4c1=_0x376c;return _0x23949a[_0x2ad4c1(0xc29)](_0x33e092,_0x384c0e);},'bcjhZ':function(_0x38f3b9,_0x4edf51){const _0xe96a64=_0x376c;return _0x23949a[_0xe96a64(0x570)](_0x38f3b9,_0x4edf51);},'JgkmN':function(_0x58f43e,_0x1bf1f6){const _0x1f75de=_0x376c;return _0x23949a[_0x1f75de(0x833)](_0x58f43e,_0x1bf1f6);},'Qutyj':function(_0xf0a3d6,_0x569c38){const _0x2d0c0a=_0x376c;return _0x23949a[_0x2d0c0a(0x807)](_0xf0a3d6,_0x569c38);},'vryuK':function(_0x411b77,_0x215fab){const _0x468f44=_0x376c;return _0x23949a[_0x468f44(0x306)](_0x411b77,_0x215fab);},'VJmBN':_0x23949a[_0x488930(0x649)],'pEKAg':_0x23949a[_0x488930(0x9d9)],'cwaon':_0x23949a[_0x5a93da(0xa8d)]};if(_0x23949a[_0x208242(0x814)](_0x23949a[_0x36eb78(0xd46)],_0x23949a[_0x36eb78(0xd93)])){const _0x3b39e1=_0x37210f?function(){const _0x56111e=_0x208242,_0x167e9e=_0x208242,_0xa10765=_0x31de3a,_0xdb61f=_0x488930,_0x1447f2=_0x5a93da,_0x2cd154={'uzWVw':function(_0x5b36db,_0x2c7394){const _0x4f0b76=_0x376c;return _0x3cce55[_0x4f0b76(0xbd3)](_0x5b36db,_0x2c7394);}};if(_0x3cce55[_0x56111e(0x743)](_0x3cce55[_0x167e9e(0x678)],_0x3cce55[_0x56111e(0x458)])){if(!_0xea3db0)return;try{var _0x3312c9=new _0x54b5d6(_0x4e7d5e[_0xdb61f(0x8b2)+'h']),_0x19e9c1=new _0x402ffa(_0x3312c9);for(var _0x1f330e=0x1bfb+0x11*0x237+-0x41a2,_0xafa573=_0x3f7a1f[_0x1447f2(0x8b2)+'h'];_0x2cd154[_0xa10765(0xd49)](_0x1f330e,_0xafa573);_0x1f330e++){_0x19e9c1[_0x1f330e]=_0x2ccc0a[_0x167e9e(0xf2c)+_0x1447f2(0xa3d)](_0x1f330e);}return _0x3312c9;}catch(_0x52ae66){}}else{if(_0x9d3c58){if(_0x3cce55[_0x56111e(0x743)](_0x3cce55[_0x167e9e(0x6d2)],_0x3cce55[_0x56111e(0x6d2)])){const _0x377784=_0x9d3c58[_0x1447f2(0xd6d)](_0x380de0,arguments);return _0x9d3c58=null,_0x377784;}else{if(_0x3cce55[_0x56111e(0x222)](_0x144268[_0xa10765(0x21b)+'Of'](_0x19f768[_0x10ce72][-0x1*0x1181+-0xf53*0x1+0x20d5]),-(-0x2c*-0x9+0x14c8+0x7f*-0x2d)))_0x49bd24[_0xa10765(0x6bb)+'ft'](_0x3cce55[_0x1447f2(0xa34)](_0x3cce55[_0xa10765(0xa34)](_0x3cce55[_0xa10765(0xa34)](_0x3cce55[_0x56111e(0xa34)](_0x3cce55[_0x167e9e(0x4b2)](_0x3cce55[_0x1447f2(0xe03)](_0x3cce55[_0xdb61f(0x706)](_0x3cce55[_0x167e9e(0xa34)]('',_0x3cce55[_0xdb61f(0x920)](_0x2640ca,_0xda0166[_0xb8cdcb][-0x550+0x266*-0x5+0x114e])),''),_0x36f525[_0x3ba450][-0x30b+-0xbdb*0x2+0x1*0x1ac3]),''),_0x3cce55[_0xdb61f(0x4c4)](_0x20eec6,_0x11fa96[_0x2e53bf][0x2195*-0x1+-0x9d*-0xd+0x199f])),'行:'),_0x3ac332[_0x4b14c8][0x1ae6*-0x1+-0xd*-0x8f+-0x4*-0x4e9]),'\x0a'));}}}}:function(){};return _0x37210f=![],_0x3b39e1;}else try{_0x306786=_0x4c2c87[_0x36eb78(0xd22)](_0x23949a[_0x5a93da(0xb80)](_0x279b3b,_0x518c5a))[_0x23949a[_0x31de3a(0x2e4)]],_0x649b92='';}catch(_0x1ce681){_0xc00b72=_0xae22a7[_0x36eb78(0xd22)](_0x71a354)[_0x23949a[_0x488930(0x2e4)]],_0x35fff7='';}};}else _0x2e83b5=0x6f6+-0xdc9+0x6d3,_0x22c4b1[_0x552081(0x79c)](_0x55b759[_0x37fe5d(0xb41)],_0x18e03d);}());(function(){const _0x143988=_0x997bad,_0x43da4a=_0x413ede,_0x368867=_0x308970,_0x4dd779=_0x2026c0,_0x1083ca=_0x4b1709,_0x45f7d2={'vxZmD':_0x55b759[_0x143988(0x484)],'nhbOj':_0x55b759[_0x43da4a(0xd20)],'gKjuO':function(_0xfab387,_0x314591){const _0x5284ef=_0x43da4a;return _0x55b759[_0x5284ef(0xb0c)](_0xfab387,_0x314591);},'hapzS':function(_0x374d26,_0x4845bd){const _0xf06965=_0x143988;return _0x55b759[_0xf06965(0xf02)](_0x374d26,_0x4845bd);},'NzORT':_0x55b759[_0x43da4a(0x788)],'UjofQ':_0x55b759[_0x43da4a(0x6b1)],'ebQvd':_0x55b759[_0x1083ca(0xaf3)],'eyeiF':_0x55b759[_0x1083ca(0x9d7)],'PajXU':function(_0x10d85f,_0x1a82a7){const _0x1c1f96=_0x43da4a;return _0x55b759[_0x1c1f96(0x496)](_0x10d85f,_0x1a82a7);},'SbkqL':_0x55b759[_0x43da4a(0xc62)],'FbOLu':_0x55b759[_0x143988(0x742)],'HGISU':_0x55b759[_0x43da4a(0x3bf)],'SMaYl':_0x55b759[_0x43da4a(0x62b)],'JdAQe':function(_0x25fdb0,_0x3c5bd1){const _0x565bea=_0x368867;return _0x55b759[_0x565bea(0xf02)](_0x25fdb0,_0x3c5bd1);},'JWuwJ':_0x55b759[_0x143988(0x2f8)],'iWsUo':function(_0x53bea8,_0x49a419){const _0x4ab653=_0x1083ca;return _0x55b759[_0x4ab653(0x7ed)](_0x53bea8,_0x49a419);},'awwzS':_0x55b759[_0x4dd779(0xb4a)],'WSEOI':function(_0xd8a162,_0x27cf74){const _0x22b1dc=_0x368867;return _0x55b759[_0x22b1dc(0xa20)](_0xd8a162,_0x27cf74);},'fbRvC':_0x55b759[_0x4dd779(0x775)],'LZHxW':function(_0xe7068,_0x313a94){const _0x4906ed=_0x368867;return _0x55b759[_0x4906ed(0xeb3)](_0xe7068,_0x313a94);},'HWnfr':_0x55b759[_0x4dd779(0x6a9)],'qeHUa':_0x55b759[_0x43da4a(0x675)],'NfuXx':function(_0x168346,_0x26c261){const _0x36ac63=_0x43da4a;return _0x55b759[_0x36ac63(0x54f)](_0x168346,_0x26c261);},'dedHJ':_0x55b759[_0x4dd779(0x397)],'QdTdH':function(_0x20637b){const _0xf3c4f2=_0x368867;return _0x55b759[_0xf3c4f2(0x414)](_0x20637b);}};_0x55b759[_0x4dd779(0xf29)](_0x55b759[_0x1083ca(0x2cd)],_0x55b759[_0x1083ca(0x2cd)])?_0x3e6127[_0x4dd779(0x7b2)](_0x4aa52f):_0x55b759[_0x1083ca(0x756)](_0x4718e2,this,function(){const _0x14408a=_0x43da4a,_0x28c043=_0x43da4a,_0x5f2880=_0x1083ca,_0x2730b9=_0x4dd779,_0x53c359=_0x368867,_0x1abf8c={'bgGud':_0x45f7d2[_0x14408a(0x25c)],'ccEeg':_0x45f7d2[_0x14408a(0x983)],'vmGeX':function(_0xf2437b,_0x5e3f22){const _0x213d31=_0x28c043;return _0x45f7d2[_0x213d31(0xf76)](_0xf2437b,_0x5e3f22);},'dWMlo':function(_0x5bcabc,_0x3b934f){const _0x260d02=_0x14408a;return _0x45f7d2[_0x260d02(0xd7c)](_0x5bcabc,_0x3b934f);},'oIJyh':function(_0xa7675,_0x402d26){const _0x5761b0=_0x28c043;return _0x45f7d2[_0x5761b0(0xd7c)](_0xa7675,_0x402d26);},'vPZIB':_0x45f7d2[_0x14408a(0x34f)],'gjAGj':_0x45f7d2[_0x5f2880(0x43c)],'zBmSj':_0x45f7d2[_0x14408a(0xe89)],'RFjCm':_0x45f7d2[_0x14408a(0x722)]};if(_0x45f7d2[_0x5f2880(0xad4)](_0x45f7d2[_0x14408a(0x340)],_0x45f7d2[_0x53c359(0xd32)])){const _0x12379b=new RegExp(_0x45f7d2[_0x2730b9(0x84b)]),_0x134378=new RegExp(_0x45f7d2[_0x28c043(0xaef)],'i'),_0x383451=_0x45f7d2[_0x5f2880(0x317)](_0x2cc9e4,_0x45f7d2[_0x28c043(0xf07)]);if(!_0x12379b[_0x28c043(0xe40)](_0x45f7d2[_0x28c043(0xa74)](_0x383451,_0x45f7d2[_0x2730b9(0xc13)]))||!_0x134378[_0x5f2880(0xe40)](_0x45f7d2[_0x2730b9(0xc91)](_0x383451,_0x45f7d2[_0x2730b9(0xf96)])))_0x45f7d2[_0x14408a(0x856)](_0x45f7d2[_0x53c359(0x65c)],_0x45f7d2[_0x28c043(0x588)])?(_0x1982ba[_0x35fd03]=0x200b+-0x1e93+-0x178,_0x463e8e[_0x123e9c]=0x705+0x12cd+0x19d2*-0x1):_0x45f7d2[_0x53c359(0x4ec)](_0x383451,'0');else{if(_0x45f7d2[_0x28c043(0xad4)](_0x45f7d2[_0x5f2880(0xfa5)],_0x45f7d2[_0x14408a(0xfa5)])){const _0x483219=_0x1abf8c[_0x5f2880(0x31b)],_0x360e31=_0x1abf8c[_0x5f2880(0xb7c)],_0x4983d8=_0x35c2a1[_0x5f2880(0xb43)+_0x2730b9(0x93f)](_0x483219[_0x2730b9(0x8b2)+'h'],_0x1abf8c[_0x14408a(0x384)](_0x236836[_0x53c359(0x8b2)+'h'],_0x360e31[_0x2730b9(0x8b2)+'h'])),_0x3b77e2=_0x1abf8c[_0x14408a(0xe62)](_0x57916a,_0x4983d8),_0x334d65=_0x1abf8c[_0x14408a(0xeeb)](_0x201ca1,_0x3b77e2);return _0x25ad39[_0x28c043(0x4a3)+'e'][_0x5f2880(0x857)+_0x14408a(0xa59)](_0x1abf8c[_0x5f2880(0x295)],_0x334d65,{'name':_0x1abf8c[_0x5f2880(0xd83)],'hash':_0x1abf8c[_0x2730b9(0x485)]},!![],[_0x1abf8c[_0x28c043(0xca7)]]);}else _0x45f7d2[_0x14408a(0x6ee)](_0x2cc9e4);}}else _0x1d2552+='';})();}());const _0x2e9469=(function(){const _0x49dde4=_0x4b1709,_0xe126ac=_0x413ede,_0x529236=_0x4b1709,_0x195e30=_0x308970,_0x24781a=_0x308970,_0x1cf16b={'jEcMX':function(_0x55fd0d,_0x1fb678){const _0x136977=_0x376c;return _0x55b759[_0x136977(0xe8c)](_0x55fd0d,_0x1fb678);},'rNGXo':function(_0x3fbaa1,_0x4ed67d,_0x430bb6){const _0x1e7d3b=_0x376c;return _0x55b759[_0x1e7d3b(0x9e4)](_0x3fbaa1,_0x4ed67d,_0x430bb6);},'HkUKo':function(_0xdd0faf,_0x1e10bb){const _0x213a10=_0x376c;return _0x55b759[_0x213a10(0x2ff)](_0xdd0faf,_0x1e10bb);},'UbMiC':function(_0x2c18c4,_0x1170a0){const _0x4f06d6=_0x376c;return _0x55b759[_0x4f06d6(0xf5d)](_0x2c18c4,_0x1170a0);},'vygkH':_0x55b759[_0x49dde4(0x3bf)],'VcuYD':_0x55b759[_0x49dde4(0x62b)],'QRdGa':function(_0x37a148,_0x3fd6c){const _0x3716a1=_0xe126ac;return _0x55b759[_0x3716a1(0xacb)](_0x37a148,_0x3fd6c);},'DlNVK':_0x55b759[_0x49dde4(0x2f8)],'ZPCvX':_0x55b759[_0x195e30(0xb4a)],'CLHyP':_0x55b759[_0x24781a(0x775)],'pwQJk':function(_0x4dd242){const _0x2a889c=_0x195e30;return _0x55b759[_0x2a889c(0x414)](_0x4dd242);},'TvolM':_0x55b759[_0x529236(0xa04)],'dAFsk':_0x55b759[_0x529236(0xdc6)],'IXkWz':function(_0x3a8add,_0x401881){const _0x4e35d4=_0x529236;return _0x55b759[_0x4e35d4(0x9ca)](_0x3a8add,_0x401881);},'SdQQT':_0x55b759[_0x49dde4(0x62e)],'DvOYN':_0x55b759[_0x529236(0xe10)],'kbhac':function(_0x37fd28,_0x5965e9){const _0x37c866=_0x24781a;return _0x55b759[_0x37c866(0xa0a)](_0x37fd28,_0x5965e9);},'rVmUh':_0x55b759[_0xe126ac(0xa89)],'gTXuU':_0x55b759[_0x529236(0xaea)],'Aqsrs':function(_0x9d9faf,_0x4355de){const _0x1504a3=_0x195e30;return _0x55b759[_0x1504a3(0x496)](_0x9d9faf,_0x4355de);},'BGPBH':_0x55b759[_0x529236(0xc12)],'hqvia':_0x55b759[_0x529236(0x3f5)]};if(_0x55b759[_0xe126ac(0xf29)](_0x55b759[_0x529236(0x9bd)],_0x55b759[_0x529236(0xa73)])){let _0x2b37c0=!![];return function(_0x69fadf,_0x2f9829){const _0x21f39f=_0x529236,_0x468916=_0xe126ac,_0x298170=_0x529236,_0x3e0003=_0x195e30,_0x12c96e=_0x49dde4,_0x535f11={'ndNab':_0x1cf16b[_0x21f39f(0x227)],'gCvQl':_0x1cf16b[_0x21f39f(0x28f)],'UHYWw':function(_0x5ec953,_0x3c763c){const _0x125090=_0x21f39f;return _0x1cf16b[_0x125090(0x6c2)](_0x5ec953,_0x3c763c);},'PodLJ':_0x1cf16b[_0x298170(0x7d4)],'ocKfI':function(_0x5c2556,_0x56942b){const _0xe837f4=_0x298170;return _0x1cf16b[_0xe837f4(0xc2e)](_0x5c2556,_0x56942b);},'uMbJK':_0x1cf16b[_0x468916(0x2cc)],'VbAHa':_0x1cf16b[_0x3e0003(0xe3c)],'wrmPs':function(_0x1158d8,_0x30c870){const _0x588d54=_0x298170;return _0x1cf16b[_0x588d54(0x6c2)](_0x1158d8,_0x30c870);},'kwDOs':function(_0x2c1733){const _0x39ff4d=_0x3e0003;return _0x1cf16b[_0x39ff4d(0xe66)](_0x2c1733);},'bBShn':_0x1cf16b[_0x21f39f(0x660)],'XlUjP':_0x1cf16b[_0x298170(0x8dc)],'uplGu':function(_0x162ad1,_0x3e4121){const _0x55f152=_0x12c96e;return _0x1cf16b[_0x55f152(0x8f7)](_0x162ad1,_0x3e4121);},'SQqcf':_0x1cf16b[_0x298170(0x765)],'EXPjP':_0x1cf16b[_0x468916(0x51e)],'zzWLb':function(_0x49130d,_0x3d2589){const _0xf3957b=_0x298170;return _0x1cf16b[_0xf3957b(0xac6)](_0x49130d,_0x3d2589);},'xqtzG':_0x1cf16b[_0x298170(0xafc)],'CtKkR':_0x1cf16b[_0x468916(0xcaa)]};if(_0x1cf16b[_0x21f39f(0x84e)](_0x1cf16b[_0x468916(0xe79)],_0x1cf16b[_0x21f39f(0x80e)])){const _0x5169f6=_0x2b37c0?function(){const _0x49d965=_0x21f39f,_0x5dd553=_0x298170,_0x1f1bdd=_0x12c96e,_0x2cd45c=_0x298170,_0x217407=_0x298170,_0x5ce535={'wLNWl':_0x535f11[_0x49d965(0xa97)],'bJvQI':_0x535f11[_0x49d965(0xbc1)],'gwPQr':function(_0x27a5a7,_0x52c3a2){const _0x31bd1f=_0x5dd553;return _0x535f11[_0x31bd1f(0x818)](_0x27a5a7,_0x52c3a2);},'vPNEV':_0x535f11[_0x1f1bdd(0xe16)],'nfwBx':function(_0x48da8b,_0x243289){const _0x2338a3=_0x49d965;return _0x535f11[_0x2338a3(0xaac)](_0x48da8b,_0x243289);},'jHora':_0x535f11[_0x1f1bdd(0x8ac)],'CFMKF':_0x535f11[_0x5dd553(0x954)],'LHIFe':function(_0x25773d,_0x4d9cbe){const _0x7edb7c=_0x217407;return _0x535f11[_0x7edb7c(0x8d9)](_0x25773d,_0x4d9cbe);},'oPuTA':function(_0x4c57e7){const _0x3c97fa=_0x5dd553;return _0x535f11[_0x3c97fa(0x40c)](_0x4c57e7);},'yxOzk':_0x535f11[_0x217407(0x3f0)],'wfmzg':function(_0x48c135,_0x17d17e){const _0x252494=_0x2cd45c;return _0x535f11[_0x252494(0x818)](_0x48c135,_0x17d17e);},'uvscE':_0x535f11[_0x217407(0x1da)]};if(_0x535f11[_0x217407(0x26c)](_0x535f11[_0x2cd45c(0x951)],_0x535f11[_0x2cd45c(0x829)])){const _0x23c3c3=new _0x3f75ef(tfqPEO[_0x2cd45c(0x780)]),_0x2faa11=new _0x1a2f3d(tfqPEO[_0x217407(0xda2)],'i'),_0x477dde=tfqPEO[_0x217407(0x438)](_0x192f16,tfqPEO[_0x49d965(0x784)]);!_0x23c3c3[_0x2cd45c(0xe40)](tfqPEO[_0x2cd45c(0x7a9)](_0x477dde,tfqPEO[_0x1f1bdd(0xe8a)]))||!_0x2faa11[_0x217407(0xe40)](tfqPEO[_0x49d965(0x7a9)](_0x477dde,tfqPEO[_0x2cd45c(0x6d4)]))?tfqPEO[_0x217407(0xd80)](_0x477dde,'0'):tfqPEO[_0x49d965(0x48c)](_0x9094d8);}else{if(_0x2f9829){if(_0x535f11[_0x217407(0xbde)](_0x535f11[_0x217407(0x543)],_0x535f11[_0x217407(0x584)]))_0x5f0007[_0x2cd45c(0x7b2)](_0x5ce535[_0x217407(0xefc)]),_0x5ce535[_0x49d965(0x1f2)](_0x2d3e2f,_0x5ce535[_0x217407(0xcdc)]);else{const _0x569ea5=_0x2f9829[_0x2cd45c(0xd6d)](_0x69fadf,arguments);return _0x2f9829=null,_0x569ea5;}}}}:function(){};return _0x2b37c0=![],_0x5169f6;}else return _0x1cf16b[_0x468916(0xe36)](_0x1cf16b[_0x12c96e(0x4ef)](_0x4cae6f,_0x1cf16b[_0x12c96e(0xc2e)](_0x1cf16b[_0x21f39f(0xc2e)](_0x1833f9,'\x20'),_0x13aa14),_0x5619b5),_0x1cf16b[_0x12c96e(0x4ef)](_0x12c6e5,_0x1cf16b[_0x468916(0xc2e)](_0x1cf16b[_0x298170(0x9b4)](_0x417bf,'\x20'),_0x1651fb),_0x57775e))?-(0x1497+0x6d1+-0x131*0x17):0x25f2+0x1d4b+-0x433c;};}else _0x45d6f4=_0x4b509a[_0xe126ac(0xd22)](_0xef1eb)[_0x55b759[_0xe126ac(0x7ab)]],_0x3782be='';}()),_0x4de0ec=_0x55b759[_0x2026c0(0xc50)](_0x2e9469,this,function(){const _0x407ee2=_0x2026c0,_0x33d7aa=_0x2026c0,_0x13a6e4=_0x4b1709,_0x40addc=_0x997bad,_0x187772=_0x4b1709,_0x3d9741={};_0x3d9741[_0x407ee2(0xf08)]=_0x55b759[_0x33d7aa(0xae7)];const _0xcf5551=_0x3d9741;if(_0x55b759[_0x33d7aa(0xa4f)](_0x55b759[_0x33d7aa(0xa36)],_0x55b759[_0x13a6e4(0x2b1)])){const _0x204590=_0x55b759[_0x13a6e4(0xd50)][_0x33d7aa(0xa49)]('|');let _0x4a54eb=-0xcec+-0x748+0x1434*0x1;while(!![]){switch(_0x204590[_0x4a54eb++]){case'0':return;case'1':_0xd33284=0x169*0xa+0xe64+-0x1c7e;continue;case'2':_0x2cb4d1[_0x407ee2(0x5de)+_0x40addc(0xf3d)+_0x407ee2(0xa93)](_0x55b759[_0x187772(0xc38)])[_0x13a6e4(0x619)]='';continue;case'3':const _0x18d2c1={};_0x18d2c1[_0x33d7aa(0xc59)]=_0x55b759[_0x13a6e4(0x69c)],_0x18d2c1[_0x40addc(0x91a)+'nt']=_0xdc0ecb,_0x5102de[_0x33d7aa(0xbe6)](_0x18d2c1);continue;case'4':const _0x1bace4={};_0x1bace4[_0x407ee2(0xc59)]=_0x55b759[_0x407ee2(0x843)],_0x1bace4[_0x407ee2(0x91a)+'nt']=_0x4caa9c,_0x1c75d0[_0x33d7aa(0xbe6)](_0x1bace4);continue;}break;}}else{let _0x481e4f;try{if(_0x55b759[_0x407ee2(0xeb3)](_0x55b759[_0x40addc(0x80c)],_0x55b759[_0x40addc(0x906)]))_0x8d74fa[_0x33d7aa(0x5de)+_0x13a6e4(0xf3d)+_0x407ee2(0xa93)](_0xcf5551[_0x33d7aa(0xf08)])[_0x40addc(0xe91)+_0x187772(0xebc)]=_0x12a808[_0x187772(0x5de)+_0x40addc(0xf3d)+_0x187772(0xa93)](_0xcf5551[_0x40addc(0xf08)])[_0x407ee2(0xe91)+_0x33d7aa(0x4a2)+'ht'];else{const _0x4274ac=_0x55b759[_0x13a6e4(0x467)](Function,_0x55b759[_0x407ee2(0x489)](_0x55b759[_0x13a6e4(0xbfb)](_0x55b759[_0x187772(0x48b)],_0x55b759[_0x33d7aa(0x88a)]),');'));_0x481e4f=_0x55b759[_0x40addc(0x4ee)](_0x4274ac);}}catch(_0x50be69){_0x55b759[_0x33d7aa(0xa0a)](_0x55b759[_0x407ee2(0xc04)],_0x55b759[_0x40addc(0x654)])?(_0x4a9dbc=_0x55b759[_0x187772(0x467)](_0x2d70f0,_0x162d65[_0x13a6e4(0x91a)+_0x33d7aa(0x572)+_0x13a6e4(0x358)]),_0x7a550d=new _0x252da0(_0x506cf7[_0x187772(0x91a)+_0x407ee2(0x572)+_0x33d7aa(0x358)][_0x33d7aa(0x930)+_0x187772(0xb03)](!![]))[_0x407ee2(0xd22)](),_0x55b759[_0x40addc(0xc9d)](_0x560d26,_0x55b759[_0x187772(0xdc6)])):_0x481e4f=window;}const _0x8ef5fe=_0x481e4f[_0x187772(0x84d)+'le']=_0x481e4f[_0x407ee2(0x84d)+'le']||{},_0x363413=[_0x55b759[_0x13a6e4(0x7f7)],_0x55b759[_0x33d7aa(0x217)],_0x55b759[_0x407ee2(0xc0c)],_0x55b759[_0x187772(0x21a)],_0x55b759[_0x13a6e4(0x3dc)],_0x55b759[_0x407ee2(0x73a)],_0x55b759[_0x13a6e4(0x702)]];for(let _0xa0ec87=0x3*0xcf2+0x17c8+-0x3e9e;_0x55b759[_0x187772(0xa6e)](_0xa0ec87,_0x363413[_0x407ee2(0x8b2)+'h']);_0xa0ec87++){if(_0x55b759[_0x187772(0xeb3)](_0x55b759[_0x33d7aa(0xb30)],_0x55b759[_0x187772(0xb30)])){const _0x3666c4=_0x2e9469[_0x40addc(0xf53)+_0x13a6e4(0xcf3)+'r'][_0x187772(0xa14)+_0x187772(0xd82)][_0x40addc(0xbcc)](_0x2e9469),_0x423ec0=_0x363413[_0xa0ec87],_0x10b238=_0x8ef5fe[_0x423ec0]||_0x3666c4;_0x3666c4[_0x187772(0x96a)+_0x407ee2(0xcae)]=_0x2e9469[_0x13a6e4(0xbcc)](_0x2e9469),_0x3666c4[_0x13a6e4(0x590)+_0x33d7aa(0x300)]=_0x10b238[_0x33d7aa(0x590)+_0x33d7aa(0x300)][_0x407ee2(0xbcc)](_0x10b238),_0x8ef5fe[_0x423ec0]=_0x3666c4;}else{const _0x4e2197='['+_0x16ca22++ +_0x40addc(0xb01)+_0xb608a6[_0x33d7aa(0x619)+'s']()[_0x187772(0xcc0)]()[_0x187772(0x619)],_0x436335='[^'+_0x55b759[_0x187772(0x279)](_0x124016,-0x1*-0x2461+-0x1c*-0xa7+-0x36a4)+_0x33d7aa(0xb01)+_0x57dd59[_0x33d7aa(0x619)+'s']()[_0x40addc(0xcc0)]()[_0x407ee2(0x619)];_0x160225=_0x403123+'\x0a\x0a'+_0x436335,_0x1f1ba1[_0x33d7aa(0x7ea)+'e'](_0x27aa8f[_0x187772(0x619)+'s']()[_0x13a6e4(0xcc0)]()[_0x33d7aa(0x619)]);}}}});_0x55b759[_0x413ede(0x20d)](_0x4de0ec);const _0x4cb522=_0x55b759[_0x4b1709(0xcd6)],_0x789ac=_0x55b759[_0x997bad(0x74c)],_0x107d40=_0x3f1214[_0x413ede(0xb43)+_0x2026c0(0x93f)](_0x4cb522[_0x2026c0(0x8b2)+'h'],_0x55b759[_0x997bad(0x70c)](_0x3f1214[_0x308970(0x8b2)+'h'],_0x789ac[_0x4b1709(0x8b2)+'h'])),_0x24b3bc=_0x55b759[_0x2026c0(0xf0f)](atob,_0x107d40),_0x1ae26f=_0x55b759[_0x2026c0(0x9aa)](stringToArrayBuffer,_0x24b3bc);return crypto[_0x413ede(0x4a3)+'e'][_0x308970(0x857)+_0x2026c0(0xa59)](_0x55b759[_0x2026c0(0xac4)],_0x1ae26f,{'name':_0x55b759[_0x413ede(0x6b1)],'hash':_0x55b759[_0x997bad(0xaf3)]},!![],[_0x55b759[_0x308970(0xebb)]]);}function encryptDataWithPublicKey(_0x8b8daa,_0x394972){const _0x3336b2=_0x376c,_0x2a37f2=_0x376c,_0x442fb3=_0x376c,_0x13b9b7=_0x376c,_0x554908=_0x376c,_0x2c8439={'aVOkx':function(_0x1bb66f,_0x1a707e){return _0x1bb66f===_0x1a707e;},'XZony':_0x3336b2(0xa6b),'Jfwwd':_0x2a37f2(0xf7a),'xIcth':function(_0x1179e1,_0x3086f4){return _0x1179e1(_0x3086f4);},'zUfmP':_0x2a37f2(0x36c)+_0x13b9b7(0xbba)};try{if(_0x2c8439[_0x3336b2(0x6ce)](_0x2c8439[_0x2a37f2(0x78b)],_0x2c8439[_0x442fb3(0x27f)]))return _0x47d414[_0x13b9b7(0x361)](new _0x35950f(_0x1b9c6f));else{_0x8b8daa=_0x2c8439[_0x554908(0xb2c)](stringToArrayBuffer,_0x8b8daa);const _0x29dcbc={};return _0x29dcbc[_0x554908(0x7a7)]=_0x2c8439[_0x13b9b7(0x77a)],crypto[_0x554908(0x4a3)+'e'][_0x2a37f2(0xb65)+'pt'](_0x29dcbc,_0x394972,_0x8b8daa);}}catch(_0x5c0712){}}function decryptDataWithPrivateKey(_0x46541b,_0x1dfc6c){const _0x5d24d5=_0x376c,_0x16ec9d=_0x376c,_0x17b931=_0x376c,_0x344d3b=_0x376c,_0x54d827=_0x376c,_0xeb3be4={'YMqDT':function(_0xb31a49,_0x1b7107){return _0xb31a49(_0x1b7107);},'rZmDO':_0x5d24d5(0x36c)+_0x5d24d5(0xbba)};_0x46541b=_0xeb3be4[_0x17b931(0x726)](stringToArrayBuffer,_0x46541b);const _0x2d511e={};return _0x2d511e[_0x17b931(0x7a7)]=_0xeb3be4[_0x5d24d5(0xaec)],crypto[_0x344d3b(0x4a3)+'e'][_0x344d3b(0x5ad)+'pt'](_0x2d511e,_0x1dfc6c,_0x46541b);}const pubkey=_0x3af234(0x2b6)+_0x3af234(0xd31)+_0x405bf8(0xb7e)+_0x405bf8(0xde6)+_0x4241f5(0x79f)+_0x3af234(0x8fa)+_0x405bf8(0x9ff)+_0x1d760c(0xcda)+_0x405bf8(0x1e6)+_0x1d760c(0x3fd)+_0x3af234(0xa01)+_0x183a03(0xe81)+_0x4241f5(0xa69)+_0x4241f5(0x6a3)+_0x3af234(0x9b5)+_0x4241f5(0x816)+_0x3af234(0xb6c)+_0x1d760c(0x8a3)+_0x3af234(0xe1f)+_0x405bf8(0x792)+_0x4241f5(0x903)+_0x405bf8(0xec9)+_0x1d760c(0x527)+_0x405bf8(0x897)+_0x1d760c(0xad2)+_0x405bf8(0xbdd)+_0x405bf8(0xb6b)+_0x183a03(0xad5)+_0x1d760c(0xa8f)+_0x1d760c(0xcb2)+_0x4241f5(0x47e)+_0x4241f5(0x87b)+_0x183a03(0xe18)+_0x405bf8(0x6c8)+_0x1d760c(0x9b3)+_0x3af234(0x98d)+_0x405bf8(0x98c)+_0x183a03(0x745)+_0x1d760c(0x924)+_0x3af234(0x92b)+_0x1d760c(0xd6f)+_0x183a03(0x4f0)+_0x1d760c(0xb8b)+_0x3af234(0x304)+_0x3af234(0x36a)+_0x1d760c(0xcc2)+_0x3af234(0xbc9)+_0x1d760c(0x686)+_0x183a03(0x4d5)+_0x1d760c(0xbc7)+_0x405bf8(0x23d)+_0x3af234(0x921)+_0x1d760c(0x9e9)+_0x1d760c(0x86d)+_0x3af234(0x29b)+_0x183a03(0xf9b)+_0x1d760c(0x62f)+_0x4241f5(0x976)+_0x405bf8(0x922)+_0x1d760c(0x2b3)+_0x405bf8(0xb1e)+_0x4241f5(0xb96)+_0x405bf8(0x674)+_0x183a03(0xe0a)+_0x3af234(0x512)+_0x405bf8(0x479)+_0x4241f5(0x881)+_0x4241f5(0x4d4)+_0x1d760c(0x6fb)+_0x183a03(0x8ef)+_0x3af234(0xece)+_0x3af234(0x5d9)+_0x4241f5(0xfa1)+_0x3af234(0xde8)+_0x183a03(0xb5a)+_0x3af234(0xfa3)+_0x1d760c(0x252)+_0x1d760c(0xf6d)+_0x4241f5(0xdf3)+_0x4241f5(0x2e3)+_0x3af234(0x8c7)+_0x3af234(0x2ca)+_0x405bf8(0xc4a)+_0x4241f5(0x234)+_0x183a03(0xc69)+_0x405bf8(0x575)+_0x3af234(0xa23)+_0x4241f5(0xe98)+'--';pub=importPublicKey(pubkey);function b64EncodeUnicode(_0x4e8d01){const _0x580390=_0x405bf8,_0x49c2b7=_0x183a03,_0x2f940a={'DXkXD':function(_0x31f839,_0x42d2f8){return _0x31f839(_0x42d2f8);},'yXOTi':function(_0x1a4cdf,_0x1d284d){return _0x1a4cdf(_0x1d284d);}};return _0x2f940a[_0x580390(0x59c)](btoa,_0x2f940a[_0x49c2b7(0x53b)](encodeURIComponent,_0x4e8d01));}var word_last=[],lock_chat=0x129e+-0x2*-0x12f5+-0x3887;function wait(_0x4f6a29){return new Promise(_0x1db974=>setTimeout(_0x1db974,_0x4f6a29));}function fetchRetry(_0x20f416,_0x165eee,_0x1aef4f={}){const _0x3eee03=_0x183a03,_0x58eca2=_0x4241f5,_0x56d2d9=_0x183a03,_0x590d9e=_0x405bf8,_0x271bfb=_0x405bf8,_0x5f4b00={'yYOmw':_0x3eee03(0xf74),'WXwkf':function(_0x48bf20,_0x5385f8){return _0x48bf20!==_0x5385f8;},'ZQlqQ':_0x3eee03(0x29c),'yxTVe':function(_0x29446c,_0x45a65d){return _0x29446c-_0x45a65d;},'dsQVU':function(_0x40433f,_0x589129){return _0x40433f===_0x589129;},'bSyuR':_0x3eee03(0xb83),'uQoyY':_0x590d9e(0xbbe),'VyrvY':function(_0x174683,_0x34577b){return _0x174683(_0x34577b);},'MkruD':function(_0x538a3d,_0x5cf5dd,_0x318528){return _0x538a3d(_0x5cf5dd,_0x318528);}};function _0x31a81c(_0x212508){const _0x558a1f=_0x3eee03,_0x18a2a3=_0x56d2d9,_0x2f0dc7=_0x58eca2,_0x706a99=_0x590d9e,_0x589583=_0x58eca2,_0x478a7b={};_0x478a7b[_0x558a1f(0xcd0)]=_0x5f4b00[_0x18a2a3(0x4be)];const _0x4d247a=_0x478a7b;if(_0x5f4b00[_0x558a1f(0x24e)](_0x5f4b00[_0x558a1f(0x861)],_0x5f4b00[_0x706a99(0x861)])){if(_0x502beb){const _0x1ad48a=_0x255818[_0x18a2a3(0xd6d)](_0x2befb7,arguments);return _0x52a7bf=null,_0x1ad48a;}}else{triesLeft=_0x5f4b00[_0x558a1f(0xc87)](_0x165eee,0x1561+0x3f8+-0x1958);if(!triesLeft){if(_0x5f4b00[_0x706a99(0xda6)](_0x5f4b00[_0x706a99(0x800)],_0x5f4b00[_0x558a1f(0xd9f)]))_0x4d4eb6=_0x4d247a[_0x2f0dc7(0xcd0)];else throw _0x212508;}return _0x5f4b00[_0x589583(0xbd4)](wait,0xdfc+0x2644+-0x324c)[_0x589583(0x95c)](()=>fetchRetry(_0x20f416,triesLeft,_0x1aef4f));}}return _0x5f4b00[_0x58eca2(0x9c9)](fetch,_0x20f416,_0x1aef4f)[_0x590d9e(0x670)](_0x31a81c);}function send_webchat(_0xf6afd0){const _0x1509b7=_0x183a03,_0x3b970a=_0x183a03,_0x266190=_0x405bf8,_0x5d1b89=_0x3af234,_0x436cb1=_0x4241f5,_0x1315bd={'feAJy':_0x1509b7(0x5cb)+_0x1509b7(0x8d7),'rraPl':function(_0x3574ce,_0x47eac9){return _0x3574ce(_0x47eac9);},'SpeCQ':_0x3b970a(0xd2f)+'ss','ZusQt':function(_0x3a61b5,_0x4c51e5){return _0x3a61b5!==_0x4c51e5;},'HpFPk':_0x3b970a(0xa09),'eRBke':_0x5d1b89(0x517)+':','vHBaj':function(_0x148e6e,_0x1961de){return _0x148e6e+_0x1961de;},'YLyjL':_0x266190(0x451)+'es','WNCQf':function(_0x87d3ca,_0x2f43e9){return _0x87d3ca<_0x2f43e9;},'UtIlB':function(_0x355d68,_0x3638a5){return _0x355d68>=_0x3638a5;},'MDrKn':_0x3b970a(0x434)+_0x5d1b89(0x303)+_0x3b970a(0xb34)+_0x436cb1(0xa46)+_0x1509b7(0x63f)+_0x436cb1(0xd7e)+_0x3b970a(0x251)+_0x436cb1(0x701)+_0x436cb1(0x85d)+_0x266190(0x537)+_0x1509b7(0x1f5)+_0x3b970a(0x8d6)+_0x1509b7(0x383),'YGSxX':_0x436cb1(0xa2f)+_0x5d1b89(0x731)+_0x1509b7(0x99f),'jSMMO':_0x436cb1(0xa11)+_0x1509b7(0xe69)+'rl','FxkMm':_0x266190(0x23a),'ClMxt':function(_0x545ee4,_0x3118b6){return _0x545ee4+_0x3118b6;},'hFqDb':_0x266190(0x93a)+':','TPrpH':function(_0x1fb77e,_0x333104){return _0x1fb77e+_0x333104;},'EftUf':_0x1509b7(0x6dd)+'l','nhVJL':function(_0x52032a,_0x3438f6){return _0x52032a+_0x3438f6;},'wMuAf':_0x3b970a(0xb49),'umDmS':function(_0x2b5feb,_0x2033fc){return _0x2b5feb(_0x2033fc);},'wHMAf':function(_0x432e03,_0x3f6674){return _0x432e03+_0x3f6674;},'LAfez':_0x5d1b89(0xc66)+'rl','FsIxc':_0x1509b7(0x7a0)+_0x266190(0x731)+_0x266190(0x99f),'AHSAg':function(_0x212e02,_0x5f3bba){return _0x212e02(_0x5f3bba);},'DUBql':_0x1509b7(0xc6e)+_0x5d1b89(0xb37)+_0x436cb1(0xcb5),'yeIDP':function(_0x58f0c2,_0x2c3c3a){return _0x58f0c2+_0x2c3c3a;},'hvkeI':function(_0x5f4407,_0x8a53df){return _0x5f4407+_0x8a53df;},'vJzvd':_0x1509b7(0x93a)+_0x5d1b89(0xa08),'GUTYh':function(_0xd50a9d,_0x1ed1d0){return _0xd50a9d(_0x1ed1d0);},'aRstm':function(_0x79f686,_0x22c403){return _0x79f686(_0x22c403);},'sLWOc':_0x5d1b89(0x412)+_0x266190(0x731)+_0x266190(0x99f),'PZfDV':_0x436cb1(0x93a)+_0x3b970a(0x20b)+_0x266190(0xd42)+'l','ODFxT':function(_0x33208e,_0x1c1e3e){return _0x33208e+_0x1c1e3e;},'IsEjs':_0x436cb1(0xcf2)+'rl','sJINS':_0x266190(0xa1f)+'l','AWiaB':_0x5d1b89(0xa76)+_0x266190(0xb37)+_0x3b970a(0xcb5),'WoKCo':function(_0x3bba1b,_0xf8d610){return _0x3bba1b(_0xf8d610);},'phuWp':_0x5d1b89(0x93a)+_0x1509b7(0x37d)+_0x266190(0xe69)+'rl','qThvZ':_0x3b970a(0x93a),'SxAFq':_0x436cb1(0xd09)+'l','Fepgr':_0x1509b7(0x9b9),'lcURX':function(_0x1e9847,_0x26f692){return _0x1e9847+_0x26f692;},'ZqNdR':_0x266190(0x703)+'rl','cBIjT':_0x1509b7(0xbef)+_0x266190(0xb37)+_0x436cb1(0xcb5),'FPHPm':function(_0x456618,_0x42952b){return _0x456618(_0x42952b);},'KucyF':_0x1509b7(0xacf),'LijeB':_0x1509b7(0x93a)+_0x1509b7(0xc20),'SHvWt':_0x5d1b89(0x20b)+_0x3b970a(0xd42)+'l','qwvtN':_0x1509b7(0x20b)+_0x5d1b89(0xc20),'IWXOE':function(_0x537bff,_0x28c523){return _0x537bff(_0x28c523);},'IFLBK':_0x1509b7(0xc20),'dLeYJ':_0x1509b7(0x751)+_0x1509b7(0x718)+'结束','eWIFy':function(_0x451c75,_0x2682b7){return _0x451c75===_0x2682b7;},'pomJH':_0x5d1b89(0x46e),'UInUA':_0x3b970a(0x351),'fjWXI':function(_0x239d2f,_0x528990){return _0x239d2f+_0x528990;},'bnqEO':_0x436cb1(0x53a)+'\x20','ktOZh':_0x5d1b89(0x4bb)+_0x436cb1(0xc8d)+_0x436cb1(0x9f6)+_0x3b970a(0x214)+_0x3b970a(0xd97)+_0x5d1b89(0xc99)+_0x436cb1(0xa1b)+_0x3b970a(0xce0)+_0x5d1b89(0x631)+_0x266190(0xada)+_0x436cb1(0x598)+_0x3b970a(0xd43)+_0x1509b7(0x5c5)+_0x1509b7(0x738)+'果:','JNFTB':function(_0x14dbf9,_0x398242){return _0x14dbf9!==_0x398242;},'zmIud':_0x436cb1(0x569),'SggsX':_0x3b970a(0xd78),'BURcX':_0x3b970a(0x6c9)+_0x266190(0xe4d),'VMHiL':function(_0x441fd5,_0x6a80a9){return _0x441fd5>_0x6a80a9;},'UujCO':function(_0x46ad2f,_0x5c95d5){return _0x46ad2f==_0x5c95d5;},'kvRgM':_0x436cb1(0xe45)+']','dHasp':function(_0x25eb84,_0x2212da){return _0x25eb84===_0x2212da;},'mvTbS':_0x266190(0xc9b),'Zuvav':_0x436cb1(0x8da)+_0x1509b7(0x6df),'vfZkp':_0x436cb1(0xf10),'wkqSW':_0x436cb1(0x6c9)+_0x1509b7(0xa7c)+'t','qNbhO':_0x266190(0xed7)+_0x266190(0x646),'gIWRH':_0x266190(0x7ef),'XiBDf':_0x5d1b89(0xe35),'UsNzv':function(_0x1dcbbe,_0x138298){return _0x1dcbbe!==_0x138298;},'dyBqX':_0x436cb1(0x8d1),'ArVlT':_0x3b970a(0xa21),'lLAQq':_0x266190(0xaf1),'NWQtA':_0x436cb1(0x5be),'rxvdo':_0x266190(0xdb7),'VLVVK':_0x3b970a(0xdf6),'KRpcA':_0x1509b7(0x6f4),'eNwCy':_0x5d1b89(0xc10)+'pt','OlIxZ':function(_0x4ae24e,_0xe38c88,_0x34ed1a){return _0x4ae24e(_0xe38c88,_0x34ed1a);},'yEUaa':_0x5d1b89(0xb46)+_0x1509b7(0xb69),'UgXGU':function(_0x25521c,_0x345644){return _0x25521c+_0x345644;},'ExeXJ':function(_0x4942c6,_0xdf3a){return _0x4942c6+_0xdf3a;},'NDSRW':_0x5d1b89(0xe5b)+_0x1509b7(0xca4)+_0x1509b7(0xcbf)+_0x436cb1(0x2d1)+_0x3b970a(0x844),'KZLhW':_0x1509b7(0xc96)+'>','LkaFk':_0x266190(0xb00),'BylFz':_0x1509b7(0xe4b),'QfcKz':_0x5d1b89(0xc49)+_0x3b970a(0xed5)+'t','tpFEP':_0x3b970a(0xcf5),'PllKt':_0x5d1b89(0xa03),'bmYxg':function(_0x27b3ce,_0x1ab975){return _0x27b3ce===_0x1ab975;},'SskJz':_0x266190(0x5a8),'PWMJw':_0x436cb1(0x5df),'XIJVg':function(_0x1254b6,_0x588555){return _0x1254b6(_0x588555);},'fgEao':function(_0xec79e3,_0xf96024){return _0xec79e3===_0xf96024;},'zDTdC':_0x5d1b89(0x5bb),'FDuKV':function(_0x554754,_0x2f69cf){return _0x554754<_0x2f69cf;},'ntRtj':function(_0x2e84b7,_0x21114c){return _0x2e84b7+_0x21114c;},'zBkZD':function(_0x151c41,_0x52098e){return _0x151c41+_0x52098e;},'TGfic':function(_0x20f896,_0x5e44b0){return _0x20f896+_0x5e44b0;},'leMbZ':_0x436cb1(0x9f8)+'m','ARjSq':_0x5d1b89(0x55b)+_0x3b970a(0x2d4)+_0x1509b7(0xbf1)+_0x266190(0xe26)+_0x436cb1(0x33e)+_0x266190(0x887)+_0x5d1b89(0xbea)+_0x436cb1(0x33a)+_0x5d1b89(0x7e7)+_0x3b970a(0x864)+_0x1509b7(0xb8a)+_0x1509b7(0xdf2)+_0x266190(0x3ee)+_0x266190(0xe6c)+_0x1509b7(0xd87)+_0x1509b7(0x321)+_0x3b970a(0x5b7),'wSdSS':_0x266190(0x64c)+'\x0a','odmjT':_0x266190(0x56e)+_0x266190(0x963),'yXtrJ':_0x1509b7(0x8c1),'RomEO':function(_0x4cddd7,_0xe2e43f){return _0x4cddd7(_0xe2e43f);},'riKiE':function(_0x21a75b,_0x51d5d2){return _0x21a75b+_0x51d5d2;},'DQedc':function(_0x215281,_0x244adf){return _0x215281+_0x244adf;},'RWONb':_0x1509b7(0xe5b)+_0x266190(0xca4)+_0x3b970a(0xcbf)+_0x3b970a(0x6ef)+_0x436cb1(0xe2f)+'\x22>','EClpo':_0x5d1b89(0x20b)+_0x5d1b89(0x3fe)+_0x436cb1(0xcef)+_0x266190(0x5f7)+_0x3b970a(0x580)+_0x1509b7(0xb52),'mipnb':function(_0x255d36,_0x3690e9){return _0x255d36!=_0x3690e9;},'wuhlz':_0x1509b7(0x790),'NGPiz':_0x5d1b89(0x6c9),'orEyv':function(_0x1585bc,_0xb93a92){return _0x1585bc+_0xb93a92;},'sINtK':function(_0x5c71e3,_0x1ce96f){return _0x5c71e3+_0x1ce96f;},'iucRE':_0x1509b7(0xca3),'xVkRG':_0x266190(0x301)+'\x0a','bSCqc':function(_0x3abd7f,_0x188cec){return _0x3abd7f===_0x188cec;},'pOapr':_0x266190(0x432),'jCgOZ':function(_0x3590a7){return _0x3590a7();},'EkGiY':function(_0xe72d5,_0x28117c){return _0xe72d5>_0x28117c;},'beIUS':function(_0x4a5d28,_0x4c3b93){return _0x4a5d28+_0x4c3b93;},'DLTuf':function(_0x5e80be,_0x27600b){return _0x5e80be+_0x27600b;},'JRqyV':_0x436cb1(0x20b)+_0x436cb1(0x3fe)+_0x436cb1(0xcef)+_0x5d1b89(0xbc5)+_0x1509b7(0x997)+'q=','sThbs':_0x3b970a(0x6f8)+_0x1509b7(0x845)+_0x5d1b89(0x60d)+_0x5d1b89(0x2c7)+_0x3b970a(0xeca)+_0x1509b7(0xa7f)+_0x266190(0xa83)+_0x5d1b89(0x781)+_0x436cb1(0x256)+_0x3b970a(0x8e9)+_0x3b970a(0xa99)+_0x1509b7(0x568)+_0x436cb1(0x823)+_0x5d1b89(0x7a8)+'n'};if(_0x1315bd[_0x266190(0x268)](lock_chat,-0x22dc+-0x1*-0x2090+0x54*0x7)){if(_0x1315bd[_0x436cb1(0x837)](_0x1315bd[_0x436cb1(0xaca)],_0x1315bd[_0x5d1b89(0xaca)]))_0x3b87ba[_0x5d1b89(0x7b2)](_0x1315bd[_0x1509b7(0xde1)]),_0x1315bd[_0x5d1b89(0x2d3)](_0x51590a,_0x1315bd[_0x436cb1(0x729)]);else{_0x1315bd[_0x5d1b89(0x7ba)](alert,_0x1315bd[_0x5d1b89(0x1ff)]);return;}}lock_chat=-0x14cb+-0x155*0x2+0x1776,knowledge=document[_0x5d1b89(0x5de)+_0x5d1b89(0xf3d)+_0x436cb1(0xa93)](_0x1315bd[_0x5d1b89(0x92a)])[_0x1509b7(0xdde)+_0x436cb1(0x4ea)][_0x436cb1(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x436cb1(0x69d)+'ce'](/<hr.*/gs,'')[_0x266190(0x69d)+'ce'](/<[^>]+>/g,'')[_0x436cb1(0x69d)+'ce'](/\n\n/g,'\x0a');if(_0x1315bd[_0x5d1b89(0x241)](knowledge[_0x1509b7(0x8b2)+'h'],-0x263+0x11b7+-0xdc4))knowledge[_0x5d1b89(0xe3b)](0x1d28+0xd*0x286+-0x3c66);knowledge+=_0x1315bd[_0x3b970a(0x4d1)](_0x1315bd[_0x3b970a(0xae3)](_0x1315bd[_0x3b970a(0x904)],original_search_query),_0x1315bd[_0x266190(0xe75)]);let _0x2e3cd4=document[_0x436cb1(0x5de)+_0x266190(0xf3d)+_0x1509b7(0xa93)](_0x1315bd[_0x1509b7(0x421)])[_0x266190(0x619)];_0xf6afd0&&(_0x1315bd[_0x1509b7(0x389)](_0x1315bd[_0x5d1b89(0x785)],_0x1315bd[_0x1509b7(0x785)])?(_0x2e3cd4=_0xf6afd0[_0x436cb1(0x696)+_0x3b970a(0x7ee)+'t'],_0xf6afd0[_0x5d1b89(0x233)+'e'](),_0x1315bd[_0x5d1b89(0xe2d)](chatmore)):_0x23ed57+=_0x215977);if(_0x1315bd[_0x5d1b89(0xb55)](_0x2e3cd4[_0x3b970a(0x8b2)+'h'],-0xe2d+-0x8e+0xebb)||_0x1315bd[_0x5d1b89(0x803)](_0x2e3cd4[_0x3b970a(0x8b2)+'h'],-0xa59+-0x3a*0x17+0x101b))return;_0x1315bd[_0x436cb1(0xe0e)](fetchRetry,_0x1315bd[_0x436cb1(0xd05)](_0x1315bd[_0x3b970a(0x64e)](_0x1315bd[_0x436cb1(0x6b8)],_0x1315bd[_0x436cb1(0x5b1)](encodeURIComponent,_0x2e3cd4)),_0x1315bd[_0x266190(0xe28)]),-0x5*-0x418+0x1e40+0x3*-0x10e7)[_0x5d1b89(0x95c)](_0x276b70=>_0x276b70[_0x266190(0x943)]())[_0x436cb1(0x95c)](_0x3db424=>{const _0x47f705=_0x1509b7,_0x20b918=_0x3b970a,_0x1a0942=_0x436cb1,_0x1c1e4c=_0x1509b7,_0x165c58=_0x266190,_0x5b5167={'xBuvH':function(_0x593592,_0x29f6a9){const _0x29d6c0=_0x376c;return _0x1315bd[_0x29d6c0(0x267)](_0x593592,_0x29f6a9);},'BZAxc':_0x1315bd[_0x47f705(0x778)],'maDqJ':function(_0x117c6d,_0x2040be){const _0x3b13a0=_0x47f705;return _0x1315bd[_0x3b13a0(0xa31)](_0x117c6d,_0x2040be);},'mPLNV':function(_0x3db232,_0x2ec65a){const _0x215f88=_0x47f705;return _0x1315bd[_0x215f88(0xf22)](_0x3db232,_0x2ec65a);},'BhAmc':_0x1315bd[_0x20b918(0xf4c)],'sNsDQ':function(_0x53befb,_0x55be16){const _0x5b8fc7=_0x47f705;return _0x1315bd[_0x5b8fc7(0x267)](_0x53befb,_0x55be16);},'eQRGD':_0x1315bd[_0x47f705(0xb38)],'qOAKT':function(_0x15441a,_0x3facd0){const _0x51d4c6=_0x20b918;return _0x1315bd[_0x51d4c6(0x2d3)](_0x15441a,_0x3facd0);},'QrXXu':_0x1315bd[_0x1a0942(0xe29)],'QqpLn':function(_0x4192d7,_0x13b329){const _0x16d25f=_0x1a0942;return _0x1315bd[_0x16d25f(0x2d3)](_0x4192d7,_0x13b329);},'LfkZM':_0x1315bd[_0x165c58(0xe49)],'Purxz':function(_0x42d8a8,_0x1f37ed){const _0x5ee5d2=_0x1c1e4c;return _0x1315bd[_0x5ee5d2(0x754)](_0x42d8a8,_0x1f37ed);},'jugWH':_0x1315bd[_0x1c1e4c(0xf8e)],'UgpPI':function(_0xbb4703,_0x260d37){const _0x4dfd88=_0x47f705;return _0x1315bd[_0x4dfd88(0x2d3)](_0xbb4703,_0x260d37);},'fTvNP':function(_0x10f6eb,_0x504141){const _0x5339df=_0x165c58;return _0x1315bd[_0x5339df(0xbb3)](_0x10f6eb,_0x504141);},'BEJSb':_0x1315bd[_0x47f705(0xcc3)],'apdKp':function(_0x599924,_0x3fecd8){const _0x293cde=_0x47f705;return _0x1315bd[_0x293cde(0x2d3)](_0x599924,_0x3fecd8);},'RNkPU':function(_0x5b9347,_0x52c6ab){const _0x35ed88=_0x165c58;return _0x1315bd[_0x35ed88(0xbb3)](_0x5b9347,_0x52c6ab);},'wsbaU':function(_0x514401,_0x223c59){const _0x2097c3=_0x1a0942;return _0x1315bd[_0x2097c3(0x8ee)](_0x514401,_0x223c59);},'FiIwk':_0x1315bd[_0x20b918(0x834)],'CZHhu':function(_0x5c9372,_0x1bf01e){const _0x4f0ace=_0x1a0942;return _0x1315bd[_0x4f0ace(0x798)](_0x5c9372,_0x1bf01e);},'EatTS':function(_0x26e47f,_0x22b7d4){const _0x7d8f54=_0x1c1e4c;return _0x1315bd[_0x7d8f54(0xbb3)](_0x26e47f,_0x22b7d4);},'VyDJB':function(_0x57d28f,_0x4063c8){const _0x21db88=_0x1c1e4c;return _0x1315bd[_0x21db88(0x966)](_0x57d28f,_0x4063c8);},'rOCon':_0x1315bd[_0x1a0942(0x68b)],'khiQW':_0x1315bd[_0x47f705(0x3c5)],'gYHTw':function(_0x379e4,_0x1f6bbd){const _0x788c76=_0x47f705;return _0x1315bd[_0x788c76(0x5b1)](_0x379e4,_0x1f6bbd);},'dkTOZ':function(_0x461e3e,_0x265860){const _0x2868fc=_0x20b918;return _0x1315bd[_0x2868fc(0x966)](_0x461e3e,_0x265860);},'OFEGc':function(_0x4ccfab,_0x398122){const _0x53363b=_0x1c1e4c;return _0x1315bd[_0x53363b(0x5b1)](_0x4ccfab,_0x398122);},'qgoAO':_0x1315bd[_0x20b918(0xe90)],'GRIVa':function(_0x5c0a72,_0x19494b){const _0x461695=_0x20b918;return _0x1315bd[_0x461695(0x5b1)](_0x5c0a72,_0x19494b);},'OrxJV':function(_0x58785b,_0x569282){const _0x66cf57=_0x20b918;return _0x1315bd[_0x66cf57(0x80d)](_0x58785b,_0x569282);},'zAqhF':function(_0x41f37f,_0x49c65a){const _0x33b106=_0x165c58;return _0x1315bd[_0x33b106(0x2d3)](_0x41f37f,_0x49c65a);},'mXfiY':function(_0x388bf4,_0x489304){const _0x268484=_0x1a0942;return _0x1315bd[_0x268484(0x78d)](_0x388bf4,_0x489304);},'jXwwh':_0x1315bd[_0x20b918(0x8f3)],'zWvel':function(_0x8ede6b,_0xf5e881){const _0x569c3f=_0x47f705;return _0x1315bd[_0x569c3f(0xafd)](_0x8ede6b,_0xf5e881);},'vbkJO':function(_0x3b6346,_0x114a46){const _0x354a6d=_0x1a0942;return _0x1315bd[_0x354a6d(0xf70)](_0x3b6346,_0x114a46);},'pvput':function(_0x5964cd,_0x981a27){const _0x56a6ab=_0x165c58;return _0x1315bd[_0x56a6ab(0x966)](_0x5964cd,_0x981a27);},'hGKKb':_0x1315bd[_0x20b918(0xc22)],'lopYa':_0x1315bd[_0x20b918(0x642)],'IzSab':function(_0xfdb434,_0x3c636c){const _0x4bf0fe=_0x1c1e4c;return _0x1315bd[_0x4bf0fe(0xb8c)](_0xfdb434,_0x3c636c);},'aFurA':_0x1315bd[_0x1c1e4c(0xcee)],'dKtUQ':function(_0x345f4e,_0x216836){const _0x402fe9=_0x20b918;return _0x1315bd[_0x402fe9(0x8ee)](_0x345f4e,_0x216836);},'QwZBI':_0x1315bd[_0x165c58(0x68e)],'tCpzB':function(_0x5c7d0b,_0x2047ec){const _0x2e291d=_0x20b918;return _0x1315bd[_0x2e291d(0x5b1)](_0x5c7d0b,_0x2047ec);},'EzpvC':_0x1315bd[_0x1a0942(0xe50)],'TFItf':function(_0x524b17,_0x4ed5fd){const _0x4af323=_0x20b918;return _0x1315bd[_0x4af323(0x27b)](_0x524b17,_0x4ed5fd);},'NZQJv':_0x1315bd[_0x20b918(0xc88)],'qXVUu':function(_0x32c0dd,_0x279f4b){const _0x1a66f0=_0x165c58;return _0x1315bd[_0x1a66f0(0x966)](_0x32c0dd,_0x279f4b);},'FarMy':_0x1315bd[_0x165c58(0x83b)],'cqZkm':function(_0x472a17,_0x548cb4){const _0x2ade8b=_0x1c1e4c;return _0x1315bd[_0x2ade8b(0x2d3)](_0x472a17,_0x548cb4);},'nGUWD':_0x1315bd[_0x47f705(0xe3d)],'nfDwE':function(_0xdddec3,_0x46c7cb){const _0x403dc7=_0x1c1e4c;return _0x1315bd[_0x403dc7(0x27b)](_0xdddec3,_0x46c7cb);},'FNSBi':function(_0x5435e0,_0x44887e){const _0x4a2601=_0x47f705;return _0x1315bd[_0x4a2601(0x78d)](_0x5435e0,_0x44887e);},'Ajdpl':_0x1315bd[_0x20b918(0xa43)],'fvKqY':function(_0x3e2ce9,_0x115ecd){const _0x462a14=_0x1c1e4c;return _0x1315bd[_0x462a14(0x3cb)](_0x3e2ce9,_0x115ecd);},'ojnRw':_0x1315bd[_0x1c1e4c(0xe3a)],'xYRkn':_0x1315bd[_0x47f705(0xdc5)],'XAgLS':function(_0x10cccf,_0x5e3e15){const _0x2784a5=_0x47f705;return _0x1315bd[_0x2784a5(0x754)](_0x10cccf,_0x5e3e15);},'yIDnp':function(_0x49c4fc,_0x127cc6){const _0x36f1c0=_0x47f705;return _0x1315bd[_0x36f1c0(0xafd)](_0x49c4fc,_0x127cc6);},'tvbch':function(_0x116721,_0xd308ec){const _0x49acfa=_0x47f705;return _0x1315bd[_0x49acfa(0xc47)](_0x116721,_0xd308ec);},'KxWxt':function(_0x566dc3,_0xa9a411){const _0xaea22c=_0x165c58;return _0x1315bd[_0xaea22c(0x267)](_0x566dc3,_0xa9a411);},'isjiX':_0x1315bd[_0x1a0942(0x67d)],'RYCkk':function(_0x15e16e,_0x2aa483){const _0x1ad4cf=_0x20b918;return _0x1315bd[_0x1ad4cf(0xb8c)](_0x15e16e,_0x2aa483);},'XBqyY':_0x1315bd[_0x1c1e4c(0xe73)],'vziTE':_0x1315bd[_0x1c1e4c(0xc7f)],'ObSfN':function(_0x3e810b,_0x15851a){const _0x4b5616=_0x20b918;return _0x1315bd[_0x4b5616(0x8ee)](_0x3e810b,_0x15851a);},'XGlAU':_0x1315bd[_0x1c1e4c(0xa6f)],'YAxNt':function(_0x180b4e,_0x51c4bd){const _0x4a2608=_0x20b918;return _0x1315bd[_0x4a2608(0x226)](_0x180b4e,_0x51c4bd);},'JcUeS':_0x1315bd[_0x165c58(0xb16)],'LYsmm':_0x1315bd[_0x165c58(0x1ff)],'XXUxB':function(_0x3d6ac9,_0x761a0b){const _0x4cee3f=_0x47f705;return _0x1315bd[_0x4cee3f(0x6d3)](_0x3d6ac9,_0x761a0b);},'jThRJ':_0x1315bd[_0x47f705(0x522)],'anLXp':_0x1315bd[_0x20b918(0x4f6)],'BWcPr':function(_0x20ed40,_0x2117d3){const _0x5592e7=_0x47f705;return _0x1315bd[_0x5592e7(0xc98)](_0x20ed40,_0x2117d3);},'elsyu':function(_0x16d702,_0x56fc70){const _0x53c3e5=_0x165c58;return _0x1315bd[_0x53c3e5(0x8ee)](_0x16d702,_0x56fc70);},'EbAUD':function(_0x3a2737,_0x5c41b0){const _0x10e222=_0x47f705;return _0x1315bd[_0x10e222(0x78d)](_0x3a2737,_0x5c41b0);},'njsrs':_0x1315bd[_0x165c58(0x7b1)],'akhWN':_0x1315bd[_0x1c1e4c(0x779)],'csMHM':function(_0x8bb0cb,_0xbd3119){const _0x5162b1=_0x20b918;return _0x1315bd[_0x5162b1(0x837)](_0x8bb0cb,_0xbd3119);},'EpTZy':_0x1315bd[_0x47f705(0x2cb)],'tmonu':function(_0x21a12d,_0x5a35a7){const _0x3f0682=_0x1c1e4c;return _0x1315bd[_0x3f0682(0x822)](_0x21a12d,_0x5a35a7);},'ChToP':_0x1315bd[_0x1c1e4c(0xf2b)],'rkegG':_0x1315bd[_0x165c58(0x896)],'cLLyX':function(_0x44157e,_0x18fdcf){const _0x548639=_0x1c1e4c;return _0x1315bd[_0x548639(0x241)](_0x44157e,_0x18fdcf);},'QqmbF':function(_0x28644f,_0x14c16b){const _0x18b87e=_0x165c58;return _0x1315bd[_0x18b87e(0xb55)](_0x28644f,_0x14c16b);},'LuNDO':_0x1315bd[_0x1a0942(0x66d)],'BcsEA':function(_0x419989,_0x69c8aa){const _0xba1e06=_0x1a0942;return _0x1315bd[_0xba1e06(0xa72)](_0x419989,_0x69c8aa);},'IuYvO':_0x1315bd[_0x165c58(0x9cf)],'ImvAv':_0x1315bd[_0x47f705(0xe9b)],'KfRtE':_0x1315bd[_0x1a0942(0xe5f)],'TRXAV':_0x1315bd[_0x1a0942(0x421)],'JXXvA':_0x1315bd[_0x165c58(0x316)],'mSRTy':_0x1315bd[_0x1a0942(0xcaf)],'WaGfY':_0x1315bd[_0x1a0942(0xf5a)],'TSCEy':function(_0x9973b2,_0x420f55){const _0x5851d1=_0x47f705;return _0x1315bd[_0x5851d1(0xdfd)](_0x9973b2,_0x420f55);},'bgGFq':_0x1315bd[_0x1a0942(0x939)],'GpESx':_0x1315bd[_0x20b918(0x984)],'NTVFz':function(_0x428798,_0x2f85e8){const _0x4e3546=_0x165c58;return _0x1315bd[_0x4e3546(0x267)](_0x428798,_0x2f85e8);},'FxEnd':_0x1315bd[_0x165c58(0xd72)],'rnZUW':_0x1315bd[_0x1a0942(0xb57)],'aoXjO':_0x1315bd[_0x165c58(0xb39)],'Bzjac':_0x1315bd[_0x47f705(0x45c)],'Rezod':_0x1315bd[_0x1c1e4c(0x566)],'bEXXo':_0x1315bd[_0x47f705(0x373)],'AvAzH':function(_0x40a692,_0x1d622a,_0x3158fc){const _0x583e7f=_0x165c58;return _0x1315bd[_0x583e7f(0xe0e)](_0x40a692,_0x1d622a,_0x3158fc);},'Kkjpf':_0x1315bd[_0x47f705(0x533)],'OhPrr':function(_0x3c3c3c,_0x3556dd){const _0x8e1f9d=_0x1a0942;return _0x1315bd[_0x8e1f9d(0xb05)](_0x3c3c3c,_0x3556dd);},'YXaHj':function(_0x29218a,_0x8b9f2a){const _0x3695b2=_0x1a0942;return _0x1315bd[_0x3695b2(0x91b)](_0x29218a,_0x8b9f2a);},'tYzJf':_0x1315bd[_0x20b918(0xf51)],'kkXFp':_0x1315bd[_0x47f705(0xf7f)],'ueOXS':_0x1315bd[_0x1a0942(0xeb2)],'OrVZQ':_0x1315bd[_0x1a0942(0xf78)],'kHfNA':_0x1315bd[_0x47f705(0x2b5)],'TiOqC':_0x1315bd[_0x165c58(0x294)],'muIes':_0x1315bd[_0x47f705(0x246)],'zZrmm':_0x1315bd[_0x20b918(0x462)]};if(_0x1315bd[_0x165c58(0x99a)](_0x1315bd[_0x1c1e4c(0x582)],_0x1315bd[_0x1a0942(0xcb8)]))_0x2756fd='';else{prompt=JSON[_0x47f705(0xd22)](_0x1315bd[_0x20b918(0x4a6)](atob,/<div id="prompt" style="display:none">(.*?)<\/div>/[_0x1c1e4c(0xdab)](_0x3db424[_0x1c1e4c(0x49e)+_0x1c1e4c(0x77b)][-0x2516+-0x8e+0x25a4][_0x1a0942(0x91a)+'nt'])[-0x1*0x1a9b+-0xf*0x1c9+0x3563])),prompt[_0x165c58(0x880)][_0x47f705(0x30f)+_0x165c58(0xd71)+_0x1a0942(0x917)+'y']=-0x2649+0x931*0x3+0x1*0xab7,prompt[_0x165c58(0x880)][_0x1a0942(0xdcf)+_0x20b918(0x704)+'e']=0x1*-0x1709+0xfaa+0x75f+0.9;for(st in prompt[_0x1c1e4c(0xeef)]){if(_0x1315bd[_0x47f705(0xca8)](_0x1315bd[_0x1c1e4c(0xb6f)],_0x1315bd[_0x47f705(0xb6f)])){if(_0x1315bd[_0x20b918(0x430)](_0x1315bd[_0x165c58(0x966)](_0x1315bd[_0x1a0942(0xf49)](_0x1315bd[_0x47f705(0xc98)](_0x1315bd[_0x165c58(0xb8c)](_0x1315bd[_0x47f705(0xd56)](knowledge,prompt[_0x1a0942(0xeef)][st]),'\x0a'),_0x1315bd[_0x20b918(0x7b1)]),_0x2e3cd4),_0x1315bd[_0x165c58(0x779)])[_0x20b918(0x8b2)+'h'],0x1*-0x17fd+-0xf08+0x2ce1))knowledge+=_0x1315bd[_0x20b918(0x52b)](prompt[_0x1c1e4c(0xeef)][st],'\x0a');}else _0x5b1c11=_0xb7f047[_0x1a0942(0xd22)](_0x5b5167[_0x1c1e4c(0x28b)](_0x4a64a9,_0x2e335e))[_0x5b5167[_0x47f705(0x47f)]],_0x375635='';}const _0x2cf3cb={};_0x2cf3cb[_0x165c58(0xc59)]=_0x1315bd[_0x1a0942(0xe7e)],_0x2cf3cb[_0x1a0942(0x91a)+'nt']=_0x1315bd[_0x47f705(0x506)],prompt[_0x165c58(0x880)][_0x1a0942(0x878)+_0x20b918(0x8f1)]=[_0x2cf3cb,{'role':_0x1315bd[_0x1a0942(0x316)],'content':_0x1315bd[_0x47f705(0x966)](_0x1315bd[_0x165c58(0x5dd)],knowledge)},{'role':_0x1315bd[_0x165c58(0xe5f)],'content':_0x1315bd[_0x20b918(0xbb3)](_0x1315bd[_0x1c1e4c(0x80d)](_0x1315bd[_0x1a0942(0xc09)],_0x2e3cd4),'')}],optionsweb={'method':_0x1315bd[_0x47f705(0x8eb)],'headers':headers,'body':_0x1315bd[_0x1a0942(0x226)](b64EncodeUnicode,JSON[_0x1a0942(0xdfb)+_0x47f705(0x22d)](prompt[_0x165c58(0x880)]))},document[_0x1c1e4c(0x5de)+_0x165c58(0xf3d)+_0x47f705(0xa93)](_0x1315bd[_0x47f705(0x373)])[_0x1c1e4c(0xdde)+_0x20b918(0x4ea)]='',_0x1315bd[_0x20b918(0xe0e)](markdownToHtml,_0x1315bd[_0x1a0942(0x7ba)](beautify,_0x2e3cd4),document[_0x1c1e4c(0x5de)+_0x47f705(0xf3d)+_0x1a0942(0xa93)](_0x1315bd[_0x1c1e4c(0x373)])),chatTemp='',text_offset=-(-0x11*0x53+-0xc1d*0x2+-0x2f*-0xa2),prev_chat=document[_0x165c58(0x93e)+_0x1c1e4c(0x48f)+_0x47f705(0x9b1)](_0x1315bd[_0x1c1e4c(0x533)])[_0x1a0942(0xdde)+_0x20b918(0x4ea)],prev_chat=_0x1315bd[_0x1c1e4c(0x80d)](_0x1315bd[_0x1c1e4c(0x97d)](_0x1315bd[_0x47f705(0x3b7)](prev_chat,_0x1315bd[_0x47f705(0x5bc)]),document[_0x20b918(0x5de)+_0x1c1e4c(0xf3d)+_0x1a0942(0xa93)](_0x1315bd[_0x47f705(0x373)])[_0x20b918(0xdde)+_0x47f705(0x4ea)]),_0x1315bd[_0x47f705(0xf7f)]),_0x1315bd[_0x165c58(0xe0e)](fetch,_0x1315bd[_0x1a0942(0x272)],optionsweb)[_0x1c1e4c(0x95c)](_0x20fbbc=>{const _0x3d1b82=_0x20b918,_0x3fb31b=_0x1c1e4c,_0x25092e=_0x20b918,_0x3a5b4e=_0x47f705,_0x22cd2a=_0x47f705,_0x8b491={'PARLV':function(_0x43cdda,_0x82edea){const _0x5f2f5d=_0x376c;return _0x5b5167[_0x5f2f5d(0xf26)](_0x43cdda,_0x82edea);},'cuJDB':_0x5b5167[_0x3d1b82(0x47f)],'trUCJ':function(_0x2c5153,_0xa58e8c){const _0x9bd500=_0x3d1b82;return _0x5b5167[_0x9bd500(0x411)](_0x2c5153,_0xa58e8c);},'lwkrO':function(_0x4e107e,_0xc35cda){const _0x5b60c4=_0x3d1b82;return _0x5b5167[_0x5b60c4(0x4f4)](_0x4e107e,_0xc35cda);},'GpLpb':function(_0x102efa,_0x146bdc){const _0x35b324=_0x3d1b82;return _0x5b5167[_0x35b324(0xc5c)](_0x102efa,_0x146bdc);},'PWHQu':_0x5b5167[_0x3fb31b(0x589)],'nMsKB':_0x5b5167[_0x25092e(0xe3e)],'NYjek':function(_0x1c99b0,_0x29101e){const _0x184fda=_0x3d1b82;return _0x5b5167[_0x184fda(0xc72)](_0x1c99b0,_0x29101e);},'EZsGv':_0x5b5167[_0x3a5b4e(0xb0f)],'dNEgX':function(_0x531bc7,_0x55fed5){const _0x29f25a=_0x3d1b82;return _0x5b5167[_0x29f25a(0x9c5)](_0x531bc7,_0x55fed5);},'GRVKh':_0x5b5167[_0x3d1b82(0x9e8)],'AgcPe':_0x5b5167[_0x3d1b82(0x365)],'ebxAR':function(_0x574e09,_0x169511){const _0x21aef0=_0x3a5b4e;return _0x5b5167[_0x21aef0(0x724)](_0x574e09,_0x169511);},'hkfOw':function(_0xe5d8e6,_0x204627){const _0x35041d=_0x3a5b4e;return _0x5b5167[_0x35041d(0x4cc)](_0xe5d8e6,_0x204627);},'SqlHS':_0x5b5167[_0x25092e(0xa56)],'GaeUP':function(_0x548f35,_0x5bf132){const _0x257815=_0x3fb31b;return _0x5b5167[_0x257815(0x8c5)](_0x548f35,_0x5bf132);},'LNhMI':_0x5b5167[_0x3a5b4e(0x5f9)],'oyBBk':_0x5b5167[_0x22cd2a(0x636)],'CyBqL':_0x5b5167[_0x25092e(0x4d0)],'QieBr':_0x5b5167[_0x3d1b82(0xfa4)],'KBPDj':_0x5b5167[_0x25092e(0x476)],'nLcqt':_0x5b5167[_0x3d1b82(0xb9a)],'BnXfj':_0x5b5167[_0x3fb31b(0xc32)],'lfgfI':function(_0x46fd07,_0x49970a){const _0x438b1b=_0x25092e;return _0x5b5167[_0x438b1b(0xceb)](_0x46fd07,_0x49970a);},'dNuBP':_0x5b5167[_0x25092e(0x558)],'nibTB':_0x5b5167[_0x22cd2a(0xa9a)],'Yqiov':function(_0x7c8eed,_0x1adf0f){const _0x5c2509=_0x22cd2a;return _0x5b5167[_0x5c2509(0xda8)](_0x7c8eed,_0x1adf0f);},'bdQzc':_0x5b5167[_0x3d1b82(0x21f)],'dRsmd':_0x5b5167[_0x3d1b82(0xd23)],'LsEHV':function(_0x18120,_0x2c9af6){const _0x2f6c21=_0x25092e;return _0x5b5167[_0x2f6c21(0xf7e)](_0x18120,_0x2c9af6);},'IikjD':_0x5b5167[_0x3fb31b(0x3dd)],'SWEcV':_0x5b5167[_0x22cd2a(0x1ec)],'JPkeu':_0x5b5167[_0x22cd2a(0x283)],'NHPjM':_0x5b5167[_0x3fb31b(0x3a5)],'qsynb':function(_0x114b19,_0x38700d,_0x5bef36){const _0x14f5ca=_0x3d1b82;return _0x5b5167[_0x14f5ca(0x681)](_0x114b19,_0x38700d,_0x5bef36);},'OBKzx':function(_0x2f2221,_0x4f07e6){const _0x2d2977=_0x3fb31b;return _0x5b5167[_0x2d2977(0x766)](_0x2f2221,_0x4f07e6);},'FmVZu':_0x5b5167[_0x25092e(0xbab)],'svxzZ':function(_0x34946c,_0x29e973){const _0x1b6d66=_0x25092e;return _0x5b5167[_0x1b6d66(0xec3)](_0x34946c,_0x29e973);},'qpefd':function(_0x13b92f,_0x13f055){const _0x58e710=_0x3d1b82;return _0x5b5167[_0x58e710(0x43a)](_0x13b92f,_0x13f055);},'SBLOA':function(_0x3bff85,_0xf76bd4){const _0x3bcdaf=_0x22cd2a;return _0x5b5167[_0x3bcdaf(0x9a2)](_0x3bff85,_0xf76bd4);},'HYniM':_0x5b5167[_0x3a5b4e(0x8a7)],'gCBvc':_0x5b5167[_0x3a5b4e(0x6e1)],'HCbJd':function(_0x4c55e1,_0x5c5941){const _0x39e617=_0x3d1b82;return _0x5b5167[_0x39e617(0x998)](_0x4c55e1,_0x5c5941);},'Nghdd':_0x5b5167[_0x3d1b82(0x689)],'djAJV':_0x5b5167[_0x22cd2a(0x5cf)],'PFnjp':_0x5b5167[_0x3fb31b(0xf05)]};if(_0x5b5167[_0x3d1b82(0xc72)](_0x5b5167[_0x25092e(0xa06)],_0x5b5167[_0x22cd2a(0x61c)])){const _0x357f1b=_0x20fbbc[_0x3d1b82(0x770)][_0x25092e(0xc2c)+_0x3fb31b(0xab3)]();let _0x37e994='',_0x159262='';_0x357f1b[_0x3d1b82(0x67b)]()[_0x3d1b82(0x95c)](function _0xb82ce9({done:_0xd7b4a1,value:_0x4391fa}){const _0x21aa8e=_0x3fb31b,_0x23d245=_0x22cd2a,_0x1aa257=_0x3d1b82,_0x1f0087=_0x22cd2a,_0x83a6d5=_0x3fb31b,_0x2bd202={'WPPiM':function(_0x24ac8f,_0xafd180){const _0x2a8678=_0x376c;return _0x5b5167[_0x2a8678(0x411)](_0x24ac8f,_0xafd180);},'LRBQu':function(_0x402e0f,_0x2536d9){const _0x207d23=_0x376c;return _0x5b5167[_0x207d23(0xf1f)](_0x402e0f,_0x2536d9);},'dLGzJ':_0x5b5167[_0x21aa8e(0x4bc)],'wQXIT':function(_0x3bb223,_0x2cd1ec){const _0x477830=_0x21aa8e;return _0x5b5167[_0x477830(0x799)](_0x3bb223,_0x2cd1ec);},'hNNRB':_0x5b5167[_0x21aa8e(0xa0e)],'rvSlh':function(_0x24715e,_0x32cb76){const _0x1e3474=_0x21aa8e;return _0x5b5167[_0x1e3474(0xf2e)](_0x24715e,_0x32cb76);},'KgOIW':_0x5b5167[_0x23d245(0xbaa)],'UgzsX':function(_0x2593d8,_0x1000c8){const _0x5ad7ec=_0x21aa8e;return _0x5b5167[_0x5ad7ec(0x5b3)](_0x2593d8,_0x1000c8);},'xZfjt':function(_0x1e8304,_0x88f91){const _0x1c55ab=_0x23d245;return _0x5b5167[_0x1c55ab(0x28b)](_0x1e8304,_0x88f91);},'gRhpS':_0x5b5167[_0x21aa8e(0x42f)],'KIpOE':function(_0x5ce77b,_0x3c1272){const _0x523091=_0x1aa257;return _0x5b5167[_0x523091(0x5b3)](_0x5ce77b,_0x3c1272);},'HGuco':function(_0xadd35f,_0x4df6f0){const _0x4a13c9=_0x1f0087;return _0x5b5167[_0x4a13c9(0x799)](_0xadd35f,_0x4df6f0);},'Jbqwq':function(_0x48cf11,_0x69ab15){const _0x16b7aa=_0x1f0087;return _0x5b5167[_0x16b7aa(0x2c1)](_0x48cf11,_0x69ab15);},'GbgaO':_0x5b5167[_0x23d245(0x229)],'lyotL':function(_0xe32a92,_0x4df979){const _0x54e455=_0x23d245;return _0x5b5167[_0x54e455(0x439)](_0xe32a92,_0x4df979);},'GnwWn':function(_0x444604,_0xfc4fdd){const _0x42a0b4=_0x1f0087;return _0x5b5167[_0x42a0b4(0x5f3)](_0x444604,_0xfc4fdd);},'MlEzN':function(_0xb8b566,_0x12ba2c){const _0x5a6474=_0x21aa8e;return _0x5b5167[_0x5a6474(0x799)](_0xb8b566,_0x12ba2c);},'Knsym':_0x5b5167[_0x23d245(0x91c)],'cNwcK':function(_0x34fd49,_0x3c6779){const _0x4b6aa0=_0x83a6d5;return _0x5b5167[_0x4b6aa0(0xe99)](_0x34fd49,_0x3c6779);},'QTeSX':function(_0x478fa6,_0x585184){const _0x4826a0=_0x1f0087;return _0x5b5167[_0x4826a0(0x998)](_0x478fa6,_0x585184);},'qTBjw':function(_0xb59b9c,_0x673b61){const _0x163388=_0x1f0087;return _0x5b5167[_0x163388(0xdd4)](_0xb59b9c,_0x673b61);},'iHfQs':_0x5b5167[_0x1f0087(0xda4)],'KjBrO':function(_0x52a31b,_0x8be604){const _0x429008=_0x83a6d5;return _0x5b5167[_0x429008(0x766)](_0x52a31b,_0x8be604);},'SXtkW':function(_0x4df080,_0x3862e8){const _0x12d61f=_0x1f0087;return _0x5b5167[_0x12d61f(0xef0)](_0x4df080,_0x3862e8);},'BzwkQ':function(_0x1c8a03,_0x123fe9){const _0x345e86=_0x21aa8e;return _0x5b5167[_0x345e86(0xf2e)](_0x1c8a03,_0x123fe9);},'NJaVP':function(_0xd99d07,_0x3372a1){const _0x24638b=_0x1f0087;return _0x5b5167[_0x24638b(0xb5d)](_0xd99d07,_0x3372a1);},'CaGPH':_0x5b5167[_0x21aa8e(0xb89)],'VRyNv':function(_0x16a338,_0x3b3977){const _0x1790f1=_0x21aa8e;return _0x5b5167[_0x1790f1(0x5f3)](_0x16a338,_0x3b3977);},'gFMeT':function(_0x3e6b4c,_0x3f06f5){const _0x31544f=_0x83a6d5;return _0x5b5167[_0x31544f(0x998)](_0x3e6b4c,_0x3f06f5);},'SOLhy':_0x5b5167[_0x21aa8e(0xa24)],'VTlcC':function(_0x2740d8,_0x3f62df){const _0x289292=_0x83a6d5;return _0x5b5167[_0x289292(0xd40)](_0x2740d8,_0x3f62df);},'omqyU':function(_0x32d7e7,_0x4d3ddd){const _0x99f756=_0x1aa257;return _0x5b5167[_0x99f756(0xa70)](_0x32d7e7,_0x4d3ddd);},'eDGhq':function(_0xab1eb6,_0xba4e18){const _0x528d7b=_0x83a6d5;return _0x5b5167[_0x528d7b(0x5ab)](_0xab1eb6,_0xba4e18);},'Zplql':_0x5b5167[_0x83a6d5(0xe65)],'ZyECQ':function(_0x225377,_0x3e5586){const _0x281a8d=_0x83a6d5;return _0x5b5167[_0x281a8d(0x47a)](_0x225377,_0x3e5586);},'urDfh':function(_0x51a018,_0x19b17e){const _0x25c6a9=_0x21aa8e;return _0x5b5167[_0x25c6a9(0xbe2)](_0x51a018,_0x19b17e);},'cpQMu':function(_0x3d6819,_0x4eb620){const _0xe8a365=_0x23d245;return _0x5b5167[_0xe8a365(0x4ca)](_0x3d6819,_0x4eb620);},'ELmFm':function(_0x2a4dca,_0x8e9682){const _0x19cb95=_0x23d245;return _0x5b5167[_0x19cb95(0xa29)](_0x2a4dca,_0x8e9682);},'dZOnu':_0x5b5167[_0x23d245(0x37f)],'tvzsM':function(_0x5d3b47,_0x25c92d){const _0x312b69=_0x83a6d5;return _0x5b5167[_0x312b69(0x439)](_0x5d3b47,_0x25c92d);},'tYyxb':function(_0xdea48f,_0x300b41){const _0x26254c=_0x83a6d5;return _0x5b5167[_0x26254c(0x802)](_0xdea48f,_0x300b41);},'ErkUt':function(_0x5891fe,_0x3dc4f2){const _0x37f046=_0x1aa257;return _0x5b5167[_0x37f046(0xa70)](_0x5891fe,_0x3dc4f2);},'iCTeF':function(_0x7cdeed,_0xf592f2){const _0x2f2a63=_0x1aa257;return _0x5b5167[_0x2f2a63(0xba8)](_0x7cdeed,_0xf592f2);},'GkjnB':function(_0x1d9cbe,_0x3529a5){const _0x5e6e1f=_0x1aa257;return _0x5b5167[_0x5e6e1f(0xbf5)](_0x1d9cbe,_0x3529a5);},'pxCJc':_0x5b5167[_0x21aa8e(0x2f6)],'MdNLW':function(_0x49277e,_0x5abd03){const _0x3f4b89=_0x21aa8e;return _0x5b5167[_0x3f4b89(0x766)](_0x49277e,_0x5abd03);},'Qtkob':function(_0x593a34,_0x88f22a){const _0xb07fb5=_0x1f0087;return _0x5b5167[_0xb07fb5(0xef0)](_0x593a34,_0x88f22a);},'fluFp':function(_0x551171,_0x4a6c71){const _0x705937=_0x83a6d5;return _0x5b5167[_0x705937(0x4ca)](_0x551171,_0x4a6c71);},'DewWR':_0x5b5167[_0x23d245(0xb7d)],'mliOJ':function(_0x199fef,_0x431877){const _0x527052=_0x21aa8e;return _0x5b5167[_0x527052(0x912)](_0x199fef,_0x431877);},'AHXIB':function(_0x896934,_0x583d3b){const _0xf778c6=_0x1f0087;return _0x5b5167[_0xf778c6(0x799)](_0x896934,_0x583d3b);},'jsRWR':_0x5b5167[_0x1f0087(0x2fb)],'jcmvG':function(_0x1d6f9f,_0xd057a7){const _0x1a7a8a=_0x83a6d5;return _0x5b5167[_0x1a7a8a(0xb3d)](_0x1d6f9f,_0xd057a7);},'IsUNf':function(_0x3a4760,_0x42dfd8){const _0x4d0aeb=_0x21aa8e;return _0x5b5167[_0x4d0aeb(0x912)](_0x3a4760,_0x42dfd8);},'xWmBW':_0x5b5167[_0x1f0087(0xf28)],'hIgpJ':function(_0xefa5d5,_0x5122e7){const _0x498870=_0x1aa257;return _0x5b5167[_0x498870(0xe76)](_0xefa5d5,_0x5122e7);},'bnxkz':_0x5b5167[_0x83a6d5(0x1ee)],'VMeRr':function(_0xc55070,_0x24c7c2){const _0x42bd0f=_0x1f0087;return _0x5b5167[_0x42bd0f(0xae5)](_0xc55070,_0x24c7c2);},'aHlmZ':function(_0xb5dd27,_0xdd70f9){const _0x2db2f7=_0x1aa257;return _0x5b5167[_0x2db2f7(0x998)](_0xb5dd27,_0xdd70f9);},'fuQcz':_0x5b5167[_0x21aa8e(0x6a5)],'xDTRc':function(_0x527fa3,_0x17a5a7){const _0x3c3e02=_0x1aa257;return _0x5b5167[_0x3c3e02(0xb3d)](_0x527fa3,_0x17a5a7);},'TfAwJ':function(_0x571fba,_0x101031){const _0x4eb572=_0x83a6d5;return _0x5b5167[_0x4eb572(0xe76)](_0x571fba,_0x101031);},'svsZP':function(_0x465283,_0x2d6bd3){const _0x4b2f82=_0x1aa257;return _0x5b5167[_0x4b2f82(0x2c4)](_0x465283,_0x2d6bd3);},'APSSZ':_0x5b5167[_0x1aa257(0x875)],'KDgRE':function(_0x4ae57b,_0x2ecde7){const _0x5a1b34=_0x21aa8e;return _0x5b5167[_0x5a1b34(0x9a0)](_0x4ae57b,_0x2ecde7);},'YzcuM':_0x5b5167[_0x1f0087(0x466)],'fHchI':function(_0x25bc09,_0x1954b5){const _0x42ced3=_0x83a6d5;return _0x5b5167[_0x42ced3(0xf2e)](_0x25bc09,_0x1954b5);},'bOHKe':function(_0x5043a2,_0x15ae3e){const _0x20ed72=_0x1f0087;return _0x5b5167[_0x20ed72(0xa78)](_0x5043a2,_0x15ae3e);},'agHXy':function(_0x3a859c,_0x4a0433){const _0x47f79e=_0x23d245;return _0x5b5167[_0x47f79e(0x369)](_0x3a859c,_0x4a0433);},'IGdxH':_0x5b5167[_0x1f0087(0x68d)],'iKFok':function(_0x3a13b2,_0x59e3fc){const _0x1a43d1=_0x83a6d5;return _0x5b5167[_0x1a43d1(0xce7)](_0x3a13b2,_0x59e3fc);},'IhWSM':_0x5b5167[_0x21aa8e(0x74f)],'ckdah':function(_0x4126f5,_0x43b2d1){const _0x51571f=_0x21aa8e;return _0x5b5167[_0x51571f(0xba8)](_0x4126f5,_0x43b2d1);},'hAbSy':function(_0x3635ec,_0x421a2a){const _0x352adc=_0x83a6d5;return _0x5b5167[_0x352adc(0xa70)](_0x3635ec,_0x421a2a);},'FxMsQ':function(_0x45c236,_0x9ff4ed){const _0x463ea4=_0x21aa8e;return _0x5b5167[_0x463ea4(0x9a0)](_0x45c236,_0x9ff4ed);},'nNJRT':_0x5b5167[_0x23d245(0x84c)],'NBJiX':function(_0x383d37,_0x164564){const _0x33e88c=_0x1f0087;return _0x5b5167[_0x33e88c(0x93d)](_0x383d37,_0x164564);},'hrzgx':function(_0x3b0091,_0x4d8e4c){const _0x19a29e=_0x1f0087;return _0x5b5167[_0x19a29e(0xefa)](_0x3b0091,_0x4d8e4c);},'UfUiu':function(_0x31184c,_0x3a5c1f){const _0x3c0a10=_0x1f0087;return _0x5b5167[_0x3c0a10(0xb3d)](_0x31184c,_0x3a5c1f);},'eJggi':function(_0x423f70,_0x5bf726){const _0x550bf3=_0x1f0087;return _0x5b5167[_0x550bf3(0x5d1)](_0x423f70,_0x5bf726);},'COTnM':function(_0x89ee38,_0x9752be){const _0xf9aa3c=_0x21aa8e;return _0x5b5167[_0xf9aa3c(0x43a)](_0x89ee38,_0x9752be);},'sJdUo':function(_0x234a81,_0x5251e6){const _0x1ba082=_0x23d245;return _0x5b5167[_0x1ba082(0x912)](_0x234a81,_0x5251e6);},'SHStR':_0x5b5167[_0x21aa8e(0x97c)],'hvOkA':function(_0x56e14f,_0x165df7){const _0x390528=_0x1f0087;return _0x5b5167[_0x390528(0xcfc)](_0x56e14f,_0x165df7);},'zYEWM':_0x5b5167[_0x83a6d5(0xbfe)],'xdsJO':function(_0x580616,_0x23caca){const _0x2cb669=_0x23d245;return _0x5b5167[_0x2cb669(0xba8)](_0x580616,_0x23caca);},'ygQfB':function(_0x3ed2ca,_0x5f1324){const _0x40d9cd=_0x1aa257;return _0x5b5167[_0x40d9cd(0x9a0)](_0x3ed2ca,_0x5f1324);},'NdgOF':function(_0x49140f,_0x1fd5ce){const _0x267798=_0x1aa257;return _0x5b5167[_0x267798(0xf1f)](_0x49140f,_0x1fd5ce);},'vdXFF':_0x5b5167[_0x21aa8e(0xd00)],'dNYFG':function(_0xe3b3d8,_0x2404b9){const _0x5ec227=_0x21aa8e;return _0x5b5167[_0x5ec227(0x7f0)](_0xe3b3d8,_0x2404b9);},'XqQzY':_0x5b5167[_0x1f0087(0x8a0)],'pXtuH':function(_0x3f6785,_0xbd48f7){const _0x1266bd=_0x83a6d5;return _0x5b5167[_0x1266bd(0x2d8)](_0x3f6785,_0xbd48f7);},'tzDcJ':function(_0x192861,_0x15aa1e){const _0x4479da=_0x1f0087;return _0x5b5167[_0x4479da(0x2c4)](_0x192861,_0x15aa1e);},'LcXNH':_0x5b5167[_0x1aa257(0x35f)],'ifzBB':function(_0x536e2c,_0x178238){const _0x377ca3=_0x1aa257;return _0x5b5167[_0x377ca3(0x5b3)](_0x536e2c,_0x178238);},'RYEAm':_0x5b5167[_0x1aa257(0xf31)]};if(_0x5b5167[_0x1f0087(0xf7e)](_0x5b5167[_0x23d245(0x465)],_0x5b5167[_0x1f0087(0x465)])){if(_0xd7b4a1)return;const _0x34209a=new TextDecoder(_0x5b5167[_0x83a6d5(0xe9c)])[_0x1aa257(0x771)+'e'](_0x4391fa);return _0x34209a[_0x1f0087(0x4c7)]()[_0x1aa257(0xa49)]('\x0a')[_0x21aa8e(0xd9e)+'ch'](function(_0x4eb1aa){const _0x1951d4=_0x83a6d5,_0x496964=_0x1aa257,_0x4056eb=_0x83a6d5,_0x5b3309=_0x1f0087,_0x19a911=_0x1aa257,_0x49a88a={'ziljd':function(_0x2b49f3,_0x4efe45){const _0x52c720=_0x376c;return _0x8b491[_0x52c720(0xee5)](_0x2b49f3,_0x4efe45);},'vtjgo':_0x8b491[_0x1951d4(0x749)],'yQPmo':function(_0x5e31e5,_0x4227df){const _0x19353d=_0x1951d4;return _0x8b491[_0x19353d(0xc93)](_0x5e31e5,_0x4227df);},'hSHCi':function(_0x285334,_0xa8d4ec){const _0x135a5b=_0x1951d4;return _0x8b491[_0x135a5b(0xb82)](_0x285334,_0xa8d4ec);},'rBCFR':function(_0x4781ca,_0x45920d){const _0x1be78f=_0x1951d4;return _0x8b491[_0x1be78f(0xb82)](_0x4781ca,_0x45920d);},'LSdJT':function(_0x7b1183,_0xc29a78){const _0x14d443=_0x1951d4;return _0x8b491[_0x14d443(0x6c0)](_0x7b1183,_0xc29a78);},'cPGGP':_0x8b491[_0x1951d4(0x740)],'RDISo':_0x8b491[_0x496964(0xf42)]};if(_0x8b491[_0x4056eb(0x454)](_0x8b491[_0x496964(0xe14)],_0x8b491[_0x19a911(0xe14)])){var _0x563a26=new _0x2ea395(_0x1e7461),_0x461077='';for(var _0x10733c=-0x1755+-0x123*0x3+0x1abe;_0x2bd202[_0x5b3309(0x56d)](_0x10733c,_0x563a26[_0x1951d4(0x96f)+_0x19a911(0x3b3)]);_0x10733c++){_0x461077+=_0x2b6393[_0x496964(0xe4f)+_0x1951d4(0x29a)+_0x19a911(0x58b)](_0x563a26[_0x10733c]);}return _0x461077;}else{try{if(_0x8b491[_0x4056eb(0x3e3)](_0x8b491[_0x1951d4(0xc4c)],_0x8b491[_0x5b3309(0xc4c)])){_0x419260=_0x265847[_0x1951d4(0x69d)+_0x4056eb(0x9ec)]('','(')[_0x1951d4(0x69d)+_0x19a911(0x9ec)]('',')')[_0x5b3309(0x69d)+_0x19a911(0x9ec)](':\x20',':')[_0x19a911(0x69d)+_0x19a911(0x9ec)]('',':')[_0x4056eb(0x69d)+_0x19a911(0x9ec)](',\x20',',')[_0x1951d4(0x69d)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x2ff17c=_0x4bb6b4[_0x4056eb(0x52d)+_0x4056eb(0x44a)][_0x496964(0x8b2)+'h'];_0x2bd202[_0x5b3309(0xec4)](_0x2ff17c,0x1860+0x12d6*-0x2+-0x2e*-0x4a);--_0x2ff17c){const _0x4d8b5d=_0x2bd202[_0x4056eb(0xb50)][_0x496964(0xa49)]('|');let _0x473fcc=0x8f*0x45+-0x4ed+0x14b*-0x1a;while(!![]){switch(_0x4d8b5d[_0x473fcc++]){case'0':_0x2a8447=_0x6983c5[_0x5b3309(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x5b3309(0x774)](_0x2bd202[_0x1951d4(0xae0)],_0x2bd202[_0x1951d4(0x8f2)](_0x25145d,_0x2ff17c)),_0x2bd202[_0x5b3309(0x774)](_0x2bd202[_0x5b3309(0xd30)],_0x2bd202[_0x1951d4(0x78c)](_0x14c272,_0x2ff17c)));continue;case'1':_0x9b2810=_0xe52f24[_0x5b3309(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x5b3309(0x6c1)](_0x2bd202[_0x19a911(0xdc4)],_0x2bd202[_0x4056eb(0xe55)](_0x161c11,_0x2ff17c)),_0x2bd202[_0x5b3309(0x547)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x19a911(0x8f2)](_0x4a5675,_0x2ff17c)));continue;case'2':_0x5f49eb=_0x6b063b[_0x4056eb(0x69d)+_0x496964(0x9ec)](_0x2bd202[_0x1951d4(0xaa6)](_0x2bd202[_0x496964(0xb0d)],_0x2bd202[_0x1951d4(0x557)](_0x471175,_0x2ff17c)),_0x2bd202[_0x5b3309(0x27d)](_0x2bd202[_0x5b3309(0xd30)],_0x2bd202[_0x19a911(0x8f2)](_0x518a81,_0x2ff17c)));continue;case'3':_0x330bf6=_0x548b22[_0x19a911(0x69d)+_0x19a911(0x9ec)](_0x2bd202[_0x4056eb(0xa80)](_0x2bd202[_0x1951d4(0xda7)],_0x2bd202[_0x4056eb(0xbbf)](_0x456a3f,_0x2ff17c)),_0x2bd202[_0x496964(0xb32)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x5b3309(0x78c)](_0x2c0416,_0x2ff17c)));continue;case'4':_0x1a0828=_0x5d7423[_0x19a911(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x496964(0x2aa)](_0x2bd202[_0x1951d4(0x7cf)],_0x2bd202[_0x4056eb(0x82a)](_0x304e31,_0x2ff17c)),_0x2bd202[_0x4056eb(0x8b9)](_0x2bd202[_0x1951d4(0xd30)],_0x2bd202[_0x496964(0x578)](_0x49445b,_0x2ff17c)));continue;case'5':_0x309f65=_0x1e49c0[_0x4056eb(0x69d)+_0x4056eb(0x9ec)](_0x2bd202[_0x19a911(0x1f0)](_0x2bd202[_0x19a911(0xbf7)],_0x2bd202[_0x1951d4(0x8f2)](_0x32f239,_0x2ff17c)),_0x2bd202[_0x5b3309(0x23b)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x5b3309(0x8f2)](_0x3db62a,_0x2ff17c)));continue;case'6':_0x37ac09=_0x52b1e3[_0x1951d4(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x5b3309(0xe71)](_0x2bd202[_0x1951d4(0xcc5)],_0x2bd202[_0x496964(0xc41)](_0x35a770,_0x2ff17c)),_0x2bd202[_0x4056eb(0xafa)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x1951d4(0x6e9)](_0x5ebfb8,_0x2ff17c)));continue;case'7':_0x20a229=_0x276545[_0x5b3309(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x4056eb(0x8b9)](_0x2bd202[_0x4056eb(0x3ca)],_0x2bd202[_0x1951d4(0x5c9)](_0x536748,_0x2ff17c)),_0x2bd202[_0x5b3309(0x42a)](_0x2bd202[_0x5b3309(0xd30)],_0x2bd202[_0x19a911(0x2bc)](_0x47ba15,_0x2ff17c)));continue;case'8':_0x34bf8b=_0x495b5b[_0x5b3309(0x69d)+_0x4056eb(0x9ec)](_0x2bd202[_0x4056eb(0xc90)](_0x2bd202[_0x4056eb(0x9e6)],_0x2bd202[_0x496964(0x2ba)](_0x3930b2,_0x2ff17c)),_0x2bd202[_0x5b3309(0x774)](_0x2bd202[_0x1951d4(0xd30)],_0x2bd202[_0x1951d4(0x2ad)](_0x21e316,_0x2ff17c)));continue;case'9':_0x226e08=_0x413320[_0x4056eb(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x19a911(0x76b)](_0x2bd202[_0x4056eb(0x7cf)],_0x2bd202[_0x5b3309(0xb23)](_0x420cf5,_0x2ff17c)),_0x2bd202[_0x19a911(0xab0)](_0x2bd202[_0x4056eb(0xd30)],_0x2bd202[_0x19a911(0x8f2)](_0x2f6be4,_0x2ff17c)));continue;case'10':_0x41b4b7=_0x5d8f8e[_0x19a911(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x496964(0xc90)](_0x2bd202[_0x4056eb(0xbf8)],_0x2bd202[_0x4056eb(0x907)](_0x5ada18,_0x2ff17c)),_0x2bd202[_0x496964(0x2a4)](_0x2bd202[_0x19a911(0xd30)],_0x2bd202[_0x5b3309(0xc8b)](_0x4a9017,_0x2ff17c)));continue;case'11':_0x53130c=_0x1e7083[_0x5b3309(0x69d)+_0x19a911(0x9ec)](_0x2bd202[_0x4056eb(0x6c1)](_0x2bd202[_0x4056eb(0xdc4)],_0x2bd202[_0x1951d4(0x82a)](_0x2aff47,_0x2ff17c)),_0x2bd202[_0x496964(0x774)](_0x2bd202[_0x4056eb(0xd30)],_0x2bd202[_0x4056eb(0xb23)](_0x3d2534,_0x2ff17c)));continue;case'12':_0x5a8999=_0x1647fe[_0x19a911(0x69d)+_0x4056eb(0x9ec)](_0x2bd202[_0x19a911(0x2aa)](_0x2bd202[_0x1951d4(0xc3e)],_0x2bd202[_0x1951d4(0xbbf)](_0x101353,_0x2ff17c)),_0x2bd202[_0x5b3309(0x70b)](_0x2bd202[_0x1951d4(0xd30)],_0x2bd202[_0x19a911(0x907)](_0x82e78a,_0x2ff17c)));continue;case'13':_0x55090a=_0x281288[_0x5b3309(0x69d)+_0x19a911(0x9ec)](_0x2bd202[_0x496964(0xd70)](_0x2bd202[_0x1951d4(0x4bf)],_0x2bd202[_0x496964(0xc41)](_0x18358b,_0x2ff17c)),_0x2bd202[_0x1951d4(0xc1d)](_0x2bd202[_0x4056eb(0xd30)],_0x2bd202[_0x496964(0xc8b)](_0x3bd47a,_0x2ff17c)));continue;case'14':_0x29fb9b=_0x1a6897[_0x496964(0x69d)+_0x496964(0x9ec)](_0x2bd202[_0x4056eb(0x8ba)](_0x2bd202[_0x1951d4(0x37a)],_0x2bd202[_0x4056eb(0x4cf)](_0x5253e0,_0x2ff17c)),_0x2bd202[_0x496964(0xd70)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x4056eb(0x578)](_0x4e8118,_0x2ff17c)));continue;case'15':_0x1b305c=_0x1ba19f[_0x19a911(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x5b3309(0x23b)](_0x2bd202[_0x1951d4(0x5d8)],_0x2bd202[_0x496964(0xe2b)](_0x509cfe,_0x2ff17c)),_0x2bd202[_0x19a911(0x2aa)](_0x2bd202[_0x5b3309(0xd30)],_0x2bd202[_0x5b3309(0x907)](_0x3ce602,_0x2ff17c)));continue;case'16':_0x23e7ca=_0x3ef0f2[_0x5b3309(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x5b3309(0xd7b)](_0x2bd202[_0x19a911(0x611)],_0x2bd202[_0x1951d4(0xc41)](_0x10438b,_0x2ff17c)),_0x2bd202[_0x4056eb(0xa26)](_0x2bd202[_0x19a911(0xd30)],_0x2bd202[_0x4056eb(0x1f4)](_0x326207,_0x2ff17c)));continue;case'17':_0x2eeca6=_0x39a9fc[_0x1951d4(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x5b3309(0x218)](_0x2bd202[_0x496964(0xc9e)],_0x2bd202[_0x1951d4(0x82a)](_0x3c4e5c,_0x2ff17c)),_0x2bd202[_0x19a911(0x1f0)](_0x2bd202[_0x4056eb(0xd30)],_0x2bd202[_0x19a911(0x64a)](_0x4a86b8,_0x2ff17c)));continue;case'18':_0x30f9bc=_0x1a21f3[_0x1951d4(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x5b3309(0xaa6)](_0x2bd202[_0x1951d4(0x4c6)],_0x2bd202[_0x4056eb(0x6f5)](_0x23a450,_0x2ff17c)),_0x2bd202[_0x496964(0x1f0)](_0x2bd202[_0x1951d4(0xd30)],_0x2bd202[_0x1951d4(0x3c6)](_0x5eea2b,_0x2ff17c)));continue;case'19':_0x45c94f=_0x51203e[_0x1951d4(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x19a911(0x37e)](_0x2bd202[_0x496964(0xbe4)],_0x2bd202[_0x19a911(0xc8b)](_0x47a0f0,_0x2ff17c)),_0x2bd202[_0x496964(0x23b)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x5b3309(0x907)](_0x420cc0,_0x2ff17c)));continue;case'20':_0x3cded7=_0x5032cd[_0x4056eb(0x69d)+_0x496964(0x9ec)](_0x2bd202[_0x5b3309(0x9ef)](_0x2bd202[_0x4056eb(0x2e0)],_0x2bd202[_0x1951d4(0x45e)](_0x559699,_0x2ff17c)),_0x2bd202[_0x496964(0xe63)](_0x2bd202[_0x496964(0xd30)],_0x2bd202[_0x5b3309(0x3f6)](_0x512f3e,_0x2ff17c)));continue;case'21':_0x5afa3f=_0x5007cb[_0x1951d4(0x69d)+_0x5b3309(0x9ec)](_0x2bd202[_0x19a911(0x8b9)](_0x2bd202[_0x19a911(0xa55)],_0x2bd202[_0x4056eb(0x3c6)](_0x17f50c,_0x2ff17c)),_0x2bd202[_0x19a911(0xabd)](_0x2bd202[_0x5b3309(0xd30)],_0x2bd202[_0x5b3309(0x265)](_0x373d4a,_0x2ff17c)));continue;case'22':_0x320648=_0x53d35b[_0x4056eb(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x4056eb(0x9b8)](_0x2bd202[_0x5b3309(0xbe4)],_0x2bd202[_0x5b3309(0x333)](_0x29d158,_0x2ff17c)),_0x2bd202[_0x4056eb(0xb5f)](_0x2bd202[_0x1951d4(0xd30)],_0x2bd202[_0x5b3309(0x907)](_0x383313,_0x2ff17c)));continue;case'23':_0x4ce464=_0x1bc4df[_0x4056eb(0x69d)+_0x496964(0x9ec)](_0x2bd202[_0x4056eb(0x712)](_0x2bd202[_0x496964(0xf65)],_0x2bd202[_0x19a911(0xc8b)](_0x2bdc52,_0x2ff17c)),_0x2bd202[_0x4056eb(0x5cd)](_0x2bd202[_0x19a911(0xd30)],_0x2bd202[_0x19a911(0xe2b)](_0x5a25f3,_0x2ff17c)));continue;case'24':_0x542b29=_0xad7c5f[_0x5b3309(0x69d)+_0x1951d4(0x9ec)](_0x2bd202[_0x5b3309(0x70b)](_0x2bd202[_0x19a911(0x261)],_0x2bd202[_0x19a911(0xb86)](_0xff3541,_0x2ff17c)),_0x2bd202[_0x5b3309(0x42a)](_0x2bd202[_0x4056eb(0xd30)],_0x2bd202[_0x1951d4(0x61e)](_0x3bcd76,_0x2ff17c)));continue;}break;}}_0x588905=_0x2bd202[_0x496964(0x6f5)](_0x2ce911,_0x31da29);for(let _0x48a03f=_0x9736a0[_0x19a911(0x52d)+_0x1951d4(0x44a)][_0x4056eb(0x8b2)+'h'];_0x2bd202[_0x19a911(0x9a4)](_0x48a03f,0x6*-0x13+-0x13*0xbf+-0xc5*-0x13);--_0x48a03f){_0x164670=_0x434367[_0x496964(0x69d)+'ce'](_0x2bd202[_0x5b3309(0xa80)](_0x2bd202[_0x19a911(0x5ca)],_0x2bd202[_0x496964(0x557)](_0x19d5fd,_0x48a03f)),_0x3c1573[_0x4056eb(0x52d)+_0x4056eb(0x44a)][_0x48a03f]),_0x4a0ae3=_0x2cf4ed[_0x5b3309(0x69d)+'ce'](_0x2bd202[_0x19a911(0x7e4)](_0x2bd202[_0x5b3309(0xe0b)],_0x2bd202[_0x5b3309(0x606)](_0x1adc1,_0x48a03f)),_0x495afd[_0x496964(0x52d)+_0x1951d4(0x44a)][_0x48a03f]),_0x348f75=_0x2c979d[_0x496964(0x69d)+'ce'](_0x2bd202[_0x19a911(0x989)](_0x2bd202[_0x4056eb(0x63b)],_0x2bd202[_0x4056eb(0x1f4)](_0x43dceb,_0x48a03f)),_0x153c09[_0x5b3309(0x52d)+_0x5b3309(0x44a)][_0x48a03f]);}return _0x2f2f24=_0x19dc61[_0x4056eb(0x69d)+_0x1951d4(0x9ec)]('[]',''),_0x576c98=_0x1cbc6c[_0x4056eb(0x69d)+_0x5b3309(0x9ec)]('((','('),_0x4b2ac9=_0x4f61b1[_0x4056eb(0x69d)+_0x496964(0x9ec)]('))',')'),_0x52b4de=_0x5464c8[_0x5b3309(0x69d)+_0x19a911(0x9ec)]('(\x0a','\x0a'),_0x6ad801;}else document[_0x4056eb(0x5de)+_0x4056eb(0xf3d)+_0x1951d4(0xa93)](_0x8b491[_0x496964(0x5d3)])[_0x5b3309(0xe91)+_0x496964(0xebc)]=document[_0x4056eb(0x5de)+_0x19a911(0xf3d)+_0x4056eb(0xa93)](_0x8b491[_0x4056eb(0x5d3)])[_0x4056eb(0xe91)+_0x496964(0x4a2)+'ht'];}catch(_0x20cf8b){}_0x37e994='';if(_0x8b491[_0x1951d4(0xdb0)](_0x4eb1aa[_0x5b3309(0x8b2)+'h'],-0x593+0x184e+-0x12b5))_0x37e994=_0x4eb1aa[_0x496964(0xe3b)](-0x28e*-0x7+-0x1b8*-0x12+-0x15b*0x24);if(_0x8b491[_0x496964(0xcd2)](_0x37e994,_0x8b491[_0x1951d4(0x33c)])){if(_0x8b491[_0x4056eb(0x956)](_0x8b491[_0x5b3309(0xdd9)],_0x8b491[_0x1951d4(0xdd9)])){const _0x2ca444=_0x8b491[_0x496964(0xd4f)][_0x19a911(0xa49)]('|');let _0x48c610=0x253c+0x25c3+-0x4aff;while(!![]){switch(_0x2ca444[_0x48c610++]){case'0':const _0x2f95a9={};_0x2f95a9[_0x496964(0xc59)]=_0x8b491[_0x5b3309(0x5c1)],_0x2f95a9[_0x5b3309(0x91a)+'nt']=_0x2e3cd4,word_last[_0x5b3309(0xbe6)](_0x2f95a9);continue;case'1':return;case'2':document[_0x5b3309(0x5de)+_0x5b3309(0xf3d)+_0x5b3309(0xa93)](_0x8b491[_0x4056eb(0x398)])[_0x19a911(0x619)]='';continue;case'3':const _0x594af4={};_0x594af4[_0x4056eb(0xc59)]=_0x8b491[_0x496964(0x63c)],_0x594af4[_0x19a911(0x91a)+'nt']=chatTemp,word_last[_0x4056eb(0xbe6)](_0x594af4);continue;case'4':lock_chat=-0x230c+-0x1401+0x370d;continue;}break;}}else _0x522bd1=_0x51346c[_0x496964(0xd22)](_0x49a88a[_0x19a911(0x970)](_0x16bf64,_0x34f3bc))[_0x49a88a[_0x19a911(0x8ca)]],_0x3dd198='';}let _0x405ff1;try{if(_0x8b491[_0x4056eb(0x454)](_0x8b491[_0x5b3309(0x6a8)],_0x8b491[_0x19a911(0xdc8)]))try{if(_0x8b491[_0x5b3309(0x58e)](_0x8b491[_0x4056eb(0xc45)],_0x8b491[_0x19a911(0x356)]))_0x405ff1=JSON[_0x5b3309(0xd22)](_0x8b491[_0x1951d4(0xbd7)](_0x159262,_0x37e994))[_0x8b491[_0x1951d4(0x749)]],_0x159262='';else return-0x694+0xf*-0x27+-0x46f*-0x2;}catch(_0x4abf18){if(_0x8b491[_0x19a911(0x454)](_0x8b491[_0x1951d4(0x901)],_0x8b491[_0x19a911(0x54b)]))_0x405ff1=JSON[_0x5b3309(0xd22)](_0x37e994)[_0x8b491[_0x4056eb(0x749)]],_0x159262='';else return new _0x303b9f(_0x474d43=>_0x16f518(_0x474d43,_0x2b3126));}else{if(_0x49a88a[_0x4056eb(0xc54)](_0x49a88a[_0x4056eb(0x970)](_0x49a88a[_0x5b3309(0x970)](_0x49a88a[_0x1951d4(0x6e7)](_0x49a88a[_0x4056eb(0x75a)](_0x49a88a[_0x4056eb(0x8c9)](_0x4be01f,_0x239299[_0x1951d4(0xeef)][_0x2551ee]),'\x0a'),_0x49a88a[_0x5b3309(0x346)]),_0x11d965),_0x49a88a[_0x4056eb(0x7b8)])[_0x1951d4(0x8b2)+'h'],0x7*0x11c+-0x2*-0xd79+0x99e*-0x3))_0x5026df+=_0x49a88a[_0x496964(0x8c9)](_0x86ae0[_0x4056eb(0xeef)][_0x42e713],'\x0a');}}catch(_0x4b0b12){if(_0x8b491[_0x19a911(0x88d)](_0x8b491[_0x4056eb(0xb3e)],_0x8b491[_0x4056eb(0xb3e)]))_0x159262+=_0x37e994;else{let _0x40ac0d=-0x163d+-0x1064+-0x383*-0xb;for(let _0x225aa6 of _0x338aa3){_0x40ac0d+=_0x225aa6[_0x4056eb(0x91a)+'nt'][_0x5b3309(0x8b2)+'h'];}return _0x40ac0d;}}_0x405ff1&&_0x8b491[_0x1951d4(0xdb0)](_0x405ff1[_0x19a911(0x8b2)+'h'],-0x35c+0x1*0x1fe+-0xe*-0x19)&&_0x405ff1[-0x15bb+-0x4eb*0x2+0x1f91*0x1][_0x496964(0x83f)][_0x496964(0x91a)+'nt']&&(_0x8b491[_0x4056eb(0x956)](_0x8b491[_0x4056eb(0xf58)],_0x8b491[_0x1951d4(0x882)])?(_0x4eb8bb=_0x173319[_0x19a911(0xd22)](_0x15da32)[_0x49a88a[_0x5b3309(0x8ca)]],_0x41529a=''):chatTemp+=_0x405ff1[0xb9d+0x558+-0x1*0x10f5][_0x496964(0x83f)][_0x4056eb(0x91a)+'nt']),chatTemp=chatTemp[_0x496964(0x69d)+_0x1951d4(0x9ec)]('\x0a\x0a','\x0a')[_0x1951d4(0x69d)+_0x5b3309(0x9ec)]('\x0a\x0a','\x0a'),document[_0x1951d4(0x5de)+_0x1951d4(0xf3d)+_0x19a911(0xa93)](_0x8b491[_0x4056eb(0x923)])[_0x496964(0xdde)+_0x19a911(0x4ea)]='',_0x8b491[_0x1951d4(0xb67)](markdownToHtml,_0x8b491[_0x1951d4(0x5af)](beautify,chatTemp),document[_0x19a911(0x5de)+_0x5b3309(0xf3d)+_0x1951d4(0xa93)](_0x8b491[_0x4056eb(0x923)])),document[_0x19a911(0x93e)+_0x4056eb(0x48f)+_0x496964(0x9b1)](_0x8b491[_0x5b3309(0x245)])[_0x1951d4(0xdde)+_0x496964(0x4ea)]=_0x8b491[_0x1951d4(0x4a5)](_0x8b491[_0x496964(0xd95)](_0x8b491[_0x5b3309(0x85c)](prev_chat,_0x8b491[_0x496964(0x612)]),document[_0x4056eb(0x5de)+_0x1951d4(0xf3d)+_0x1951d4(0xa93)](_0x8b491[_0x19a911(0x923)])[_0x4056eb(0xdde)+_0x496964(0x4ea)]),_0x8b491[_0x496964(0x22f)]);}}),_0x357f1b[_0x83a6d5(0x67b)]()[_0x21aa8e(0x95c)](_0xb82ce9);}else _0x1c96a9[_0x21aa8e(0x985)+_0x83a6d5(0xd3f)+_0x83a6d5(0x708)](),_0x2bd202[_0x21aa8e(0xe33)](_0x215daa,_0x2bd202[_0x21aa8e(0x3b0)]);});}else(function(){return![];}[_0x22cd2a(0xf53)+_0x3a5b4e(0xcf3)+'r'](eLiVcz[_0x3fb31b(0x687)](eLiVcz[_0x3d1b82(0xf71)],eLiVcz[_0x25092e(0xcbd)]))[_0x22cd2a(0xd6d)](eLiVcz[_0x3d1b82(0xec7)]));})[_0x1c1e4c(0x670)](_0x2660a9=>{const _0x3f74df=_0x165c58,_0x17fc1e=_0x1a0942,_0x47218e=_0x1c1e4c,_0xd1ccca=_0x47f705,_0xd4e086=_0x20b918;_0x1315bd[_0x3f74df(0x822)](_0x1315bd[_0x3f74df(0x3ec)],_0x1315bd[_0x47218e(0x3ec)])?_0x366482[_0x17fc1e(0x79c)](_0x5b5167[_0x3f74df(0x551)],_0x4093bd):console[_0xd4e086(0x79c)](_0x1315bd[_0x17fc1e(0x462)],_0x2660a9);});}});}function getContentLength(_0x3262b3){const _0x2568e6=_0x405bf8,_0x2a2363=_0x183a03,_0x1f36ec=_0x405bf8,_0x2a0fae=_0x1d760c,_0x175cd4=_0x1d760c,_0x50cc95={};_0x50cc95[_0x2568e6(0x8aa)]=_0x2a2363(0x517)+':',_0x50cc95[_0x1f36ec(0x1e7)]=function(_0x48080f,_0x4a92d8){return _0x48080f!==_0x4a92d8;},_0x50cc95[_0x2a0fae(0x65a)]=_0x1f36ec(0xf45),_0x50cc95[_0x1f36ec(0xa60)]=_0x2a2363(0xf88);const _0x285efb=_0x50cc95;let _0x1ff698=-0x1b6f+-0x681*-0x6+-0xb97;for(let _0x24ea41 of _0x3262b3){_0x285efb[_0x1f36ec(0x1e7)](_0x285efb[_0x1f36ec(0x65a)],_0x285efb[_0x2a2363(0xa60)])?_0x1ff698+=_0x24ea41[_0x2568e6(0x91a)+'nt'][_0x2568e6(0x8b2)+'h']:_0x5444ae[_0x2568e6(0x79c)](_0x285efb[_0x2a2363(0x8aa)],_0x2e714f);}return _0x1ff698;}function trimArray(_0x2dbabe,_0x5d9c16){const _0x3aa06f=_0x3af234,_0x399a02=_0x4241f5,_0x1338f7=_0x405bf8,_0x5f3d41=_0x405bf8,_0x5d80cf=_0x3af234,_0x16fc74={'vOABn':function(_0x3a18a8,_0x451c20){return _0x3a18a8>_0x451c20;},'NbyQF':function(_0x11869d,_0x12b6a5){return _0x11869d(_0x12b6a5);},'JJfWh':function(_0x18d487,_0x30d843){return _0x18d487===_0x30d843;},'ZVfMS':_0x3aa06f(0xdee)};while(_0x16fc74[_0x3aa06f(0xca5)](_0x16fc74[_0x399a02(0xaab)](getContentLength,_0x2dbabe),_0x5d9c16)){if(_0x16fc74[_0x399a02(0x663)](_0x16fc74[_0x1338f7(0x58a)],_0x16fc74[_0x399a02(0x58a)]))_0x2dbabe[_0x399a02(0xc48)]();else return _0x3d6f43&&_0xe3b3b7[_0x3aa06f(0x4c7)]();}}function send_modalchat(_0x23f695,_0x443923){const _0x28a81e=_0x4241f5,_0x1e11c9=_0x4241f5,_0x801bee=_0x183a03,_0x9d11ff=_0x3af234,_0x38a13b=_0x183a03,_0x265b50={'BTulX':function(_0x5b98a0,_0x13c8ee){return _0x5b98a0>_0x13c8ee;},'FMCjt':function(_0xee7ada,_0x451ff8){return _0xee7ada(_0x451ff8);},'ysLBz':_0x28a81e(0x6c9)+_0x28a81e(0x562),'apKHV':function(_0x4ae32f,_0x317ce5){return _0x4ae32f+_0x317ce5;},'JSQtM':_0x1e11c9(0x4e0)+_0x1e11c9(0xcab)+_0x9d11ff(0xd67)+_0x28a81e(0x96b)+_0x1e11c9(0xe20)+_0x38a13b(0xa58)+_0x38a13b(0x57d)+_0x801bee(0xa64)+_0x38a13b(0xe1b)+_0x1e11c9(0x503)+_0x9d11ff(0x8f0),'DYGSE':_0x38a13b(0x337)+_0x28a81e(0x221),'NRCTe':_0x1e11c9(0x8c1),'NaNJS':_0x801bee(0xf10),'lagQF':function(_0x492226,_0x2af968){return _0x492226+_0x2af968;},'mUYyL':function(_0x179d91,_0x4ffaa1){return _0x179d91+_0x4ffaa1;},'KZXSK':_0x28a81e(0x6c9),'TGwTo':_0x28a81e(0xd54),'PdCqg':_0x38a13b(0x2ec)+'','gHKRw':_0x801bee(0x4ac)+_0x38a13b(0x8e4)+_0x801bee(0x855)+_0x28a81e(0xb75)+_0x1e11c9(0x5e4)+_0x9d11ff(0xc4e)+_0x1e11c9(0xe17)+_0x1e11c9(0xd3c)+_0x28a81e(0xdbe)+_0x801bee(0xf66)+_0x9d11ff(0xd65)+_0x9d11ff(0x668)+_0x38a13b(0xeb9),'WpZdx':function(_0x16099b,_0x5ba262){return _0x16099b!=_0x5ba262;},'TKcIE':function(_0x2b1a99,_0x37e1c1,_0x1b48cb){return _0x2b1a99(_0x37e1c1,_0x1b48cb);},'FCZpI':_0x801bee(0x20b)+_0x38a13b(0x3fe)+_0x1e11c9(0xcef)+_0x28a81e(0x5f7)+_0x1e11c9(0x580)+_0x28a81e(0xb52),'RTNWx':function(_0x57d7ae,_0x15d618){return _0x57d7ae(_0x15d618);},'qLNpN':_0x801bee(0x751)+_0x801bee(0x718)+'结束','kTQhd':function(_0x1f54f9,_0x47010b){return _0x1f54f9+_0x47010b;},'gPoTX':_0x28a81e(0x451)+'es','MIBLJ':function(_0x498c68,_0x45db86){return _0x498c68(_0x45db86);},'XNoRj':function(_0x5dca92,_0x4e88ef){return _0x5dca92!==_0x4e88ef;},'KzJDB':_0x28a81e(0x314),'dZGHJ':_0x38a13b(0xade),'FWiBL':function(_0x4fd401,_0x25789f){return _0x4fd401+_0x25789f;},'RpHEh':function(_0x5aeab4,_0x246d1d){return _0x5aeab4+_0x246d1d;},'iTrRD':function(_0x2ba9ab,_0x4fa39d,_0x480d92){return _0x2ba9ab(_0x4fa39d,_0x480d92);},'snsuj':function(_0x29b918,_0x195805){return _0x29b918+_0x195805;},'OXdcl':function(_0x310a31,_0x379f0a){return _0x310a31!==_0x379f0a;},'oOfSu':_0x9d11ff(0xa5e),'ALOfC':_0x28a81e(0x40a),'atuCk':_0x28a81e(0xb46)+_0x28a81e(0xb69),'iWYwh':function(_0x436bcd,_0x48fcf6){return _0x436bcd+_0x48fcf6;},'SxcWX':function(_0x255b4e,_0x2849f9){return _0x255b4e+_0x2849f9;},'XgXhX':function(_0x2bfd23,_0x5a2b89){return _0x2bfd23+_0x5a2b89;},'syYkE':function(_0x3de6a8,_0x15c3af){return _0x3de6a8+_0x15c3af;},'zCMlG':_0x28a81e(0xe5b)+_0x9d11ff(0xca4)+_0x28a81e(0xcbf)+_0x28a81e(0x6ef)+_0x38a13b(0xe2f)+'\x22>','kGtVO':_0x1e11c9(0x4f3),'mJKVg':_0x9d11ff(0xed8)+_0x28a81e(0xd67)+_0x28a81e(0x59d)+_0x28a81e(0x910),'ymWGC':_0x28a81e(0x872),'MzYJy':_0x9d11ff(0x53d),'pkdgu':_0x28a81e(0xc96)+'>','twjef':_0x38a13b(0x6c9)+_0x1e11c9(0xe4d),'JDEan':function(_0xe17a9a,_0x384332){return _0xe17a9a!==_0x384332;},'rPPvU':_0x28a81e(0x3b6),'hqioy':_0x28a81e(0x4ad),'QNkiI':function(_0x1f3ffc,_0x135f35){return _0x1f3ffc>_0x135f35;},'BmCkE':function(_0x1bf5db,_0x59894d){return _0x1bf5db+_0x59894d;},'peDBB':function(_0x1dcfff,_0x5aff8d){return _0x1dcfff+_0x5aff8d;},'Zkicn':function(_0x19fed4,_0x2f0439){return _0x19fed4===_0x2f0439;},'yGUSw':_0x1e11c9(0x36f),'UDpzg':_0x38a13b(0x443),'qRzBl':_0x9d11ff(0x2bf),'BLFhq':_0x9d11ff(0xdb2),'gozok':function(_0x36b755,_0x209e9f){return _0x36b755+_0x209e9f;},'WjqOr':function(_0x13628f,_0x5006e1){return _0x13628f(_0x5006e1);},'FKnON':_0x801bee(0x36c)+_0x38a13b(0xbba),'RKAEy':_0x9d11ff(0xe8f)+_0x28a81e(0xb9f),'uHnJZ':_0x9d11ff(0x5b6),'EyqcH':function(_0x14bb6b,_0x55ec6e){return _0x14bb6b<_0x55ec6e;},'UxOgB':function(_0x5a1960,_0x4c12b8){return _0x5a1960+_0x4c12b8;},'cfVpm':function(_0x594f77,_0x4af8a6){return _0x594f77+_0x4af8a6;},'OJXxT':function(_0x32b568,_0x32a391){return _0x32b568+_0x32a391;},'DDMGu':_0x28a81e(0xd69)+_0x9d11ff(0xd4e)+_0x801bee(0x285)+_0x1e11c9(0x1e4),'EaWAc':_0x28a81e(0xcb3)+_0x9d11ff(0xcd9)+_0x38a13b(0xa0b)+_0x1e11c9(0x5b0)+_0x38a13b(0xd03)+_0x9d11ff(0xae9)+'\x20)','wDwSI':function(_0x4f7a33){return _0x4f7a33();},'ZanWO':_0x9d11ff(0x7b2),'gbEKz':_0x9d11ff(0xdb1),'oRrpo':_0x9d11ff(0xae8),'pbiis':_0x9d11ff(0x79c),'sefOf':_0x1e11c9(0x6d6)+_0x28a81e(0xd60),'MwnHZ':_0x38a13b(0x988),'DlQnK':_0x28a81e(0xe2e),'gYBbW':_0x801bee(0x9bb),'vpBHx':_0x801bee(0x351),'Epohk':function(_0x5bd369,_0x27e4db){return _0x5bd369+_0x27e4db;},'qzjOI':_0x38a13b(0x20b)+_0x38a13b(0x3fe)+_0x801bee(0xcef)+_0x801bee(0x945)+_0x38a13b(0x874)+_0x28a81e(0xd6b)+_0x28a81e(0xf87)+_0x9d11ff(0x753)+_0x38a13b(0x91f)+_0x1e11c9(0xc77)+_0x28a81e(0x297)+_0x28a81e(0x94a)+_0x28a81e(0x75f)+_0x38a13b(0x868)+_0x28a81e(0xe42)+_0x9d11ff(0x22a)+_0x1e11c9(0x929),'BKRiz':_0x9d11ff(0x2e7)+_0x9d11ff(0x821)+_0x1e11c9(0xbec)+')','OOXzj':_0x801bee(0xb42)+_0x9d11ff(0x7da)+_0x28a81e(0x236)+_0x28a81e(0xb58)+_0x9d11ff(0x971)+_0x38a13b(0xcc4)+_0x801bee(0x8e0),'ziBow':_0x38a13b(0x6f3),'jzdbp':_0x801bee(0x7d2),'gcmfO':_0x801bee(0xedd),'somEh':function(_0x1dbf38){return _0x1dbf38();},'HjHkC':function(_0x1cf83c,_0x522661,_0x181b11){return _0x1cf83c(_0x522661,_0x181b11);},'zPaZB':_0x38a13b(0x35b),'QpYpQ':_0x9d11ff(0xb60),'OjEHj':function(_0xeb6b4,_0x5afb88){return _0xeb6b4!==_0x5afb88;},'pBiDP':_0x801bee(0x440),'DNLwW':function(_0x39f505,_0x127db0){return _0x39f505>_0x127db0;},'tHfpA':function(_0x48988f,_0x55be7c){return _0x48988f==_0x55be7c;},'UqMIh':_0x801bee(0xe45)+']','zaloi':function(_0x5ad67a,_0x223ef6){return _0x5ad67a!==_0x223ef6;},'WSiRF':_0x38a13b(0x2c5),'yeVcC':_0x38a13b(0xb53)+_0x801bee(0xc15),'Qeumy':_0x801bee(0x6c9)+_0x1e11c9(0xa7c)+'t','PTiwM':_0x1e11c9(0xed7)+_0x38a13b(0x646),'zrZSt':_0x28a81e(0xab5),'UZkDk':_0x28a81e(0x777),'JOSfP':_0x9d11ff(0x8d3),'TNpnd':_0x28a81e(0xa5a),'nCPOW':_0x38a13b(0xb27),'KCqFx':_0x28a81e(0x44e),'CxuUB':_0x801bee(0x75b),'oTkHg':_0x1e11c9(0xc10)+'pt','LlVJS':_0x38a13b(0xe5b)+_0x9d11ff(0xca4)+_0x38a13b(0xcbf)+_0x9d11ff(0x2d1)+_0x1e11c9(0x844),'QqgLo':_0x801bee(0x2b4),'HXQpv':_0x801bee(0x1e8),'tiyPm':function(_0x4e54dd,_0x133c1c){return _0x4e54dd===_0x133c1c;},'LFYCh':_0x38a13b(0x893),'NtmdX':_0x38a13b(0x517)+':','oEdlR':_0x9d11ff(0x92f),'vdIVm':function(_0x859e48,_0x4e783a,_0x205931){return _0x859e48(_0x4e783a,_0x205931);},'jntWq':_0x9d11ff(0x607),'vVIfk':function(_0x6e77d7,_0x2c5f48){return _0x6e77d7(_0x2c5f48);},'zzTpp':_0x38a13b(0x2a5)+_0x1e11c9(0xe02),'keoSR':_0x38a13b(0x301)+'\x0a','jqoHZ':_0x9d11ff(0xb70)+_0x9d11ff(0xd99)+_0x38a13b(0x599)+_0x9d11ff(0xd34)+_0x28a81e(0x9d5),'IbeYs':_0x1e11c9(0xb77)+_0x1e11c9(0x4b4)+_0x28a81e(0xdbc)+_0x38a13b(0x608)+'e=','vHMgo':function(_0x5497fd,_0x3f349f){return _0x5497fd!==_0x3f349f;},'QbyCT':_0x1e11c9(0xd6e),'dXxsA':_0x28a81e(0x392),'JqQwY':function(_0x4e881a,_0x57c7f7){return _0x4e881a+_0x57c7f7;},'WqnxJ':_0x28a81e(0x60b)+'','gyqOF':function(_0x55614b,_0xde22df){return _0x55614b+_0xde22df;},'JZgib':_0x9d11ff(0x866)+'\x0a','wrhWw':function(_0x57d1e9,_0x1044aa){return _0x57d1e9<_0x1044aa;},'DCnfn':_0x38a13b(0x960),'gNGHn':function(_0x2dd434,_0x45c3ff){return _0x2dd434+_0x45c3ff;},'GjmmY':function(_0x59319f,_0x1338de){return _0x59319f+_0x1338de;},'KHrrd':_0x9d11ff(0x457),'bqKHt':function(_0xfbd5aa,_0x4d8e0e){return _0xfbd5aa+_0x4d8e0e;},'ljXCU':_0x801bee(0xced),'ludyj':_0x801bee(0xb1c)+'\x0a','UajsV':function(_0x45e47e,_0x5c3746){return _0x45e47e===_0x5c3746;},'GukJc':_0x801bee(0x481),'hOVxe':function(_0x26ef64,_0x5517d2){return _0x26ef64+_0x5517d2;},'XbQKl':_0x9d11ff(0xb61)+'\x0a','UhuKv':_0x801bee(0x3a8),'dhMvR':_0x38a13b(0xea2),'HZfwM':function(_0x531e73,_0x7a20c1){return _0x531e73===_0x7a20c1;},'LnuSW':_0x9d11ff(0xa44),'FthmV':function(_0x4779c5,_0x1ad68b){return _0x4779c5+_0x1ad68b;},'MWBxQ':function(_0x3c5aba,_0x3c8a36){return _0x3c5aba+_0x3c8a36;},'VwuOp':function(_0x4e174d,_0x792364){return _0x4e174d+_0x792364;},'FJptF':function(_0x12741f,_0x4244f0){return _0x12741f+_0x4244f0;},'UWSWX':_0x1e11c9(0x9f8)+'m','sdqKs':_0x28a81e(0x55b)+_0x38a13b(0x2d4)+_0x28a81e(0xbf1)+_0x1e11c9(0xe26)+_0x9d11ff(0x33e)+_0x9d11ff(0x887)+'何人','kymoR':_0x28a81e(0xb4f),'CrWae':_0x1e11c9(0xe85)+_0x28a81e(0xd0a)+_0x801bee(0x7bf),'CIkvn':function(_0x2d399b,_0x407540){return _0x2d399b(_0x407540);},'RXADd':function(_0x4d34be,_0x34b8a8,_0x1a1cfb){return _0x4d34be(_0x34b8a8,_0x1a1cfb);},'HTZWs':function(_0x4578fb,_0x2bb196){return _0x4578fb(_0x2bb196);},'GRqsj':function(_0x397fee,_0x2e6e57){return _0x397fee+_0x2e6e57;},'LqvFr':function(_0x185229,_0x30c7da){return _0x185229+_0x30c7da;},'REroC':function(_0x1bfe12,_0x212abd,_0x368ef3){return _0x1bfe12(_0x212abd,_0x368ef3);}};let _0x4f9911=document[_0x1e11c9(0x5de)+_0x801bee(0xf3d)+_0x9d11ff(0xa93)](_0x265b50[_0x801bee(0x220)])[_0x1e11c9(0x619)];if(_0x23f695){if(_0x265b50[_0x1e11c9(0x1f9)](_0x265b50[_0x38a13b(0x450)],_0x265b50[_0x801bee(0x450)])){const _0x52f710={'kRtTD':function(_0x234614,_0xd35305){const _0x3108bd=_0x38a13b;return _0x265b50[_0x3108bd(0x315)](_0x234614,_0xd35305);},'JtorQ':function(_0x281062,_0x2ab2ac){const _0x38dc97=_0x38a13b;return _0x265b50[_0x38dc97(0xf9d)](_0x281062,_0x2ab2ac);},'weLqW':_0x265b50[_0x38a13b(0xe4a)],'HJueP':function(_0x4095cc,_0x162c85){const _0x2a6976=_0x801bee;return _0x265b50[_0x2a6976(0x401)](_0x4095cc,_0x162c85);},'JlDZe':function(_0x2b9ee0,_0x1e6dda){const _0x465cf3=_0x9d11ff;return _0x265b50[_0x465cf3(0x401)](_0x2b9ee0,_0x1e6dda);},'GbsVU':_0x265b50[_0x1e11c9(0x331)],'FgvKu':_0x265b50[_0x38a13b(0x448)]},_0x3f6b42={'method':_0x265b50[_0x801bee(0xba0)],'headers':_0xf337f0,'body':_0x265b50[_0x801bee(0xf9d)](_0x2e0f69,_0x19c4f8[_0x1e11c9(0xdfb)+_0x801bee(0x22d)]({'messages':[{'role':_0x265b50[_0x9d11ff(0x293)],'content':_0x265b50[_0x1e11c9(0x2b2)](_0x265b50[_0x9d11ff(0x2b2)](_0x265b50[_0x38a13b(0x2b2)](_0x265b50[_0x28a81e(0x4c1)](_0x57edae[_0x801bee(0x5de)+_0x1e11c9(0xf3d)+_0x801bee(0xa93)](_0x265b50[_0x801bee(0x1fd)])[_0x9d11ff(0xdde)+_0x38a13b(0x4ea)][_0x38a13b(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x801bee(0x69d)+'ce'](/<hr.*/gs,'')[_0x28a81e(0x69d)+'ce'](/<[^>]+>/g,'')[_0x1e11c9(0x69d)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x265b50[_0x28a81e(0x647)]),_0x298199),_0x265b50[_0x801bee(0xd7f)])},{'role':_0x265b50[_0x28a81e(0x293)],'content':_0x265b50[_0x801bee(0x4fa)]}][_0x28a81e(0x84f)+'t'](_0x402152),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x265b50[_0x1e11c9(0x613)](_0x116ef9[_0x1e11c9(0x5de)+_0x38a13b(0xf3d)+_0x9d11ff(0xa93)](_0x265b50[_0x801bee(0xe4a)])[_0x38a13b(0xdde)+_0x9d11ff(0x4ea)],''))return;_0x265b50[_0x9d11ff(0xef4)](_0x23c252,_0x265b50[_0x28a81e(0xdbd)],_0x3f6b42)[_0x1e11c9(0x95c)](_0x4427dc=>_0x4427dc[_0x1e11c9(0x943)]())[_0x28a81e(0x95c)](_0x567d76=>{const _0xa465f=_0x1e11c9,_0x445da7=_0x28a81e,_0x50ee18=_0x38a13b,_0x259aea=_0x9d11ff,_0x5a3a1d=_0x28a81e,_0x4ce665={'nQLnw':function(_0x160f50,_0x3c207c){const _0x2f313c=_0x376c;return _0x52f710[_0x2f313c(0xf0b)](_0x160f50,_0x3c207c);},'Xevit':function(_0x2413be,_0x2ef30a){const _0x2771ba=_0x376c;return _0x52f710[_0x2771ba(0x894)](_0x2413be,_0x2ef30a);},'dorbd':_0x52f710[_0xa465f(0xf2f)],'jurGy':function(_0x384386,_0x2a0d5a){const _0x2798f2=_0xa465f;return _0x52f710[_0x2798f2(0xf19)](_0x384386,_0x2a0d5a);},'YuCah':function(_0x28bd26,_0x28df5e){const _0x48719d=_0xa465f;return _0x52f710[_0x48719d(0x555)](_0x28bd26,_0x28df5e);},'HYyNO':_0x52f710[_0xa465f(0x4e8)],'hKizM':function(_0x1f62f2,_0x3ea939){const _0x400129=_0xa465f;return _0x52f710[_0x400129(0x894)](_0x1f62f2,_0x3ea939);},'GpSDq':_0x52f710[_0x445da7(0xa87)]};_0x2ff7b6[_0xa465f(0xd22)](_0x567d76[_0x5a3a1d(0x451)+'es'][-0x1c5*-0xf+0xc38+0x26c3*-0x1][_0x50ee18(0x878)+'ge'][_0x50ee18(0x91a)+'nt'][_0xa465f(0x69d)+_0x5a3a1d(0x9ec)]('\x0a',''))[_0x259aea(0xd9e)+'ch'](_0x193416=>{const _0x565b7b=_0x5a3a1d,_0x48cc01=_0xa465f,_0x5e9f97=_0xa465f,_0x2f337d=_0x259aea,_0x43a16b=_0x5a3a1d;if(_0x4ce665[_0x565b7b(0x211)](_0x4ce665[_0x48cc01(0xf37)](_0x47fc61,_0x193416)[_0x565b7b(0x8b2)+'h'],0x71*-0x5+-0x137+0x371))_0x281011[_0x5e9f97(0x5de)+_0x565b7b(0xf3d)+_0x565b7b(0xa93)](_0x4ce665[_0x48cc01(0xba1)])[_0x43a16b(0xdde)+_0x43a16b(0x4ea)]+=_0x4ce665[_0x2f337d(0x64b)](_0x4ce665[_0x48cc01(0xe43)](_0x4ce665[_0x2f337d(0x56f)],_0x4ce665[_0x2f337d(0x34e)](_0x221966,_0x193416)),_0x4ce665[_0x565b7b(0xa6d)]);});})[_0x28a81e(0x670)](_0x4db529=>_0x1714b9[_0x38a13b(0x79c)](_0x4db529)),_0x57315e=_0x265b50[_0x38a13b(0x401)](_0x4b47ce,'\x0a\x0a'),_0xef69d4=-(0x105a+0x356+0x13af*-0x1);}else _0x4f9911=_0x23f695[_0x801bee(0x696)+_0x1e11c9(0x7ee)+'t'],_0x23f695[_0x38a13b(0x233)+'e']();}if(_0x265b50[_0x1e11c9(0xea0)](_0x4f9911[_0x801bee(0x8b2)+'h'],0xd06*0x2+0x120e+-0x469*0xa)||_0x265b50[_0x801bee(0xa02)](_0x4f9911[_0x9d11ff(0x8b2)+'h'],-0x1a81+-0x2*-0x493+0x11e7*0x1))return;_0x265b50[_0x801bee(0xe4c)](trimArray,word_last,-0x115*-0x1c+-0x2542+0x8ea);if(_0x265b50[_0x801bee(0x613)](lock_chat,0x28b*-0x5+-0x1*0x502+-0x15d*-0xd)){if(_0x265b50[_0x9d11ff(0x2f1)](_0x265b50[_0x28a81e(0x39c)],_0x265b50[_0x801bee(0x39c)])){_0x265b50[_0x1e11c9(0xcc8)](_0x299973,_0x265b50[_0x38a13b(0xb71)]);return;}else{_0x265b50[_0x9d11ff(0xe4e)](alert,_0x265b50[_0x9d11ff(0xb71)]);return;}}lock_chat=0x1*0x16d4+-0x225b+0x148*0x9;const _0x4437e8=_0x265b50[_0x38a13b(0x3cf)](_0x265b50[_0x28a81e(0x3ba)](_0x265b50[_0x1e11c9(0x435)](document[_0x1e11c9(0x5de)+_0x1e11c9(0xf3d)+_0x38a13b(0xa93)](_0x265b50[_0x801bee(0x1fd)])[_0x38a13b(0xdde)+_0x801bee(0x4ea)][_0x38a13b(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x1e11c9(0x69d)+'ce'](/<hr.*/gs,'')[_0x9d11ff(0x69d)+'ce'](/<[^>]+>/g,'')[_0x801bee(0x69d)+'ce'](/\n\n/g,'\x0a'),_0x265b50[_0x801bee(0xe9a)]),search_queryquery),_0x265b50[_0x9d11ff(0xd90)]);let _0x407eff;if(document[_0x801bee(0x5de)+_0x28a81e(0xf3d)+_0x1e11c9(0xa93)](_0x265b50[_0x801bee(0x6b5)])[_0x9d11ff(0xc31)][_0x28a81e(0x244)+_0x28a81e(0x7ce)](_0x265b50[_0x1e11c9(0x633)])){if(_0x265b50[_0x28a81e(0x3bd)](_0x265b50[_0x801bee(0x806)],_0x265b50[_0x801bee(0x429)])){_0x407eff=_0x265b50[_0x1e11c9(0x6ca)](_0x265b50[_0x9d11ff(0x73b)](_0x265b50[_0x38a13b(0xd0b)],article[_0x28a81e(0xf98)]),'\x0a'),_0x407eff=_0x265b50[_0x801bee(0xe2c)](_0x407eff,_0x265b50[_0x1e11c9(0x7fc)]),sentences[_0x1e11c9(0x796)]((_0x212038,_0x2cd680)=>{const _0x5d9b7f=_0x38a13b,_0x1cadf4=_0x801bee,_0x41dfca=_0x801bee,_0x492295=_0x38a13b,_0xac60bd=_0x1e11c9,_0x37ebce={'eQWps':function(_0x5908de,_0x5c2380){const _0x334fde=_0x376c;return _0x265b50[_0x334fde(0x804)](_0x5908de,_0x5c2380);}};if(_0x265b50[_0x5d9b7f(0x4ae)](_0x265b50[_0x5d9b7f(0x38a)],_0x265b50[_0x5d9b7f(0x487)])){if(_0x265b50[_0x492295(0x315)](_0x265b50[_0x41dfca(0xef4)](cosineSimilarity,_0x265b50[_0x1cadf4(0x3cf)](_0x265b50[_0x1cadf4(0x6b4)](_0x4f9911,'\x20'),_0x443923),_0x212038[-0x1*-0x411+0x1a6b*-0x1+0x165b]),_0x265b50[_0x5d9b7f(0x497)](cosineSimilarity,_0x265b50[_0x492295(0x3df)](_0x265b50[_0x5d9b7f(0x6b4)](_0x4f9911,'\x20'),_0x443923),_0x2cd680[-0x1c83+-0x431*0x2+0x24e6]))){if(_0x265b50[_0x41dfca(0x1f9)](_0x265b50[_0xac60bd(0xe06)],_0x265b50[_0x41dfca(0xe06)]))throw _0x5eb513;else return-(0x237d+0x7*-0x45e+0x4a*-0x11);}else{if(_0x265b50[_0xac60bd(0x4ae)](_0x265b50[_0x492295(0x7f2)],_0x265b50[_0x492295(0x7f2)]))_0x3cd958=_0x56829e[_0x41dfca(0xd22)](_0x265b50[_0x1cadf4(0x435)](_0x229939,_0x565ea2))[_0x265b50[_0xac60bd(0xa27)]],_0x5da59e='';else return 0x1*0x247c+0x1*0x66d+-0x8*0x55d;}}else{if(_0x181b8d)return _0x2f516c;else AIHAKp[_0x5d9b7f(0x55e)](_0x545e9b,-0x30b*-0xb+0x1112+-0x328b);}});for(let _0x2d7dac=-0x1*-0x1ddd+0x1*0xcf1+0x2ace*-0x1;_0x265b50[_0x28a81e(0xa81)](_0x2d7dac,Math[_0x9d11ff(0x556)](0xcea+-0x749*0x4+0x1040,sentences[_0x38a13b(0x8b2)+'h']));++_0x2d7dac){if(_0x265b50[_0x9d11ff(0x4ae)](_0x265b50[_0x9d11ff(0x9cc)],_0x265b50[_0x28a81e(0x9cc)])){_0x265b50[_0x38a13b(0x804)](_0x1ce01c,_0x265b50[_0x9d11ff(0xb71)]);return;}else{if(_0x265b50[_0x801bee(0xea0)](keytextres[_0x38a13b(0x21b)+'Of'](sentences[_0x2d7dac][-0x1d30+0x1*0x1b2e+0x203]),-(-0x13a*0xc+0xa14+0x4a5*0x1)))keytextres[_0x9d11ff(0x6bb)+'ft'](_0x265b50[_0x9d11ff(0x4f7)](_0x265b50[_0x38a13b(0xbb0)](_0x265b50[_0x801bee(0x9c1)](_0x265b50[_0x801bee(0xd38)](_0x265b50[_0x9d11ff(0x3cf)](_0x265b50[_0x38a13b(0x4f7)](_0x265b50[_0x38a13b(0xdd3)](_0x265b50[_0x9d11ff(0x2b2)]('',_0x265b50[_0x9d11ff(0xe4e)](String,sentences[_0x2d7dac][-0xfc9+0x35*0x2e+0x643])),''),sentences[_0x2d7dac][-0x254d*-0x1+0x167*0x14+-0x4157]),''),_0x265b50[_0x38a13b(0xcc8)](String,sentences[_0x2d7dac][0x28e+0x60*0xc+0x3*-0x259])),'行:'),sentences[_0x2d7dac][-0x46c*-0x2+-0x6fd+-0x1da]),'\x0a'));}}}else return-(0x416*-0x5+-0x1ea*0xb+0x297d);}else{if(_0x265b50[_0x801bee(0x6ea)](_0x265b50[_0x801bee(0xf4f)],_0x265b50[_0x9d11ff(0xf4f)])){_0x407eff=_0x265b50[_0x1e11c9(0x6b4)](_0x265b50[_0x38a13b(0x4cd)](_0x265b50[_0x38a13b(0xdad)](_0x265b50[_0x28a81e(0xd7a)],article[_0x9d11ff(0xf98)]),'\x0a'),_0x265b50[_0x9d11ff(0x287)]);for(el in modalele){if(_0x265b50[_0x1e11c9(0xe83)](_0x265b50[_0x9d11ff(0x586)],_0x265b50[_0x801bee(0x586)])){if(_0x265b50[_0x1e11c9(0xa81)](_0x265b50[_0x1e11c9(0x435)](_0x265b50[_0x9d11ff(0xee8)](_0x407eff,modalele[el]),'\x0a')[_0x1e11c9(0x8b2)+'h'],0x799+0x2*0xb65+-0x1adf*0x1))_0x407eff=_0x265b50[_0x28a81e(0xee8)](_0x265b50[_0x28a81e(0x345)](_0x407eff,modalele[el]),'\x0a');}else _0x7bde4c+=_0x4a8713[0x2a1*-0xb+0x22c8+0x1*-0x5dd][_0x9d11ff(0x83f)][_0x1e11c9(0x91a)+'nt'];}_0x407eff=_0x265b50[_0x1e11c9(0xee8)](_0x407eff,_0x265b50[_0x1e11c9(0x7ca)]),fulltext[_0x38a13b(0x796)]((_0xc0840f,_0x23c809)=>{const _0x23173d=_0x801bee,_0x1c41fc=_0x801bee,_0x10bc67=_0x38a13b,_0x9ca5d1=_0x801bee,_0x58f34f=_0x28a81e,_0xbe6a7b={};_0xbe6a7b[_0x23173d(0xde2)]=_0x265b50[_0x1c41fc(0xe6f)];const _0x472a22=_0xbe6a7b;if(_0x265b50[_0x23173d(0x328)](_0x265b50[_0x9ca5d1(0x9fc)],_0x265b50[_0x9ca5d1(0xa5f)])){if(_0x265b50[_0x1c41fc(0xe8b)](_0x265b50[_0x9ca5d1(0x497)](cosineSimilarity,_0x265b50[_0x9ca5d1(0x9c1)](_0x265b50[_0x9ca5d1(0x2b2)](_0x4f9911,'\x20'),_0x443923),_0xc0840f),_0x265b50[_0x23173d(0xef4)](cosineSimilarity,_0x265b50[_0x10bc67(0x4c1)](_0x265b50[_0x1c41fc(0x536)](_0x4f9911,'\x20'),_0x443923),_0x23c809))){if(_0x265b50[_0x58f34f(0x8cb)](_0x265b50[_0x1c41fc(0xed2)],_0x265b50[_0x10bc67(0x4af)])){const _0x373f04=_0x427531[_0x9ca5d1(0xd6d)](_0x466ca3,arguments);return _0x1f7042=null,_0x373f04;}else return-(0x2516+-0xcfe+-0x371*0x7);}else{if(_0x265b50[_0x1c41fc(0x4ae)](_0x265b50[_0x10bc67(0x6fa)],_0x265b50[_0x1c41fc(0x223)]))return-0x11*0x176+-0x711+0x1fe8;else _0x5727d2[_0x9ca5d1(0x5de)+_0x58f34f(0xf3d)+_0x10bc67(0xa93)](_0x472a22[_0x9ca5d1(0xde2)])[_0x10bc67(0xe91)+_0x9ca5d1(0xebc)]=_0x4b8235[_0x1c41fc(0x5de)+_0x23173d(0xf3d)+_0x23173d(0xa93)](_0x472a22[_0x23173d(0xde2)])[_0x58f34f(0xe91)+_0x1c41fc(0x4a2)+'ht'];}}else _0x1d0529[_0x9ca5d1(0x93e)+_0x58f34f(0x48f)+_0x10bc67(0x9b1)](_0x265b50[_0x23173d(0x8e5)])[_0x58f34f(0xdde)+_0x58f34f(0x4ea)]=_0x265b50[_0x10bc67(0x3cf)](_0x265b50[_0x10bc67(0xd38)](_0x265b50[_0x23173d(0x3df)](_0x265b50[_0x1c41fc(0x622)](_0x265b50[_0x23173d(0x4f7)](_0x265b50[_0x9ca5d1(0x4cd)](_0x585b8b,_0x265b50[_0x58f34f(0x49a)]),_0x265b50[_0x10bc67(0x408)]),_0x265b50[_0x1c41fc(0xb1d)]),_0x265b50[_0x58f34f(0xd58)]),_0x265b50[_0x9ca5d1(0xf04)]),_0x265b50[_0x9ca5d1(0xa1c)]);});for(let _0x3d16b7=-0x1b24+-0xc26+0x274a;_0x265b50[_0x9d11ff(0xa81)](_0x3d16b7,Math[_0x38a13b(0x556)](-0x1ba8+0x13b8*0x1+-0x4*-0x1fd,fulltext[_0x1e11c9(0x8b2)+'h']));++_0x3d16b7){if(_0x265b50[_0x1e11c9(0x3bd)](_0x265b50[_0x1e11c9(0x7f9)],_0x265b50[_0x1e11c9(0x5b5)])){if(_0x265b50[_0x28a81e(0xea0)](keytextres[_0x1e11c9(0x21b)+'Of'](fulltext[_0x3d16b7]),-(0x2559+-0x85d*-0x2+-0x3612)))keytextres[_0x801bee(0x6bb)+'ft'](fulltext[_0x3d16b7]);}else try{_0x4f4b8b=_0x25515e[_0x801bee(0xd22)](_0x265b50[_0x801bee(0x6ca)](_0x6d55e6,_0x160fa7))[_0x265b50[_0x38a13b(0xa27)]],_0x3b3ec9='';}catch(_0x2b4c3c){_0xc87fd6=_0x2fc33e[_0x9d11ff(0xd22)](_0x4d7fd3)[_0x265b50[_0x1e11c9(0xa27)]],_0x47b5b0='';}}}else _0x4c0737+='';}keySentencesCount=-0x1489+-0x26+0x14af;for(st in keytextres){if(_0x265b50[_0x38a13b(0x231)](_0x265b50[_0x9d11ff(0xdcb)],_0x265b50[_0x1e11c9(0xdcb)])){if(_0x265b50[_0x28a81e(0xa81)](_0x265b50[_0x1e11c9(0x717)](_0x265b50[_0x28a81e(0x80b)](_0x407eff,keytextres[st]),'\x0a')[_0x1e11c9(0x8b2)+'h'],-0x3*-0x5dd+-0x102*0x26+0x1a91))_0x407eff=_0x265b50[_0x9d11ff(0x8b5)](_0x265b50[_0x1e11c9(0x602)](_0x407eff,keytextres[st]),'\x0a');keySentencesCount=_0x265b50[_0x28a81e(0x277)](keySentencesCount,-0x1a37*0x1+-0x2*0x1073+0x3b1e);}else{_0x469a28=_0x265b50[_0x801bee(0x854)](_0x572b48,_0x27a48e);const _0x2eeb8b={};return _0x2eeb8b[_0x9d11ff(0x7a7)]=_0x265b50[_0x38a13b(0x64d)],_0x479ded[_0x38a13b(0x4a3)+'e'][_0x28a81e(0xb65)+'pt'](_0x2eeb8b,_0x1c8a73,_0x1b92c8);}}const _0xb8005c={};_0xb8005c[_0x1e11c9(0xc59)]=_0x265b50[_0x9d11ff(0x307)],_0xb8005c[_0x9d11ff(0x91a)+'nt']=_0x265b50[_0x28a81e(0x5f6)];const _0x30f1b7={};_0x30f1b7[_0x38a13b(0xc59)]=_0x265b50[_0x9d11ff(0xa15)],_0x30f1b7[_0x801bee(0x91a)+'nt']=_0x407eff,mes=[_0xb8005c,_0x30f1b7],mes=mes[_0x38a13b(0x84f)+'t'](word_last),mes=mes[_0x9d11ff(0x84f)+'t']([{'role':_0x265b50[_0x38a13b(0x293)],'content':_0x265b50[_0x9d11ff(0x6ca)](_0x265b50[_0x38a13b(0x622)](_0x265b50[_0x801bee(0xddb)],_0x4f9911),_0x265b50[_0x28a81e(0x6da)])}]);const _0x27c6fd={'method':_0x265b50[_0x9d11ff(0xba0)],'headers':headers,'body':_0x265b50[_0x28a81e(0x684)](b64EncodeUnicode,JSON[_0x9d11ff(0xdfb)+_0x801bee(0x22d)]({'messages':mes[_0x1e11c9(0x84f)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x0,'stream':!![]}))};_0x4f9911=_0x4f9911[_0x38a13b(0x69d)+_0x1e11c9(0x9ec)]('\x0a\x0a','\x0a')[_0x801bee(0x69d)+_0x1e11c9(0x9ec)]('\x0a\x0a','\x0a'),document[_0x9d11ff(0x5de)+_0x1e11c9(0xf3d)+_0x801bee(0xa93)](_0x265b50[_0x38a13b(0x247)])[_0x1e11c9(0xdde)+_0x9d11ff(0x4ea)]='',_0x265b50[_0x9d11ff(0x72f)](markdownToHtml,_0x265b50[_0x28a81e(0x918)](beautify,_0x4f9911),document[_0x38a13b(0x5de)+_0x801bee(0xf3d)+_0x38a13b(0xa93)](_0x265b50[_0x1e11c9(0x247)])),chatTemp='',text_offset=-(-0x994+-0x35*0x5e+-0x5*-0x5cf),prev_chat=document[_0x28a81e(0x93e)+_0x801bee(0x48f)+_0x9d11ff(0x9b1)](_0x265b50[_0x38a13b(0x8e5)])[_0x28a81e(0xdde)+_0x801bee(0x4ea)],prev_chat=_0x265b50[_0x1e11c9(0xbbb)](_0x265b50[_0x801bee(0xe2c)](_0x265b50[_0x801bee(0x757)](prev_chat,_0x265b50[_0x801bee(0x49a)]),document[_0x38a13b(0x5de)+_0x1e11c9(0xf3d)+_0x1e11c9(0xa93)](_0x265b50[_0x38a13b(0x247)])[_0x38a13b(0xdde)+_0x38a13b(0x4ea)]),_0x265b50[_0x38a13b(0xa1c)]),_0x265b50[_0x9d11ff(0x565)](fetch,_0x265b50[_0x801bee(0xdbd)],_0x27c6fd)[_0x801bee(0x95c)](_0x3c7d1f=>{const _0x21e7fa=_0x801bee,_0x58e8c8=_0x28a81e,_0x233e8b=_0x38a13b,_0x58f229=_0x801bee,_0xab79d5=_0x38a13b,_0x65207b={'fiOFT':function(_0x416524,_0x27185f){const _0x55af69=_0x376c;return _0x265b50[_0x55af69(0xf9d)](_0x416524,_0x27185f);},'xZBLy':function(_0x5acac0,_0x3fcd5f){const _0x8df732=_0x376c;return _0x265b50[_0x8df732(0x3ba)](_0x5acac0,_0x3fcd5f);},'FazEQ':_0x265b50[_0x21e7fa(0xd8b)],'feRuZ':_0x265b50[_0x21e7fa(0xa27)],'XMndl':_0x265b50[_0x21e7fa(0x516)],'PDLpq':_0x265b50[_0x58f229(0xd4d)],'oqgRX':_0x265b50[_0x233e8b(0x994)],'PxKIW':_0x265b50[_0x233e8b(0x3e9)],'IGXlc':_0x265b50[_0x233e8b(0x2fd)],'QyuTc':function(_0x1e007f){const _0x1c9c74=_0x21e7fa;return _0x265b50[_0x1c9c74(0x4c8)](_0x1e007f);},'fOncJ':function(_0x573f2b,_0x582d4e,_0x12d733){const _0x28ccbd=_0x21e7fa;return _0x265b50[_0x28ccbd(0x6bf)](_0x573f2b,_0x582d4e,_0x12d733);},'QCCow':function(_0x5908b8,_0x31eea9){const _0xc6acf1=_0x58e8c8;return _0x265b50[_0xc6acf1(0x8cb)](_0x5908b8,_0x31eea9);},'Obach':_0x265b50[_0x233e8b(0xf61)],'fcimz':_0x265b50[_0x233e8b(0x744)],'noSnX':function(_0x5e3d98,_0x40f9e4){const _0x453179=_0x21e7fa;return _0x265b50[_0x453179(0x41c)](_0x5e3d98,_0x40f9e4);},'gzWaq':_0x265b50[_0x58f229(0x56b)],'pTjuW':_0x265b50[_0x233e8b(0xe6f)],'sqCsV':function(_0x2b8585,_0x43a57a){const _0x55f584=_0xab79d5;return _0x265b50[_0x55f584(0xa02)](_0x2b8585,_0x43a57a);},'yZxgK':function(_0x5e2c80,_0xd05cd2){const _0x1da460=_0x233e8b;return _0x265b50[_0x1da460(0xea0)](_0x5e2c80,_0xd05cd2);},'GZfxt':_0x265b50[_0x58f229(0xdc7)],'wKaJp':function(_0x524011,_0x3bde2b){const _0x1a621a=_0xab79d5;return _0x265b50[_0x1a621a(0x2f1)](_0x524011,_0x3bde2b);},'FYcbB':_0x265b50[_0x58e8c8(0x264)],'tRuie':_0x265b50[_0x21e7fa(0xf83)],'uJEWm':_0x265b50[_0x233e8b(0x293)],'kIUUz':_0x265b50[_0x21e7fa(0x220)],'oWjpD':_0x265b50[_0xab79d5(0xa15)],'zInfG':_0x265b50[_0x21e7fa(0x815)],'YEJkl':_0x265b50[_0x21e7fa(0xe38)],'dnlDR':_0x265b50[_0x233e8b(0x909)],'XQSmQ':_0x265b50[_0xab79d5(0x6be)],'RHTzX':function(_0x5e3834,_0x25d633){const _0x53e9db=_0x21e7fa;return _0x265b50[_0x53e9db(0x435)](_0x5e3834,_0x25d633);},'bBDRE':_0x265b50[_0x58f229(0x322)],'RmiEK':function(_0x481ece,_0x15f0db){const _0x1dbe1d=_0x233e8b;return _0x265b50[_0x1dbe1d(0x8cb)](_0x481ece,_0x15f0db);},'qcLVJ':_0x265b50[_0x233e8b(0xb36)],'ullvC':function(_0x84d5b2,_0x4f1104){const _0x3cb20a=_0x21e7fa;return _0x265b50[_0x3cb20a(0xa02)](_0x84d5b2,_0x4f1104);},'rxjpW':_0x265b50[_0x233e8b(0xbb4)],'fMDOC':_0x265b50[_0x21e7fa(0x247)],'VbbZv':_0x265b50[_0x233e8b(0x8e5)],'dVhEi':function(_0x4921d2,_0xd1acb2){const _0x274fea=_0x58e8c8;return _0x265b50[_0x274fea(0x6b4)](_0x4921d2,_0xd1acb2);},'mXtLA':_0x265b50[_0x58e8c8(0x554)],'OGikz':_0x265b50[_0x58e8c8(0xa1c)]};if(_0x265b50[_0x58e8c8(0x8cb)](_0x265b50[_0x233e8b(0xa65)],_0x265b50[_0x58e8c8(0xe68)]))_0x462f1c='图片';else{const _0x38c700=_0x3c7d1f[_0x233e8b(0x770)][_0x233e8b(0xc2c)+_0xab79d5(0xab3)]();let _0xca0ab7='',_0x381955='';_0x38c700[_0x21e7fa(0x67b)]()[_0xab79d5(0x95c)](function _0x409bfe({done:_0x33e645,value:_0x3ba804}){const _0x1d0eba=_0x21e7fa,_0x371bb3=_0x233e8b,_0x5374e9=_0x233e8b,_0x53b2b8=_0x233e8b,_0x4ea3bc=_0x233e8b,_0x1361d1={'hpjDR':function(_0x8d3e2,_0x48fba6,_0x2baed4){const _0x5896bb=_0x376c;return _0x265b50[_0x5896bb(0xef4)](_0x8d3e2,_0x48fba6,_0x2baed4);},'ynfLj':_0x265b50[_0x1d0eba(0x343)],'sbOLs':_0x265b50[_0x1d0eba(0x53e)],'DDHNl':function(_0x11c13d,_0x299e7f){const _0x12124f=_0x1d0eba;return _0x265b50[_0x12124f(0x576)](_0x11c13d,_0x299e7f);},'rCybe':function(_0x4bcffd,_0x3a027){const _0x2039f4=_0x371bb3;return _0x265b50[_0x2039f4(0x345)](_0x4bcffd,_0x3a027);},'Ypidh':function(_0x411c98,_0x5ebf93){const _0x4efd15=_0x371bb3;return _0x265b50[_0x4efd15(0xaaa)](_0x411c98,_0x5ebf93);},'aALdF':function(_0x4487d1,_0x1dd1b0){const _0x544b35=_0x1d0eba;return _0x265b50[_0x544b35(0x804)](_0x4487d1,_0x1dd1b0);},'zWJIg':function(_0x51f946,_0x2f3cb0){const _0x5a74e4=_0x371bb3;return _0x265b50[_0x5a74e4(0x717)](_0x51f946,_0x2f3cb0);},'QaYge':_0x265b50[_0x371bb3(0xeec)],'HtswT':_0x265b50[_0x5374e9(0x502)],'rSZFv':function(_0x8ae28c){const _0x31de68=_0x53b2b8;return _0x265b50[_0x31de68(0xd9c)](_0x8ae28c);},'IdZbX':_0x265b50[_0x5374e9(0x748)],'pHqOo':_0x265b50[_0x5374e9(0x648)],'mBKwG':_0x265b50[_0x4ea3bc(0x935)],'NnbqB':_0x265b50[_0x371bb3(0xca2)],'SbeGr':_0x265b50[_0x4ea3bc(0x292)],'BLqVv':_0x265b50[_0x371bb3(0x750)],'yjWJV':_0x265b50[_0x4ea3bc(0xa94)],'iZJab':function(_0x123918,_0x2883d4){const _0x2bbb92=_0x5374e9;return _0x265b50[_0x2bbb92(0x576)](_0x123918,_0x2883d4);}};if(_0x265b50[_0x371bb3(0x1f9)](_0x265b50[_0x53b2b8(0x1e3)],_0x265b50[_0x1d0eba(0x1e3)])){let _0x21e399;_0x65207b[_0x1d0eba(0xd44)](_0x1c7bd2,_0x65207b[_0x1d0eba(0x319)](_0x65207b[_0x53b2b8(0xd19)],_0x124960))[_0x4ea3bc(0x95c)](_0x38ce3c=>_0x38ce3c[_0x371bb3(0x943)]())[_0x4ea3bc(0x95c)](_0x3561e5=>{const _0x4fd379=_0x1d0eba,_0x1b7f70=_0x4ea3bc,_0x9aa562=_0x4ea3bc;_0x1361d1[_0x4fd379(0xa7b)](_0x2f85c8,_0x7fc590,_0x3561e5[_0x1361d1[_0x4fd379(0xf43)]][-0x1*0xe0e+-0x5*-0xb6+0x180*0x7][_0x1361d1[_0x4fd379(0x379)]]);});return;}else{if(_0x33e645)return;const _0x127601=new TextDecoder(_0x265b50[_0x1d0eba(0x55d)])[_0x53b2b8(0x771)+'e'](_0x3ba804);return _0x127601[_0x371bb3(0x4c7)]()[_0x4ea3bc(0xa49)]('\x0a')[_0x53b2b8(0xd9e)+'ch'](function(_0x5074ac){const _0x187425=_0x371bb3,_0x331690=_0x5374e9,_0x2346c9=_0x1d0eba,_0x2ef1ac=_0x4ea3bc,_0x12d775=_0x4ea3bc,_0x531f1a={'gIOBy':function(_0x34077d,_0x506a0a){const _0x35959d=_0x376c;return _0x65207b[_0x35959d(0x319)](_0x34077d,_0x506a0a);},'LPSyd':_0x65207b[_0x187425(0x9f0)],'LMStH':_0x65207b[_0x331690(0x378)],'pLpII':_0x65207b[_0x187425(0x853)],'kLYUv':function(_0x6de100,_0x5a80de){const _0x421160=_0x187425;return _0x65207b[_0x421160(0xd44)](_0x6de100,_0x5a80de);},'YcWpj':_0x65207b[_0x331690(0xf39)],'eYVzt':_0x65207b[_0x187425(0x7f6)],'FHhtK':_0x65207b[_0x187425(0x31a)],'CcAIf':function(_0x65ee32){const _0x428975=_0x12d775;return _0x65207b[_0x428975(0xd02)](_0x65ee32);},'dmGIH':function(_0x91f8b0,_0x342d6e,_0x36600a){const _0x55df5f=_0x2346c9;return _0x65207b[_0x55df5f(0xc0d)](_0x91f8b0,_0x342d6e,_0x36600a);}};if(_0x65207b[_0x2ef1ac(0xac2)](_0x65207b[_0x12d775(0x908)],_0x65207b[_0x2ef1ac(0xde0)]))_0x180e58[_0x2ef1ac(0xbe6)]([_0x52096f[_0x331690(0xd18)+'ge'],_0xb3f0f3,_0x5832a1,_0x31976e]),_0x46c630='',_0x16aa72='';else{try{if(_0x65207b[_0x2346c9(0xf01)](_0x65207b[_0x2ef1ac(0x9a8)],_0x65207b[_0x12d775(0x9a8)])){if(_0x1361d1[_0x187425(0xabf)](_0x1361d1[_0x12d775(0xbdc)](_0x1361d1[_0x2ef1ac(0xbdc)](_0x9fd809,_0x19c982[_0x22c414]),'\x0a')[_0x2346c9(0x8b2)+'h'],-0x2c*0x77+0x1b47+-0x34f))_0x1f1fe6=_0x1361d1[_0x2ef1ac(0xbdc)](_0x1361d1[_0x331690(0x2c8)](_0x136f6a,_0x5e6c75[_0x12334a]),'\x0a');}else document[_0x187425(0x5de)+_0x187425(0xf3d)+_0x12d775(0xa93)](_0x65207b[_0x187425(0x8fd)])[_0x2ef1ac(0xe91)+_0x12d775(0xebc)]=document[_0x331690(0x5de)+_0x2ef1ac(0xf3d)+_0x2346c9(0xa93)](_0x65207b[_0x331690(0x8fd)])[_0x187425(0xe91)+_0x2ef1ac(0x4a2)+'ht'];}catch(_0x2c5dac){}_0xca0ab7='';if(_0x65207b[_0x2ef1ac(0x30b)](_0x5074ac[_0x187425(0x8b2)+'h'],-0x1691+0x2f1*0xc+-0xcb5))_0xca0ab7=_0x5074ac[_0x2346c9(0xe3b)](-0x25e7+-0xdb6+0x33a3*0x1);if(_0x65207b[_0x331690(0xa91)](_0xca0ab7,_0x65207b[_0x12d775(0x61d)])){if(_0x65207b[_0x187425(0x581)](_0x65207b[_0x12d775(0x32d)],_0x65207b[_0x187425(0x32d)]))_0x3f51e0+=_0x116250;else{const _0x2f0e8c=_0x65207b[_0x12d775(0x6d9)][_0x2346c9(0xa49)]('|');let _0x5532e4=0x4*0x231+0x27e*0x8+-0x1cb4;while(!![]){switch(_0x2f0e8c[_0x5532e4++]){case'0':const _0x1a76e7={};_0x1a76e7[_0x331690(0xc59)]=_0x65207b[_0x12d775(0x730)],_0x1a76e7[_0x2ef1ac(0x91a)+'nt']=_0x4f9911,word_last[_0x12d775(0xbe6)](_0x1a76e7);continue;case'1':lock_chat=0x6*0xac+0x18bf+-0x1cc7;continue;case'2':document[_0x187425(0x5de)+_0x2ef1ac(0xf3d)+_0x2ef1ac(0xa93)](_0x65207b[_0x2ef1ac(0xe96)])[_0x2ef1ac(0x619)]='';continue;case'3':return;case'4':const _0x4e7fad={};_0x4e7fad[_0x2ef1ac(0xc59)]=_0x65207b[_0x187425(0xd8c)],_0x4e7fad[_0x2346c9(0x91a)+'nt']=chatTemp,word_last[_0x2ef1ac(0xbe6)](_0x4e7fad);continue;}break;}}}let _0x450dd3;try{if(_0x65207b[_0x187425(0x581)](_0x65207b[_0x2346c9(0xbce)],_0x65207b[_0x12d775(0xa57)]))try{if(_0x65207b[_0x2346c9(0xf01)](_0x65207b[_0x12d775(0xdca)],_0x65207b[_0x2ef1ac(0x996)]))_0x450dd3=JSON[_0x2346c9(0xd22)](_0x65207b[_0x2ef1ac(0xf7c)](_0x381955,_0xca0ab7))[_0x65207b[_0x2346c9(0x9f0)]],_0x381955='';else{var _0x3833be=new _0x151630(_0x951bc8[_0x2346c9(0x8b2)+'h']),_0x39aa33=new _0x29e333(_0x3833be);for(var _0x15838c=-0x1470+0x1021*-0x1+0x2491,_0x1fd072=_0xc2a055[_0x331690(0x8b2)+'h'];_0x1361d1[_0x2ef1ac(0xabf)](_0x15838c,_0x1fd072);_0x15838c++){_0x39aa33[_0x15838c]=_0x43e700[_0x2ef1ac(0xf2c)+_0x331690(0xa3d)](_0x15838c);}return _0x3833be;}}catch(_0x14d001){if(_0x65207b[_0x331690(0xac2)](_0x65207b[_0x187425(0x61a)],_0x65207b[_0x2ef1ac(0x61a)]))_0x450dd3=JSON[_0x187425(0xd22)](_0xca0ab7)[_0x65207b[_0x187425(0x9f0)]],_0x381955='';else{let _0x58cb4e;try{const _0x1f9245=VGrXrM[_0x2346c9(0x8a9)](_0x15629b,VGrXrM[_0x2ef1ac(0x94c)](VGrXrM[_0x12d775(0xbdc)](VGrXrM[_0x187425(0x89f)],VGrXrM[_0x187425(0x6b6)]),');'));_0x58cb4e=VGrXrM[_0x2ef1ac(0x92c)](_0x1f9245);}catch(_0x372f67){_0x58cb4e=_0x111da8;}const _0x2d68a3=_0x58cb4e[_0x12d775(0x84d)+'le']=_0x58cb4e[_0x12d775(0x84d)+'le']||{},_0x3bfb75=[VGrXrM[_0x187425(0x70e)],VGrXrM[_0x187425(0x72b)],VGrXrM[_0x187425(0xc7c)],VGrXrM[_0x2ef1ac(0xce2)],VGrXrM[_0x12d775(0xf15)],VGrXrM[_0x331690(0xa0f)],VGrXrM[_0x331690(0xa5b)]];for(let _0xed7849=-0x2e*-0xb5+-0xe*-0x5+-0x20cc;VGrXrM[_0x331690(0x2af)](_0xed7849,_0x3bfb75[_0x2ef1ac(0x8b2)+'h']);_0xed7849++){const _0x552eee=_0x2f4cf4[_0x2ef1ac(0xf53)+_0x2ef1ac(0xcf3)+'r'][_0x2346c9(0xa14)+_0x12d775(0xd82)][_0x187425(0xbcc)](_0x2612ec),_0x4b123d=_0x3bfb75[_0xed7849],_0x3730ba=_0x2d68a3[_0x4b123d]||_0x552eee;_0x552eee[_0x2346c9(0x96a)+_0x2ef1ac(0xcae)]=_0x31527f[_0x2ef1ac(0xbcc)](_0x56ddab),_0x552eee[_0x331690(0x590)+_0x2346c9(0x300)]=_0x3730ba[_0x12d775(0x590)+_0x331690(0x300)][_0x2346c9(0xbcc)](_0x3730ba),_0x2d68a3[_0x4b123d]=_0x552eee;}}}else try{_0x4ea1b7=_0x58ea85[_0x2346c9(0xd22)](_0x531f1a[_0x331690(0xe1e)](_0xd6269e,_0x493c))[_0x531f1a[_0x2346c9(0x805)]],_0x3aaf43='';}catch(_0x2db7ea){_0x6648f0=_0x1bafd9[_0x331690(0xd22)](_0x812bac)[_0x531f1a[_0x331690(0x805)]],_0x450d0e='';}}catch(_0x46ab9d){if(_0x65207b[_0x12d775(0xcf1)](_0x65207b[_0x331690(0x813)],_0x65207b[_0x2346c9(0x813)]))_0x381955+=_0xca0ab7;else{const _0x4259ca={'TGVdj':gYcwym[_0x12d775(0x339)],'ECbBV':gYcwym[_0x2ef1ac(0x350)],'SkhdC':function(_0x4d383c,_0x5de366){const _0x24e274=_0x331690;return gYcwym[_0x24e274(0x683)](_0x4d383c,_0x5de366);},'gHTGX':gYcwym[_0x187425(0x873)],'hSnNC':function(_0x32370a,_0x23daa3){const _0x309cf9=_0x2ef1ac;return gYcwym[_0x309cf9(0xe1e)](_0x32370a,_0x23daa3);},'ddlBh':gYcwym[_0x331690(0x52a)],'kHGhc':gYcwym[_0x2346c9(0x45f)],'raQJu':function(_0x208837){const _0x4f92a0=_0x331690;return gYcwym[_0x4f92a0(0xaed)](_0x208837);}};gYcwym[_0x187425(0xf52)](_0xb0e13a,this,function(){const _0x118614=_0x2346c9,_0x25031b=_0x12d775,_0x30a1ef=_0x2ef1ac,_0x2bc2b4=_0x12d775,_0x183cca=_0x2346c9,_0x46be8b=new _0x4b9589(_0x4259ca[_0x118614(0x202)]),_0xe9eb56=new _0x3e53a5(_0x4259ca[_0x118614(0x66a)],'i'),_0x13eef4=_0x4259ca[_0x30a1ef(0x529)](_0x3db7be,_0x4259ca[_0x30a1ef(0x473)]);!_0x46be8b[_0x118614(0xe40)](_0x4259ca[_0x25031b(0x592)](_0x13eef4,_0x4259ca[_0x30a1ef(0xe56)]))||!_0xe9eb56[_0x25031b(0xe40)](_0x4259ca[_0x25031b(0x592)](_0x13eef4,_0x4259ca[_0x25031b(0x5bd)]))?_0x4259ca[_0x30a1ef(0x529)](_0x13eef4,'0'):_0x4259ca[_0x118614(0x66b)](_0x2d03ff);})();}}if(_0x450dd3&&_0x65207b[_0x12d775(0xb6e)](_0x450dd3[_0x12d775(0x8b2)+'h'],0x231f+-0xe3f*-0x1+0x1*-0x315e)&&_0x450dd3[-0x1*0x44f+-0x19e1+0x1e30][_0x12d775(0x83f)][_0x187425(0x91a)+'nt']){if(_0x65207b[_0x12d775(0x581)](_0x65207b[_0x2346c9(0xe9e)],_0x65207b[_0x187425(0xe9e)]))try{_0x33b639=_0x2b4495[_0x187425(0xd22)](_0x531f1a[_0x331690(0xe1e)](_0x2cf425,_0x14f491))[_0x531f1a[_0x331690(0x805)]],_0x1e24ef='';}catch(_0x37db53){_0x105e24=_0x247a57[_0x331690(0xd22)](_0x268100)[_0x531f1a[_0x2346c9(0x805)]],_0x22be6a='';}else chatTemp+=_0x450dd3[-0x281*-0x5+-0x1495+-0x81*-0x10][_0x2ef1ac(0x83f)][_0x2ef1ac(0x91a)+'nt'];}chatTemp=chatTemp[_0x12d775(0x69d)+_0x12d775(0x9ec)]('\x0a\x0a','\x0a')[_0x2346c9(0x69d)+_0x331690(0x9ec)]('\x0a\x0a','\x0a'),document[_0x187425(0x5de)+_0x12d775(0xf3d)+_0x331690(0xa93)](_0x65207b[_0x12d775(0x82b)])[_0x2ef1ac(0xdde)+_0x2ef1ac(0x4ea)]='',_0x65207b[_0x2346c9(0xc0d)](markdownToHtml,_0x65207b[_0x331690(0xd44)](beautify,chatTemp),document[_0x187425(0x5de)+_0x187425(0xf3d)+_0x2346c9(0xa93)](_0x65207b[_0x2346c9(0x82b)])),document[_0x2ef1ac(0x93e)+_0x331690(0x48f)+_0x2ef1ac(0x9b1)](_0x65207b[_0x187425(0xe51)])[_0x331690(0xdde)+_0x187425(0x4ea)]=_0x65207b[_0x2ef1ac(0x319)](_0x65207b[_0x12d775(0x3a9)](_0x65207b[_0x12d775(0x3a9)](prev_chat,_0x65207b[_0x331690(0x9a5)]),document[_0x2ef1ac(0x5de)+_0x2ef1ac(0xf3d)+_0x331690(0xa93)](_0x65207b[_0x2346c9(0x82b)])[_0x2346c9(0xdde)+_0x2346c9(0x4ea)]),_0x65207b[_0x2346c9(0x947)]);}}),_0x38c700[_0x4ea3bc(0x67b)]()[_0x1d0eba(0x95c)](_0x409bfe);}});}})[_0x1e11c9(0x670)](_0x15e677=>{const _0x4db08b=_0x801bee,_0x5d8c3b=_0x801bee,_0x562907=_0x28a81e,_0x579f8d=_0x38a13b,_0x356d08=_0x801bee;_0x265b50[_0x4db08b(0x6ea)](_0x265b50[_0x4db08b(0xa40)],_0x265b50[_0x4db08b(0xa40)])?console[_0x562907(0x79c)](_0x265b50[_0x562907(0xb09)],_0x15e677):_0x415fb9+='';});}function send_chat(_0x40e84b){const _0x32d37c=_0x183a03,_0x4fb614=_0x1d760c,_0x2ceeae=_0x405bf8,_0x5b02a0=_0x183a03,_0xbfbcef=_0x183a03,_0xd02584={'wruIE':function(_0x16d456,_0x35cca2){return _0x16d456===_0x35cca2;},'MqkIy':_0x32d37c(0x4e7),'JZIvk':_0x32d37c(0xf5f),'rpVKX':function(_0x2cf9b1,_0x2bbb8a,_0x36de79){return _0x2cf9b1(_0x2bbb8a,_0x36de79);},'qaPlm':_0x32d37c(0xe8f)+_0x2ceeae(0xb9f),'qyAzu':_0x4fb614(0x5b6),'bVmAt':function(_0x3e5e4f,_0x447d50){return _0x3e5e4f+_0x447d50;},'UWETd':_0x5b02a0(0xb00),'czROU':_0x32d37c(0xe4b),'KoCcG':_0xbfbcef(0xd3a)+'n','tYzOQ':function(_0x2792b8,_0xc25e5c){return _0x2792b8(_0xc25e5c);},'SjSao':_0x2ceeae(0x26a),'VPPSA':_0xbfbcef(0x2dd)+_0xbfbcef(0x43b)+_0x2ceeae(0x6bd),'PSCVM':_0x4fb614(0xb6d)+'er','GUkpK':_0x4fb614(0x6c9)+_0x5b02a0(0xe4d),'EEgel':_0x32d37c(0xb63),'kFYfb':_0x5b02a0(0x540),'HCuSy':_0x2ceeae(0xbd0),'tHaCI':_0x4fb614(0x58d),'CCXqN':function(_0xa26568,_0x598066){return _0xa26568>_0x598066;},'ZotGb':function(_0xd84162,_0x1afa54){return _0xd84162==_0x1afa54;},'uqcXB':_0x5b02a0(0xe45)+']','moANe':_0x32d37c(0x6f6),'jfNsv':_0xbfbcef(0x7dd),'PyHqx':_0x5b02a0(0x461)+_0x4fb614(0xd92),'Hlbup':_0x5b02a0(0x6c9)+_0xbfbcef(0xa7c)+'t','ozcyp':_0x32d37c(0xed7)+_0x4fb614(0x646),'HewiN':_0x32d37c(0xf10),'PfSPP':function(_0x1e766d,_0x3e1b36){return _0x1e766d!==_0x3e1b36;},'vcpSn':_0x2ceeae(0x3e6),'Vielg':_0x4fb614(0x524),'DgOyx':_0x32d37c(0x2ab),'HPIkZ':_0x4fb614(0xd26),'ULviy':_0xbfbcef(0x451)+'es','ANFGB':function(_0x15d488,_0x42ccd0){return _0x15d488!==_0x42ccd0;},'TcnOT':_0x4fb614(0xd0c),'KbQkp':_0x2ceeae(0xa17),'LfIdE':function(_0x4f0ad1,_0x3fd375){return _0x4f0ad1!==_0x3fd375;},'JYuyK':_0x4fb614(0x89d),'sfRdx':_0x5b02a0(0x741),'CkTIE':function(_0x13d0d1,_0x551fa3){return _0x13d0d1>_0x551fa3;},'CcuNO':_0x2ceeae(0x700),'XErmW':_0x5b02a0(0xc10)+'pt','ocICp':_0x32d37c(0xb46)+_0x5b02a0(0xb69),'KgDDn':function(_0x381d75,_0x15e8e3){return _0x381d75+_0x15e8e3;},'hyDBo':_0xbfbcef(0xe5b)+_0x2ceeae(0xca4)+_0x4fb614(0xcbf)+_0x32d37c(0x2d1)+_0x32d37c(0x844),'Rxlpg':_0xbfbcef(0xc96)+'>','aaqJO':function(_0x42046e,_0x16b67f){return _0x42046e+_0x16b67f;},'lzxnw':_0x5b02a0(0xd69)+_0xbfbcef(0xd4e)+_0x2ceeae(0x285)+_0x5b02a0(0x1e4),'rWlvN':_0x4fb614(0xcb3)+_0x32d37c(0xcd9)+_0x4fb614(0xa0b)+_0xbfbcef(0x5b0)+_0x2ceeae(0xd03)+_0x5b02a0(0xae9)+'\x20)','fqecQ':function(_0x2545b6){return _0x2545b6();},'ymUaG':_0x4fb614(0x82f),'bAiqo':_0xbfbcef(0x5c0),'xGHwd':_0x5b02a0(0x351),'bPGip':function(_0x51507c,_0x2c119e){return _0x51507c===_0x2c119e;},'PZPEQ':_0x4fb614(0x60e),'zDaDW':_0x2ceeae(0x9b7),'CbHqN':_0x5b02a0(0x36c)+_0x2ceeae(0xbba),'ulGwB':function(_0x5550cc,_0x5298d3){return _0x5550cc!==_0x5298d3;},'AecxU':_0x2ceeae(0x8b0),'dwsjZ':_0x4fb614(0x517)+':','FBoYB':function(_0x2bf035,_0x54e8f5){return _0x2bf035==_0x54e8f5;},'OqQhj':_0x32d37c(0xb59)+'l','oJVPC':_0x5b02a0(0xd36),'AZsFM':function(_0x281982,_0x4a16f5){return _0x281982===_0x4a16f5;},'OztFr':_0x2ceeae(0xc2a),'AyBVi':function(_0x3dbda6,_0x16a4ef){return _0x3dbda6+_0x16a4ef;},'PxZzP':_0x32d37c(0x20b)+_0x32d37c(0x3fe)+_0xbfbcef(0xcef)+_0x5b02a0(0x945)+_0x5b02a0(0x874)+_0x5b02a0(0xd6b)+_0x32d37c(0xf87)+_0xbfbcef(0x753)+_0x4fb614(0x91f)+_0x4fb614(0xc77)+_0x2ceeae(0x297)+_0x32d37c(0x94a)+_0x4fb614(0x75f)+_0x4fb614(0x868)+_0x4fb614(0xe42)+_0xbfbcef(0x22a)+_0x5b02a0(0x929),'WEZBe':_0x5b02a0(0xf4e),'MLGMC':_0x2ceeae(0xc11),'eijyr':_0x5b02a0(0x280),'QZhcW':_0xbfbcef(0x2e2)+_0x2ceeae(0xbf0)+_0x32d37c(0x867)+_0x2ceeae(0x876)+_0x4fb614(0xb77)+_0xbfbcef(0x4b4)+_0x32d37c(0xdbc)+_0x2ceeae(0x608)+'e=','xaach':function(_0x22290c,_0x3ca835){return _0x22290c(_0x3ca835);},'HkPQr':_0x2ceeae(0x243),'ptyFz':_0x5b02a0(0x6dc),'bNWeE':_0x32d37c(0x2ee),'Zqbie':_0x5b02a0(0x2fa),'XADaZ':_0xbfbcef(0x9ae),'QRTeV':_0x5b02a0(0x9df),'cNfqw':_0x2ceeae(0xefb),'vYhKl':_0x32d37c(0x5ea),'IluGk':_0x5b02a0(0x604),'iDPbb':_0xbfbcef(0x344),'bXpvO':_0x32d37c(0x49c),'cVbus':_0xbfbcef(0x8b7),'YyQNk':_0xbfbcef(0x35e),'YwlLD':_0x4fb614(0x5ce),'cIgav':_0x4fb614(0x4df),'mwfbH':function(_0xf0204,_0x59e5b2){return _0xf0204!=_0x59e5b2;},'TMTPZ':_0x5b02a0(0xead),'NwiKn':_0x5b02a0(0x552),'lWPau':_0xbfbcef(0x751)+_0x32d37c(0x718)+'结束','VAUCF':function(_0x6270fe,_0x1e4218){return _0x6270fe+_0x1e4218;},'IQzHB':_0xbfbcef(0x6c9),'AfiGQ':_0x2ceeae(0x2a5)+_0x2ceeae(0xe02),'NDRGk':_0x2ceeae(0x301)+'\x0a','qyuQQ':_0x2ceeae(0x9f8)+'m','MiXVP':_0xbfbcef(0x55b)+_0x2ceeae(0x2d4)+_0xbfbcef(0xbf1)+_0x5b02a0(0xe26)+_0x5b02a0(0x33e)+_0x4fb614(0x887)+'何人','ZhXIv':_0x4fb614(0xb4f),'eteMW':_0x5b02a0(0xe85)+_0x32d37c(0xd0a)+_0x32d37c(0x7bf),'ThowO':_0x5b02a0(0x8c1),'oJZTm':function(_0x39298f,_0x1b49f7){return _0x39298f+_0x1b49f7;},'YXAyz':function(_0x4e0ef3,_0x5837d6){return _0x4e0ef3+_0x5837d6;},'kNVmj':_0x4fb614(0xe5b)+_0x32d37c(0xca4)+_0xbfbcef(0xcbf)+_0x2ceeae(0x6ef)+_0xbfbcef(0xe2f)+'\x22>','zRrDD':_0x4fb614(0x20b)+_0x2ceeae(0x3fe)+_0x4fb614(0xcef)+_0x5b02a0(0x5f7)+_0x4fb614(0x580)+_0xbfbcef(0xb52)};let _0x339b32=document[_0xbfbcef(0x5de)+_0x4fb614(0xf3d)+_0x2ceeae(0xa93)](_0xd02584[_0x5b02a0(0x1fb)])[_0x32d37c(0x619)];if(_0xd02584[_0xbfbcef(0x372)](document[_0x2ceeae(0x5de)+_0x5b02a0(0xf3d)+_0x4fb614(0xa93)](_0xd02584[_0x32d37c(0x42b)])[_0x5b02a0(0x8b8)][_0x4fb614(0xd73)+'ay'],_0xd02584[_0x2ceeae(0xe22)])){if(_0xd02584[_0x2ceeae(0x5c7)](_0xd02584[_0x32d37c(0x60c)],_0xd02584[_0x4fb614(0x60c)])){let _0x54ce89;_0xd02584[_0x5b02a0(0xe7a)](fetch,_0xd02584[_0x2ceeae(0xb48)](_0xd02584[_0xbfbcef(0xa37)],_0x339b32))[_0x32d37c(0x95c)](_0x24e94d=>_0x24e94d[_0x32d37c(0x943)]())[_0x32d37c(0x95c)](_0x3ebc42=>{const _0xde10a1=_0xbfbcef,_0x18665e=_0x32d37c,_0x552dce=_0x5b02a0,_0x264a90=_0x4fb614,_0x46ad8b=_0x2ceeae;_0xd02584[_0xde10a1(0x21d)](_0xd02584[_0xde10a1(0x665)],_0xd02584[_0x552dce(0xcfa)])?(_0x5aec78=_0xac9880[_0xde10a1(0x696)+_0x46ad8b(0x7ee)+'t'],_0x2f1261[_0x46ad8b(0x233)+'e']()):_0xd02584[_0xde10a1(0x4e4)](send_modalchat,_0x40e84b,_0x3ebc42[_0xd02584[_0x46ad8b(0xab2)]][0xa2e+-0x1be*-0xd+-0x20d4][_0xd02584[_0x46ad8b(0x26b)]]);});return;}else(function(){return!![];}[_0x2ceeae(0xf53)+_0x5b02a0(0xcf3)+'r'](WMhtdn[_0x5b02a0(0xf35)](WMhtdn[_0x4fb614(0xf8d)],WMhtdn[_0x4fb614(0x714)]))[_0x32d37c(0xa88)](WMhtdn[_0x32d37c(0x518)]));}_0x40e84b&&(_0xd02584[_0xbfbcef(0xce8)](_0xd02584[_0x2ceeae(0xebe)],_0xd02584[_0x5b02a0(0xb66)])?(_0x339b32=_0x40e84b[_0x32d37c(0x696)+_0x32d37c(0x7ee)+'t'],_0x40e84b[_0x5b02a0(0x233)+'e']()):WMhtdn[_0x32d37c(0xe7a)](_0x231b6a,'0'));regexpdf=/https?:\/\/\S+\.pdf(\?\S*)?/g;if(_0x339b32[_0x5b02a0(0x752)](regexpdf)){if(_0xd02584[_0xbfbcef(0xce8)](_0xd02584[_0x32d37c(0x736)],_0xd02584[_0x32d37c(0x736)]))_0x3bc829=_0xd02584[_0x2ceeae(0xac1)];else{pdf_url=_0x339b32[_0x4fb614(0x752)](regexpdf)[-0x206f+-0x4ca+0x2539],_0xd02584[_0x5b02a0(0x4e4)](modal_open,_0xd02584[_0xbfbcef(0xb48)](_0xd02584[_0x2ceeae(0x62c)],_0xd02584[_0xbfbcef(0x66c)](encodeURIComponent,pdf_url)),_0xd02584[_0x32d37c(0xdec)]);return;}}if(_0xd02584[_0x4fb614(0x3b4)](_0x339b32[_0x4fb614(0x8b2)+'h'],-0xe7*0x17+-0x1*0x1f09+-0x2*-0x19e5)||_0xd02584[_0x2ceeae(0xe05)](_0x339b32[_0x5b02a0(0x8b2)+'h'],0x76*-0x4+-0x1*-0x1541+-0x12dd))return;_0xd02584[_0x32d37c(0x4e4)](trimArray,word_last,-0x3*-0x5db+0x252c+0x1*-0x34c9);if(_0x339b32[_0x4fb614(0x244)+_0x2ceeae(0x7ce)]('你能')||_0x339b32[_0xbfbcef(0x244)+_0xbfbcef(0x7ce)]('讲讲')||_0x339b32[_0x4fb614(0x244)+_0x2ceeae(0x7ce)]('扮演')||_0x339b32[_0x5b02a0(0x244)+_0x5b02a0(0x7ce)]('模仿')||_0x339b32[_0x4fb614(0x244)+_0x5b02a0(0x7ce)](_0xd02584[_0x2ceeae(0x89c)])||_0x339b32[_0x4fb614(0x244)+_0x4fb614(0x7ce)]('帮我')||_0x339b32[_0x4fb614(0x244)+_0x5b02a0(0x7ce)](_0xd02584[_0x32d37c(0x764)])||_0x339b32[_0x32d37c(0x244)+_0xbfbcef(0x7ce)](_0xd02584[_0x2ceeae(0xc80)])||_0x339b32[_0x2ceeae(0x244)+_0x2ceeae(0x7ce)]('请问')||_0x339b32[_0x5b02a0(0x244)+_0x32d37c(0x7ce)]('请给')||_0x339b32[_0x32d37c(0x244)+_0x4fb614(0x7ce)]('请你')||_0x339b32[_0xbfbcef(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0x2ceeae(0x89c)])||_0x339b32[_0x2ceeae(0x244)+_0x2ceeae(0x7ce)](_0xd02584[_0x32d37c(0x89a)])||_0x339b32[_0x32d37c(0x244)+_0x2ceeae(0x7ce)](_0xd02584[_0x2ceeae(0xd41)])||_0x339b32[_0x2ceeae(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0x5b02a0(0x6e3)])||_0x339b32[_0x4fb614(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0xbfbcef(0x2c0)])||_0x339b32[_0x4fb614(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0x5b02a0(0xbc0)])||_0x339b32[_0x32d37c(0x244)+_0x4fb614(0x7ce)]('怎样')||_0x339b32[_0x32d37c(0x244)+_0xbfbcef(0x7ce)]('给我')||_0x339b32[_0x32d37c(0x244)+_0x2ceeae(0x7ce)]('如何')||_0x339b32[_0x5b02a0(0x244)+_0x5b02a0(0x7ce)]('谁是')||_0x339b32[_0x4fb614(0x244)+_0x2ceeae(0x7ce)]('查询')||_0x339b32[_0x2ceeae(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0x5b02a0(0xb81)])||_0x339b32[_0xbfbcef(0x244)+_0xbfbcef(0x7ce)](_0xd02584[_0xbfbcef(0xa98)])||_0x339b32[_0xbfbcef(0x244)+_0x5b02a0(0x7ce)](_0xd02584[_0x2ceeae(0x71a)])||_0x339b32[_0x2ceeae(0x244)+_0x4fb614(0x7ce)](_0xd02584[_0x4fb614(0x525)])||_0x339b32[_0xbfbcef(0x244)+_0x32d37c(0x7ce)]('哪个')||_0x339b32[_0x32d37c(0x244)+_0x32d37c(0x7ce)]('哪些')||_0x339b32[_0x4fb614(0x244)+_0x5b02a0(0x7ce)](_0xd02584[_0x4fb614(0xab7)])||_0x339b32[_0xbfbcef(0x244)+_0xbfbcef(0x7ce)](_0xd02584[_0x5b02a0(0x5f0)])||_0x339b32[_0xbfbcef(0x244)+_0x32d37c(0x7ce)]('啥是')||_0x339b32[_0x2ceeae(0x244)+_0x2ceeae(0x7ce)]('为啥')||_0x339b32[_0xbfbcef(0x244)+_0x2ceeae(0x7ce)]('怎么'))return _0xd02584[_0x4fb614(0x66c)](send_webchat,_0x40e84b);if(_0xd02584[_0xbfbcef(0xe24)](lock_chat,-0x1409+0x234d*-0x1+0x3756)){if(_0xd02584[_0x32d37c(0x21d)](_0xd02584[_0x2ceeae(0xcdb)],_0xd02584[_0x5b02a0(0x5a6)]))_0x44db1a='按钮';else{_0xd02584[_0x32d37c(0xe7a)](alert,_0xd02584[_0x5b02a0(0x472)]);return;}}lock_chat=-0x2632+-0x2053+-0x3eb*-0x12;const _0x1b2497=_0xd02584[_0xbfbcef(0x1d5)](_0xd02584[_0xbfbcef(0xf35)](_0xd02584[_0x5b02a0(0xf35)](document[_0x5b02a0(0x5de)+_0x5b02a0(0xf3d)+_0x32d37c(0xa93)](_0xd02584[_0x5b02a0(0xb4b)])[_0x2ceeae(0xdde)+_0xbfbcef(0x4ea)][_0x5b02a0(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x2ceeae(0x69d)+'ce'](/<hr.*/gs,'')[_0x32d37c(0x69d)+'ce'](/<[^>]+>/g,'')[_0x2ceeae(0x69d)+'ce'](/\n\n/g,'\x0a'),_0xd02584[_0x5b02a0(0x810)]),search_queryquery),_0xd02584[_0x4fb614(0xa05)]),_0x12993d={};_0x12993d[_0x2ceeae(0xc59)]=_0xd02584[_0x2ceeae(0xcd7)],_0x12993d[_0x4fb614(0x91a)+'nt']=_0xd02584[_0x5b02a0(0xe1a)];const _0x4f32cc={};_0x4f32cc[_0xbfbcef(0xc59)]=_0xd02584[_0xbfbcef(0x801)],_0x4f32cc[_0xbfbcef(0x91a)+'nt']=_0x1b2497;let _0x44e85d=[_0x12993d,_0x4f32cc];_0x44e85d=_0x44e85d[_0xbfbcef(0x84f)+'t'](word_last),_0x44e85d=_0x44e85d[_0x5b02a0(0x84f)+'t']([{'role':_0xd02584[_0xbfbcef(0x1f7)],'content':_0xd02584[_0x5b02a0(0x456)](_0xd02584[_0x5b02a0(0xf35)](_0xd02584[_0x4fb614(0x3f2)],_0x339b32),_0xd02584[_0x4fb614(0x659)])}]);const _0x59646e={'method':_0xd02584[_0x32d37c(0xc5b)],'headers':headers,'body':_0xd02584[_0xbfbcef(0xe7a)](b64EncodeUnicode,JSON[_0x2ceeae(0xdfb)+_0x32d37c(0x22d)]({'messages':_0x44e85d[_0x2ceeae(0x84f)+'t'](add_system),'max_tokens':0x3e8,'temperature':0.9,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x1,'stream':!![]}))};_0x339b32=_0x339b32[_0x32d37c(0x69d)+_0x2ceeae(0x9ec)]('\x0a\x0a','\x0a')[_0x4fb614(0x69d)+_0x2ceeae(0x9ec)]('\x0a\x0a','\x0a'),document[_0x4fb614(0x5de)+_0x5b02a0(0xf3d)+_0xbfbcef(0xa93)](_0xd02584[_0x32d37c(0x2f5)])[_0x4fb614(0xdde)+_0x2ceeae(0x4ea)]='',_0xd02584[_0xbfbcef(0x4e4)](markdownToHtml,_0xd02584[_0x2ceeae(0xe7a)](beautify,_0x339b32),document[_0x4fb614(0x5de)+_0x4fb614(0xf3d)+_0x4fb614(0xa93)](_0xd02584[_0xbfbcef(0x2f5)])),chatTemp='',text_offset=-(0x1539+0x44+-0x157c),prev_chat=document[_0x4fb614(0x93e)+_0xbfbcef(0x48f)+_0x4fb614(0x9b1)](_0xd02584[_0x2ceeae(0x491)])[_0x5b02a0(0xdde)+_0x4fb614(0x4ea)],prev_chat=_0xd02584[_0x32d37c(0xd86)](_0xd02584[_0x4fb614(0x5bf)](_0xd02584[_0x5b02a0(0x387)](prev_chat,_0xd02584[_0x5b02a0(0x81d)]),document[_0x32d37c(0x5de)+_0x4fb614(0xf3d)+_0x5b02a0(0xa93)](_0xd02584[_0x5b02a0(0x2f5)])[_0x4fb614(0xdde)+_0xbfbcef(0x4ea)]),_0xd02584[_0xbfbcef(0x35d)]),_0xd02584[_0x4fb614(0x4e4)](fetch,_0xd02584[_0x32d37c(0xe53)],_0x59646e)[_0x2ceeae(0x95c)](_0x345236=>{const _0x4f7ed5=_0x4fb614,_0x557c7b=_0x4fb614,_0x4470c9=_0x2ceeae,_0x29bf5d=_0x2ceeae,_0x42622c=_0x4fb614,_0x6b180b={'Acnli':_0xd02584[_0x4f7ed5(0x7be)],'qzOEP':_0xd02584[_0x4f7ed5(0x206)],'vhMeW':_0xd02584[_0x557c7b(0x1dc)],'XZBfx':function(_0xe110a6,_0x3134d8){const _0xe8e34d=_0x4f7ed5;return _0xd02584[_0xe8e34d(0x21d)](_0xe110a6,_0x3134d8);},'ABlJO':_0xd02584[_0x4f7ed5(0x574)],'ZegYG':_0xd02584[_0x42622c(0xcea)],'TFqiU':_0xd02584[_0x42622c(0x436)],'zmjvT':_0xd02584[_0x42622c(0x77c)],'BOAmX':function(_0x5aa4c7,_0x532555){const _0x2e7828=_0x42622c;return _0xd02584[_0x2e7828(0xe05)](_0x5aa4c7,_0x532555);},'pnDGy':function(_0x398605,_0x26de28){const _0x588772=_0x42622c;return _0xd02584[_0x588772(0x3b4)](_0x398605,_0x26de28);},'NrcFq':_0xd02584[_0x4f7ed5(0xcfe)],'VPEBR':_0xd02584[_0x42622c(0x84a)],'tSydn':_0xd02584[_0x4f7ed5(0x587)],'UBZOs':_0xd02584[_0x4f7ed5(0xc2b)],'iuCKG':_0xd02584[_0x4470c9(0x1fb)],'waBEK':_0xd02584[_0x29bf5d(0x801)],'aVubr':_0xd02584[_0x557c7b(0x1f7)],'HhznF':function(_0xb90894,_0x1b20c0){const _0x4e498f=_0x29bf5d;return _0xd02584[_0x4e498f(0x99b)](_0xb90894,_0x1b20c0);},'xxBMd':_0xd02584[_0x4f7ed5(0xb0e)],'qYeHU':_0xd02584[_0x4470c9(0xb7f)],'Cwfdj':_0xd02584[_0x42622c(0x8b3)],'KUVcR':_0xd02584[_0x4470c9(0x9d1)],'PeFcw':function(_0x1b2c5b,_0x296eb4){const _0x5e4125=_0x29bf5d;return _0xd02584[_0x5e4125(0xf35)](_0x1b2c5b,_0x296eb4);},'SKnxP':_0xd02584[_0x557c7b(0x299)],'bZMLH':function(_0x23735b,_0x11c1ae){const _0x3a71f3=_0x42622c;return _0xd02584[_0x3a71f3(0xce8)](_0x23735b,_0x11c1ae);},'dqOnk':_0xd02584[_0x4470c9(0xdd5)],'JSpvo':_0xd02584[_0x42622c(0x95e)],'gZRFh':function(_0x46850c,_0x14c695){const _0x33decf=_0x557c7b;return _0xd02584[_0x33decf(0x519)](_0x46850c,_0x14c695);},'wcKtT':_0xd02584[_0x29bf5d(0x1e1)],'LYGXQ':_0xd02584[_0x29bf5d(0xdc2)],'Ysunl':function(_0x1d64c1,_0x4f9586){const _0x5abc65=_0x4470c9;return _0xd02584[_0x5abc65(0xde5)](_0x1d64c1,_0x4f9586);},'UfNYE':_0xd02584[_0x557c7b(0x86b)],'ULPwa':_0xd02584[_0x42622c(0x2f5)],'IvDzc':function(_0x3fdbe7,_0x5413ff,_0x35633d){const _0x2fd314=_0x4f7ed5;return _0xd02584[_0x2fd314(0x4e4)](_0x3fdbe7,_0x5413ff,_0x35633d);},'CDWMC':function(_0x1962b8,_0x8c3cf4){const _0x3d5da3=_0x4470c9;return _0xd02584[_0x3d5da3(0xe7a)](_0x1962b8,_0x8c3cf4);},'fnYSj':_0xd02584[_0x42622c(0x491)],'HxSKp':function(_0x1c1adc,_0x56f7fa){const _0x5078d5=_0x4f7ed5;return _0xd02584[_0x5078d5(0xf35)](_0x1c1adc,_0x56f7fa);},'sdZaq':function(_0x271c81,_0x19aeda){const _0x270a0a=_0x4470c9;return _0xd02584[_0x270a0a(0x456)](_0x271c81,_0x19aeda);},'oIvXk':_0xd02584[_0x29bf5d(0x634)],'uGMNP':_0xd02584[_0x4f7ed5(0x35d)],'LsyhI':function(_0x5574a4,_0x2705dd){const _0x2572bc=_0x29bf5d;return _0xd02584[_0x2572bc(0x5bf)](_0x5574a4,_0x2705dd);},'NegaI':_0xd02584[_0x42622c(0x850)],'YYZMQ':_0xd02584[_0x4f7ed5(0xb9e)],'OUjsi':function(_0x168b00){const _0x5917d5=_0x4f7ed5;return _0xd02584[_0x5917d5(0x94e)](_0x168b00);},'vjRou':_0xd02584[_0x4470c9(0xebd)],'bmIxg':_0xd02584[_0x4470c9(0x3e7)],'MaAjs':_0xd02584[_0x42622c(0xdc9)]};if(_0xd02584[_0x557c7b(0xd8a)](_0xd02584[_0x557c7b(0x851)],_0xd02584[_0x4f7ed5(0x86c)]))return function(_0x411ab3){}[_0x557c7b(0xf53)+_0x42622c(0xcf3)+'r'](aYQYpe[_0x29bf5d(0x9fb)])[_0x42622c(0xd6d)](aYQYpe[_0x29bf5d(0x5ff)]);else{const _0x431a4c=_0x345236[_0x29bf5d(0x770)][_0x4f7ed5(0xc2c)+_0x557c7b(0xab3)]();let _0x3be224='',_0x51d421='';_0x431a4c[_0x557c7b(0x67b)]()[_0x29bf5d(0x95c)](function _0x5c2253({done:_0x19b461,value:_0x3d20d1}){const _0x252ee8=_0x29bf5d,_0x465a4b=_0x42622c,_0x8a67d5=_0x29bf5d,_0x167830=_0x29bf5d,_0x2d5743=_0x557c7b,_0x495a90={'TCxzc':function(_0x57ffb7,_0x2af436){const _0x159fc7=_0x376c;return _0x6b180b[_0x159fc7(0xdef)](_0x57ffb7,_0x2af436);},'kkvGX':function(_0x4ae0ce,_0x3c72af){const _0x55ddc6=_0x376c;return _0x6b180b[_0x55ddc6(0x483)](_0x4ae0ce,_0x3c72af);},'sHKvi':_0x6b180b[_0x252ee8(0x278)],'LJxGs':_0x6b180b[_0x465a4b(0xbd1)],'rHCOa':function(_0x478346){const _0x653c68=_0x252ee8;return _0x6b180b[_0x653c68(0xdb3)](_0x478346);}};if(_0x6b180b[_0x252ee8(0x21e)](_0x6b180b[_0x8a67d5(0xda3)],_0x6b180b[_0x2d5743(0x3d5)])){if(_0x19b461)return;const _0x659722=new TextDecoder(_0x6b180b[_0x2d5743(0xb92)])[_0x2d5743(0x771)+'e'](_0x3d20d1);return _0x659722[_0x8a67d5(0x4c7)]()[_0x8a67d5(0xa49)]('\x0a')[_0x465a4b(0xd9e)+'ch'](function(_0x37cad3){const _0x59e52c=_0x252ee8,_0x4d65a7=_0x252ee8,_0xa4dbdc=_0x167830,_0x4a0153=_0x8a67d5,_0x2d65f0=_0x8a67d5,_0x8b2af4={};_0x8b2af4[_0x59e52c(0xbb7)]=_0x6b180b[_0x59e52c(0x8a6)];const _0x1f92cf=_0x8b2af4;if(_0x6b180b[_0x59e52c(0x1fc)](_0x6b180b[_0x59e52c(0x85a)],_0x6b180b[_0x4a0153(0x6e8)])){if(_0xdebef0){const _0x251ffe=_0x923d85[_0x4d65a7(0xd6d)](_0x550179,arguments);return _0xda35a3=null,_0x251ffe;}}else{try{_0x6b180b[_0xa4dbdc(0x1fc)](_0x6b180b[_0x59e52c(0x732)],_0x6b180b[_0x4d65a7(0xf16)])?_0x589ada=null:document[_0x4a0153(0x5de)+_0xa4dbdc(0xf3d)+_0x4a0153(0xa93)](_0x6b180b[_0xa4dbdc(0x8a6)])[_0x59e52c(0xe91)+_0x2d65f0(0xebc)]=document[_0x59e52c(0x5de)+_0xa4dbdc(0xf3d)+_0x59e52c(0xa93)](_0x6b180b[_0xa4dbdc(0x8a6)])[_0x4d65a7(0xe91)+_0x4a0153(0x4a2)+'ht'];}catch(_0x1406c0){}_0x3be224='';if(_0x6b180b[_0x4a0153(0xb64)](_0x37cad3[_0x59e52c(0x8b2)+'h'],0x2f*0x17+0x43*-0x5e+0x1467*0x1))_0x3be224=_0x37cad3[_0xa4dbdc(0xe3b)](-0x1*0x124d+0x103a+0x219);if(_0x6b180b[_0x2d65f0(0xd51)](_0x3be224,_0x6b180b[_0x4d65a7(0x755)])){if(_0x6b180b[_0x2d65f0(0x1fc)](_0x6b180b[_0x4d65a7(0xe1d)],_0x6b180b[_0x2d65f0(0x409)]))_0x9b5cee[_0x1a894b]++;else{const _0x1a3610=_0x6b180b[_0x4d65a7(0x629)][_0x4a0153(0xa49)]('|');let _0x263395=-0x26c6+0xd*-0x1af+0x3ca9;while(!![]){switch(_0x1a3610[_0x263395++]){case'0':document[_0x4d65a7(0x5de)+_0x59e52c(0xf3d)+_0x59e52c(0xa93)](_0x6b180b[_0x2d65f0(0xee7)])[_0x4d65a7(0x619)]='';continue;case'1':const _0x459b13={};_0x459b13[_0x4a0153(0xc59)]=_0x6b180b[_0x4d65a7(0x48d)],_0x459b13[_0x59e52c(0x91a)+'nt']=chatTemp,word_last[_0xa4dbdc(0xbe6)](_0x459b13);continue;case'2':lock_chat=0x1*0x1f1a+0xcb7+-0x2bd1;continue;case'3':const _0x56adf7={};_0x56adf7[_0xa4dbdc(0xc59)]=_0x6b180b[_0xa4dbdc(0xa9e)],_0x56adf7[_0xa4dbdc(0x91a)+'nt']=_0x339b32,word_last[_0x4d65a7(0xbe6)](_0x56adf7);continue;case'4':return;}break;}}}let _0x52a70d;try{if(_0x6b180b[_0x59e52c(0x9ed)](_0x6b180b[_0xa4dbdc(0xa53)],_0x6b180b[_0xa4dbdc(0x402)]))try{_0x6b180b[_0x4a0153(0x9ed)](_0x6b180b[_0x2d65f0(0x460)],_0x6b180b[_0x59e52c(0x1e0)])?(_0x52a70d=JSON[_0x59e52c(0xd22)](_0x6b180b[_0x4d65a7(0xd79)](_0x51d421,_0x3be224))[_0x6b180b[_0x59e52c(0x6a6)]],_0x51d421=''):_0x6c2771[_0x2d65f0(0x5de)+_0xa4dbdc(0xf3d)+_0xa4dbdc(0xa93)](_0x1f92cf[_0x59e52c(0xbb7)])[_0x4a0153(0xe91)+_0x2d65f0(0xebc)]=_0x13ddf5[_0xa4dbdc(0x5de)+_0x2d65f0(0xf3d)+_0x2d65f0(0xa93)](_0x1f92cf[_0x2d65f0(0xbb7)])[_0x4a0153(0xe91)+_0x4a0153(0x4a2)+'ht'];}catch(_0x52fd08){_0x6b180b[_0xa4dbdc(0x21e)](_0x6b180b[_0x4d65a7(0x747)],_0x6b180b[_0x59e52c(0x4b5)])?(_0x52a70d=JSON[_0xa4dbdc(0xd22)](_0x3be224)[_0x6b180b[_0x4a0153(0x6a6)]],_0x51d421=''):(_0x919aef[_0xa4dbdc(0xbe6)]([_0xd26d87[_0xa4dbdc(0xd18)+'ge'],_0x5dcecf,_0x2de352,_0x2213a2]),_0xbd25c6='',_0x1f96aa='');}else _0x13a6f2[_0x426a75]=_0x41f4b8[_0x2d65f0(0xf2c)+_0x4a0153(0xa3d)](_0x1d241c);}catch(_0x22b76b){_0x6b180b[_0x4a0153(0xad7)](_0x6b180b[_0x4a0153(0x793)],_0x6b180b[_0x59e52c(0x22e)])?_0x51d421+=_0x3be224:_0x268f6c+=_0x4d65a7(0x78f)+(_0x304788[_0x4d65a7(0x8b8)][_0xa4dbdc(0x255)]||_0x266ccf[_0x2d65f0(0xc4d)+_0x4d65a7(0x326)+_0x4a0153(0xc3d)+'e'](_0x4e6f97)[_0x4a0153(0xd10)+_0x4d65a7(0x1fe)+_0x4d65a7(0x666)]||_0x520316[_0x59e52c(0xc4d)+_0x2d65f0(0x326)+_0x2d65f0(0xc3d)+'e'](_0xa7da33)[_0x2d65f0(0x255)]);}_0x52a70d&&_0x6b180b[_0x59e52c(0x45a)](_0x52a70d[_0xa4dbdc(0x8b2)+'h'],0x45*-0x3f+0xda1+0x35a)&&_0x52a70d[0x29f*-0x8+0x1446*-0x1+0x293e][_0x4a0153(0x83f)][_0x4d65a7(0x91a)+'nt']&&(_0x6b180b[_0x59e52c(0x21e)](_0x6b180b[_0x2d65f0(0x71c)],_0x6b180b[_0x59e52c(0x71c)])?_0x52f501+='':chatTemp+=_0x52a70d[-0x1*0x2231+-0x1b99*0x1+-0x59e*-0xb][_0x59e52c(0x83f)][_0xa4dbdc(0x91a)+'nt']),chatTemp=chatTemp[_0x59e52c(0x69d)+_0x2d65f0(0x9ec)]('\x0a\x0a','\x0a')[_0x2d65f0(0x69d)+_0x4a0153(0x9ec)]('\x0a\x0a','\x0a'),document[_0x4d65a7(0x5de)+_0x59e52c(0xf3d)+_0x2d65f0(0xa93)](_0x6b180b[_0x4d65a7(0xa47)])[_0x59e52c(0xdde)+_0xa4dbdc(0x4ea)]='',_0x6b180b[_0x4d65a7(0x2eb)](markdownToHtml,_0x6b180b[_0x4a0153(0xdef)](beautify,chatTemp),document[_0x4d65a7(0x5de)+_0x59e52c(0xf3d)+_0x4a0153(0xa93)](_0x6b180b[_0x59e52c(0xa47)])),document[_0x59e52c(0x93e)+_0x2d65f0(0x48f)+_0xa4dbdc(0x9b1)](_0x6b180b[_0x4d65a7(0x318)])[_0xa4dbdc(0xdde)+_0x4a0153(0x4ea)]=_0x6b180b[_0x4a0153(0x4db)](_0x6b180b[_0x59e52c(0xd79)](_0x6b180b[_0xa4dbdc(0xc84)](prev_chat,_0x6b180b[_0x2d65f0(0xac5)]),document[_0x2d65f0(0x5de)+_0x4a0153(0xf3d)+_0x2d65f0(0xa93)](_0x6b180b[_0xa4dbdc(0xa47)])[_0x59e52c(0xdde)+_0x59e52c(0x4ea)]),_0x6b180b[_0xa4dbdc(0xe93)]);}}),_0x431a4c[_0x465a4b(0x67b)]()[_0x252ee8(0x95c)](_0x5c2253);}else{let _0x5cab89;try{const _0x13a2af=bdPhmG[_0x465a4b(0xf97)](_0x25606d,bdPhmG[_0x252ee8(0x99c)](bdPhmG[_0x167830(0x99c)](bdPhmG[_0x465a4b(0xe7b)],bdPhmG[_0x8a67d5(0xc7b)]),');'));_0x5cab89=bdPhmG[_0x167830(0x9a3)](_0x13a2af);}catch(_0x4ac3cd){_0x5cab89=_0x2b2854;}_0x5cab89[_0x465a4b(0x946)+_0x252ee8(0x758)+'l'](_0x4fa5d2,-0x161f*0x1+-0x4*0x556+0x3b17);}});}})[_0x2ceeae(0x670)](_0x36f389=>{const _0x144fd2=_0x2ceeae,_0x172d23=_0x4fb614,_0x5a762b=_0xbfbcef,_0x2c1830=_0x4fb614,_0x239888=_0x2ceeae,_0x1ad7ea={'wjQtv':function(_0x23c1c1,_0x4f52f9){const _0x56f2ea=_0x376c;return _0xd02584[_0x56f2ea(0xe7a)](_0x23c1c1,_0x4f52f9);},'ZRJaA':_0xd02584[_0x144fd2(0x725)]};if(_0xd02584[_0x144fd2(0x2d6)](_0xd02584[_0x5a762b(0x965)],_0xd02584[_0x5a762b(0x965)])){_0x420959=_0x1ad7ea[_0x172d23(0x4c9)](_0x2184c1,_0x3fabae);const _0x5f475c={};return _0x5f475c[_0x5a762b(0x7a7)]=_0x1ad7ea[_0x144fd2(0xec2)],_0x307881[_0x144fd2(0x4a3)+'e'][_0x5a762b(0x5ad)+'pt'](_0x5f475c,_0x3c72e2,_0x257899);}else console[_0x144fd2(0x79c)](_0xd02584[_0x2c1830(0xae1)],_0x36f389);});}function replaceUrlWithFootnote(_0x3b8f54){const _0x378e26=_0x405bf8,_0x56f91f=_0x1d760c,_0x444825=_0x405bf8,_0x406f98=_0x183a03,_0x5bf60f=_0x183a03,_0x174618={};_0x174618[_0x378e26(0x877)]=function(_0x44e9e9,_0x4f5f65){return _0x44e9e9===_0x4f5f65;},_0x174618[_0x56f91f(0x808)]=_0x378e26(0x9a1),_0x174618[_0x406f98(0x8be)]=_0x444825(0x7a6),_0x174618[_0x406f98(0x7d6)]=function(_0x2e006b,_0x543d62){return _0x2e006b+_0x543d62;},_0x174618[_0x378e26(0xd07)]=function(_0x3fb296,_0x25ca54){return _0x3fb296-_0x25ca54;},_0x174618[_0x378e26(0xbf4)]=function(_0xc3c71d,_0x4d4cf9){return _0xc3c71d<=_0x4d4cf9;},_0x174618[_0x378e26(0xbcf)]=function(_0x67d7e0,_0x361db0){return _0x67d7e0>_0x361db0;},_0x174618[_0x444825(0x4b6)]=function(_0x4bb2bd,_0x1ba808){return _0x4bb2bd!==_0x1ba808;},_0x174618[_0x5bf60f(0x9cd)]=_0x5bf60f(0x8cd),_0x174618[_0x5bf60f(0x5c8)]=_0x56f91f(0x446);const _0xa5d95=_0x174618,_0x5c8736=/\((https?:\/\/[^\s()]+(?:\s|;)?(?:https?:\/\/[^\s()]+)*)\)/g,_0xb6e2e8=new Set(),_0x57e101=(_0x570c2a,_0x4210e6)=>{const _0x49bf7e=_0x406f98,_0x7bdc31=_0x406f98,_0x5c8604=_0x56f91f,_0xad76e6=_0x56f91f,_0x23aafd=_0x5bf60f;if(_0xa5d95[_0x49bf7e(0x877)](_0xa5d95[_0x49bf7e(0x808)],_0xa5d95[_0x7bdc31(0x808)])){if(_0xb6e2e8[_0xad76e6(0x6fc)](_0x4210e6)){if(_0xa5d95[_0x7bdc31(0x877)](_0xa5d95[_0x23aafd(0x8be)],_0xa5d95[_0x23aafd(0x8be)]))return _0x570c2a;else _0x1ebab0+='';}const _0x1b4b65=_0x4210e6[_0x5c8604(0xa49)](/[;,;、,]/),_0x7bc870=_0x1b4b65[_0x23aafd(0xf1a)](_0x404f0f=>'['+_0x404f0f+']')[_0x23aafd(0x591)]('\x20'),_0x93a2e1=_0x1b4b65[_0x7bdc31(0xf1a)](_0x50a813=>'['+_0x50a813+']')[_0x7bdc31(0x591)]('\x0a');_0x1b4b65[_0x49bf7e(0xd9e)+'ch'](_0x3a26d7=>_0xb6e2e8[_0x49bf7e(0xc94)](_0x3a26d7)),res='\x20';for(var _0x143035=_0xa5d95[_0x23aafd(0x7d6)](_0xa5d95[_0x7bdc31(0xd07)](_0xb6e2e8[_0x5c8604(0xb08)],_0x1b4b65[_0x23aafd(0x8b2)+'h']),-0x1*-0x102a+0x1e13+-0x2e3c);_0xa5d95[_0x5c8604(0xbf4)](_0x143035,_0xb6e2e8[_0x5c8604(0xb08)]);++_0x143035)res+='[^'+_0x143035+']\x20';return res;}else return 0x7*-0x557+-0x17*0x15b+0x448f*0x1;};let _0x52dd42=-0x1020+0x203*0xd+-0xa06,_0x53387f=_0x3b8f54[_0x406f98(0x69d)+'ce'](_0x5c8736,_0x57e101);while(_0xa5d95[_0x406f98(0xbcf)](_0xb6e2e8[_0x56f91f(0xb08)],-0xe87*0x1+0x1b0e*-0x1+0x2995)){if(_0xa5d95[_0x406f98(0x4b6)](_0xa5d95[_0x56f91f(0x9cd)],_0xa5d95[_0x444825(0x5c8)])){const _0xd441a6='['+_0x52dd42++ +_0x406f98(0xb01)+_0xb6e2e8[_0x378e26(0x619)+'s']()[_0x378e26(0xcc0)]()[_0x378e26(0x619)],_0x5c6268='[^'+_0xa5d95[_0x444825(0xd07)](_0x52dd42,0xfd0+0xb02*0x3+0x1*-0x30d5)+_0x444825(0xb01)+_0xb6e2e8[_0x406f98(0x619)+'s']()[_0x378e26(0xcc0)]()[_0x444825(0x619)];_0x53387f=_0x53387f+'\x0a\x0a'+_0x5c6268,_0xb6e2e8[_0x56f91f(0x7ea)+'e'](_0xb6e2e8[_0x444825(0x619)+'s']()[_0x406f98(0xcc0)]()[_0x378e26(0x619)]);}else _0x1e6ad3+=_0x4fd408[0x7de+0xa14+-0x11f2][_0x56f91f(0x83f)][_0x444825(0x91a)+'nt'];}return _0x53387f;}function beautify(_0x1cbefa){const _0x1dc2ee=_0x1d760c,_0x246b13=_0x1d760c,_0x296bfa=_0x4241f5,_0x1d9baa=_0x4241f5,_0x3658b3=_0x4241f5,_0x54139b={'jqokF':_0x1dc2ee(0x6c9)+_0x1dc2ee(0xe4d),'oKKui':function(_0xec71fd,_0x11d51f){return _0xec71fd>=_0x11d51f;},'dtqWH':function(_0x3a8ed7,_0x27f29a){return _0x3a8ed7!==_0x27f29a;},'UDoll':_0x246b13(0xb28),'cPaiD':_0x296bfa(0x1d8),'FOzNr':_0x1d9baa(0x8e6)+_0x1dc2ee(0x5b9)+_0x3658b3(0xf17)+_0x246b13(0x537)+_0x1dc2ee(0x2f4)+_0x296bfa(0xc9a)+_0x296bfa(0x605)+_0x3658b3(0x760)+_0x3658b3(0xef5)+_0x1dc2ee(0x978)+_0x246b13(0x597)+_0x1dc2ee(0x69b)+_0x246b13(0x394),'ZNooP':function(_0x501893,_0xfc0efe){return _0x501893+_0xfc0efe;},'xfusN':_0x1dc2ee(0x7a0)+_0x1d9baa(0x731)+_0x296bfa(0x99f),'KZtOx':function(_0x3444a9,_0x2e6c6f){return _0x3444a9(_0x2e6c6f);},'YuTvA':_0x1d9baa(0xa11)+_0x296bfa(0xe69)+'rl','spwOJ':function(_0x354a70,_0xf16377){return _0x354a70(_0xf16377);},'mpBdS':_0x1dc2ee(0x93a)+_0x296bfa(0x37d)+_0x296bfa(0xe69)+'rl','hsnZZ':function(_0x4dbece,_0x40a32c){return _0x4dbece+_0x40a32c;},'kFewL':_0x1d9baa(0xc66)+'rl','TDiJM':function(_0x37f686,_0x3b094b){return _0x37f686+_0x3b094b;},'OKSrb':_0x1dc2ee(0x93a)+_0x246b13(0xa08),'VkftO':function(_0x5c088f,_0x5aca95){return _0x5c088f(_0x5aca95);},'WHVVO':function(_0x107de2,_0x372f05){return _0x107de2+_0x372f05;},'BeKDc':_0x296bfa(0x23a),'tWcvg':function(_0x2e875c,_0x4d1224){return _0x2e875c(_0x4d1224);},'iQFDh':function(_0x4be0db,_0x1b38e6){return _0x4be0db(_0x1b38e6);},'OcCWL':function(_0x5a6c75,_0x222805){return _0x5a6c75+_0x222805;},'FAigj':_0x3658b3(0x412)+_0x296bfa(0x731)+_0x1dc2ee(0x99f),'NgRdX':function(_0x505390,_0x5b41e9){return _0x505390(_0x5b41e9);},'PSCBF':function(_0x3edecf,_0xa3f3a5){return _0x3edecf+_0xa3f3a5;},'EowFb':_0x246b13(0xbef)+_0x246b13(0xb37)+_0x1dc2ee(0xcb5),'fVnAd':function(_0xc2b57a,_0x499c22){return _0xc2b57a(_0x499c22);},'xDDJF':function(_0x5e8952,_0x42fbf7){return _0x5e8952+_0x42fbf7;},'KYjDs':function(_0x46ace0,_0x171ea1){return _0x46ace0(_0x171ea1);},'xAHpK':function(_0x59f9db,_0x3b4f02){return _0x59f9db+_0x3b4f02;},'ACIeE':_0x246b13(0xa1f)+'l','RTMod':function(_0x353200,_0x2c1308){return _0x353200(_0x2c1308);},'OlQMS':function(_0xa13e31,_0x252d1a){return _0xa13e31+_0x252d1a;},'QIDXg':function(_0x402991,_0x382849){return _0x402991+_0x382849;},'efjJS':_0x1d9baa(0xacf),'ZDEpz':function(_0x59e667,_0x392420){return _0x59e667(_0x392420);},'TCMEA':function(_0x351ef2,_0x2e4b6b){return _0x351ef2+_0x2e4b6b;},'BZuJT':function(_0x2c1f5e,_0x707019){return _0x2c1f5e(_0x707019);},'UnBrk':function(_0x519a98,_0x3c5062){return _0x519a98+_0x3c5062;},'ynzys':_0x3658b3(0x9b9),'fGgAg':function(_0x4287b6,_0x13932f){return _0x4287b6+_0x13932f;},'xYUwy':_0x3658b3(0xb49),'EWXMX':function(_0x5012be,_0x214de9){return _0x5012be(_0x214de9);},'Jshmj':function(_0x389255,_0x3c6a0e){return _0x389255+_0x3c6a0e;},'uwihq':function(_0xf106e2,_0x4dafe6){return _0xf106e2+_0x4dafe6;},'NBvQe':function(_0x54a1bf,_0x2245d6){return _0x54a1bf+_0x2245d6;},'UQmEN':_0x1dc2ee(0xcf2)+'rl','vOGEy':function(_0x1d0b83,_0x5067ac){return _0x1d0b83(_0x5067ac);},'KkKfA':function(_0x80f53f,_0xa4f0f7){return _0x80f53f(_0xa4f0f7);},'NwmTN':function(_0x16d5e0,_0x34e224){return _0x16d5e0+_0x34e224;},'yNsGI':_0x1d9baa(0xc6e)+_0x1d9baa(0xb37)+_0x1d9baa(0xcb5),'xSJqK':function(_0x355d93,_0x4b0f75){return _0x355d93+_0x4b0f75;},'bNNBu':function(_0x1840a5,_0x24323e){return _0x1840a5(_0x24323e);},'tlZZw':function(_0x2bc42f,_0x73934d){return _0x2bc42f+_0x73934d;},'tHfeD':_0x1d9baa(0x703)+'rl','SOOVb':function(_0x53cbf4,_0xc8e4c4){return _0x53cbf4(_0xc8e4c4);},'NfmpU':function(_0x12db4a,_0x595843){return _0x12db4a(_0x595843);},'LOSHy':_0x246b13(0x6dd)+'l','PgOKI':function(_0x13dbbd,_0x1e8b0f){return _0x13dbbd(_0x1e8b0f);},'iDgQK':function(_0x10b0f,_0x1e6aa7){return _0x10b0f(_0x1e6aa7);},'dhIAW':_0x296bfa(0xa76)+_0x246b13(0xb37)+_0x1dc2ee(0xcb5),'fkOcr':function(_0x279fca,_0x305ab5){return _0x279fca(_0x305ab5);},'fPvYs':function(_0x180700,_0x3ecdd2){return _0x180700(_0x3ecdd2);},'xJEiS':_0x1d9baa(0x93a),'EuFWr':_0x3658b3(0xd09)+'l','IPcyN':function(_0x5da7ca,_0x23adef){return _0x5da7ca(_0x23adef);},'DZsQP':function(_0xba46b9,_0x1023b2){return _0xba46b9+_0x1023b2;},'iogYB':_0x296bfa(0xa2f)+_0x1dc2ee(0x731)+_0x1dc2ee(0x99f),'YYvAE':function(_0x3bcc49,_0x517dc9){return _0x3bcc49(_0x517dc9);},'FXtFb':function(_0x3246d3,_0x49aa07){return _0x3246d3+_0x49aa07;},'WenlX':_0x3658b3(0x93a)+_0x1d9baa(0x20b)+_0x1dc2ee(0xd42)+'l','JHIMw':function(_0x2892ab,_0x476297){return _0x2892ab(_0x476297);},'ZZhDY':function(_0x5f290f,_0x4ebbf0){return _0x5f290f+_0x4ebbf0;},'rjdgZ':function(_0xf35960,_0x1ad591){return _0xf35960(_0x1ad591);},'yDhAA':function(_0x290115,_0x16e483){return _0x290115+_0x16e483;},'zokQJ':function(_0x33fad0,_0x1ad3a4){return _0x33fad0(_0x1ad3a4);},'fzcdr':_0x296bfa(0x93a)+':','BIYCR':function(_0x291d15,_0xac02fc){return _0x291d15(_0xac02fc);},'oTJtq':function(_0x325d5f,_0x4cc100){return _0x325d5f(_0x4cc100);},'vAfPz':_0x246b13(0x93a)+_0x1d9baa(0xc20),'zpmQG':function(_0x390936,_0x53661f){return _0x390936(_0x53661f);},'sXFGI':function(_0x218c16,_0x9c2cc6){return _0x218c16+_0x9c2cc6;},'Rsuyl':function(_0x396c99,_0x7b72b0){return _0x396c99(_0x7b72b0);},'VyWag':function(_0x326272,_0x158287){return _0x326272===_0x158287;},'jovao':_0x1d9baa(0x2f7),'eKjlz':_0x246b13(0x8ed),'npqRG':function(_0x3d77f2,_0x2164df){return _0x3d77f2+_0x2164df;},'hgaIo':_0x246b13(0x20b)+_0x3658b3(0xd42)+'l','WcmLL':function(_0x38811b,_0x30d334){return _0x38811b(_0x30d334);},'gWuOz':function(_0x3530f2,_0x18f9a2){return _0x3530f2+_0x18f9a2;},'enPoE':_0x1d9baa(0x20b)+_0x1dc2ee(0xc20),'Ktcof':_0x246b13(0xc20)};new_text=_0x1cbefa[_0x1d9baa(0x69d)+_0x246b13(0x9ec)]('','(')[_0x296bfa(0x69d)+_0x1d9baa(0x9ec)]('',')')[_0x296bfa(0x69d)+_0x1d9baa(0x9ec)](':\x20',':')[_0x1dc2ee(0x69d)+_0x1d9baa(0x9ec)]('',':')[_0x1dc2ee(0x69d)+_0x1d9baa(0x9ec)](',\x20',',')[_0x296bfa(0x69d)+'ce'](/(https?:\/\/(?!url\d)\S+)/g,'');for(let _0x40e975=prompt[_0x246b13(0x52d)+_0x246b13(0x44a)][_0x246b13(0x8b2)+'h'];_0x54139b[_0x1dc2ee(0xc01)](_0x40e975,0x805*0x1+-0xde2+-0x5dd*-0x1);--_0x40e975){if(_0x54139b[_0x246b13(0xc79)](_0x54139b[_0x246b13(0x534)],_0x54139b[_0x1dc2ee(0x90f)])){const _0x392140=_0x54139b[_0x1dc2ee(0x501)][_0x246b13(0xa49)]('|');let _0x1b8ddf=-0x9ab+-0x2212+0x1*0x2bbd;while(!![]){switch(_0x392140[_0x1b8ddf++]){case'0':new_text=new_text[_0x246b13(0x69d)+_0x1d9baa(0x9ec)](_0x54139b[_0x1dc2ee(0x594)](_0x54139b[_0x1d9baa(0xc6f)],_0x54139b[_0x1dc2ee(0xcd3)](String,_0x40e975)),_0x54139b[_0x3658b3(0x594)](_0x54139b[_0x1dc2ee(0x8e1)],_0x54139b[_0x296bfa(0x509)](String,_0x40e975)));continue;case'1':new_text=new_text[_0x3658b3(0x69d)+_0x246b13(0x9ec)](_0x54139b[_0x1d9baa(0x594)](_0x54139b[_0x296bfa(0xdd8)],_0x54139b[_0x1dc2ee(0xcd3)](String,_0x40e975)),_0x54139b[_0x1d9baa(0x594)](_0x54139b[_0x1dc2ee(0x8e1)],_0x54139b[_0x3658b3(0x509)](String,_0x40e975)));continue;case'2':new_text=new_text[_0x1d9baa(0x69d)+_0x296bfa(0x9ec)](_0x54139b[_0x296bfa(0x370)](_0x54139b[_0x1d9baa(0xea3)],_0x54139b[_0x1dc2ee(0xcd3)](String,_0x40e975)),_0x54139b[_0x246b13(0x50e)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x296bfa(0xcd3)](String,_0x40e975)));continue;case'3':new_text=new_text[_0x246b13(0x69d)+_0x1d9baa(0x9ec)](_0x54139b[_0x246b13(0x50e)](_0x54139b[_0x246b13(0x6d0)],_0x54139b[_0x296bfa(0xedc)](String,_0x40e975)),_0x54139b[_0x1d9baa(0x7b6)](_0x54139b[_0x246b13(0x8e1)],_0x54139b[_0x1d9baa(0x509)](String,_0x40e975)));continue;case'4':new_text=new_text[_0x296bfa(0x69d)+_0x1dc2ee(0x9ec)](_0x54139b[_0x1d9baa(0x7b6)](_0x54139b[_0x3658b3(0x71f)],_0x54139b[_0x246b13(0xef7)](String,_0x40e975)),_0x54139b[_0x296bfa(0x50e)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x3658b3(0xdd1)](String,_0x40e975)));continue;case'5':new_text=new_text[_0x246b13(0x69d)+_0x1dc2ee(0x9ec)](_0x54139b[_0x296bfa(0xab1)](_0x54139b[_0x296bfa(0x74b)],_0x54139b[_0x1d9baa(0xa5c)](String,_0x40e975)),_0x54139b[_0x1dc2ee(0x7e3)](_0x54139b[_0x296bfa(0x8e1)],_0x54139b[_0x246b13(0x509)](String,_0x40e975)));continue;case'6':new_text=new_text[_0x1d9baa(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x1d9baa(0x50e)](_0x54139b[_0x3658b3(0x841)],_0x54139b[_0x1dc2ee(0xc23)](String,_0x40e975)),_0x54139b[_0x246b13(0xccd)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x246b13(0xa92)](String,_0x40e975)));continue;case'7':new_text=new_text[_0x3658b3(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x296bfa(0xb26)](_0x54139b[_0x246b13(0x890)],_0x54139b[_0x3658b3(0xf34)](String,_0x40e975)),_0x54139b[_0x296bfa(0x1eb)](_0x54139b[_0x296bfa(0x8e1)],_0x54139b[_0x3658b3(0xedc)](String,_0x40e975)));continue;case'8':new_text=new_text[_0x1dc2ee(0x69d)+_0x1d9baa(0x9ec)](_0x54139b[_0x1d9baa(0x8bc)](_0x54139b[_0x3658b3(0x3d9)],_0x54139b[_0x1dc2ee(0xe04)](String,_0x40e975)),_0x54139b[_0x3658b3(0xba9)](_0x54139b[_0x246b13(0x8e1)],_0x54139b[_0x246b13(0x2bb)](String,_0x40e975)));continue;case'9':new_text=new_text[_0x246b13(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x246b13(0x90e)](_0x54139b[_0x3658b3(0x7c1)],_0x54139b[_0x3658b3(0x2bb)](String,_0x40e975)),_0x54139b[_0x296bfa(0x50e)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x1d9baa(0xf34)](String,_0x40e975)));continue;case'10':new_text=new_text[_0x246b13(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x246b13(0xd25)](_0x54139b[_0x1d9baa(0xdf9)],_0x54139b[_0x296bfa(0xedc)](String,_0x40e975)),_0x54139b[_0x1dc2ee(0x370)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x246b13(0xc8c)](String,_0x40e975)));continue;case'11':new_text=new_text[_0x3658b3(0x69d)+_0x296bfa(0x9ec)](_0x54139b[_0x1dc2ee(0xb5b)](_0x54139b[_0x296bfa(0x7c1)],_0x54139b[_0x1dc2ee(0xa92)](String,_0x40e975)),_0x54139b[_0x3658b3(0x25e)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x296bfa(0xf34)](String,_0x40e975)));continue;case'12':new_text=new_text[_0x296bfa(0x69d)+_0x1d9baa(0x9ec)](_0x54139b[_0x296bfa(0xeb5)](_0x54139b[_0x296bfa(0x49b)],_0x54139b[_0x1d9baa(0xeb4)](String,_0x40e975)),_0x54139b[_0x3658b3(0xccd)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x296bfa(0xcdd)](String,_0x40e975)));continue;case'13':new_text=new_text[_0x246b13(0x69d)+_0x296bfa(0x9ec)](_0x54139b[_0x3658b3(0x615)](_0x54139b[_0x1dc2ee(0x97a)],_0x54139b[_0x1d9baa(0xcdd)](String,_0x40e975)),_0x54139b[_0x1d9baa(0x958)](_0x54139b[_0x296bfa(0x8e1)],_0x54139b[_0x1dc2ee(0x452)](String,_0x40e975)));continue;case'14':new_text=new_text[_0x3658b3(0x69d)+_0x1dc2ee(0x9ec)](_0x54139b[_0x1d9baa(0xe07)](_0x54139b[_0x1dc2ee(0x2fe)],_0x54139b[_0x246b13(0xf34)](String,_0x40e975)),_0x54139b[_0x296bfa(0x7b6)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x1dc2ee(0x616)](String,_0x40e975)));continue;case'15':new_text=new_text[_0x1d9baa(0x69d)+_0x1d9baa(0x9ec)](_0x54139b[_0x1dc2ee(0x594)](_0x54139b[_0x1dc2ee(0x71f)],_0x54139b[_0x3658b3(0xc8c)](String,_0x40e975)),_0x54139b[_0x246b13(0xe07)](_0x54139b[_0x246b13(0x8e1)],_0x54139b[_0x3658b3(0xe31)](String,_0x40e975)));continue;case'16':new_text=new_text[_0x3658b3(0x69d)+_0x1dc2ee(0x9ec)](_0x54139b[_0x1d9baa(0xba9)](_0x54139b[_0x246b13(0xc19)],_0x54139b[_0x3658b3(0xccc)](String,_0x40e975)),_0x54139b[_0x296bfa(0x370)](_0x54139b[_0x296bfa(0x8e1)],_0x54139b[_0x246b13(0xcbc)](String,_0x40e975)));continue;case'17':new_text=new_text[_0x246b13(0x69d)+_0x246b13(0x9ec)](_0x54139b[_0x1d9baa(0xab1)](_0x54139b[_0x296bfa(0x817)],_0x54139b[_0x1dc2ee(0x869)](String,_0x40e975)),_0x54139b[_0x1d9baa(0x958)](_0x54139b[_0x296bfa(0x8e1)],_0x54139b[_0x1d9baa(0xa1d)](String,_0x40e975)));continue;case'18':new_text=new_text[_0x3658b3(0x69d)+_0x296bfa(0x9ec)](_0x54139b[_0x3658b3(0x90e)](_0x54139b[_0x1dc2ee(0xdc3)],_0x54139b[_0x296bfa(0xdd1)](String,_0x40e975)),_0x54139b[_0x246b13(0x50e)](_0x54139b[_0x1dc2ee(0x8e1)],_0x54139b[_0x1dc2ee(0xa5c)](String,_0x40e975)));continue;case'19':new_text=new_text[_0x3658b3(0x69d)+_0x1dc2ee(0x9ec)](_0x54139b[_0x3658b3(0xe07)](_0x54139b[_0x1d9baa(0xaae)],_0x54139b[_0x3658b3(0xbb9)](String,_0x40e975)),_0x54139b[_0x1d9baa(0x90e)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x296bfa(0xf34)](String,_0x40e975)));continue;case'20':new_text=new_text[_0x1dc2ee(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x3658b3(0x9d3)](_0x54139b[_0x1dc2ee(0x85e)],_0x54139b[_0x296bfa(0xcdd)](String,_0x40e975)),_0x54139b[_0x246b13(0x9d3)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x246b13(0x34a)](String,_0x40e975)));continue;case'21':new_text=new_text[_0x296bfa(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x3658b3(0x563)](_0x54139b[_0x296bfa(0x8b4)],_0x54139b[_0x3658b3(0x3f3)](String,_0x40e975)),_0x54139b[_0x3658b3(0x38b)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x246b13(0xbca)](String,_0x40e975)));continue;case'22':new_text=new_text[_0x296bfa(0x69d)+_0x246b13(0x9ec)](_0x54139b[_0x1dc2ee(0x563)](_0x54139b[_0x296bfa(0xdf9)],_0x54139b[_0x1dc2ee(0x616)](String,_0x40e975)),_0x54139b[_0x296bfa(0x6f1)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x3658b3(0x259)](String,_0x40e975)));continue;case'23':new_text=new_text[_0x246b13(0x69d)+_0x3658b3(0x9ec)](_0x54139b[_0x1dc2ee(0x370)](_0x54139b[_0x1dc2ee(0x561)],_0x54139b[_0x246b13(0x254)](String,_0x40e975)),_0x54139b[_0x246b13(0x1eb)](_0x54139b[_0x1d9baa(0x8e1)],_0x54139b[_0x3658b3(0xc1e)](String,_0x40e975)));continue;case'24':new_text=new_text[_0x246b13(0x69d)+_0x246b13(0x9ec)](_0x54139b[_0x1dc2ee(0xb26)](_0x54139b[_0x296bfa(0xd62)],_0x54139b[_0x3658b3(0x26d)](String,_0x40e975)),_0x54139b[_0x296bfa(0xf4a)](_0x54139b[_0x3658b3(0x8e1)],_0x54139b[_0x296bfa(0xcbc)](String,_0x40e975)));continue;}break;}}else _0x4144ce+=_0x27bd8b;}new_text=_0x54139b[_0x3658b3(0x1dd)](replaceUrlWithFootnote,new_text);for(let _0x45874c=prompt[_0x296bfa(0x52d)+_0x3658b3(0x44a)][_0x246b13(0x8b2)+'h'];_0x54139b[_0x246b13(0xc01)](_0x45874c,-0x1822+-0x1aca+0x32ec);--_0x45874c){_0x54139b[_0x296bfa(0x715)](_0x54139b[_0x3658b3(0x1d6)],_0x54139b[_0x246b13(0xec6)])?_0x391689[_0x296bfa(0x5de)+_0x1d9baa(0xf3d)+_0x1dc2ee(0xa93)](_0x54139b[_0x1dc2ee(0x400)])[_0x1dc2ee(0xe91)+_0x1dc2ee(0xebc)]=_0x18a69b[_0x1dc2ee(0x5de)+_0x296bfa(0xf3d)+_0x246b13(0xa93)](_0x54139b[_0x1dc2ee(0x400)])[_0x3658b3(0xe91)+_0x3658b3(0x4a2)+'ht']:(new_text=new_text[_0x1dc2ee(0x69d)+'ce'](_0x54139b[_0x296bfa(0xa48)](_0x54139b[_0x3658b3(0xe7d)],_0x54139b[_0x1d9baa(0xafb)](String,_0x45874c)),prompt[_0x3658b3(0x52d)+_0x3658b3(0x44a)][_0x45874c]),new_text=new_text[_0x246b13(0x69d)+'ce'](_0x54139b[_0x3658b3(0xc3f)](_0x54139b[_0x296bfa(0x2be)],_0x54139b[_0x1d9baa(0xcdd)](String,_0x45874c)),prompt[_0x3658b3(0x52d)+_0x1dc2ee(0x44a)][_0x45874c]),new_text=new_text[_0x1d9baa(0x69d)+'ce'](_0x54139b[_0x246b13(0xc3f)](_0x54139b[_0x246b13(0x82d)],_0x54139b[_0x3658b3(0x452)](String,_0x45874c)),prompt[_0x246b13(0x52d)+_0x1d9baa(0x44a)][_0x45874c]));}return new_text=new_text[_0x3658b3(0x69d)+_0x1d9baa(0x9ec)]('[]',''),new_text=new_text[_0x296bfa(0x69d)+_0x1d9baa(0x9ec)]('((','('),new_text=new_text[_0x3658b3(0x69d)+_0x246b13(0x9ec)]('))',')'),new_text=new_text[_0x246b13(0x69d)+_0x1dc2ee(0x9ec)]('(\x0a','\x0a'),new_text;}function chatmore(){const _0x1a0376=_0x405bf8,_0x12ab1c=_0x405bf8,_0x4ed544=_0x3af234,_0x3a51dc=_0x405bf8,_0x15bdf8=_0x3af234,_0x2938e0={'nrcgQ':function(_0x10a9be,_0x444097){return _0x10a9be+_0x444097;},'oqDnk':_0x1a0376(0x451)+'es','natFQ':_0x12ab1c(0x2e9)+_0x4ed544(0xf3e)+'d','NZmUf':function(_0x5bc546,_0x1e0a20){return _0x5bc546(_0x1e0a20);},'aAURw':_0x3a51dc(0xd2f)+'ss','BSBZh':_0x1a0376(0xae4)+'d','TpTPS':function(_0x307b63,_0x33738e){return _0x307b63!==_0x33738e;},'jaeii':_0x4ed544(0x86e),'PdJiE':function(_0x249178,_0x30cd92){return _0x249178>_0x30cd92;},'mgXvR':_0x3a51dc(0x6c9)+_0x3a51dc(0x562),'nPipf':_0x4ed544(0x4e0)+_0x15bdf8(0xcab)+_0x12ab1c(0xd67)+_0x3a51dc(0x96b)+_0x4ed544(0xe20)+_0x4ed544(0xa58)+_0x1a0376(0x57d)+_0x15bdf8(0xa64)+_0x15bdf8(0xe1b)+_0x4ed544(0x503)+_0x12ab1c(0x8f0),'yxYYA':function(_0x1c8205,_0x4415ba){return _0x1c8205(_0x4415ba);},'ydjBl':_0x15bdf8(0x337)+_0x15bdf8(0x221),'lPuIL':function(_0xb7a58f,_0x139e27){return _0xb7a58f===_0x139e27;},'TOnto':_0x1a0376(0xb24),'NppUP':_0x4ed544(0x8c1),'gqjuH':_0x1a0376(0xf10),'grmzk':function(_0x55cdd4,_0x5c9fc0){return _0x55cdd4+_0x5c9fc0;},'ShTAE':_0x15bdf8(0x6c9),'ueNmz':_0x3a51dc(0xd54),'mePkK':_0x12ab1c(0x2ec)+'','ljprJ':_0x12ab1c(0x4ac)+_0x4ed544(0x8e4)+_0x4ed544(0x855)+_0x4ed544(0xb75)+_0x12ab1c(0x5e4)+_0x15bdf8(0xc4e)+_0x3a51dc(0xe17)+_0x4ed544(0xd3c)+_0x3a51dc(0xdbe)+_0x15bdf8(0xf66)+_0x12ab1c(0xd65)+_0x12ab1c(0x668)+_0x1a0376(0xeb9),'ArfDH':function(_0x27967d,_0x303795){return _0x27967d!=_0x303795;},'teHJf':function(_0x17102e,_0x56190e,_0x4e47b1){return _0x17102e(_0x56190e,_0x4e47b1);},'ZCIXp':_0x3a51dc(0x20b)+_0x12ab1c(0x3fe)+_0x12ab1c(0xcef)+_0x3a51dc(0x5f7)+_0x4ed544(0x580)+_0x15bdf8(0xb52),'anOEJ':function(_0x429440,_0x499942){return _0x429440+_0x499942;}},_0x48e215={'method':_0x2938e0[_0x12ab1c(0xb2b)],'headers':headers,'body':_0x2938e0[_0x12ab1c(0xa2d)](b64EncodeUnicode,JSON[_0x4ed544(0xdfb)+_0x1a0376(0x22d)]({'messages':[{'role':_0x2938e0[_0x12ab1c(0x99e)],'content':_0x2938e0[_0x1a0376(0x538)](_0x2938e0[_0x1a0376(0x538)](_0x2938e0[_0x3a51dc(0x538)](_0x2938e0[_0x1a0376(0x57e)](document[_0x1a0376(0x5de)+_0x15bdf8(0xf3d)+_0x12ab1c(0xa93)](_0x2938e0[_0x4ed544(0x846)])[_0x4ed544(0xdde)+_0x1a0376(0x4ea)][_0x12ab1c(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x4ed544(0x69d)+'ce'](/<hr.*/gs,'')[_0x4ed544(0x69d)+'ce'](/<[^>]+>/g,'')[_0x1a0376(0x69d)+'ce'](/\n\n/g,'\x0a'),'\x0a'),_0x2938e0[_0x4ed544(0xdfe)]),original_search_query),_0x2938e0[_0x15bdf8(0xeea)])},{'role':_0x2938e0[_0x1a0376(0x99e)],'content':_0x2938e0[_0x3a51dc(0x5e3)]}][_0x15bdf8(0x84f)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.7,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':![]}))};if(_0x2938e0[_0x15bdf8(0x4f9)](document[_0x12ab1c(0x5de)+_0x4ed544(0xf3d)+_0x12ab1c(0xa93)](_0x2938e0[_0x4ed544(0xa84)])[_0x15bdf8(0xdde)+_0x4ed544(0x4ea)],''))return;_0x2938e0[_0x15bdf8(0x3ac)](fetch,_0x2938e0[_0x15bdf8(0xda0)],_0x48e215)[_0x12ab1c(0x95c)](_0x452a8b=>_0x452a8b[_0x12ab1c(0x943)]())[_0x4ed544(0x95c)](_0x20c0e3=>{const _0x4229ca=_0x1a0376,_0x2647c8=_0x3a51dc,_0x499a6a=_0x15bdf8,_0x2f4c31=_0x15bdf8,_0x11e185=_0x1a0376,_0x5843d6={'wjxnu':_0x2938e0[_0x4229ca(0x273)],'FyNuh':function(_0x55c344,_0x1b398d){const _0xf6d200=_0x4229ca;return _0x2938e0[_0xf6d200(0xa2d)](_0x55c344,_0x1b398d);},'Aqlvf':_0x2938e0[_0x4229ca(0x3c9)],'cGJeo':_0x2938e0[_0x2647c8(0xf84)],'TbnIC':function(_0x18f710,_0x516ea8){const _0xb0acc9=_0x499a6a;return _0x2938e0[_0xb0acc9(0xbbd)](_0x18f710,_0x516ea8);},'SioPj':_0x2938e0[_0x2647c8(0x961)],'QtSeS':function(_0x4c45d3,_0xbe09a4){const _0x5a28b5=_0x499a6a;return _0x2938e0[_0x5a28b5(0xbf6)](_0x4c45d3,_0xbe09a4);},'lZVkd':_0x2938e0[_0x4229ca(0xa84)],'dKUyh':function(_0x579f7a,_0xe6554e){const _0x5363c5=_0x499a6a;return _0x2938e0[_0x5363c5(0x538)](_0x579f7a,_0xe6554e);},'xLEQo':function(_0x2cd672,_0x327b35){const _0x4c8372=_0x11e185;return _0x2938e0[_0x4c8372(0x538)](_0x2cd672,_0x327b35);},'ErAIB':_0x2938e0[_0x2f4c31(0x2f3)],'mSfUG':function(_0x1de2b1,_0x5a5d15){const _0x3de12c=_0x11e185;return _0x2938e0[_0x3de12c(0xcd1)](_0x1de2b1,_0x5a5d15);},'vDcEK':_0x2938e0[_0x499a6a(0x2d7)]};_0x2938e0[_0x4229ca(0xbe8)](_0x2938e0[_0x4229ca(0x363)],_0x2938e0[_0x499a6a(0x363)])?JSON[_0x2647c8(0xd22)](_0x20c0e3[_0x2f4c31(0x451)+'es'][0x1a*0x165+-0x2296+-0x1ac][_0x2647c8(0x878)+'ge'][_0x2647c8(0x91a)+'nt'][_0x2f4c31(0x69d)+_0x2f4c31(0x9ec)]('\x0a',''))[_0x2647c8(0xd9e)+'ch'](_0x11d842=>{const _0x167fd5=_0x11e185,_0x1f68e8=_0x4229ca,_0x503bc6=_0x499a6a,_0x1e7614=_0x4229ca,_0x3f6258=_0x2647c8;if(_0x5843d6[_0x167fd5(0x625)](_0x5843d6[_0x1f68e8(0xd63)],_0x5843d6[_0x1f68e8(0xd63)])){const _0x1d9692={'TUMjx':_0x5843d6[_0x1e7614(0xeed)],'Ghrhh':function(_0x3afd54,_0x128ef7){const _0x60286=_0x1e7614;return _0x5843d6[_0x60286(0xe8e)](_0x3afd54,_0x128ef7);},'WAqyB':_0x5843d6[_0x3f6258(0x8db)]};_0x216530[_0x503bc6(0xa8b)+_0x1f68e8(0xf27)+'t'](_0x5843d6[_0x1f68e8(0x7e1)],function(){const _0x2382da=_0x503bc6,_0x196bf4=_0x3f6258,_0x1ac373=_0x503bc6,_0x3ce80c=_0x503bc6;_0x53a739[_0x2382da(0x7b2)](_0x1d9692[_0x2382da(0xdba)]),_0x1d9692[_0x1ac373(0x573)](_0x149dde,_0x1d9692[_0x196bf4(0xd37)]);});}else{if(_0x5843d6[_0x503bc6(0x653)](_0x5843d6[_0x503bc6(0xe8e)](String,_0x11d842)[_0x1f68e8(0x8b2)+'h'],-0x1011*0x1+-0x3bf+0x13d5))document[_0x1e7614(0x5de)+_0x3f6258(0xf3d)+_0x1f68e8(0xa93)](_0x5843d6[_0x3f6258(0xc1f)])[_0x1e7614(0xdde)+_0x503bc6(0x4ea)]+=_0x5843d6[_0x167fd5(0xadd)](_0x5843d6[_0x3f6258(0x761)](_0x5843d6[_0x1f68e8(0xd8e)],_0x5843d6[_0x1f68e8(0x849)](String,_0x11d842)),_0x5843d6[_0x1f68e8(0x380)]);}}):(_0xd6cb52=_0x43f65d[_0x2647c8(0xd22)](_0x2938e0[_0x2647c8(0x538)](_0x3ee5b1,_0x3b2761))[_0x2938e0[_0x499a6a(0xb33)]],_0x2a3b31='');})[_0x3a51dc(0x670)](_0x51410f=>console[_0x1a0376(0x79c)](_0x51410f)),chatTextRawPlusComment=_0x2938e0[_0x12ab1c(0x359)](chatTextRaw,'\x0a\x0a'),text_offset=-(0x2*0x1321+0xe69+-0x282*0x15);}function _0x2755(){const _0x417dbc=['oqgRX','uylAP','SJImj','qvwCm','Selec','loade','FUyKg','xjHhz','kYXtO','nMsKB','ynfLj','CEhcB','XgVND','meHSd','总结网页内','ViYJJ','ntRtj','sXFGI','OGLFG','MDrKn','BrzEm','yuKSA','KHrrd','DyipQ','NDSRW','dmGIH','const','VxVzJ','DVfLN','zygdX','BJWwd','SWEcV','RkrWs','XiBDf','HGBMI','wAnRh','cbWke','uIQag','iSTBV','GVfUk','zPaZB','UDRNK','aKyam','tagNa','SHStR','q1\x22,\x22','XoNxA','vqBkt','MCqoJ','jQaaS','AgWMW','wZblT','GnzGy','Width','IGHT','aRstm','Nghdd','VbqTf','dtCBj','搜索框','YtskA','gKjuO','PqMlz','BylFz','tVYdA','gZuSp','TtqKD','RHTzX','filte','XXUxB','KZLhW','EIsbo','HgqiX','ty-re','yeVcC','BSBZh','KZTVZ','。用户搜索','singl','oGEOE','255','BnFYx','KEqFw','AHxMv','UWETd','hFqDb','zLljH','KjMTV','sfzAQ','txrNE','EqmIq','sJeIu','BHErg','fbRvC','TCxzc','title','txCka','szBhG','D33//','18|10','FMCjt','kpDHq','gcCRZ','nbaoK','mcFPl','CKcWg','u9MCf','TRXAV','dedHJ','GvtYJ','OhuTO','iwcyd','VAUCF','jovao','SdMdq','AFDcD','RaxPW','XlUjP','MdwAt','GUkpK','Rsuyl','opJwf','CVBTk','KUVcR','JYuyK','KRPTn','gYBbW','n()\x20','zRJmF','iG9w0','jZdBx','QhJVR','XbLfR','DLE','OlQMS','Bzjac','dUuTX','EzpvC','JSPOB','NJaVP','VgOIF','wfmzg','WiIgG','TfAwJ','4|12|','jvWfi','HewiN','xAxrw','OXdcl','djQun','Hlbup','XZBfx','KZXSK','round','dLeYJ','cWrMe','gquQy','TGVdj','oyRlh','gOdco','gETHQ','PSCVM','wrXTn','wZmnP','bUIhT','WdOUF','https','jVXvg','tCTaI','fPLet','YolVu','VEknX','nQLnw','FGWST','oXIta','务,如果使','avcLC','Rlnii','QjcGy','svsZP','LgGtx','iPMvE','index','eYrlG','wruIE','bZMLH','FxEnd','Qeumy','ton>','NXPkf','BLFhq','uSFVn','alize','IWXOE','vygkH','cCGaU','jugWH','tl=en','XNDtQ','Sjfve','gify','LYGXQ','gCBvc','IMnOR','HZfwM','qjXGL','remov','QAB--','yMuSW','a-zA-','ZOqBT','xVsfC','DLKaP','(网址','VRyNv','nMfsl','z8ufS','ZfQwn','rkgUp','LZEEr','VMHiL','cPlvV','pdf','inclu','FmVZu','PllKt','oTkHg','JRnGw','PZauC','XCgXL','iEmBx','dkQCd','yJazh','WXwkf','CXfSL','cumen','0|4|3','XHz/b','mBzNe','BIYCR','color','&cate','mwypa','nCcYm','zokQJ','roxy','dkTls','vxZmD','IExjm','uwihq','PxWtw','围绕关键词','zYEWM','rPRhj','zuCSf','WSiRF','hrzgx','toLow','vHBaj','mipnb','srxpc','输入框','qyAzu','uplGu','zpmQG','tribu','ise','mFCGz','|11|5','EClpo','natFQ','FlHux','ZGbXY','yacIW','FJptF','NegaI','cusZC','OEDVC','WoKCo','pgMIB','GnwWn','dnLxZ','Jfwwd','ZtXVA','CUCoO','LzJrk','Rezod','pYLmU','nctio','UMNMi','ludyj','phtpo','LlAyO','AVcMa','xBuvH','gnBwG','bdHTk','mbxqj','VcuYD','githu','uokgl','sefOf','NaNJS','tpFEP','vPZIB','GFPvs','=t&dj','WUkgT','ULviy','odePo','9VXPa','IzlEY','WyVzw','tpbTW','Mpyrg','trKlh','OkbqH','xaVIJ','TfUxW','Qtkob','\x0a以上是关','pRAsh','Zdeyw','RxRFI','oTcaR','qTBjw','zteMD','HtVbR','tYyxb','yAyxR','iZJab','VJcVC','jKULp','lagQF','dfun4','BMNSn','QfcKz','-----','VhdHZ','BWwNj','hmQuV','tvzsM','BZuJT','cpQMu','CENTE','enPoE','VLRgR','vYhKl','Purxz','Nnwsq','HAxSi','qXVUu','eNZed','uqqAe','&time','Ypidh','mdQNt','75uOe','zmIud','ZPCvX','PKrzj','nZQhe','xgoPR','Azdks','t_ans','KPLLv','rraPl','号Char','Rhvvv','ulGwB','ydjBl','YAxNt','BZXvU','OuLTd','cPQgB','OrRPt','while','WXOzZ','bYqRl','IhWSM','qhEMG','/stat','hf6oa','cNAGU','DSPRp','rvrQN','funct','EoyNi','page\x20','piVAR','IvDzc','”的网络知','XGtYg','写一段','UYaJz','UpYFB','zaloi','iOZem','nPipf','|13|4','XErmW','hGKKb','WVZDx','TQrLk','lhuTx','写一个','aFurA','CLqLf','gcmfO','tHfeD','mmPRp','ing','”的搜索结','xAwVo','|21|9','M0iHK','PKMFR','BaXdz','UWSWX','YVxOP','ysRaF','bpGtS','sqCsV','ffLdk','UGmMc','wpFSb','prese','shBBO','GvGdK','fFmLV','eUxqk','gPkGk','BTulX','qNbhO','JdAQe','fnYSj','xZBLy','IGXlc','bgGud','VkRBR','KzMwm','xzOMq','herxg','uWwKR','最后,不得','nCPOW','UpYRd','QaNpr','MGXPd','mpute','nNkKO','JDEan','IlsVL','pbPsB','PTxdk','DwXdE','FYcbB','ycSFx','yvGbN','OaWll','JSQtM','oIAeR','eJggi','_titl','Lukgm','FyUcN','</but','WTZxC','LMStH','使用了网络','|2|0','SqlHS','|3|23','上设定保密','circl','SbkqL','bFiuA','sVHOh','RKAEy','告诉我','UxOgB','cPGGP','NmvyR','yWtVf','eEyVP','YYvAE','qCvxR','jMrce','sqwzn','hKizM','NzORT','pLpII','utf-8','Uehck','yTaha','VLJHp','RgVTW','nibTB','OVjwK','ument','anOEJ','undin','lqLGY','dmLrF','Rxlpg','什么样','JcUeS','WwOKx','from','NYICz','TOnto','WKVjX','rkegG','KHrAl','EBuAU','oorVY','FNSBi','Kjm9F','qouQg','RSA-O','NiqNJ','FljkH','fbXLO','hsnZZ','这是一个P','FBoYB','eNwCy','SpDIq','VyLJq','mMczw','jIQAa','XMndl','sbOLs','xWmBW','#ff00','iIpQg',':http','agHXy','jXwwh','vDcEK','teydT','boBkh','16|2','vmGeX','slVhD','vzSEb','YXAyz','uydGX','bSCqc','KzJDB','ZZhDY','kmdAw','RGBoU','EWCCH','GgGFF','WBKzX','Yopdz','pSTne',',位于','1|23','eFuMI','prSkV','Pvuub','QieBr','WMzKQ','FdOAt','lock_','jntWq','xqkQz','nofZv','jieba','XABkb','IISGd','qZtXT','CLogp','2631940cEPPNU','bEXXo','IXdfs','MXDkH','BNaGb','dVhEi','RaAVx','ykWrN','teHJf','NuSzv','WIRrY','ZYFuK','RYEAm','GrKRg','OITtM','ength','ZotGb','oYqwB','HzgoH','DQedc','ibute','rzkTu','Epohk','searc','RVCnb','vHMgo','|3|4','HUsFG','AzNNT','XBzPd','----','kKFMI','lurfX','FsIxc','bOHKe','hpOsM','ajedG','aAURw','Zplql','lcURX','n/jso','ErAZb','RvtcS','FWiBL','kKJTJ','hoYEu','23286nPxAIw','waKkI','NxMHQ','bmIxg','sByTa','lnebe','nrHtp','efjJS','HsBSC','eraQI','hBYjC','aoXjO','bwCud','snsuj','SMacY','HLRzN','myFAr','dNEgX','DWiuS','ctIEO','CDuPK','bAiqo','SWrgO','jzdbp','OMHxm','entLi','HpFPk','eSDen','对应内容来','WiWrk','bBShn','zihGQ','ZhXIv','JHIMw','uYBqc','ZhkdI','FxMsQ','cSoPg','WiHCQ','JXThS','WNlrh','CtvwV','fFmKD','BAQEF','://se','igviV','jqokF','apKHV','qYeHU','QfzGM','TAEbP','getAt','uFMFs','hkkSd','kGtVO','tSydn','JxbmK','FEIMY','kwDOs','jsRYu','uYQaR','lyAhb','AkveG','maDqJ','(来源ht','pXcgn','fGyWW','wUlSw','wJHUn','nZYzS','klsEM','(((.+','BFhEW','ySlon','OjEHj','ZLLTH','eAcRU','webvi','URL','wkqSW','hbDmz','XBPur','rngxv','ESOAD','TzUno','Mizap','fWAkF','dXxsA','urDfh','OqQhj','gzFqQ','SBGhJ','ewDjV','LfkZM','FDuKV','SpQmx','hacMT','\x20PRIV','23|20','kTQhd','HCuSy','pqSeN','gwPQr','UgpPI','KxWxt','\x20(tru','UjofQ','iQqwu','LWzwY','MIDDL','jXZqw','zGBGW','dvtdn','RhfxD','eZkxf','RIZku','QHucp','QxGis','DYGSE','FxkTk','air','NCgZB','MZrBo','hHTAg','smJkr','iHsRk','oEdlR','choic','bNNBu','eGJLa','NYjek','Index','KgDDn','xVKfj','pEKAg','cFQlL','Ysunl','AWhoY','VLVVK','yWJSt','ckdah','FHhtK','Cwfdj','3|1|2','eRBke','dow','xLkbD','jThRJ','nGUWD','tsqSy','width','nziCZ','IdtDZ','LZzil','wUfET','mgmXe','LXOWS','code','URdHi','UYzlE','lWPau','gHTGX','acbCj','SqzSN','JXXvA','LWZWc','mcAbm','RE0jW','GRIVa','getPa','AVMRL','IlNog','xHxrr','BZAxc','pZlqP','SQhHc','4|3|1','LsyhI','VRjky','zBmSj','kaZKm','dZGHJ','fKtUA','QqRcV','GJlsY','VyPqP','oPuTA','waBEK','eljhR','ement','hdIAt','ocICp','gfitl','3834445lhNgLx','drdlc','wPjPJ','TCkbm','iTrRD','ubylt','vDnwi','zCMlG','UQmEN','查一下','vheJr','infob','rPlOr','AwAMy','qeVAI','lHeig','subtl','nRYzD','svxzZ','XIJVg','xgNlX','LXkCa','vviZx','提及已有内','ut-co','给出和上文','UhRPX','XNoRj','UDpzg','BDoHt','YrTzx','COuNC','OEHbz','/inde','JSpvo','gUzvN','DGXyC','viQXB','fHEAS','ejqil','\x20的网络知','BhAmc','GazOI','yYOmw','jsRWR','CxGtQ','mUYyL','KTWQt','xxgdH','JgkmN','nuxob','YzcuM','trim','somEh','wjQtv','zAqhF','pncau','QqmbF','syYkE','xIlsX','hIgpJ','KfRtE','orEyv','NXbKA','|19|8','YgSF4','GMHlI','CnWQT','BOmIU','up\x20vo','GnAzS','dismi','HxSKp','view','Natkk','vbown','哪一些','<butt','NvZZu','VkChQ','EmZuJ','rpVKX','幽默的、含','kcITa','vQoZb','GbsVU','OiNuA','HTML','fzQIE','NfuXx','Bsddm','vynnS','rNGXo','90ceN','mKYvo','Xwdmf','打开链接','elsyu','cbhuv','UInUA','XgXhX','IaYgV','ArfDH','gHKRw','gzxDs','”有关的信','lNeFh','FenCm','psyzo','wOGBE','FOzNr','EaWAc','t(thi','DHWRG','YWDZp','ARjSq','IoTKy','jtjTe','spwOJ','Lzkat','qVyig','ceNHm','EHNkO','TDiJM','etTcn','XzIoC','qvjFp','7ERH2','jGczl','FLaLz','YcCBa','BKRiz','Error','KoCcG','LfIdE','stene','qUmbW','oPWSg','aTLYY','DvOYN','ense','dxpyP','JcCOc','pomJH','DcuCK','NPmcn','YyQNk','iIYKO','o9qQ4','CCvDj','SkhdC','eYVzt','TGfic','931dOVlGf','url_p','MNmgm','iSqrS','YCdcP','IAojc','boWec','yEUaa','UDoll','nlxWj','peDBB','|11|2','nrcgQ','YcYnV','\x0a以上是任','yXOTi','NiKiJ','</a>','uHnJZ','6261GoJNRf','gMgdG','href','SXrVf','xqtzG','ChcyF','nZloI','xhlBr','HGuco','KZzBv','AfcSr','GvmkA','dRsmd','ewerA','tWidt','thSdK','nTiGg','QgAkl','zZrmm','jWbOQ','VzNPi','LlVJS','JlDZe','min','lyotL','bgGFq','xgMVy','uKQQR','你是内部代','VUFOG','vpBHx','eQWps','sjcdx','npm\x20v','fzcdr','_more','FXtFb','DXbac','REroC','KRpcA','lEvSV','eral&','dSgdU','cfLWk','pBiDP','hrCtC','WPPiM','用简体中文','HYyNO','YBUIO','jSjhv','ntDoc','Ghrhh','EEgel','D\x20PUB','EyqcH','QNOlo','BzwkQ','lDmoP','ZWgRc','flvCG','NsDLf','ck=\x22s','grmzk','lZRxT','mplet','wKaJp','SskJz','VOUuF','CtKkR','PDFVi','GukJc','jfNsv','qeHUa','njsrs','ZVfMS','int','有emoj','UtJYC','lfgfI','FsVgT','toStr','join','hSnNC','ation','ZNooP','BYAup','LQlDN','4|21|','链接,链接','apper','OnEmu','rQmPy','DXkXD','footn','PVFgI','iyTMe','lAzWy','QgAvd','tkCFl','knYlt','bsVjX','hhlUE','NwiKn','YUfot','FckUZ','aKWZa','E\x20KEY','OFEGc','fGtZi','decry','ATE\x20K','OBKzx','\x22retu','AHSAg','rrETG','QqpLn','#ffff','dhMvR','trans','重复上文','QkkTx','6|22|','mzCXv','KtcYq','RWONb','kHGhc','ZmlOh','aaqJO','DCumW','CyBqL','fvuiA','suZbP','JHPYc','后,不得重','IwgMp','AZsFM','Ggazv','ZyECQ','vdXFF','pdf\x20l','LSztY','hvOkA','哪一个','OrVZQ','lSOns','tvbch','acsHV','AgcPe','YacjF','yKaMK','tRLqn','YBfQc','bnxkz','r8Ljj','eWJCB','fJHGO','ZAKIH','wSdSS','query','RYQYh','_rs_w','lEyfe','PDmyA','ljprJ','词的完整独','EFFef','aAkRG','fCIjj','nTJAl','entlo','什么是','cLwqY','DQiWC','OxRUo','tUThO','WnjcC','cIgav','XPgDI','jMsrk','fTvNP','HCryY','kZFHH','sdqKs','kg/co','YGGCu','IuYvO','eGyzh','seEEn','alt','QJnnD','FSILW','qzOEP','LiVIL','eEWyl','VwuOp','sfeyD','有什么','|10|1','pXtuH','eeviD','l?fil','ndypS','SsLDm','PDF标题','OztFr','zh-CN','gyZkF','aOIKk','CmUZp','fuQcz','HYniM','WpZdx','xjQMM','NwmTN','SOOVb','oJOuL','LwJLp','value','bBDRE','muRyX','muIes','GZfxt','ygQfB','zxjul','aUuoa','ZNCpn','SxcWX','代码块','MrLZq','TbnIC','JDhxT','kktDO','JJjMN','UBZOs','svVzS','DHVJR','QZhcW','keLYd','wRYCO','3DGOX','XLGAu','接)标注对','#fnre','IbeYs','hyDBo','PEzJY','ImvAv','QJerB','yjPhH','OYVQp','tuiJV','LcXNH','KBPDj','MvWiv','hCPHy','5|7|1','QccdZ','esSaa','PZfDV','SSjdy','ZNMAY','hDYwq','tant','TGwTo','gbEKz','ryNQm','KDgRE','jurGy','网络知识:','FKnON','DLTuf','vquMe','JJDWy','aNAjA','论,可以用','QtSeS','YqlfT','CZfun','kKRWn','CmcKW','qeAFP','eteMW','YPaWO','AxpPi','HWnfr','jnjqM','lUbZk','Nzrbw','TvolM','WfWdK','event','JJfWh','xwzVN','MqkIy','Color','xqjBs','q3\x22,\x22','QjjeZ','ECbBV','raQJu','xaach','kvRgM','MaTsp','BJmpi','catch','hSbhh','SOoci','cqhlh','bawmy','xGwfd','kolrD','CMuQs','VJmBN','SsTAy','qiSEZ','read','FMGmR','KucyF','ojKYb','GGqGP','LCJpe','AvAzH','omwOw','kLYUv','CIkvn','aded','x+el7','HCbJd','ibUMp','ueOXS','XayTG','LAfez','top','Ajdpl','sJINS','fokpo','KauBj','qnPWS','FAJSa','0,\x200,','BkOky','AKKxZ','textC','XCMBI','NSyVd','MUhCI','BmzSu','18|3|','HOqsF','repla','pnZeq','OsQsl','GkBSs','DIHgt','zADMD','CAQEA','qjVWV','NZQJv','SKnxP','KLYnz','nLcqt','bnISJ','buGNX','|16|2','sBqGD','ntent','ikJFe','wlvRP','ULdDf','zryaZ','TBeWy','ToFEA','RpHEh','jqoHZ','HtswT','dMizC','JRqyV','zjXfF','uXFDQ','unshi','bdVCN','e)\x20{}','TNpnd','HjHkC','GpLpb','xZfjt','QRdGa','snAWo','NSJjA','UkIUB','CSDEb','dtuEX','5Aqvo','#chat','gozok','kg/ke','UDuzU','gNOcY','aVOkx','aguos','OKSrb','HUEhz','cwaon','eWIFy','CFMKF','gClie','excep','iHTPE','zVGkC','tRuie','CrWae','mKWzk','请推荐','(链接ur','YNuTq','|2|1','XRJyO','kkXFp','255,\x20','cNfqw','NbUJm','7|14|','NNiUl','hSHCi','ZegYG','eDGhq','tiyPm','teeXy','aZRsk','dPEDA','QdTdH','t_que','fUiIM','yDhAA','hheES','init','JWvQc','fHchI','QNTqR','lWssV','&lang','zwUai','qRzBl','UGCzO','has','PpHYL','QeuJr','HSKbA','ftnqw','|6|22','DXTHa','(来源:u','ratur','NFaNM','YjDrf','RyUYm','ault','GidPG','items','mliOJ','UrsMk','dFMFo','IdZbX','tRtky','IDDLE','BvwVt','sJdUo','eOJRm','czROU','VyWag','nt-Ty','OJXxT','上一个会话','vrVmW','cVbus','FFsyW','UfNYE','Waxvk','BwUuI','BeKDc','IlqqM','Xurxx','eyeiF','keFbi','cLLyX','CbHqN','YMqDT','qEpVv','aVhIF','SpeCQ','AWHMl','pHqOo','2849196JWRnzF','HFopb','oLJAp','RXADd','uJEWm','tps:/','TFqiU','YDEQE','TXUmR','RVhkF','eijyr','jrTrX','复上文。结','floor','iLOcE','JqQwY','jTBAi','M_MID','JPYvn','TZSYu','PWHQu','zfmhN','ajeJJ','vryuK','QpYpQ','hQZpf','SLreT','dqOnk','ZanWO','cuJDB','dsPGy','FAigj','tVxOb','kWigX','Heigh','ojnRw','MwnHZ','请耐心等待','match','e?cli','ClMxt','NrcFq','SzQwg','LqvFr','terva','XDIrl','rBCFR','LlMKk','iLOFR','AMbNr','#0000','=UTF-','6|0|9','xLEQo','ntRec','ExWbM','bNWeE','SdQQT','CZHhu','LLMhj','VoeIo','qffhn','kChsy','ErkUt','XUbju','tHeig','QDpSB','kmwZK','body','decod','cut','numPa','wQXIT','xtyls','YILxi','qYGlz','YLyjL','ktOZh','zUfmP','oxes','tHaCI','kjaGy','UMJpl','M_LEF','wLNWl','rch=0','pqKML','XvwIA','vPNEV','pOapr','Eughe','feFgN','skQXb','TDacF','hjHyF','XZony','UgzsX','hvkeI','vxQWs',',颜色:','zyxcT','CTJkn','57ZXD','wcKtT','IqomO','gILug','sort','ZCNcm','umDmS','sNsDQ','oznSu','TuHbt','error','RBFth','uyVht','Y----','(链接ht','oeBMC','TWTLa','zQVxF','etKtK','EwGJb','jnLld','name','t=jso','nfwBx','BCnsQ','axxBZ','ShMvY','IgGaW','yMErn','tYMgl','fbdjI','bnqEO','log','imAxo','cExQF','DMYye','WHVVO','eaUpa','RDISo','VJHgx','RomEO','QQHeW','EryYL','QGwXq','VPPSA','的回答','PIouu','ynzys','GITfQ','CgNPt','KFgLM','nHcYG','ImNxz','SVmyR','WIxxE','mDkRF','XbQKl','eCALP','fClHn','Charl','des','iHfQs','nMfty','PaTzM','chain','XJcdh','DlNVK','guaTL','whVYr','fpeUb','keLcF','tOKQm','*(?:[','UKDKs','FijGt','tWwNp','BVCFo','WhVhB','fLWeN','cGJeo','yjTUo','PSCBF','dNYFG','AxsuV','JJVvo','知识,删除','WQqPQ','diDJv','delet','biAmV','vTiku','ErCGP','onten','kIhlh','ObSfN','RUkcL','ALOfC','RIVAT','FBPHV','OjmWV','PxKIW','zwDPN','RrnuK','UhuKv','的知识总结','QWhrT','JZgib','PTezV','OmaHc','UOnnO','bSyuR','ozcyp','zWvel','EkGiY','MIBLJ','LPSyd','QbyCT','yEFqK','WpYFQ','pre','ANpIv','FthmV','wophg','yeIDP','hqvia','YKtSC','AfiGQ','CZmYH','JHtLb','qcLVJ','IbfjH','zrZSt','2RHU6','dhIAW','UHYWw','ayRTm','JKySm','11WzUEsK','XCkmZ','kNVmj','sXEIs','VLfqi','ljZeF','ion\x20*','ZusQt','forma','uNwOB','poPMt','JmLoy','cTRhK','Swyqp','EXPjP','KjBrO','fMDOC','dpRGP','Ktcof','QqTlZ','TfbVJ','tNwTI','fDypM','utxPG','vYRTC','wMuAf','FMGDG','UQEbK','JNFTB','tujIs','kCQjL','VcChI','qThvZ','zDYtu','hJXkC','giGAc','delta','gfDdh','EowFb','xLiZG','VgmwD','wer\x22>','uage=','ShTAE','l-inp','WBPaq','mSfUG','moANe','HGISU','xYRkn','conso','Aqsrs','conca','lzxnw','PZPEQ','pqVVU','PDLpq','WjqOr','要上网搜索','LZHxW','impor','AgUTa','vYlIF','ABlJO','edVYD','SBLOA','|14|0','iogYB','3889552wYjWuH','dExtA','ZQlqQ','PjmHC','hyqzr','无关内容,','dYEUm','PDF内容','emes/','8&sl=','fkOcr','ODYYT','CcuNO','zDaDW','hgKAv','MxUqS','XvxvD','spki','kedPu','PDF','YcWpj','ansla','FarMy','magi/','TfvXX','messa','GxcMt','RtnCK','5eepH','UACIE','wgJgn','xqHhz','_page','data','XxoYe','JPkeu','tMTJc','kKEjB','KxksQ','hEeMa',',不告诉任','STSsI','XGStv','tEefL','rrkYD','Krxhi','LsEHV','AXGlH','pixLD','ACIeE','#read','容:\x0a','bJanB','JtorQ','appli','BURcX','xPZXA','Pknba','sXZAt','XADaZ','ByBFS','ptyFz','FukDM','fWIjU','QaYge','XGlAU','nJbsC','gVEhB','18eLN','nTBEO','uzzdb','vhMeW','tYzJf','SejYC','aALdF','zjkbk','aNUKY','uMbJK','rxgeb','AmhDT','DPPVe','JHAZL','edClC','lengt','DgOyx','WenlX','MWBxQ','END\x20P','找一个','style','SXtkW','IsUNf','SLaQe','QIDXg','SWsnS','VfzZP','AtHRo','zzNoq','POST','BgyHX','IVibb','sgbCm','BcsEA','HNOZk','THDFK','Limtk','LSdJT','vtjgo','Zkicn','4|15','yUnbl','Pyoon','RteKJ','EYWbM','pPwqA','jVwJQ','GEHRX','ZLBUZ','AUWmy','17|8|','oaded','TOP_L','wrmPs','0|3|4','Aqlvf','dAFsk','intro','IwxPS','getTe','$]*)','YuTvA','XHGTe','LVIsv','相关的,需','atuCk','8|14|','b\x20lic','tjNmi','gorie','#00ff','yXtrJ','CbfoR','hIwKO','nhVJL','CymwM','s)\x22>','ges','rvSlh','vJzvd','RPwdp','MFeTb','SXZYP','IXkWz','phQbS','TxHaT','-MIIB','dMCCR','rwwqU','pTjuW','fZksT','vgHYQ','iJlPu','bdQzc','initi','iUuAB','iucRE','bHXwa','LWgib','MdNLW','Obach','JOSfP','KEgHw','ODJYv','DOORg','rsFKw','UnBrk','cPaiD','ote\x22>','CKhHw','IzSab','ENmhW','szFOx','lPzhl','TTcnb','enalt','HTZWs','TOP_M','conte','ExeXJ','BEJSb','iyZzl','getBo','ent=g','bcjhZ','Ga7JP','ESazm','NHPjM','kn688','LHaiw','rlulB','XUrya','wXrGX','&q=','NGPiz','zFe7i','rSZFv','BHpTs','Vlswv','KRlqO','clone','KkkxH','nTOOs','fnVxY','lNGRI','oRrpo','faGUm','HnLxL','gSgos','dyBqX','(来源链接','mZttP','hPwfh','XAgLS','getEl','ring','rKQSs','vXjNg','uSZZQ','json','jRXTW','kg/tr','setIn','OGikz','nUYsi','avmle','=1&ie','AKKie','zWJIg','mBXhI','fqecQ','LYoHW','XGbkQ','SQqcf','dUvyr','|2|20','VbAHa','sQDJd','GaeUP','EnOyU','xSJqK','dGsLf','ent','IWruD','then','SdPSE','KbQkp','uzAQN','bfKmp','jaeii','WyneJ','完成任务“','HtARM','AecxU','wHMAf','zKChz','slUTy','SiOzm','__pro','btn_m','fOgjy','TniLh','TLlab','byteL','ziljd','0-9a-','FEqsc','Ufsbl','|1|3','naRVO','wJ8BS','YnawD','|15|2','ACnls','yNsGI','hTlsZ','isjiX','riKiE','PCByG','nxvxc','RMkEL','IQcny','AgjyV','nhbOj','ArVlT','preve','qHTsB','ePHBN','table','tzDcJ','LNYPN','mDYoz','OzHSs','PGoZB','QOQpR','hUVkE','HgXpy','KZQvu','jGErz','wDyNq','ziBow','Conte','XQSmQ','arch?','RNkPU','JoSCp','bmYxg','PfSPP','kkvGX','|3|0','gqjuH','/url','cqZkm','akFMp','YXaHj','rHCOa','NdgOF','mXtLA','rFKdM','Astqy','gzWaq','cExwn','vMWwt','blIeB','PLbQM','bCtTF','能帮忙','hCPhh','yHmjZ','ById','bInhn','md+az','UbMiC','g0KQO','BzrMi','fwzYn','UfUiu','(链接','nJdUp','ytWGz','xeXKh','zxFjn','fCeRj','cXYsd','butto','BmCkE','SeqOT','定搜索结果','asm.j','tmonu','site','116SFsbZR','BSCAX','MkruD','tpYvL','IdpTF','DCnfn','SnjrG','bYJIN','mvTbS','eeTXH','HPIkZ','qYZuG','DZsQP','ckwDG','rame','TBMli','TmxUg','label','DxpBk','你是一个叫','XYRjZ','HGBYo','CkUiu','BmHxR','介绍一下','ssybi','iVDVm','aAzNp','ieQem','bPZyG','容,发表带','dZOnu','BAgSg','ChToP','b8kQG','faUhu','docum','ceAll','HhznF','xGRbF','iKFok','feRuZ','bABnK','QOQGQ','abili','havNH','GAcXJ','中文完成任','click','syste','dFJoV','YWqWr','Acnli','rPPvU','texta',',不得重复','IjANB','igpQm','AAOCA','DNLwW','SzMWg','MCMog','NDRGk','TiOqC','gDIKU',':url','flcvF','Iyagf','ctor(','IKiBY','avata','eQRGD','BLqVv','PsJdI','(http','CuREX','AoHjb','proto','PTiwM','ADcZV','PCHaJ','mKoqC','aDTFk','left','关内容,在','pkdgu','fPvYs','JYgoj','(网址ur','Niqiq','CpxQh','DZqJQ','LIC\x20K','khiQW','ncOMw','xDTRc','gPoTX','xyaua','mXfiY','cdwUK','KoEfm','GgzNu','NZmUf','bodHg','(网址ht','enABw','WNCQf','yfvtL','MrdcC','lMXtq','wGnIo','DaBUh','PxZzP','ZIFQJ','Ybrce','jkAZd','cAGuH','mOnNK','odeAt','XdCPo','bjGYB','LFYCh','zLqZQ','ALjgd','Fepgr','QHpyl','PNAdq','5|19|','ULPwa','npqRG','split','dNgJl','KEimW','kmPAE','VLAhF','pnXIV','wlddy','TqksM','VrkmF','lasqW','xxBMd','aria-','nNJRT','LuNDO','YEJkl','oncli','tKey','aRnHC','yjWJV','NgRdX','nuJwa','nXyCE','hqioy','AlZKR','YvttO','conti','cewFc','end_w','QqgLo','NgOYe','fchJv','nbkPO','IBCgK','nJVTp','DLusy','LZGHz','GpSDq','Owixg','qwvtN','dkTOZ','efzby','dHasp','DIElo','iWsUo','CwRtq','(链接:h','SmgEK','nfDwE','IJoOv','dProm','hpjDR','_inpu','xwJhf','KwmVg','e=&sa','MlEzN','wrhWw','XKpMG','fesea','mgXvR','CYyDm','nETig','FgvKu','call','HEXzG','JHoZe','attac','jjrCW','bjrkM','Wuyhr','Zgxg4','VBMvI','yZxgK','KYjDs','tor','DlQnK','EsxVd','lXlFb','ndNab','bXpvO','s=gen','GpESx','LXfyG','ubvRW','XlPWR','aVubr','EHThm','hZAkI','rPJNK','rwIld','MYrNK','ydjOy','BHWIK','Jbqwq','VpDNH','tdISI','dOzun','cfVpm','NbyQF','ocKfI','UoQlG','EuFWr','akQRa','GkjnB','OcCWL','qaPlm','ader','RNLBk','yAxYK','tJnGL','YwlLD','QegoE','UFmVu','XAHpY','njTOe','VyrzM','NBJiX','inue','DDHNl','YJjHi','SjSao','QCCow','Pejms','eOzbc','oIvXk','kbhac','OvYTo','RzzMx','XLFTq','wuhlz','pplmi','PlyXq','pyvvh','GjoMb','(url','yQpxD','PELlQ','g9vMj','vOEkU','PajXU','fy7vC','WZvBY','gZRFh','uCNWw','LePzd','应内容来源','fstpj','MhXrO','dKUyh','iEErH','xxofu','hNNRB','dwsjZ','CIwtE','sINtK','onloa','TFItf','ioLcy','zDZjf','info','is\x22)(','wjNkJ','Tircw','rZmDO','CcAIf','pplic','SMaYl','M_RIG','WbClw','JriHU','QxOIB','YSlak','kMicW','appen','dmgAR','Xoesb','0|4|2','omqyU','WcmLL','rVmUh','GUTYh','MQiWc','wmenm','debu',']:\x20','JrCnq','Node','vqoUU','UgXGU','YDedT','BLnrB','size','NtmdX','ajLNw','XNBBK','GzZXs','GbgaO','vcpSn','EpTZy','VyeRn','FsZil','beumL','kgBeW','NOdNs','goFpJ','IFLBK','OZtWA','Bus','MpGYi','OToCC','nFGpp','网页布局:','mJKVg','59tVf','TUPts','FzzoH','LeURX','TbuFl','iCTeF','QMHdD','BZnMG','xAHpK','AUgdW','udKDA','chaSZ','MQfPQ','NppUP','xIcth','KHaLf','rBtRG','gvkPy','kfIff','ZcybU','QTeSX','oqDnk','|13|1','Vqsjz','KCqFx','ttps:','YGSxX','rxvdo','lVWpS','pVcJs','ruUYF','dKtUQ','IikjD','MELFb','lAQQR','hLysA','\x5c+\x5c+\x20','subst','LktZk','azXdE','chat_','yTGkI','AyBVi','(来源','tURAQ','IQzHB','LYcgb','htNkh','fMDUH','提问:','dLGzJ','wNoKu','ions','0|4|1','WXode','UujCO','ErGrW','NWQtA','Z_$][','#moda','sJtkM','Jshmj','aCAyg','VyDJB','xNoco','COTnM','yNzFE','网页内容:','LpKvn','FrDRl','BOAmX','encry','MLGMC','qsynb','form','talk','IyCEQ','Og4N1','ri5nt','count','ullvC','zDTdC','#ifra','qLNpN','iqXOw','SsUPp','lCuPK','的,不含代','0|17|','pdfjs','BCsCR','lvhoH','kasDL','tcfJX','ccEeg','lopYa','\x20PUBL','Vielg','CfNxi','iDPbb','lwkrO','XBJur','htTTz','RPjue','xdsJO','xWMCR','的是“','rOCon','在文中用(','MgcIv','ODFxT','UZUNJ','RzISj','KtPmW','dPFsk','cFsCY','MaAjs','yvBkz','obgPm','JhXQY','9kXxJ','IAxqw','YkYUC','ewpor','mSRTy','fhPhu','cTsZd','img','rWlvN','nces','NRCTe','dorbd','iUQMX','XQsHx','ogFic','JdtOk','XiBkm','SpYBf','vbkJO','TCMEA','QrXXu','Kkjpf','iIGxS','SyOsj','vote','NJHQV','gNGHn','vdEIx','zcYCp','TPrpH','CxuUB','ZmlXT','eRAUo','ZPZCh','vYKBk','IPcyN','AEP','GRqsj','geDTb','TpTPS','atkKH','cNwcK','IluGk','gCvQl','xdLzB','”,结合你','IvOlV','kg/se','LdpDI','5U9h1','GljHF','mFcpu','rjdgZ','cbbGG','bind','ceEcI','zInfG','xpfMT','hsojm','YYZMQ','oAIPC','Qutyj','VyrvY','dZQCH','Iminz','Yqiov','2|12|','Dcchq','CBaFi','CAaDW','rCybe','Orq2W','zzWLb','daeen','dNZwI','Onxmx','OrxJV','nue','IGdxH','ntWin','push','ouLzj','lPuIL','AQMhX','何人。如果','pdLHb','\x5c(\x20*\x5c','BZNrC','oNJki','(来源:h','ic/th','les的人','UlQwJ','OVgIP','pIdYW','pvput','PdJiE','CaGPH','pxCJc','WFSvV','zCkqG','FTcoT','sovMY','keys','XBqyY','oMIOf','ewerl','oKKui','UgQVK','LpMNl','CXOip','sqrt','dKJGy','pkKVy',')+)+)','odmjT','arJqs','PzOjr','iAcTM','fOncJ','DF文档','GsKbQ','#prom','mDIXs','aUFBG','awwzS','geXWu','|2|3','hUcWZ','f\x5c:','FBmPM','LOSHy','ITDpI','QBrcc','8dStNSw','jcmvG','oTJtq','lZVkd','url','RDmsa','sLWOc','fVnAd','QIPZN','WiQXW','GkDsf','hIxqd','TkZNG','mCjYO','Abebc','PyHqx','getRe','WbygO','HkUKo','FZdCS','lbYIf','src','WaGfY','YsApb','\x20KEY-','JPfgH','dIjEV','WXXBz','VaCuF','vMVwt','str','kOsRG','BqRjT','dStyl','DewWR','gWuOz','mLaEX','VTlcC','写一句语言','aWDRs','AlZXT','dNuBP','lNTzf','FPHPm','shift','state','fwIDA','eAttr','GRVKh','getCo','立问题,以','fKqjK','dZtTe','4|13|','qTpKI','qMZUn','yQPmo','tadrV','mQcKK','IsHFL','offse','role','SgCQe','ThowO','EbAUD','jLBIn','AqtQx','eofuX','SfUtT','wFnfD','DvOjJ','TlTMY','gName','sYyXc','(网址:u','eci','KKkPa','---EN','fgmVy','qTBMe','KevUf','isYRk','(网址:h','xfusN','SqzMS','nRDRH','csMHM','BOTTO','gwecM','dzZpl','YJPlE','tx&dt','CmZip','dtqWH','jnokG','LJxGs','mBKwG','ziyLg','uqfMs','SHvWt','Zqbie','lOnxJ','OdObT','归纳发表评','sdZaq','YhtBk','qSRLY','yxTVe','phuWp','kgIpb','kkOOw','fluFp','EWXMX','识。用简体','qEMQu','oSRDS','ELmFm','WSEOI','ibhRI','trUCJ','add','tsnWH','</div','bIFvJ','fjWXI','识,删除无','|19|5','gwjYg','_cont','qGOdF','APSSZ','XXOjZ','pkcs8','lKSYH','pbiis','\x0a以上是“','class','vOABn','eoNWm','RFjCm','fgEao','qVjeH','gTXuU','on\x20cl','sOekA','iwyqe','to__','gIWRH','eGNow','hMOFt','phoTY','{}.co','XGpAB','//url','Fepns','xNDqf','PWMJw','rzacS','isBha','APEHX','iDgQK','djAJV','FhcJW','=\x22cha','next','tPdiy','34Odt','EftUf','zA-Z_','SOLhy','nvwjy','sDEoX','RTNWx','zwGgb','llbwL','Tyttw','PgOKI','xDDJF','ndNEu','BNtue','wNxit','yxYYA','hkfOw','KZtOx','uuNYj','92715pJmidG','XmPLW','qyuQQ','gJrSR','nstru','gkqhk','TMTPZ','uvscE','KkKfA','OZogD','xPZch','文中用(链','vnwlD','NnbqB','4|0|1','PUlYK','vZMLt','fwTrI','fvKqY','ANFGB','QTzNs','kFYfb','TSCEy','LWwJk','网页标题:','IsEjs','arch.','catio','RmiEK','(链接:u','ructo','sLNNH','KGRsg','tCqni','bkhnh','SPqhn','rLZXR','JZIvk','QCEWK','RYCkk','KENSZ','uqcXB','eCMpN','vziTE','ecwJs','QyuTc','rn\x20th','SIkGv','beIUS','OhoQs','fncOe','tILiH','(来源ur','emoji','WqnxJ','JoSRl','ipjpC','tkjje','uxgxz','backg','FdkKS','rYtLC','IwHSJ','XpNqY','IhIuq','igDyV','NNNQk','curpa','FazEQ','dspUd','wsMxg','isuiM','WMfxK','JChAd','JLViL','LHJhP','EKHjv','parse','rnZUW','gTgxJ','fGgAg','xXysH','EFT','dxYGy','koodF','TcEde','XYrff','qUIbp','cbTWd','hWMtT','succe','KgOIW','BEGIN','FbOLu','addEv','\x20>\x20if','ejPdN','block','WAqyB','iWYwh','down\x20','actio','的评论','json数','FYnFt','AriQO','ntDef','gYHTw','QRTeV','://ur','不要放在最','fiOFT','息。不要假','rJUeI','|21|2','APfEG','uzWVw','YwJAt','hbdrg','Zopzk','OOXzj','n\x20(fu','oyBBk','qJcXC','pnDGy','IrEQN','ohgDz','以上是“','negSP','zBkZD','PjEPz','ymWGC','aHtqo','JHwaZ','QRXlg','vXjvF','QNxrS','fyHep','dChil','tion','mseZs','vAfPz','SioPj','unAZm','q2\x22,\x22','dmtUG','ass=\x22','RZTRt','retur','xrTVP','te_a/','dSAQY','apply','eYvbn','o7j8Q','AHXIB','nce_p','lLAQq','displ','mVzeV','getVi','erCas','OmxJd','UjgxU','PeFcw','ljXCU','aHlmZ','hapzS','yWbEG','|18|1','PdCqg','LHIFe','iBvVY','type','gjAGj','qqnzv','JdRcY','oJZTm','接不要放在','gZHcW','EqhhY','bPGip','qzjOI','oWjpD','mNyZm','ErAIB','JLwir','keoSR','VHIPP','|0|4','ZRsbN','nLqLC','qpefd','zWvxL','用了网络知','QYmuO','me-wr','pupsi','YVPyo','wDwSI','SHA-2','forEa','uQoyY','ZCIXp','IRTph','bJvQI','vjRou','FiIwk','iBMSy','dsQVU','Knsym','NTVFz','fyucS','chat','exec','CDQvD','bqKHt','wrjys','LqdfE','ebxAR','warn','GdfUd','OUjsi','oFFnG','TlaiF','QKxCA','iNMVU','yUEMD','xmRIQ','TUMjx','uBvdI','x.htm','FCZpI','组格式[\x22','QMUWg','TOP_R','RMLab','sfRdx','xJEiS','gRhpS','cBIjT','BeFlt','UqMIh','BnXfj','xGHwd','dnlDR','LnuSW','AzMSn','beLuG','QWcUv','tempe','all','iQFDh','cKlZt','GjmmY','wsbaU','TcnOT','vEWGF','RCSjV','mpBdS','LNhMI','mwFgn','kymoR','QjzCY','tZcom','inner','cSuZD','fcimz','feAJy','llQwf','RSNFs','rea','CkTIE','IC\x20KE','WSiPN','2A/dY','fJVLj','6|9|1','dsMRZ','HkPQr','eBEfE','ccaxf','CDWMC','E_LEF','bzAps','网址)标注','FdFSQ','JUZXH','FEYpy','MsjDs','AiEns','vCDDB','xYUwy','cmPOQ','strin','UkZtv','UsNzv','ueNmz','tRqzm','pdfDo','KTtJC','键词“','xeKYh','ZDEpz','CCXqN','oOfSu','tlZZw','awbJZ','WOgLx','6f2AV','XqQzY','jZRNm','LtXNQ','OlIxZ','zMgiK','YEMMC','xtLaT','Vinrz','vyKZs','EZsGv','yDqgc','PodLJ','不带序号的','qgUFT','NVwzj','MiXVP','ebcha','EWurm','VPEBR','gIOBy','JrKUg','ore\x22\x20','nYGBo','oJVPC','kGvVX','mwfbH','CpLfW','工智能。以','EBuhi','sThbs','jSMMO','SOsjF','VMeRr','gyqOF','jCgOZ','trace','stion','cVJXI','NfmpU','poiSt','ifzBB','JQtyM','pABbW','jEcMX','NggWV','UZkDk','llzHn','ZqNdR','slice','CLHyP','SxAFq','akhWN','iRFnu','test','MhHzs','auto&','YuCah','FyHsL','[DONE','LyFOm','wnUUd','torAl','FxkMm','ysLBz','gger','vdIVm','_talk','vVIfk','fromC','AWiaB','VbbZv','OEiCp','zRrDD','EpOph','KIpOE','ddlBh','CwUuc','pKzVq','Xpgqs','rELnM','<div\x20','rkQyl','ersio','ankbd','vfZkp','kVWrh','Nocrr','dWMlo','hAbSy','Xlseo','qgoAO','pwQJk','fXhXN','HXQpv','s://u','jrWlk','VfqoT','源链接,链','WOzej','heigh','twjef','es的搜索','gFMeT','mBCpA','LijeB','ICuBF','xVkRG','tCpzB','NUelq','dezPh','BGPBH','tYzOQ','sHKvi','RBcFX','hgaIo','leMbZ','LDTGF','pvStC','Q8AMI','aeNAX','UajsV','ltskH','\x0a给出带有','HnTIG','xrgQK','xPNGe','ebQvd','jHora','QNkiI','jFJKQ','lnbbf','FyNuh','sente','DUBql','scrol','AhaaO','uGMNP','FlyDJ','KsSkq','kIUUz','more','EY---','apdKp','zzTpp','Zuvav','anLXp','qPSEH','rxjpW','Pqbvm','tHfpA','OtTaX','OOpSv','kFewL','iTKrJ','nkMrg','GAhCw','jAKPP','XIWxm','jFdRu','xtCon','nEcHt','引擎机器人','hOFJr','SrSRu','mIYvL','msntf','qpSBh','LkaFk','cCRyH','vOGEy','NBvQe','EHqYh','xHLpf','tBSiV','q4\x22]','HytDO','uzLgZ','lTop','ymUaG','WEZBe','yEIWm','NMWVS','SZRLv','ZRJaA','OhPrr','LRBQu','UjIac','eKjlz','PFnjp','OSLqW','dAtOP','_rang','mzWhN','ytext','DJVIw','asqbu','jPxtr','Udobl','ZxpZw','yGUSw','sGxYw','DUfMs','Objec','XIsKU','assis','<a\x20cl','AUBGq','jzkbr','RsguJ','VkftO','input','ospPn','hFtFt','nTgNK','yuxvJ','iCwpn','VjWgy','DFfpI','PARLV','BqIVM','iuCKG','hOVxe','18SVEjxv','mePkK','oIJyh','DDMGu','wjxnu','scWXF','raws','EatTS','wjhVS','CpeKd','scale','TKcIE','|7|20','JzBJH','tWcvg','kcLrK','YtFzB','yIDnp','为什么','yxOzk','nEYxB','dYpJS','Jytwk','gbFUh','noSnX','Qyscq','cndtx','MzYJy','kHfNA','bFfAg','JWuwJ','WbOyq','CZjXF','LHyjx','kRtTD','PdQpz','yxkyl','oJjVx','LSGJc','user','1|2|0','selec','E_RIG','jsoka','SbeGr','zmjvT','12|17','njeZZ','HJueP','map','tent','EzRvY','YfjXg','CIJUM','mPLNV','JBqEc','kVgKG','UtIlB','UBLIC','4|2|1','TeCzO','BWcPr','hEven','QwZBI','hQcnn','DMpcM','SggsX','charC','LiLMU','qOAKT','weLqW','Guebd','LYsmm','fVrPL','i的引入语','RTMod','bVmAt','kkhKn','Xevit','BCSNJ'];_0x2755=function(){return _0x417dbc;};return _0x2755();}let chatTextRaw='',text_offset=-(-0x244f+-0xb99+0x2fe9);const _0x5a434={};_0x5a434[_0x183a03(0x995)+_0x183a03(0x716)+'pe']=_0x1d760c(0x895)+_0x1d760c(0xcf0)+_0x4241f5(0x3cc)+'n';const headers=_0x5a434;let prompt=JSON[_0x1d760c(0xd22)](atob(document[_0x183a03(0x5de)+_0x405bf8(0xf3d)+_0x405bf8(0xa93)](_0x4241f5(0xc10)+'pt')[_0x3af234(0x696)+_0x3af234(0x7ee)+'t']));chatTextRawIntro='',text_offset=-(-0xb1b+0x1d*0x52+0x1d2);const _0x182929={};_0x182929[_0x405bf8(0xc59)]=_0x4241f5(0x9f8)+'m',_0x182929[_0x405bf8(0x91a)+'nt']=_0x3af234(0x9da)+_0x405bf8(0x7cd)+_0x4241f5(0xe70)+_0x3af234(0xeac)+_0x1d760c(0xf86)+_0x405bf8(0xb88)+original_search_query+(_0x3af234(0x4fc)+_0x3af234(0xd45)+_0x183a03(0x9c3)+'');const _0x549e5e={};function _0x376c(_0x3b3bf0,_0x2cc9e4){const _0x56a596=_0x2755();return _0x376c=function(_0x1cd155,_0xcce18){_0x1cd155=_0x1cd155-(0x57*0x5d+-0xbc9+-0x11fd);let _0x7af2a0=_0x56a596[_0x1cd155];return _0x7af2a0;},_0x376c(_0x3b3bf0,_0x2cc9e4);}_0x549e5e[_0x183a03(0xc59)]=_0x405bf8(0xf10),_0x549e5e[_0x405bf8(0x91a)+'nt']=_0x1d760c(0x56e)+_0x183a03(0xc42)+_0x405bf8(0x4e5)+_0x183a03(0x58c)+_0x405bf8(0xf33)+'';const optionsIntro={'method':_0x405bf8(0x8c1),'headers':headers,'body':b64EncodeUnicode(JSON[_0x405bf8(0xdfb)+_0x1d760c(0x22d)]({'messages':[_0x182929,_0x549e5e][_0x3af234(0x84f)+'t'](add_system),'max_tokens':0x400,'temperature':0.2,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0.5,'stream':!![]}))};fetch(_0x183a03(0x20b)+_0x1d760c(0x3fe)+_0x183a03(0xcef)+_0x3af234(0x5f7)+_0x183a03(0x580)+_0x3af234(0xb52),optionsIntro)[_0x1d760c(0x95c)](_0x10a90f=>{const _0x2750f4=_0x1d760c,_0x435405=_0x3af234,_0x2e55d4=_0x4241f5,_0x1a71cf=_0x183a03,_0x1dde86=_0x4241f5,_0x4c18f3={'lNGRI':_0x2750f4(0x517)+':','VyLJq':function(_0x34528d,_0x27150e){return _0x34528d+_0x27150e;},'koodF':_0x2750f4(0x20b)+_0x435405(0xd42)+'l','FenCm':function(_0x1393bb,_0x3c724e){return _0x1393bb(_0x3c724e);},'yAyxR':_0x1a71cf(0x20b)+_0x1dde86(0xc20),'ShMvY':_0x435405(0xc20),'NSJjA':_0x2750f4(0x451)+'es','ZNMAY':_0x1dde86(0x351),'OdObT':function(_0x4eb058,_0x4d716e){return _0x4eb058>_0x4d716e;},'vnwlD':function(_0x51c6ae,_0x4fe7){return _0x51c6ae==_0x4fe7;},'vYKBk':_0x1dde86(0xe45)+']','NvZZu':function(_0x35a188,_0x5ca031){return _0x35a188===_0x5ca031;},'qiSEZ':_0x1dde86(0x39a),'dnLxZ':_0x435405(0x2e6),'IKiBY':_0x2750f4(0xce3)+_0x2750f4(0xc15),'eofuX':_0x2750f4(0xb46)+_0x1dde86(0xa62)+_0x1dde86(0xbe3),'hDYwq':_0x1a71cf(0xb46)+_0x2e55d4(0xe97),'mMczw':function(_0x2d01e3){return _0x2d01e3();},'ydjOy':function(_0x4fcf3b,_0x2df268){return _0x4fcf3b!==_0x2df268;},'bFiuA':_0x1dde86(0xe0d),'MYrNK':_0x1a71cf(0x2a7),'cbTWd':_0x1a71cf(0x3d1),'wGnIo':_0x1a71cf(0xbb6),'xeXKh':_0x2750f4(0xbf2),'EWCCH':function(_0x4b5d18,_0x4d16ab,_0x5e1a5d){return _0x4b5d18(_0x4d16ab,_0x5e1a5d);},'IwgMp':_0x2e55d4(0xdaa),'xjQMM':_0x1a71cf(0x6c9)+_0x2e55d4(0x562),'YJjHi':_0x435405(0x8c1),'HLRzN':_0x1dde86(0xed7)+_0x435405(0x646),'uxgxz':_0x435405(0x6c9),'drdlc':_0x2750f4(0xf10),'pVcJs':_0x2e55d4(0x260)+'','dvtdn':_0x1a71cf(0xbc3)+_0x1a71cf(0x7fa)+_0x435405(0xc83)+_0x2e55d4(0x652)+_0x435405(0xd0a)+_0x1dde86(0x9fe)+_0x2e55d4(0x4aa)+_0x435405(0x892),'YILxi':_0x2750f4(0x20b)+_0x2e55d4(0x3fe)+_0x435405(0xcef)+_0x1dde86(0x5f7)+_0x1a71cf(0x580)+_0x2e55d4(0xb52),'vTiku':function(_0x469373,_0x5f5154){return _0x469373(_0x5f5154);},'jtjTe':function(_0x44bdcf,_0x548099){return _0x44bdcf(_0x548099);},'wrjys':_0x2e55d4(0xb46)+_0x2e55d4(0x8dd)},_0x1c6421=_0x10a90f[_0x435405(0x770)][_0x1a71cf(0xc2c)+_0x1dde86(0xab3)]();let _0x59716c='',_0x293f64='';_0x1c6421[_0x435405(0x67b)]()[_0x2750f4(0x95c)](function _0x3fd974({done:_0x4e06c0,value:_0x4d2306}){const _0x5c1fc5=_0x1dde86,_0x22e0ac=_0x435405,_0x28b0a9=_0x2e55d4,_0x4377fe=_0x2e55d4,_0x302835=_0x435405,_0x32d961={'QIPZN':_0x4c18f3[_0x5c1fc5(0x934)],'qEMQu':function(_0xb9743d,_0x59b8ee){const _0x598b58=_0x5c1fc5;return _0x4c18f3[_0x598b58(0x375)](_0xb9743d,_0x59b8ee);},'SLreT':_0x4c18f3[_0x5c1fc5(0xd29)],'lvhoH':function(_0x3f3526,_0x200a83){const _0x3a9b52=_0x22e0ac;return _0x4c18f3[_0x3a9b52(0x4fe)](_0x3f3526,_0x200a83);},'Bsddm':_0x4c18f3[_0x5c1fc5(0x2ae)],'AKKxZ':_0x4c18f3[_0x22e0ac(0x7ac)],'AriQO':_0x4c18f3[_0x5c1fc5(0x6c4)],'CCvDj':_0x4c18f3[_0x4377fe(0x644)],'kcITa':function(_0x4a475a,_0x457167){const _0x35b09b=_0x4377fe;return _0x4c18f3[_0x35b09b(0xc82)](_0x4a475a,_0x457167);},'diDJv':function(_0x4b1361,_0x4c5425){const _0x5bebb2=_0x28b0a9;return _0x4c18f3[_0x5bebb2(0xce1)](_0x4b1361,_0x4c5425);},'dYEUm':_0x4c18f3[_0x4377fe(0xbb8)],'RteKJ':function(_0x32027a,_0x27d875){const _0x427932=_0x22e0ac;return _0x4c18f3[_0x427932(0x4e1)](_0x32027a,_0x27d875);},'FAJSa':_0x4c18f3[_0x5c1fc5(0x67a)],'dGsLf':_0x4c18f3[_0x302835(0x27e)],'ubvRW':_0x4c18f3[_0x5c1fc5(0xa0c)],'VJHgx':_0x4c18f3[_0x302835(0xc5f)],'FEqsc':_0x4c18f3[_0x22e0ac(0x645)],'mDYoz':function(_0x50ea72){const _0x3dee3b=_0x28b0a9;return _0x4c18f3[_0x3dee3b(0x376)](_0x50ea72);},'mIYvL':function(_0x58dd19,_0x1cbc25){const _0x4f89ec=_0x5c1fc5;return _0x4c18f3[_0x4f89ec(0xaa4)](_0x58dd19,_0x1cbc25);},'PLbQM':_0x4c18f3[_0x22e0ac(0x341)],'WNlrh':_0x4c18f3[_0x22e0ac(0xaa3)],'NUelq':_0x4c18f3[_0x4377fe(0xd2d)],'JHtLb':_0x4c18f3[_0x4377fe(0xa35)],'CwUuc':_0x4c18f3[_0x5c1fc5(0x9bc)],'ewDjV':function(_0x3a127e,_0x3781cd,_0x1a513c){const _0x14ec1f=_0x4377fe;return _0x4c18f3[_0x14ec1f(0x38e)](_0x3a127e,_0x3781cd,_0x1a513c);},'RSNFs':_0x4c18f3[_0x28b0a9(0x5c6)],'UZUNJ':function(_0x5072ee,_0x9d9e7){const _0x42c18c=_0x5c1fc5;return _0x4c18f3[_0x42c18c(0xc82)](_0x5072ee,_0x9d9e7);},'oPWSg':_0x4c18f3[_0x22e0ac(0x614)],'gfDdh':_0x4c18f3[_0x5c1fc5(0xac0)],'CmcKW':_0x4c18f3[_0x4377fe(0x3e1)],'XbLfR':_0x4c18f3[_0x22e0ac(0xd0f)],'fVrPL':_0x4c18f3[_0x28b0a9(0x494)],'hPwfh':_0x4c18f3[_0x302835(0xb3b)],'TLlab':_0x4c18f3[_0x5c1fc5(0x442)],'KkkxH':_0x4c18f3[_0x22e0ac(0x776)],'OrRPt':function(_0xc5e699,_0x2f953d){const _0x37a478=_0x5c1fc5;return _0x4c18f3[_0x37a478(0xce1)](_0xc5e699,_0x2f953d);},'yfvtL':function(_0x47f987,_0x215e56){const _0x482733=_0x22e0ac;return _0x4c18f3[_0x482733(0x7ec)](_0x47f987,_0x215e56);},'nuJwa':function(_0x23870f,_0x20e113){const _0x2c0af1=_0x28b0a9;return _0x4c18f3[_0x2c0af1(0xc82)](_0x23870f,_0x20e113);},'phtpo':function(_0x18784,_0x5d6d25,_0x30ec83){const _0x5a36db=_0x302835;return _0x4c18f3[_0x5a36db(0x38e)](_0x18784,_0x5d6d25,_0x30ec83);},'EqmIq':function(_0x247bf2,_0xbb10df){const _0x360d92=_0x4377fe;return _0x4c18f3[_0x360d92(0x508)](_0x247bf2,_0xbb10df);},'UDuzU':function(_0x7071c8,_0x246d3a){const _0x249f24=_0x4377fe;return _0x4c18f3[_0x249f24(0x375)](_0x7071c8,_0x246d3a);},'bABnK':_0x4c18f3[_0x5c1fc5(0xdae)]};if(_0x4e06c0)return;const _0x274b36=new TextDecoder(_0x4c18f3[_0x302835(0x644)])[_0x22e0ac(0x771)+'e'](_0x4d2306);return _0x274b36[_0x4377fe(0x4c7)]()[_0x22e0ac(0xa49)]('\x0a')[_0x5c1fc5(0xd9e)+'ch'](function(_0x1f9f87){const _0x3fc745=_0x5c1fc5,_0x4c9ea7=_0x302835,_0x576166=_0x4377fe,_0x4d1fa5=_0x5c1fc5,_0x1c3018=_0x22e0ac,_0x42b8f0={'BZXvU':function(_0x1693ef,_0x1d8726){const _0x44899e=_0x376c;return _0x32d961[_0x44899e(0xc8e)](_0x1693ef,_0x1d8726);},'ENmhW':_0x32d961[_0x3fc745(0x746)],'kOsRG':function(_0x468291,_0x431e73){const _0x5874c8=_0x3fc745;return _0x32d961[_0x5874c8(0xb79)](_0x468291,_0x431e73);},'nofZv':_0x32d961[_0x3fc745(0x4ed)],'xNDqf':_0x32d961[_0x576166(0x695)],'OZtWA':_0x32d961[_0x3fc745(0xd3e)],'hdIAt':_0x32d961[_0x4c9ea7(0xc24)],'SpQmx':_0x32d961[_0x576166(0x528)],'YJPlE':function(_0x301a1f,_0x3f36da){const _0x57c136=_0x4d1fa5;return _0x32d961[_0x57c136(0x4e6)](_0x301a1f,_0x3f36da);},'eCMpN':function(_0x434760,_0x50a306){const _0x19bc71=_0x4c9ea7;return _0x32d961[_0x19bc71(0x7e9)](_0x434760,_0x50a306);},'cWrMe':_0x32d961[_0x4c9ea7(0x865)],'hkkSd':function(_0x53705b,_0x4f620f){const _0x142050=_0x1c3018;return _0x32d961[_0x142050(0x8cf)](_0x53705b,_0x4f620f);},'jnokG':_0x32d961[_0x4c9ea7(0x692)],'BJmpi':_0x32d961[_0x576166(0x959)],'AfcSr':_0x32d961[_0x4c9ea7(0xa9c)],'WXOzZ':_0x32d961[_0x4c9ea7(0x7b9)],'RPwdp':_0x32d961[_0x4c9ea7(0x972)],'cewFc':function(_0x44ca9b){const _0x668b52=_0x4d1fa5;return _0x32d961[_0x668b52(0x98b)](_0x44ca9b);},'QBrcc':function(_0x40c45f,_0x59cb65){const _0x442f17=_0x4d1fa5;return _0x32d961[_0x442f17(0xeaf)](_0x40c45f,_0x59cb65);},'utxPG':_0x32d961[_0x4d1fa5(0x9ac)],'ayRTm':_0x32d961[_0x4c9ea7(0x3fa)],'gILug':_0x32d961[_0x1c3018(0xe77)],'ACnls':_0x32d961[_0x576166(0x812)],'naRVO':_0x32d961[_0x3fc745(0xe57)],'SfUtT':function(_0x417b0c,_0x34af85,_0x3bfb53){const _0x3eb6e9=_0x1c3018;return _0x32d961[_0x3eb6e9(0x42e)](_0x417b0c,_0x34af85,_0x3bfb53);},'XayTG':_0x32d961[_0x1c3018(0xde3)],'AVcMa':function(_0x10e38f,_0x127cd1){const _0x5ec08d=_0x1c3018;return _0x32d961[_0x5ec08d(0xb8d)](_0x10e38f,_0x127cd1);},'LXfyG':_0x32d961[_0x3fc745(0x51c)],'TuHbt':function(_0x329d37){const _0x56c3ee=_0x1c3018;return _0x32d961[_0x56c3ee(0x98b)](_0x329d37);},'wFnfD':_0x32d961[_0x576166(0x840)],'CTJkn':function(_0x704432,_0x2b8432){const _0x215aed=_0x3fc745;return _0x32d961[_0x215aed(0xb79)](_0x704432,_0x2b8432);},'EKHjv':_0x32d961[_0x3fc745(0x657)],'GGqGP':_0x32d961[_0x4d1fa5(0x1e9)],'psyzo':_0x32d961[_0x576166(0xf32)],'BHErg':_0x32d961[_0x4c9ea7(0x93c)],'KEimW':_0x32d961[_0x1c3018(0x96e)],'jZRNm':_0x32d961[_0x3fc745(0x931)]};_0x59716c='';if(_0x32d961[_0x3fc745(0xb8d)](_0x1f9f87[_0x576166(0x8b2)+'h'],-0x1*0x1765+-0x1e74*0x1+0x35df*0x1))_0x59716c=_0x1f9f87[_0x576166(0xe3b)](0x1*0x1846+0x6cf+-0x1*0x1f0f);if(_0x32d961[_0x1c3018(0x2dc)](_0x59716c,_0x32d961[_0x3fc745(0x865)])){text_offset=-(-0x665*-0x4+-0xff1+0x6*-0x19b);const _0xdf62b8={'method':_0x32d961[_0x1c3018(0x840)],'headers':headers,'body':_0x32d961[_0x3fc745(0xa32)](b64EncodeUnicode,JSON[_0x4c9ea7(0xdfb)+_0x4c9ea7(0x22d)](prompt[_0x4c9ea7(0x880)]))};_0x32d961[_0x4d1fa5(0x42e)](fetch,_0x32d961[_0x1c3018(0x931)],_0xdf62b8)[_0x1c3018(0x95c)](_0x2a82ce=>{const _0x162fda=_0x4d1fa5,_0x35390f=_0x576166,_0x3c80fb=_0x4d1fa5,_0x326a54=_0x1c3018,_0x17fc5d=_0x576166,_0x3abebb={'iHsRk':function(_0x3ab2ed,_0x1a29ba){const _0x503ac1=_0x376c;return _0x42b8f0[_0x503ac1(0x2d9)](_0x3ab2ed,_0x1a29ba);},'YNuTq':_0x42b8f0[_0x162fda(0x913)],'NiqNJ':function(_0x33345b,_0x4b2cbe){const _0x4f2299=_0x162fda;return _0x42b8f0[_0x4f2299(0xc3b)](_0x33345b,_0x4b2cbe);},'knYlt':_0x42b8f0[_0x162fda(0x39e)],'VpDNH':_0x42b8f0[_0x162fda(0xcb7)],'jsoka':_0x42b8f0[_0x35390f(0xb17)],'mzWhN':_0x42b8f0[_0x162fda(0x490)],'GnAzS':_0x42b8f0[_0x35390f(0x431)],'CZfun':function(_0x20d00f,_0x25e80e){const _0x46eab9=_0x35390f;return _0x42b8f0[_0x46eab9(0xc76)](_0x20d00f,_0x25e80e);},'fWAkF':function(_0x199ec6,_0x56c5bf){const _0x35deb7=_0x17fc5d;return _0x42b8f0[_0x35deb7(0xcff)](_0x199ec6,_0x56c5bf);},'nEcHt':_0x42b8f0[_0x17fc5d(0x200)],'HGBYo':function(_0x21bd12,_0x38763a){const _0x2559dc=_0x3c80fb;return _0x42b8f0[_0x2559dc(0x407)](_0x21bd12,_0x38763a);},'klsEM':_0x42b8f0[_0x326a54(0xc7a)],'FlyDJ':_0x42b8f0[_0x3c80fb(0x66f)],'AoHjb':_0x42b8f0[_0x35390f(0x549)],'rQmPy':_0x42b8f0[_0x3c80fb(0x2de)],'QOQpR':_0x42b8f0[_0x35390f(0x8f4)],'iSqrS':function(_0x23c329){const _0x3eb888=_0x3c80fb;return _0x42b8f0[_0x3eb888(0xa63)](_0x23c329);},'FUyKg':function(_0x59cd54,_0x257df1){const _0x231895=_0x326a54;return _0x42b8f0[_0x231895(0xc1b)](_0x59cd54,_0x257df1);},'xrgQK':_0x42b8f0[_0x17fc5d(0x832)],'aOIKk':_0x42b8f0[_0x35390f(0x819)],'PTxdk':_0x42b8f0[_0x35390f(0x795)],'dFMFo':_0x42b8f0[_0x17fc5d(0x979)],'HAxSi':_0x42b8f0[_0x3c80fb(0x975)],'ZWgRc':function(_0x54f17e,_0x3c1a46,_0x1ebf69){const _0x3f9d27=_0x17fc5d;return _0x42b8f0[_0x3f9d27(0xc60)](_0x54f17e,_0x3c1a46,_0x1ebf69);},'zLqZQ':_0x42b8f0[_0x162fda(0x68a)],'IXdfs':function(_0x219273,_0x2ed1b6){const _0x288911=_0x326a54;return _0x42b8f0[_0x288911(0x28a)](_0x219273,_0x2ed1b6);},'fFmLV':function(_0x3a7a49,_0x1f2d89){const _0x492400=_0x3c80fb;return _0x42b8f0[_0x492400(0xcff)](_0x3a7a49,_0x1f2d89);},'OjmWV':_0x42b8f0[_0x35390f(0xa9b)],'Eughe':function(_0x38dd87){const _0x202ee0=_0x3c80fb;return _0x42b8f0[_0x202ee0(0x79b)](_0x38dd87);},'ycSFx':_0x42b8f0[_0x17fc5d(0xc61)],'ajedG':function(_0x1f9376,_0x1dd449){const _0x5a18da=_0x17fc5d;return _0x42b8f0[_0x5a18da(0x791)](_0x1f9376,_0x1dd449);},'fClHn':_0x42b8f0[_0x326a54(0xd21)],'iQqwu':_0x42b8f0[_0x35390f(0x67f)],'HgXpy':_0x42b8f0[_0x17fc5d(0x4ff)],'uFMFs':_0x42b8f0[_0x17fc5d(0xf95)],'tadrV':_0x42b8f0[_0x326a54(0xa4b)],'LpMNl':function(_0xa9021a,_0x3635e5,_0x433e95){const _0x445793=_0x326a54;return _0x42b8f0[_0x445793(0xc60)](_0xa9021a,_0x3635e5,_0x433e95);},'QYmuO':_0x42b8f0[_0x3c80fb(0xe0c)],'EBuhi':function(_0x447177,_0x3491a8,_0xba40ea){const _0x34238f=_0x162fda;return _0x42b8f0[_0x34238f(0xc60)](_0x447177,_0x3491a8,_0xba40ea);},'gOdco':function(_0x417e2d,_0x3e09ac){const _0x4140fd=_0x17fc5d;return _0x42b8f0[_0x4140fd(0x791)](_0x417e2d,_0x3e09ac);}},_0x7e0b6e=_0x2a82ce[_0x3c80fb(0x770)][_0x17fc5d(0xc2c)+_0x326a54(0xab3)]();let _0xde8235='',_0x5c455b='';_0x7e0b6e[_0x3c80fb(0x67b)]()[_0x326a54(0x95c)](function _0x36d0a6({done:_0x1d2899,value:_0x50eab0}){const _0x2113c3=_0x17fc5d,_0x20f30b=_0x162fda,_0x2d8f53=_0x3c80fb,_0xb61839=_0x3c80fb,_0x1d914e=_0x162fda;if(_0x1d2899)return;const _0x32edb8=new TextDecoder(_0x3abebb[_0x2113c3(0x4d9)])[_0x2113c3(0x771)+'e'](_0x50eab0);return _0x32edb8[_0x2113c3(0x4c7)]()[_0x2113c3(0xa49)]('\x0a')[_0x20f30b(0xd9e)+'ch'](function(_0x365fcc){const _0x13647d=_0xb61839,_0xaaa795=_0x2113c3,_0x5c142e=_0xb61839,_0x255dce=_0xb61839,_0x1db0fe=_0x20f30b,_0x56539c={'bkhnh':function(_0x31da83,_0x4eb095){const _0x6001a0=_0x376c;return _0x3abebb[_0x6001a0(0x44f)](_0x31da83,_0x4eb095);},'PNAdq':_0x3abebb[_0x13647d(0x6de)],'GljHF':function(_0x39cec2,_0x37a0a4){const _0x5564dd=_0x13647d;return _0x3abebb[_0x5564dd(0x36d)](_0x39cec2,_0x37a0a4);},'aWDRs':_0x3abebb[_0x13647d(0x5a3)],'daeen':_0x3abebb[_0xaaa795(0xaa7)],'wjhVS':_0x3abebb[_0xaaa795(0xf14)],'IqomO':_0x3abebb[_0xaaa795(0xecb)],'UpYFB':_0x3abebb[_0x255dce(0x4d9)],'NmvyR':function(_0x312c1d,_0x41e7bc){const _0xf00e9d=_0xaaa795;return _0x3abebb[_0xf00e9d(0x655)](_0x312c1d,_0x41e7bc);},'fLWeN':function(_0x3fd1e8,_0x298617){const _0x13b8c5=_0x255dce;return _0x3abebb[_0x13b8c5(0x428)](_0x3fd1e8,_0x298617);},'yTaha':_0x3abebb[_0x255dce(0xeab)],'dKJGy':function(_0x3473d6,_0xae3e5c){const _0x3167a6=_0xaaa795;return _0x3abebb[_0x3167a6(0x9dc)](_0x3473d6,_0xae3e5c);},'fHEAS':_0x3abebb[_0x255dce(0x418)],'kasDL':_0x3abebb[_0xaaa795(0xe94)],'nuxob':_0x3abebb[_0x255dce(0xa13)],'TTcnb':_0x3abebb[_0x13647d(0x59b)],'EYWbM':_0x3abebb[_0x1db0fe(0x98e)],'SWrgO':function(_0x53a09b){const _0x3af779=_0xaaa795;return _0x3abebb[_0x3af779(0x52f)](_0x53a09b);},'ITDpI':function(_0xabef20,_0x460ba9){const _0x2b043f=_0x5c142e;return _0x3abebb[_0x2b043f(0xf3f)](_0xabef20,_0x460ba9);},'PELlQ':_0x3abebb[_0xaaa795(0xe87)],'cCGaU':_0x3abebb[_0x13647d(0x60f)],'ErGrW':_0x3abebb[_0xaaa795(0x32b)],'UDRNK':_0x3abebb[_0x255dce(0x70d)],'TUPts':_0x3abebb[_0x255dce(0x2c3)],'ikJFe':function(_0x4b56cb,_0xdaaf7b,_0x431d0b){const _0x706155=_0x1db0fe;return _0x3abebb[_0x706155(0x57a)](_0x4b56cb,_0xdaaf7b,_0x431d0b);},'OiNuA':function(_0xa779de,_0x37fc4b){const _0x5e6912=_0x5c142e;return _0x3abebb[_0x5e6912(0x36d)](_0xa779de,_0x37fc4b);},'YWqWr':_0x3abebb[_0x255dce(0xa41)]};_0xde8235='';if(_0x3abebb[_0x255dce(0x3a6)](_0x365fcc[_0x255dce(0x8b2)+'h'],-0xcff*0x1+0x18fa+0xbf5*-0x1))_0xde8235=_0x365fcc[_0x1db0fe(0xe3b)](-0x5*-0x152+0x31*0xc7+0x2cab*-0x1);if(_0x3abebb[_0x5c142e(0x312)](_0xde8235,_0x3abebb[_0x5c142e(0xeab)])){document[_0x5c142e(0x5de)+_0x1db0fe(0xf3d)+_0x1db0fe(0xa93)](_0x3abebb[_0x5c142e(0x7f5)])[_0x1db0fe(0xdde)+_0x13647d(0x4ea)]='',_0x3abebb[_0x13647d(0x786)](chatmore);const _0x28814e={'method':_0x3abebb[_0x5c142e(0x32e)],'headers':headers,'body':_0x3abebb[_0xaaa795(0x3c8)](b64EncodeUnicode,JSON[_0x5c142e(0xdfb)+_0x1db0fe(0x22d)]({'messages':[{'role':_0x3abebb[_0x5c142e(0x7cc)],'content':_0x3abebb[_0x5c142e(0x44f)](document[_0xaaa795(0x5de)+_0x5c142e(0xf3d)+_0x5c142e(0xa93)](_0x3abebb[_0x255dce(0x43d)])[_0x1db0fe(0xdde)+_0x255dce(0x4ea)][_0x1db0fe(0x69d)+'ce'](/<a.*?>.*?<\/a.*?>/g,'')[_0x13647d(0x69d)+'ce'](/<hr.*/gs,'')[_0xaaa795(0x69d)+'ce'](/<[^>]+>/g,'')[_0x255dce(0x69d)+'ce'](/\n\n/g,'\x0a'),'\x0a')},{'role':_0x3abebb[_0x1db0fe(0x990)],'content':_0x3abebb[_0x255dce(0x44f)](_0x3abebb[_0x1db0fe(0x44f)](_0x3abebb[_0xaaa795(0x406)],original_search_query),_0x3abebb[_0xaaa795(0xc55)])}][_0x255dce(0x84f)+'t'](add_system),'max_tokens':0x5dc,'temperature':0.5,'top_p':0x1,'frequency_penalty':0x0,'presence_penalty':0x2,'stream':!![]}))};_0x3abebb[_0x13647d(0xc03)](fetch,_0x3abebb[_0x5c142e(0xd98)],_0x28814e)[_0xaaa795(0x95c)](_0x160c67=>{const _0x4ac24c=_0x13647d,_0x4d3b33=_0x255dce,_0xa238a5=_0x255dce,_0x5ad6fd=_0x13647d,_0x42e040=_0x1db0fe,_0x20366e={'zygdX':function(_0x27399c,_0x4fc643){const _0x4bb5f9=_0x376c;return _0x56539c[_0x4bb5f9(0x347)](_0x27399c,_0x4fc643);},'tOKQm':function(_0x36798d,_0x5c021c){const _0x15e860=_0x376c;return _0x56539c[_0x15e860(0x7e0)](_0x36798d,_0x5c021c);},'mKoqC':_0x56539c[_0x4ac24c(0x353)],'rKQSs':function(_0x1abbdd,_0x473a3b){const _0x1f3c50=_0x4ac24c;return _0x56539c[_0x1f3c50(0xc06)](_0x1abbdd,_0x473a3b);},'lZRxT':_0x56539c[_0x4d3b33(0x4b9)],'FYnFt':_0x56539c[_0xa238a5(0xb7a)],'mcAbm':_0x56539c[_0xa238a5(0x4c5)],'AWHMl':_0x56539c[_0x4d3b33(0x916)],'LyFOm':_0x56539c[_0x4ac24c(0x8d0)],'FBPHV':function(_0x402f1b){const _0x2986c0=_0xa238a5;return _0x56539c[_0x2986c0(0x3e8)](_0x402f1b);},'Jytwk':function(_0x3f34e5,_0x1a2f4d){const _0x4ce1df=_0xa238a5;return _0x56539c[_0x4ce1df(0xc1a)](_0x3f34e5,_0x1a2f4d);},'TxHaT':_0x56539c[_0x4ac24c(0xad1)],'FhcJW':_0x56539c[_0xa238a5(0x228)],'etTcn':_0x56539c[_0xa238a5(0xb56)],'IvOlV':_0x56539c[_0x4ac24c(0xf62)],'qeAFP':function(_0x838825,_0x17cfce){const _0x1305ac=_0x4d3b33;return _0x56539c[_0x1305ac(0xcf7)](_0x838825,_0x17cfce);},'APEHX':_0x56539c[_0x42e040(0xef1)],'gcCRZ':function(_0x43ec0d,_0x140d39){const _0x846035=_0xa238a5;return _0x56539c[_0x846035(0xc06)](_0x43ec0d,_0x140d39);},'aeNAX':_0x56539c[_0x5ad6fd(0xb1f)],'nvwjy':function(_0x3bfe90,_0x50d9c0,_0x1a6ac1){const _0xf0235a=_0x4ac24c;return _0x56539c[_0xf0235a(0x6ae)](_0x3bfe90,_0x50d9c0,_0x1a6ac1);},'LWzwY':function(_0x48a9b7,_0x3fb5a0){const _0x2f66ad=_0x4ac24c;return _0x56539c[_0x2f66ad(0x4e9)](_0x48a9b7,_0x3fb5a0);},'xNoco':_0x56539c[_0x5ad6fd(0x9fa)]},_0x2470a5=_0x160c67[_0x5ad6fd(0x770)][_0x42e040(0xc2c)+_0x4d3b33(0xab3)]();let _0x2ade52='',_0x45047f='';_0x2470a5[_0x4ac24c(0x67b)]()[_0x4d3b33(0x95c)](function _0x45ce3({done:_0x14c247,value:_0x41f69f}){const _0x313999=_0x4ac24c,_0x21512f=_0x4d3b33,_0x2a9063=_0x5ad6fd,_0x272f12=_0x4d3b33,_0x4b13ef=_0x4ac24c,_0x198585={'lbYIf':function(_0x20cbbf,_0x316c3a){const _0x1cd2b3=_0x376c;return _0x56539c[_0x1cd2b3(0xcf7)](_0x20cbbf,_0x316c3a);},'tBSiV':_0x56539c[_0x313999(0xa45)],'szFOx':function(_0x193f7f,_0x33140b){const _0x5e259f=_0x313999;return _0x56539c[_0x5e259f(0xbc8)](_0x193f7f,_0x33140b);},'Natkk':_0x56539c[_0x313999(0xc43)],'VLJHp':function(_0x50039c,_0x19f31b){const _0x5eee94=_0x313999;return _0x56539c[_0x5eee94(0xcf7)](_0x50039c,_0x19f31b);},'eaUpa':_0x56539c[_0x2a9063(0xbdf)],'ubylt':_0x56539c[_0x21512f(0xef1)],'TXUmR':_0x56539c[_0x313999(0x794)]};if(_0x14c247)return;const _0x263942=new TextDecoder(_0x56539c[_0x313999(0x2f0)])[_0x21512f(0x771)+'e'](_0x41f69f);return _0x263942[_0x272f12(0x4c7)]()[_0x313999(0xa49)]('\x0a')[_0x2a9063(0xd9e)+'ch'](function(_0x39bf79){const _0x55037a=_0x2a9063,_0x2ec795=_0x2a9063,_0x211983=_0x4b13ef,_0x332bd2=_0x2a9063,_0x484d99=_0x21512f;_0x2ade52='';if(_0x20366e[_0x55037a(0xf56)](_0x39bf79[_0x2ec795(0x8b2)+'h'],0x17ee+0xc8*0x32+0x82*-0x7c))_0x2ade52=_0x39bf79[_0x2ec795(0xe3b)](0x49*-0x79+0x1df2+-0x1*-0x495);if(_0x20366e[_0x2ec795(0x7d9)](_0x2ade52,_0x20366e[_0x55037a(0xa18)])){if(_0x20366e[_0x2ec795(0x940)](_0x20366e[_0x2ec795(0x57f)],_0x20366e[_0x484d99(0xd3d)]))_0x38812e=_0x47653f[_0x332bd2(0x69d)+'ce'](_0x198585[_0x55037a(0xc30)](_0x198585[_0x484d99(0xeb8)],_0x198585[_0x484d99(0x914)](_0x1b71dc,_0x2b52f4)),_0x2892a6[_0x2ec795(0x52d)+_0x55037a(0x44a)][_0x566aec]),_0x272171=_0x7b43a7[_0x55037a(0x69d)+'ce'](_0x198585[_0x55037a(0xc30)](_0x198585[_0x2ec795(0x4dd)],_0x198585[_0x55037a(0x914)](_0x326e91,_0x5826a7)),_0x4e7c88[_0x332bd2(0x52d)+_0x55037a(0x44a)][_0xaa27b6]),_0x1f6844=_0x215139[_0x332bd2(0x69d)+'ce'](_0x198585[_0x2ec795(0x354)](_0x198585[_0x484d99(0x7b7)],_0x198585[_0x484d99(0x914)](_0x21dda2,_0x5ba361)),_0x4ba065[_0x484d99(0x52d)+_0x211983(0x44a)][_0x374781]);else{const _0x3f909d=_0x20366e[_0x332bd2(0x478)][_0x211983(0xa49)]('|');let _0x48c5bd=-0x9dd+-0x3d*0x62+-0x2137*-0x1;while(!![]){switch(_0x3f909d[_0x48c5bd++]){case'0':document[_0x484d99(0x93e)+_0x484d99(0x48f)+_0x332bd2(0x9b1)](_0x20366e[_0x211983(0x72a)])[_0x211983(0x8b8)][_0x2ec795(0xd73)+'ay']='';continue;case'1':document[_0x211983(0x93e)+_0x332bd2(0x48f)+_0x484d99(0x9b1)](_0x20366e[_0x332bd2(0xe46)])[_0x332bd2(0x8b8)][_0x2ec795(0xd73)+'ay']='';continue;case'2':_0x20366e[_0x2ec795(0x7f4)](proxify);continue;case'3':return;case'4':lock_chat=0x2092+0x1c55+-0x3ce7;continue;}break;}}}let _0xacc79a;try{if(_0x20366e[_0x211983(0xeff)](_0x20366e[_0x55037a(0x8f9)],_0x20366e[_0x2ec795(0xcbe)]))try{if(_0x20366e[_0x332bd2(0xeff)](_0x20366e[_0x211983(0x50f)],_0x20366e[_0x55037a(0xbc4)]))_0xacc79a=JSON[_0x55037a(0xd22)](_0x20366e[_0x211983(0x658)](_0x45047f,_0x2ade52))[_0x20366e[_0x484d99(0xcbb)]],_0x45047f='';else{const _0x457db9=_0x4dec7d[_0x484d99(0xf53)+_0x55037a(0xcf3)+'r'][_0x484d99(0xa14)+_0x484d99(0xd82)][_0x484d99(0xbcc)](_0x3fe9aa),_0x53d056=_0x437a6c[_0x18e092],_0x285b4a=_0x530d62[_0x53d056]||_0x457db9;_0x457db9[_0x2ec795(0x96a)+_0x2ec795(0xcae)]=_0x2e42a3[_0x211983(0xbcc)](_0x40a1fb),_0x457db9[_0x2ec795(0x590)+_0x2ec795(0x300)]=_0x285b4a[_0x332bd2(0x590)+_0x2ec795(0x300)][_0x332bd2(0xbcc)](_0x285b4a),_0x9a5269[_0x53d056]=_0x457db9;}}catch(_0x3b2046){if(_0x20366e[_0x55037a(0xf9f)](_0x20366e[_0x332bd2(0xe82)],_0x20366e[_0x332bd2(0xe82)]))_0xacc79a=JSON[_0x2ec795(0xd22)](_0x2ade52)[_0x20366e[_0x332bd2(0xcbb)]],_0x45047f='';else try{_0xcb308=_0x175f51[_0x55037a(0xd22)](_0x198585[_0x484d99(0xc30)](_0x46216b,_0x35a92e))[_0x198585[_0x211983(0x498)]],_0x52590e='';}catch(_0x284e3f){_0x143a30=_0x7027d4[_0x2ec795(0xd22)](_0x95d0a9)[_0x198585[_0x332bd2(0x498)]],_0x4eb165='';}}else _0x40737a[_0x55037a(0x79c)](_0x198585[_0x211983(0x734)],_0xa730d4);}catch(_0x456d68){_0x45047f+=_0x2ade52;}_0xacc79a&&_0x20366e[_0x332bd2(0xf56)](_0xacc79a[_0x484d99(0x8b2)+'h'],0x151e+0xa*0x152+-0x2252)&&_0xacc79a[0x146*0x10+-0x100f+0x11*-0x41][_0x55037a(0x83f)][_0x55037a(0x91a)+'nt']&&(chatTextRawPlusComment+=_0xacc79a[0x1442+0x1*0x454+0x6*-0x419][_0x55037a(0x83f)][_0x484d99(0x91a)+'nt']),_0x20366e[_0x55037a(0xcc6)](markdownToHtml,_0x20366e[_0x2ec795(0x43e)](beautify,chatTextRawPlusComment),document[_0x332bd2(0x93e)+_0x55037a(0x48f)+_0x484d99(0x9b1)](_0x20366e[_0x2ec795(0xb5e)]));}),_0x2470a5[_0x2a9063(0x67b)]()[_0x21512f(0x95c)](_0x45ce3);});})[_0x13647d(0x670)](_0x11006c=>{const _0x43a6fe=_0x13647d,_0x19b24e=_0x1db0fe;console[_0x43a6fe(0x79c)](_0x56539c[_0x19b24e(0x794)],_0x11006c);});return;}let _0x232fa2;try{try{_0x232fa2=JSON[_0x13647d(0xd22)](_0x3abebb[_0x255dce(0x44f)](_0x5c455b,_0xde8235))[_0x3abebb[_0x13647d(0xf14)]],_0x5c455b='';}catch(_0x2fc4c1){_0x232fa2=JSON[_0x13647d(0xd22)](_0xde8235)[_0x3abebb[_0x5c142e(0xf14)]],_0x5c455b='';}}catch(_0x52698d){_0x5c455b+=_0xde8235;}_0x232fa2&&_0x3abebb[_0x13647d(0x3a6)](_0x232fa2[_0x5c142e(0x8b2)+'h'],-0xc8*0x1a+-0x21d*0x4+0x1cc4)&&_0x232fa2[0x199c+0x2144+-0x3ae0][_0x255dce(0x83f)][_0x13647d(0x91a)+'nt']&&(chatTextRaw+=_0x232fa2[-0x32*0x6d+0xe53*0x1+-0x1*-0x6f7][_0x1db0fe(0x83f)][_0x5c142e(0x91a)+'nt']),_0x3abebb[_0x5c142e(0xe27)](markdownToHtml,_0x3abebb[_0x5c142e(0x204)](beautify,chatTextRaw),document[_0xaaa795(0x93e)+_0x1db0fe(0x48f)+_0x1db0fe(0x9b1)](_0x3abebb[_0x1db0fe(0xa41)]));}),_0x7e0b6e[_0x2d8f53(0x67b)]()[_0x2d8f53(0x95c)](_0x36d0a6);});})[_0x4d1fa5(0x670)](_0x1f7a24=>{const _0x3d48b2=_0x576166,_0x11150a=_0x4d1fa5;console[_0x3d48b2(0x79c)](_0x32d961[_0x3d48b2(0xc24)],_0x1f7a24);});return;}let _0x2bff29;try{try{_0x2bff29=JSON[_0x4c9ea7(0xd22)](_0x32d961[_0x1c3018(0xc8e)](_0x293f64,_0x59716c))[_0x32d961[_0x4d1fa5(0xd3e)]],_0x293f64='';}catch(_0x54b5b5){_0x2bff29=JSON[_0x1c3018(0xd22)](_0x59716c)[_0x32d961[_0x4c9ea7(0xd3e)]],_0x293f64='';}}catch(_0x2c9e49){_0x293f64+=_0x59716c;}_0x2bff29&&_0x32d961[_0x4c9ea7(0xa5d)](_0x2bff29[_0x576166(0x8b2)+'h'],0x83*0x49+0x22fd+-0x4858)&&_0x2bff29[0x299+0x1e91+-0x212a][_0x4d1fa5(0x83f)][_0x1c3018(0x91a)+'nt']&&(chatTextRawIntro+=_0x2bff29[-0xc29+-0x726+0x1*0x134f][_0x3fc745(0x83f)][_0x4c9ea7(0x91a)+'nt']),_0x32d961[_0x4d1fa5(0x288)](markdownToHtml,_0x32d961[_0x1c3018(0xf93)](beautify,_0x32d961[_0x576166(0x6cc)](chatTextRawIntro,'\x0a')),document[_0x1c3018(0x93e)+_0x4c9ea7(0x48f)+_0x4c9ea7(0x9b1)](_0x32d961[_0x1c3018(0x9f1)]));}),_0x1c6421[_0x22e0ac(0x67b)]()[_0x302835(0x95c)](_0x3fd974);});})[_0x183a03(0x670)](_0x183607=>{const _0x2a5e21=_0x3af234,_0x4fa3bb=_0x405bf8,_0x48a46d=_0x4241f5,_0x51ad76=_0x1d760c,_0x382dc4={};_0x382dc4[_0x2a5e21(0x3e4)]=_0x2a5e21(0x517)+':';const _0x472d92=_0x382dc4;console[_0x48a46d(0x79c)](_0x472d92[_0x48a46d(0x3e4)],_0x183607);});function _0x2cc9e4(_0x14781e){const _0x10d7dd=_0x405bf8,_0x48e883=_0x1d760c,_0x44f3cc=_0x405bf8,_0x270cfa=_0x1d760c,_0x40734b=_0x3af234,_0x289213={'nETig':function(_0x46d039,_0x28430b){return _0x46d039===_0x28430b;},'SJImj':_0x10d7dd(0xdfb)+'g','TfUxW':_0x10d7dd(0x2dd)+_0x48e883(0x43b)+_0x270cfa(0x6bd),'ZcybU':_0x44f3cc(0xb6d)+'er','xAxrw':function(_0x1e659e,_0xbdc89){return _0x1e659e!==_0xbdc89;},'xIlsX':function(_0x3e4fc7,_0x224461){return _0x3e4fc7+_0x224461;},'pqKML':function(_0x375712,_0x4ed2e0){return _0x375712/_0x4ed2e0;},'RrnuK':_0x44f3cc(0x8b2)+'h','lnbbf':function(_0x1b3f7c,_0x2231e4){return _0x1b3f7c%_0x2231e4;},'xgoPR':_0x270cfa(0xb00),'OEHbz':_0x48e883(0xe4b),'faGUm':_0x40734b(0xd3a)+'n','jjrCW':_0x44f3cc(0xc49)+_0x48e883(0xed5)+'t','PDmyA':function(_0x56b4f6,_0x1ed3ba){return _0x56b4f6(_0x1ed3ba);},'BmzSu':function(_0x44e79e,_0x23d25e){return _0x44e79e(_0x23d25e);}};function _0x5b0125(_0x93a11f){const _0x1cdfa=_0x44f3cc,_0x3373c2=_0x48e883,_0x47f562=_0x270cfa,_0x35e4cd=_0x10d7dd,_0x583d52=_0x44f3cc;if(_0x289213[_0x1cdfa(0xa86)](typeof _0x93a11f,_0x289213[_0x1cdfa(0xf3b)]))return function(_0x8ee76f){}[_0x47f562(0xf53)+_0x1cdfa(0xcf3)+'r'](_0x289213[_0x3373c2(0x2a3)])[_0x3373c2(0xd6d)](_0x289213[_0x583d52(0xb31)]);else _0x289213[_0x583d52(0x1f8)](_0x289213[_0x583d52(0x4ce)]('',_0x289213[_0x583d52(0x782)](_0x93a11f,_0x93a11f))[_0x289213[_0x1cdfa(0x7f8)]],0x1ca3+-0x18c2+0x1f0*-0x2)||_0x289213[_0x47f562(0xa86)](_0x289213[_0x3373c2(0xe8d)](_0x93a11f,0x3ec*0x7+0x2*0x547+-0xa*0x3cb),0x1*-0x222a+0x1c0+0x206a*0x1)?function(){return!![];}[_0x3373c2(0xf53)+_0x35e4cd(0xcf3)+'r'](_0x289213[_0x3373c2(0x4ce)](_0x289213[_0x1cdfa(0x2cf)],_0x289213[_0x3373c2(0x4b3)]))[_0x35e4cd(0xa88)](_0x289213[_0x3373c2(0x936)]):function(){return![];}[_0x47f562(0xf53)+_0x35e4cd(0xcf3)+'r'](_0x289213[_0x583d52(0x4ce)](_0x289213[_0x1cdfa(0x2cf)],_0x289213[_0x35e4cd(0x4b3)]))[_0x35e4cd(0xd6d)](_0x289213[_0x1cdfa(0xa8c)]);_0x289213[_0x47f562(0x5e2)](_0x5b0125,++_0x93a11f);}try{if(_0x14781e)return _0x5b0125;else _0x289213[_0x44f3cc(0x69a)](_0x5b0125,-0x2188+0x13eb*0x1+0xd9d);}catch(_0x1d7bb4){}}
</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()