Repository: byJoey/cfnew Branch: main Commit: 318cadda079a Files: 8 Total size: 1.7 MB Directory structure: gitextract_bemu0ek7/ ├── .github/ │ └── workflows/ │ ├── obfuscate.yml │ └── test.yml ├── README.md ├── snippets ├── wrangler.toml ├── فارسی.md ├── 少年你相信光吗 └── 明文源吗 ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/obfuscate.yml ================================================ name: Generate and Obfuscate Worker Script on: workflow_dispatch: push: branches: - '**' # 仅匹配分支推送,排除标签推送 paths: - '明文源吗' jobs: build-and-obfuscate: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: '18' - name: Install Obfuscator run: npm install javascript-obfuscator - name: Obfuscate from local source file run: | cat > obfuscate.js << 'EOF' const JavaScriptObfuscator = require('javascript-obfuscator'); const fs = require('fs'); const path = require('path'); const sourceFileName = '明文源吗'; const outputFileName = '少年你相信光吗'; const sourceFilePath = path.join(process.cwd(), sourceFileName); if (!fs.existsSync(sourceFilePath)) { console.error('错误:在路径 \'' + sourceFilePath + '\' 未找到源文件。请确保您的仓库根目录有名为 \'明文源吗\' 的文件。'); process.exit(1); } const originalCode = fs.readFileSync(sourceFilePath, 'utf8'); if (!originalCode || originalCode.trim().length === 0) { console.error('错误:源文件 ' + sourceFileName + ' 为空。'); process.exit(1); } const obfuscationOptions = { compact: true, controlFlowFlattening: false, controlFlowFlatteningThreshold: 0, deadCodeInjection: false, stringArray: true, stringArrayEncoding: ['base64'], stringArrayThreshold: 1.0, stringArrayRotate: true, stringArrayShuffle: true, stringArrayWrappersCount: 2, stringArrayWrappersChainedCalls: false, stringArrayWrappersParametersMaxCount: 3, renameGlobals: true, identifierNamesGenerator: 'mangled-shuffled', identifierNamesCache: null, identifiersPrefix: '', renameProperties: false, renamePropertiesMode: 'safe', ignoreImports: false, target: 'browser', numbersToExpressions: false, simplify: false, splitStrings: true, splitStringsChunkLength: 1, transformObjectKeys: false, unicodeEscapeSequence: true, selfDefending: false, debugProtection: false, debugProtectionInterval: 0, disableConsoleOutput: true, domainLock: [] }; const obfuscatedCode = JavaScriptObfuscator.obfuscate(originalCode, obfuscationOptions).getObfuscatedCode(); fs.writeFileSync(path.join(process.cwd(), outputFileName), obfuscatedCode, 'utf8'); console.log('成功将 \'' + sourceFileName + '\' 混淆并保存至 \'' + outputFileName + '\'。'); EOF node obfuscate.js - name: Commit and push the obfuscated file run: | git config --global user.name 'GitHub Actions Bot' git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add '少年你相信光吗' if git diff --staged --quiet; then echo "No changes to commit, the obfuscated file is already up-to-date." else git commit -m "部署用这个" git push fi ================================================ FILE: .github/workflows/test.yml ================================================ name: Deploy Worker Script on: push: tags: - '*' # 当任何标签被推送时触发 jobs: deploy-worker: runs-on: ubuntu-latest steps: - name: Get tag name id: get_tag run: | TAG_NAME=${GITHUB_REF#refs/tags/} echo "tag_name=$TAG_NAME" >> $GITHUB_OUTPUT echo "当前标签: $TAG_NAME" - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 # 需要完整的Git历史来获取标签信息 - name: Check if source file exists run: | if [ ! -f "少年你相信光吗" ]; then echo "错误:在项目根目录未找到 '少年你相信光吗' 文件。" exit 1 fi echo "成功找到源文件 '少年你相信光吗'" - name: Rename file to _worker.js run: | cp "少年你相信光吗" "_worker.js" echo "成功将 '少年你相信光吗' 复制为 '_worker.js'" echo "注意:文件不会提交到仓库,仅用于 Release" - name: Create zip file run: | zip Pages.zip _worker.js wrangler.toml echo "成功将 '_worker.js' 和 'wrangler.toml' 压缩为 'Pages.zip'" - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: tag_name: ${{ steps.get_tag.outputs.tag_name }} name: Pages ${{ steps.get_tag.outputs.tag_name }} body: | ## 部署信息 - **源文件**: 少年你相信光吗 - **目标文件**: _worker.js - **兼容性文件**: wrangler.toml (compatibility_date: 2026-01-20) - **压缩文件**: Pages.zip - **标签**: ${{ steps.get_tag.outputs.tag_name }} - **部署时间**: ${{ github.event.head_commit.timestamp }} ## 文件变更 已从 `少年你相信光吗` 生成 `_worker.js` 文件,连同 `wrangler.toml` 兼容性配置一起压缩为 `Pages.zip`。 draft: false prerelease: false files: Pages.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Output summary run: | echo "## 部署完成" >> $GITHUB_STEP_SUMMARY echo "- 源文件: 少年你相信光吗" >> $GITHUB_STEP_SUMMARY echo "- 目标文件: _worker.js" >> $GITHUB_STEP_SUMMARY echo "- 压缩文件: Pages.zip" >> $GITHUB_STEP_SUMMARY echo "- 标签: ${{ steps.get_tag.outputs.tag_name }}" >> $GITHUB_STEP_SUMMARY echo "- GitHub Release 已创建" >> $GITHUB_STEP_SUMMARY ================================================ FILE: README.md ================================================ # CFnew - 终端 v2.9.4 > **⚠️ 重要:部署后请将兼容日期设置为 `2026-01-20`** > > **Pages 部署:** > 1. 登录 [Cloudflare 控制台](https://dash.cloudflare.com/) > 2. 进入 **Workers 和 Pages** → 选择你的 Pages 项目 > 3. 点击 **设置** → **运行时** > 4. 找到 **兼容性日期**,选择 `2026-01-20`,点击 **保存** > 5. 返回 **部署** → **创建部署** → 上传文件 > > **Worker 部署:** > 1. 登录 [Cloudflare 控制台](https://dash.cloudflare.com/) > 2. 进入 **Workers 和 Pages** → 选择你的 Worker > 3. 点击 **设置** → **运行时** > 4. 找到 **兼容性日期**,选择 `2026-01-20`,点击 **保存** **语言:** [中文](README.md) | [فارسی](فارسی.md) [Telegram 交流群](https://t.me/+ft-zI76oovgwNmRh) ## 主要功能 - 多协议支持:VLESS、Trojan、xhttp,可以同时启用多个 - 自定义路径:不用UUID当路径了,可以自己设置,支持多级路径 - 延迟测试:内置测试工具,测IP延迟,自动获取机场码 - 订阅转换:可以自定义转换服务地址 - 图形化管理:用KV存配置,改完立即生效,不用重新部署 - API管理:支持通过API动态添加/删除优选IP - 多客户端:支持 CLASH、SURGE、SING-BOX、LOON、QUANTUMULT X、V2RAY、Shadowrocket、STASH、NEKORAY、V2RAYNG - 应用唤醒:点按钮自动打开对应客户端 - 自动识别:根据User-Agent自动返回对应格式 - 多语言:支持中文和波斯语,根据浏览器语言自动切换 ## v2.9.4 更新 - 支持客户端通过 WebSocket path 参数覆盖连接级变量(`p`、`wk`、`rm`、`s`) - 无需为每个节点单独部署 Worker,在分享链接的 path 里直接写参数即可 - 优先级:path 参数 > KV/环境变量全局配置 > 自动检测 - 详见下方「[客户端 path 参数](#客户端-path-参数)」说明 ## v2.9.3 更新 - 新增图形化自定义DNS和ECH域名功能 - 可在界面中自定义DNS服务器地址(DoH格式) - 可在界面中自定义ECH域名 - 支持动态更改,保存后立即生效 - Clash配置中的ech-opts增加query-server-name参数,与v2ray保持一致 ## v2.9.2 更新 - 修复 Clash 配置生成问题 ## v2.9.1 更新 - ECH支持:新增 Encrypted Client Hello (ECH) 功能 - 每次刷新订阅时自动获取最新的 ECH 配置 - 启用 ECH 时自动启用"仅 TLS"模式,避免 80 端口干扰 - 图形界面可一键开启/关闭 ECH 功能 ## v2.9 更新 - 地区筛选:可以按地区筛选优选结果,支持多选 - 延迟筛选:新增"只显示最快的10个"选项 - 追加/替换模式:添加优选结果时可以追加或替换整个列表 - 结果展示优化:显示地区标签,按延迟排序 - 其他细节优化 --- ### 相关工具 - 优选工具:https://github.com/byJoey/yx-tools/releases - 文字教程:https://joeyblog.net/yuanchuang/1146.html - Workers视频教程:https://www.youtube.com/watch?v=aYzTr8FafN4 - Pages视频教程:https://www.youtube.com/watch?v=JhVxJChDL-E - Snippets视频教程:https://www.youtube.com/watch?v=xeFeH3Akcu8 ### 部署 订阅每15分钟自动优选一次 #### 基础配置 | 变量名 | 值 | 说明 | | :--- | :--- | :--- | | `u` | 你的 UUID | 必需,用于访问订阅和配置界面 | | `p` | proxyip | 可选,自定义ProxyIP地址和端口,支持 IPv4/IPv6/域名。设置后 `wk` 地区匹配失效(互斥)。也可在节点 path 里单独指定 | | `s` | 你的SOCKS5地址 | 可选,格式:`user:pass@host:port` 或 `host:port`。也可在节点 path 里单独指定 | | `d` | 自定义路径 | 可选,如 `/mypath` 或 `/path/to/sub`,不填用UUID路径。路径没 `/` 开头会自动补上 | | `wk` | 地区代码 | 可选,手动指定Worker地区,如 `SG`、`HK`、`US`、`JP`。设置 `p` 后此项失效(互斥)。也可在节点 path 里单独指定 | #### 协议配置 | 变量名 | 值 | 说明 | | :--- | :--- | :--- | | `ev` | yes/no | 可选,启用VLESS(默认启用) | | `et` | yes/no | 可选,启用Trojan(默认禁用) | | `ex` | yes/no | 可选,启用xhttp(默认禁用) | | `tp` | 自定义密码 | 可选,Trojan密码,留空用UUID | | `ech` | yes/no | 可选,启用ECH功能(默认禁用) | #### 图形化配置(推荐) 1. 在Workers中创建KV命名空间,绑定环境变量 `C` 2. 部署后访问 `/{你的UUID}` 使用图形化配置 3. 改完配置立即生效,不用重新部署 #### 高级控制 | 变量名 | 值 | 说明 | | :--- | :--- | :--- | | `yx` | 自定义优选IP/域名 | 可选,支持命名,格式:`1.1.1.1:443#香港节点,8.8.8.8:53#Google DNS` | | `yxURL` | 优选IP来源URL | 可选,自定义IP列表来源,留空用默认 | | `scu` | 订阅转换地址 | 可选,默认:`https://url.v1.mk/sub` | | `epd` | yes/no | 可选,启用优选域名(默认启用) | | `epi` | yes/no | 可选,启用优选IP(默认启用) | | `egi` | yes/no | 可选,启用GitHub默认优选(默认启用) | | `qj` | no | 可选,设为`no`启用降级:CF直连失败→SOCKS5→fallback | | `dkby` | yes | 可选,设为`yes`只生成TLS节点 | | `ech` | yes/no | 可选,启用ECH功能(默认禁用,启用后自动开启仅TLS模式) | | `yxby` | yes | 可选,设为`yes`关闭所有优选功能 | | `rm` | no | 可选,设为`no`关闭地区智能匹配 | | `ae` | yes | 可选,设为`yes`允许API管理(默认关闭) | #### KV存储设置(推荐) 1. 在Cloudflare Workers中创建KV命名空间 2. 在Workers设置中绑定KV,变量名设为 `C` 3. 重新部署 4. 访问 `/{你的UUID}` 使用图形化配置 #### API使用 1. 下载优选软件:https://github.com/byJoey/yx-tools/releases 2. 开启API:访问 `/{UUID}` 或 `/{自定义路径}`,找到"允许API管理",开启后保存 3. 添加单个IP: ```bash # 使用UUID路径 curl -X POST "https://your-worker.workers.dev/{UUID}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"ip": "1.2.3.4", "port": 443, "name": "香港节点"}' # 使用自定义路径(如果设置了d变量) curl -X POST "https://your-worker.workers.dev/{自定义路径}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"ip": "1.2.3.4", "port": 443, "name": "香港节点"}' ``` 4. 批量添加IP: ```bash curl -X POST "https://your-worker.workers.dev/{UUID或自定义路径}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '[ {"ip": "1.2.3.4", "port": 443, "name": "节点1"}, {"ip": "5.6.7.8", "port": 8443, "name": "节点2"} ]' ``` 5. 清空所有IP: ```bash curl -X DELETE "https://your-worker.workers.dev/{UUID或自定义路径}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"all": true}' ``` ### 功能说明 #### 延迟测试 v2.7开始提供,v2.9增强了筛选功能 - 内置测试工具,不用装其他软件,直接在配置页面测IP延迟 - IP来源: - 手动输入:直接输IP或域名,支持批量(逗号分隔) - CF随机IP:从Cloudflare IP段随机生成 - URL获取:从远程URL获取IP列表 - 支持1-50线程并发测试,默认5线程 - 自动获取机场码(如SJC、LAX) - 自动映射中文机场名(SJC→圣何塞) - 自动扣除DNS+TLS握手时间,显示真实延迟 - 设置自动保存到浏览器 - 支持按地区筛选 - 支持只显示最快的10个 - 支持追加或替换模式 #### 多协议支持 - VLESS:默认启用 - Trojan:支持Trojan-WS-TLS,可以自定义密码,不填就用UUID - xhttp:基于HTTP POST的伪装协议 - 可以同时启用多个协议,客户端会自动识别 - 图形界面一键开关 - 协议配置有独立保存按钮 #### ECH 功能 (Encrypted Client Hello) - 支持 Encrypted Client Hello (ECH) 加密客户端握手 - 自动获取:每次刷新订阅时自动从 DoH 获取最新的 ECH 配置 - 优先使用 Google DNS,失败时自动尝试 Cloudflare DNS - 智能模式:启用 ECH 时自动启用"仅 TLS"模式,避免 80 端口干扰 - 图形界面:可在协议配置区域一键开启/关闭 - 调试信息:在浏览器开发者工具的响应头中可查看详细的 ECH 获取过程 - 响应头信息: - `X-ECH-Status`: SUCCESS 或 FAILED - `X-ECH-Debug`: 详细的调试信息 - `X-ECH-Config-Length`: ECH 配置长度(成功时) #### 自定义路径(d变量) - 不用UUID当路径了,可以自己设置 - 支持多级路径,如 `/path/to/sub` - 路径没 `/` 开头会自动补上 - 自定义路径后UUID路径自动禁用 - 可以随时在图形界面改路径 #### 图形化配置 - 用Cloudflare KV存配置 - 访问 `/{你的UUID}` 或 `/{自定义路径}` 就能用 - 改完立即生效,不用重新部署 - 优先级:KV配置 > 环境变量 > 默认值 #### 多语言支持 - 根据浏览器语言自动选择中文或波斯语 - 右上角可以手动切换 - 语言选择会保存到浏览器 - 波斯语自动启用RTL布局 #### 订阅转换控制 - 可以自定义转换服务URL - 可以单独控制优选域名、优选IP、GitHub优选 - 默认全部启用 - 改完立即生效 #### API管理 - 通过RESTful API管理优选IP,不用改代码 - 支持批量添加 - 支持清空所有IP - 默认关闭,需要在图形界面开启 - API添加的IP和手动配置的yx变量会自动合并 - API端点: - `GET /{UUID或路径}/api/preferred-ips` - 查询列表 - `POST /{UUID或路径}/api/preferred-ips` - 添加(单个/批量) - `DELETE /{UUID或路径}/api/preferred-ips` - 删除(单个/全部) #### 客户端 path 参数 v2.9.4 新增。在 VLESS/Trojan 分享链接的 `path` 字段里追加查询参数,即可为**单个节点**单独指定连接级配置,无需额外部署 Worker。 | 参数 | 作用 | 示例 | | :--- | :--- | :--- | | `p` | 覆盖 ProxyIP(支持带端口) | `p=1.1.1.1` 或 `p=1.2.3.4:8443` | | `wk` | 覆盖 Worker 地区 | `wk=jp`、`wk=us`、`wk=sg` | | `rm` | 关闭地区智能匹配 | `rm=no` | | `s` | 覆盖 SOCKS5 代理 | `s=user:pass@host:1080` | **优先级:path 参数 > KV/环境变量 > 自动检测** > ⚠️ **`p` 和 `wk` 互斥**:设置 `p` 后会直接使用指定的 ProxyIP,`wk` 的地区匹配逻辑被完全跳过,两者同时写只有 `p` 生效。 path 示例: ``` # 指定 ProxyIP(不要同时写 wk) /?ed=2048&p=1.1.1.1 /?ed=2048&p=proxy.example.com:443 /?ed=2048&p=[2001:db8::1]:443 # 指定地区(让 Worker 自动选该地区的 ProxyIP) /?ed=2048&wk=jp /?ed=2048&wk=sg&rm=no # 指定 SOCKS5(可与 wk 搭配) /?ed=2048&s=user:pass@socks5.host:1080&wk=us ``` > 不在上表中的变量(如 `ev`、`et`、`yx` 等)属于订阅生成级配置,在 WebSocket 握手阶段已过路由,放在 path 里无效,仍需在环境变量或 KV 中设置。 #### 手动指定地区 - 可以手动指定Worker地区,覆盖自动检测 - 设置方式:`wk=SG` 或图形界面选择,或在节点 path 里加 `wk=SG` - 支持:US、SG、JP、HK、KR、DE、SE、NL、FI、GB #### 优选节点命名 - 支持自定义名称,格式:`IP:端口#节点名称` - 示例:`1.1.1.1:443#香港节点,8.8.8.8:53#Google DNS` - 不设置名称会自动生成 `自定义优选-IP:端口` #### 系统状态 - 显示Worker地区、检测方式、ProxyIP状态 - 选择逻辑:同地区 → 邻近地区 → 其他地区 #### 高级控制 - `rm=no` 关闭地区智能匹配 - `qj=no` 启用降级模式(CF直连失败→SOCKS5→fallback) - `dkby=yes` 只生成TLS节点 - `ech=yes` 启用ECH功能(启用后自动开启仅TLS模式) - `yxby=yes` 关闭所有优选功能 #### 多客户端支持 支持10种客户端:CLASH、SURGE、SING-BOX、LOON、QUANTUMULT X、V2RAY、Shadowrocket、STASH、NEKORAY、V2RAYNG - 根据客户端类型自动生成配置 - 图形界面一键生成订阅链接 - 点按钮自动打开对应客户端 - 根据User-Agent自动识别并返回对应格式 - 不同客户端自动适配最佳协议组合 - 所有TLS链接自动包含 `h3,h2,http/1.1` 协议协商 #### 性能优化 - 每15分钟自动优选一次 - 多重备用方案 - 智能缓存,减少重复计算 ### 致谢 - 基于 [zizifn/edgetunnel](https://github.com/zizifn/edgetunnel) 修改 - ProxyIP部分来自 [cmliu](https://github.com/cmliu) - 反代IP来自 [qwer-search](https://github.com/qwer-search) - 在线优选接口来自 [白嫖哥](https://t.me/bestcfipas) ## Star History [![Star History Chart](https://api.star-history.com/svg?repos=byJoey/cfnew&type=Timeline)](https://www.star-history.com/#byJoey/cfnew&Timeline&LogScale) ================================================ FILE: snippets ================================================ import { connect } from 'cloudflare:sockets'; // --- 硬编码配置 --- const authToken = 'f64bdc57-0f54-4705-bf75-cfd646d98c06'; let fallbackAddress = ''; const socks5Config = ''; // 手动指定地区(留空则自动检测,可选值:US、SG、JP、HK、KR、DE、SE、NL、FI、GB) const manualWorkerRegion = ''; // D短地址(自定义路径,留空则使用UUID路径,支持多级路径如:mypath 或 path/to/sub) const customPath = ''; // GitHub订阅URL(硬编码) const githubPreferredURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; // 启用GitHub优选IP(true启用,false禁用) const enableGitHubPreferred = true; // 启用其他优选(域名优选,true启用,false禁用) const enableOtherPreferred = true; // API地址配置(订阅转换服务) const apiBaseUrl = 'https://url.v1.mk/sub'; const directDomains = [ { name: "cloudflare.182682.xyz", domain: "cloudflare.182682.xyz" }, { name: "speed.marisalnc.com", domain: "speed.marisalnc.com" }, { domain: "freeyx.cloudflare88.eu.org" }, { domain: "bestcf.top" }, { domain: "cdn.2020111.xyz" }, { domain: "cfip.cfcdn.vip" }, { domain: "cf.0sm.com" }, { domain: "cf.090227.xyz" }, { domain: "cf.zhetengsha.eu.org" }, { domain: "cloudflare.9jy.cc" }, { domain: "cf.zerone-cdn.pp.ua" }, { domain: "cfip.1323123.xyz" }, { domain: "cnamefuckxxs.yuchen.icu" }, { domain: "cloudflare-ip.mofashi.ltd" }, { domain: "115155.xyz" }, { domain: "cname.xirancdn.us" }, { domain: "f3058171cad.002404.xyz" }, { domain: "8.889288.xyz" }, { domain: "cdn.tzpro.xyz" }, { domain: "cf.877771.xyz" }, { domain: "xn--b6gac.eu.org" } ]; const parsedSocks5Config = {}; const isSocksEnabled = false; let enableRegionMatching = true; let currentWorkerRegion = ''; const backupIPs = [ { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 }, { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 }, { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 }, { domain: 'ProxyIP.HK.CMLiussss.net', region: 'HK', regionCode: 'HK', port: 443 }, { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 }, { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 }, { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 }, { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 }, { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 }, { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 } ]; const E_INVALID_DATA = atob('aW52YWxpZCBkYXRh'); const E_INVALID_USER = atob('aW52YWxpZCB1c2Vy'); const E_UNSUPPORTED_CMD = atob('Y29tbWFuZCBpcyBub3Qgc3VwcG9ydGVk'); const E_UDP_DNS_ONLY = atob('VURQIHByb3h5IG9ubHkgZW5hYmxlIGZvciBETlMgd2hpY2ggaXMgcG9ydCA1Mw=='); const E_INVALID_ADDR_TYPE = atob('aW52YWxpZCBhZGRyZXNzVHlwZQ=='); const E_EMPTY_ADDR = atob('YWRkcmVzc1ZhbHVlIGlzIGVtcHR5'); const E_WS_NOT_OPEN = atob('d2ViU29ja2V0LmVhZHlTdGF0ZSBpcyBub3Qgb3Blbg=='); const E_INVALID_ID_STR = atob('U3RyaW5naWZpZWQgaWRlbnRpZmllciBpcyBpbnZhbGlk'); const E_INVALID_SOCKS_ADDR = atob('SW52YWxpZCBTT0NLUyBhZGRyZXNzIGZvcm1hdA=='); const E_SOCKS_NO_METHOD = atob('bm8gYWNjZXB0YWJsZSBtZXRob2Rz'); const E_SOCKS_AUTH_NEEDED = atob('c29ja3Mgc2VydmVyIG5lZWRzIGF1dGg='); const E_SOCKS_AUTH_FAIL = atob('ZmFpbCB0byBhdXRoIHNvY2tzIHNlcnZlcg=='); const E_SOCKS_CONN_FAIL = atob('ZmFpbCB0byBvcGVuIHNvY2tzIGNvbm5lY3Rpb24='); const ADDRESS_TYPE_IPV4 = 1; const ADDRESS_TYPE_URL = 2; const ADDRESS_TYPE_IPV6 = 3; async function detectWorkerRegion(request) { try { const cfCountry = request.cf?.country; if (cfCountry) { const countryToRegion = { 'US': 'US', 'SG': 'SG', 'JP': 'JP', 'HK': 'HK', 'KR': 'KR', 'DE': 'DE', 'SE': 'SE', 'NL': 'NL', 'FI': 'FI', 'GB': 'GB', 'CN': 'HK', 'TW': 'HK', 'AU': 'SG', 'CA': 'US', 'FR': 'DE', 'IT': 'DE', 'ES': 'DE', 'CH': 'DE', 'AT': 'DE', 'BE': 'NL', 'DK': 'SE', 'NO': 'SE', 'IE': 'GB' }; if (countryToRegion[cfCountry]) return countryToRegion[cfCountry]; } return 'HK'; } catch (error) { return 'HK'; } } function getNearbyRegions(region) { const nearbyMap = { 'US': ['SG', 'JP', 'HK', 'KR'], 'SG': ['JP', 'HK', 'KR', 'US'], 'JP': ['SG', 'HK', 'KR', 'US'], 'HK': ['SG', 'JP', 'KR', 'US'], 'KR': ['JP', 'HK', 'SG', 'US'], 'DE': ['NL', 'GB', 'SE', 'FI'], 'SE': ['DE', 'NL', 'FI', 'GB'], 'NL': ['DE', 'GB', 'SE', 'FI'], 'FI': ['SE', 'DE', 'NL', 'GB'], 'GB': ['DE', 'NL', 'SE', 'FI'] }; return nearbyMap[region] || []; } function getAllRegionsByPriority(region) { const nearbyRegions = getNearbyRegions(region); const allRegions = ['US', 'SG', 'JP', 'HK', 'KR', 'DE', 'SE', 'NL', 'FI', 'GB']; return [region, ...nearbyRegions, ...allRegions.filter(r => r !== region && !nearbyRegions.includes(r))]; } function getSmartRegionSelection(workerRegion, availableIPs) { if (!enableRegionMatching || !workerRegion) return availableIPs; const priorityRegions = getAllRegionsByPriority(workerRegion); const sortedIPs = []; for (const region of priorityRegions) { const regionIPs = availableIPs.filter(ip => ip.regionCode === region); sortedIPs.push(...regionIPs); } return sortedIPs; } async function getBestBackupIP(workerRegion = '') { if (backupIPs.length === 0) return null; const availableIPs = backupIPs.map(ip => ({ ...ip, available: true })); if (enableRegionMatching && workerRegion) { const sortedIPs = getSmartRegionSelection(workerRegion, availableIPs); if (sortedIPs.length > 0) return sortedIPs[0]; } return availableIPs[0]; } function parseAddressAndPort(input) { if (!input) return { address: '', port: null }; if (input.includes('[') && input.includes(']')) { const match = input.match(/^\[([^\]]+)\](?::(\d+))?$/); if (match) { return { address: match[1], port: match[2] ? parseInt(match[2], 10) : null }; } } const lastColonIndex = input.lastIndexOf(':'); if (lastColonIndex > 0) { const address = input.substring(0, lastColonIndex); const portStr = input.substring(lastColonIndex + 1); const port = parseInt(portStr, 10); if (!isNaN(port) && port > 0 && port <= 65535) return { address, port }; } return { address: input, port: null }; } export default { async fetch(request, env, ctx) { try { const url = new URL(request.url); if (manualWorkerRegion && manualWorkerRegion.trim()) { currentWorkerRegion = manualWorkerRegion.trim().toUpperCase(); } else { currentWorkerRegion = await detectWorkerRegion(request); } let currentFallbackAddress = fallbackAddress; if (!currentFallbackAddress && currentWorkerRegion) { const bestBackupIP = await getBestBackupIP(currentWorkerRegion); if (bestBackupIP) currentFallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port; } if (request.headers.get('Upgrade') === 'websocket') { return await handleWsRequest(request, currentFallbackAddress); } else if (request.method === 'GET') { if (url.pathname === '/') { const successHtml = `服务正常

✅ 服务正常

请继续后面的操作。

`; return new Response(successHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } }); } if (customPath && customPath.trim()) { const cleanCustomPath = customPath.trim().startsWith('/') ? customPath.trim() : '/' + customPath.trim(); const normalizedCustomPath = cleanCustomPath.endsWith('/') && cleanCustomPath.length > 1 ? cleanCustomPath.slice(0, -1) : cleanCustomPath; const normalizedPath = url.pathname.endsWith('/') && url.pathname.length > 1 ? url.pathname.slice(0, -1) : url.pathname; if (normalizedPath === normalizedCustomPath) { return await handleSubscriptionPage(request, authToken); } if (normalizedPath === normalizedCustomPath + '/sub') { return await handleSubscriptionRequest(request, authToken, url); } if (url.pathname.length > 1 && url.pathname !== '/') { const user = url.pathname.replace(/\/$/, '').replace('/sub', '').substring(1); if (isValidFormat(user)) { return new Response(JSON.stringify({ error: '访问被拒绝', message: '当前 Worker 已启用自定义路径模式,UUID 访问已禁用' }), { status: 403, headers: { 'Content-Type': 'application/json; charset=utf-8' } }); } } } else { if (url.pathname.length > 1 && url.pathname !== '/' && !url.pathname.includes('/sub')) { const uuid = url.pathname.replace(/\/$/, '').substring(1); if (isValidFormat(uuid)) { if (uuid === authToken) return await handleSubscriptionPage(request, uuid); return new Response('UUID错误', { status: 403 }); } } if (url.pathname.includes('/sub')) { const pathParts = url.pathname.split('/'); if (pathParts.length === 2 && pathParts[1] === 'sub') { const uuid = pathParts[0].substring(1); if (isValidFormat(uuid)) { if (uuid === authToken) return await handleSubscriptionRequest(request, uuid, url); return new Response('UUID错误', { status: 403 }); } } } if (url.pathname.toLowerCase().includes(`/${authToken}`)) { return await handleSubscriptionRequest(request, authToken); } } } return new Response('Not Found', { status: 404 }); } catch (err) { return new Response(err.toString(), { status: 500 }); } }, }; async function handleSubscriptionPage(request, uuid = null) { if (!uuid) uuid = authToken; const pageHtml = ` 订阅中心
代理订阅中心精简版 v2.1

代理订阅中心

多客户端支持 • 智能优选 • 一键生成

[ 选择客户端 ]

[ 快速获取 ]

[ 相关链接 ]

GitHub 项目 YouTube @joeyblog
`; return new Response(pageHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } }); } async function handleSubscriptionRequest(request, uuid, url = null) { if (!url) url = new URL(request.url); const finalLinks = []; const workerDomain = url.hostname; const nativeList = [{ ip: workerDomain, isp: '原生地址' }]; finalLinks.push(...generateLinksFromSource(nativeList, uuid, workerDomain)); if (enableOtherPreferred) { const domainList = directDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain })); finalLinks.push(...generateLinksFromSource(domainList, uuid, workerDomain)); } if (enableGitHubPreferred) { const newIPList = await fetchAndParseNewIPs(); if (newIPList.length > 0) finalLinks.push(...generateLinksFromNewIPs(newIPList, uuid, workerDomain)); } if (finalLinks.length === 0) { const errorRemark = "所有节点获取失败"; const errorLink = `vless://00000000-0000-0000-0000-000000000000@127.0.0.1:80?encryption=none&security=none&type=ws&host=error.com&path=%2F#${encodeURIComponent(errorRemark)}`; finalLinks.push(errorLink); } const subscriptionContent = btoa(finalLinks.join('\n')); return new Response(subscriptionContent, { headers: { 'Content-Type': 'text/plain; charset=utf-8', 'Cache-Control': 'no-store, no-cache, must-revalidate, max-age=0', }, }); } function generateLinksFromSource(list, uuid, workerDomain) { const httpsPorts = [443]; const links = []; const wsPath = '/?ed=2048'; const proto = 'vless'; list.forEach(item => { const nodeNameBase = item.isp.replace(/\s/g, '_'); const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip; httpsPorts.forEach(port => { const wsNodeName = `${nodeNameBase}-${port}-WS-TLS`; const wsParams = new URLSearchParams({ encryption: 'none', security: 'tls', sni: workerDomain, fp: 'randomized', type: 'ws', host: workerDomain, path: wsPath }); links.push(`${proto}://${uuid}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`); }); }); return links; } async function fetchAndParseNewIPs() { const url = githubPreferredURL; try { const response = await fetch(url); if (!response.ok) return []; const text = await response.text(); const results = []; const lines = text.trim().replace(/\r/g, "").split('\n'); const regex = /^([^:]+):(\d+)#(.*)$/; for (const line of lines) { const trimmedLine = line.trim(); if (!trimmedLine) continue; const match = trimmedLine.match(regex); if (match) { results.push({ ip: match[1], port: parseInt(match[2], 10), name: match[3].trim() || match[1] }); } } return results; } catch (error) { return []; } } function generateLinksFromNewIPs(list, uuid, workerDomain) { const links = []; const wsPath = '/?ed=2048'; const proto = 'vless'; list.forEach(item => { const nodeName = item.name; const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip; const params = { encryption: 'none', security: 'tls', sni: workerDomain, fp: 'randomized', type: 'ws', host: workerDomain, path: wsPath }; const wsParams = new URLSearchParams(params); links.push(`${proto}://${uuid}@${safeIP}:${item.port}?${wsParams.toString()}#${encodeURIComponent(nodeName)}`); }); return links; } async function handleWsRequest(request, currentFallbackAddress = null) { const wsPair = new WebSocketPair(); const [clientSock, serverSock] = Object.values(wsPair); serverSock.accept(); let remoteConnWrapper = { socket: null }; let isDnsQuery = false; const fbAddr = currentFallbackAddress || fallbackAddress; const earlyData = request.headers.get('sec-websocket-protocol') || ''; const readable = makeReadableStream(serverSock, earlyData); readable.pipeTo(new WritableStream({ async write(chunk) { if (isDnsQuery) return await forwardUDP(chunk, serverSock, null); if (remoteConnWrapper.socket) { const writer = remoteConnWrapper.socket.writable.getWriter(); await writer.write(chunk); writer.releaseLock(); return; } const { hasError, message, addressType, port, hostname, rawIndex, version, isUDP } = parseWsPacketHeader(chunk, authToken); if (hasError) throw new Error(message); if (isUDP) { if (port === 53) isDnsQuery = true; else throw new Error(E_UDP_DNS_ONLY); } const respHeader = new Uint8Array([version[0], 0]); const rawData = chunk.slice(rawIndex); if (isDnsQuery) return forwardUDP(rawData, serverSock, respHeader); await forwardTCP(addressType, hostname, port, rawData, serverSock, respHeader, remoteConnWrapper, fbAddr); }, })).catch((err) => { console.log('WS Stream Error:', err); }); return new Response(null, { status: 101, webSocket: clientSock }); } async function forwardTCP(addrType, host, portNum, rawData, ws, respHeader, remoteConnWrapper, fbAddr = null) { async function connectAndSend(address, port) { const remoteSock = connect({ hostname: address, port: port }); const writer = remoteSock.writable.getWriter(); await writer.write(rawData); writer.releaseLock(); return remoteSock; } async function retryConnection() { let fallbackHost, fallbackPort; if (fbAddr && fbAddr.trim()) { const parsed = parseAddressAndPort(fbAddr); fallbackHost = parsed.address; fallbackPort = parsed.port || portNum; } else if (fallbackAddress && fallbackAddress.trim()) { const parsed = parseAddressAndPort(fallbackAddress); fallbackHost = parsed.address; fallbackPort = parsed.port || portNum; } else { const bestBackupIP = await getBestBackupIP(currentWorkerRegion); fallbackHost = bestBackupIP ? bestBackupIP.domain : host; fallbackPort = bestBackupIP ? bestBackupIP.port : portNum; } const newSocket = await connectAndSend(fallbackHost || host, fallbackPort); remoteConnWrapper.socket = newSocket; newSocket.closed.catch(() => { }).finally(() => closeSocketQuietly(ws)); connectStreams(newSocket, ws, respHeader, null); } try { const initialSocket = await connectAndSend(host, portNum); remoteConnWrapper.socket = initialSocket; connectStreams(initialSocket, ws, respHeader, retryConnection); } catch (err) { console.log('Initial connection failed, trying fallback:', err); retryConnection(); } } function parseWsPacketHeader(chunk, token) { if (chunk.byteLength < 24) return { hasError: true, message: E_INVALID_DATA }; const version = new Uint8Array(chunk.slice(0, 1)); if (formatIdentifier(new Uint8Array(chunk.slice(1, 17))) !== token) return { hasError: true, message: E_INVALID_USER }; const optLen = new Uint8Array(chunk.slice(17, 18))[0]; const cmd = new Uint8Array(chunk.slice(18 + optLen, 19 + optLen))[0]; let isUDP = false; if (cmd === 1) { } else if (cmd === 2) { isUDP = true; } else { return { hasError: true, message: E_UNSUPPORTED_CMD }; } const portIdx = 19 + optLen; const port = new DataView(chunk.slice(portIdx, portIdx + 2)).getUint16(0); let addrIdx = portIdx + 2, addrLen = 0, addrValIdx = addrIdx + 1, hostname = ''; const addressType = new Uint8Array(chunk.slice(addrIdx, addrValIdx))[0]; switch (addressType) { case ADDRESS_TYPE_IPV4: addrLen = 4; hostname = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + addrLen)).join('.'); break; case ADDRESS_TYPE_URL: addrLen = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + 1))[0]; addrValIdx += 1; hostname = new TextDecoder().decode(chunk.slice(addrValIdx, addrValIdx + addrLen)); break; case ADDRESS_TYPE_IPV6: addrLen = 16; const ipv6 = []; const ipv6View = new DataView(chunk.slice(addrValIdx, addrValIdx + addrLen)); for (let i = 0; i < 8; i++) ipv6.push(ipv6View.getUint16(i * 2).toString(16)); hostname = ipv6.join(':'); break; default: return { hasError: true, message: `${E_INVALID_ADDR_TYPE}: ${addressType}` }; } if (!hostname) return { hasError: true, message: `${E_EMPTY_ADDR}: ${addressType}` }; return { hasError: false, addressType, port, hostname, isUDP, rawIndex: addrValIdx + addrLen, version }; } function makeReadableStream(socket, earlyDataHeader) { let cancelled = false; return new ReadableStream({ start(controller) { socket.addEventListener('message', (event) => { if (!cancelled) controller.enqueue(event.data); }); socket.addEventListener('close', () => { if (!cancelled) { closeSocketQuietly(socket); controller.close(); } }); socket.addEventListener('error', (err) => controller.error(err)); const { earlyData, error } = base64ToArray(earlyDataHeader); if (error) controller.error(error); else if (earlyData) controller.enqueue(earlyData); }, cancel() { cancelled = true; closeSocketQuietly(socket); } }); } async function connectStreams(remoteSocket, webSocket, headerData, retryFunc) { let header = headerData, hasData = false; await remoteSocket.readable.pipeTo( new WritableStream({ async write(chunk, controller) { hasData = true; if (webSocket.readyState !== 1) controller.error(E_WS_NOT_OPEN); if (header) { webSocket.send(await new Blob([header, chunk]).arrayBuffer()); header = null; } else { webSocket.send(chunk); } }, abort(reason) { console.error("Readable aborted:", reason); }, }) ).catch((error) => { console.error("Stream connection error:", error); closeSocketQuietly(webSocket); }); if (!hasData && retryFunc) retryFunc(); } async function forwardUDP(udpChunk, webSocket, respHeader) { try { const tcpSocket = connect({ hostname: '8.8.4.4', port: 53 }); let vlessHeader = respHeader; const writer = tcpSocket.writable.getWriter(); await writer.write(udpChunk); writer.releaseLock(); await tcpSocket.readable.pipeTo(new WritableStream({ async write(chunk) { if (webSocket.readyState === 1) { if (vlessHeader) { webSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer()); vlessHeader = null; } else { webSocket.send(chunk); } } }, })); } catch (error) { console.error(`DNS forward error: ${error.message}`); } } function base64ToArray(b64Str) { if (!b64Str) return { error: null }; try { b64Str = b64Str.replace(/-/g, '+').replace(/_/g, '/'); return { earlyData: Uint8Array.from(atob(b64Str), (c) => c.charCodeAt(0)).buffer, error: null }; } catch (error) { return { error }; } } function isValidFormat(uuid) { return /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(uuid); } function closeSocketQuietly(socket) { try { if (socket.readyState === 1 || socket.readyState === 2) socket.close(); } catch (error) { } } const hexTable = Array.from({ length: 256 }, (v, i) => (i + 256).toString(16).slice(1)); function formatIdentifier(arr, offset = 0) { const id = ( hexTable[arr[offset]] + hexTable[arr[offset + 1]] + hexTable[arr[offset + 2]] + hexTable[arr[offset + 3]] + "-" + hexTable[arr[offset + 4]] + hexTable[arr[offset + 5]] + "-" + hexTable[arr[offset + 6]] + hexTable[arr[offset + 7]] + "-" + hexTable[arr[offset + 8]] + hexTable[arr[offset + 9]] + "-" + hexTable[arr[offset + 10]] + hexTable[arr[offset + 11]] + hexTable[arr[offset + 12]] + hexTable[arr[offset + 13]] + hexTable[arr[offset + 14]] + hexTable[arr[offset + 15]] ).toLowerCase(); if (!isValidFormat(id)) throw new TypeError(E_INVALID_ID_STR); return id; } ================================================ FILE: wrangler.toml ================================================ compatibility_date = "2026-01-20" ================================================ FILE: فارسی.md ================================================ # CFnew - ترمینال v2.9.3 **زبان:** [中文](README.md) | [فارسی](فارسی.md) [Telegram گروه](https://t.me/+ft-zI76oovgwNmRh) ## ویژگی‌های اصلی - پشتیبانی چند پروتکل: VLESS، Trojan، xhttp، می‌تونید همزمان چند تا رو فعال کنید - مسیر سفارشی: دیگه از UUID به عنوان مسیر استفاده نمی‌شه، می‌تونید خودتون تنظیم کنید، پشتیبانی از مسیرهای چند سطحی - تست تاخیر: ابزار تست داخلی، تست تاخیر IP، دریافت خودکار کد فرودگاه - تبدیل اشتراک: می‌تونید آدرس سرویس تبدیل رو خودتون تنظیم کنید - مدیریت گرافیکی: با KV ذخیره می‌شه، تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست - مدیریت API: از طریق RESTful API می‌تونید IP ترجیحی رو مدیریت کنید - پشتیبانی چند کلاینت: CLASH، SURGE، SING-BOX، LOON، QUANTUMULT X، V2RAY، Shadowrocket، STASH، NEKORAY، V2RAYNG - بیدار کردن برنامه: با کلیک روی دکمه خودکار برنامه کلاینت باز می‌شه - تشخیص خودکار: بر اساس User-Agent خودکار تشخیص می‌ده و قالب مناسب رو برمی‌گردونه - پشتیبانی چند زبان: پشتیبانی از چینی و فارسی، بر اساس زبان مرورگر خودکار تغییر می‌کنه ## به‌روزرسانی v2.9.3 - ویژگی جدید سفارشی‌سازی DNS و دامنه ECH در رابط گرافیکی - می‌تونید آدرس سرور DNS رو خودتون تنظیم کنید (فرمت DoH) - می‌تونید دامنه ECH رو خودتون تنظیم کنید - پشتیبانی از تغییرات پویا، بعد از ذخیره بلافاصله اعمال می‌شه - پارامتر query-server-name به ech-opts در پیکربندی Clash اضافه شد، با v2ray هماهنگ شد ## به‌روزرسانی v2.9 - فیلتر منطقه: می‌تونید نتایج ترجیحی رو بر اساس منطقه فیلتر کنید، پشتیبانی از چند انتخاب - فیلتر تاخیر: گزینه جدید "فقط نمایش 10 تا سریع‌ترین" - حالت اضافه/جایگزین: هنگام افزودن نتایج ترجیحی می‌تونید اضافه کنید یا کل لیست رو جایگزین کنید - بهینه‌سازی نمایش نتایج: نمایش برچسب منطقه، مرتب‌سازی بر اساس تاخیر - بهینه‌سازی‌های جزئی دیگر --- ### ابزارهای مرتبط - ابزار ترجیحی: https://github.com/byJoey/yx-tools/releases - آموزش متنی: https://joeyblog.net/yuanchuang/1146.html - آموزش ویدیویی Workers: https://www.youtube.com/watch?v=aYzTr8FafN4 - آموزش ویدیویی Pages: https://www.youtube.com/watch?v=JhVxJChDL-E - آموزش ویدیویی Snippets: https://www.youtube.com/watch?v=xeFeH3Akcu8 ### استقرار اشتراک هر 15 دقیقه یکبار خودکار انتخاب می‌شه #### پیکربندی پایه | نام متغیر | مقدار | توضیحات | | :--- | :--- | :--- | | `u` | UUID شما | الزامی، برای دسترسی به اشتراک و رابط مدیریت | | `p` | proxyip | اختیاری، آدرس و پورت ProxyIP سفارشی | | `s` | آدرس SOCKS5 شما | اختیاری، فرمت: `user:pass@host:port` یا `host:port` | | `d` | مسیر سفارشی | اختیاری، مثل `/mypath` یا `/path/to/sub`، اگر خالی بذارید از UUID استفاده می‌شه. اگر مسیر با `/` شروع نشه خودکار اضافه می‌شه | | `wk` | کد منطقه | اختیاری، مثل `SG`، `HK`، `US`، `JP` | #### پیکربندی پروتکل | نام متغیر | مقدار | توضیحات | | :--- | :--- | :--- | | `ev` | yes/no | اختیاری، فعال‌سازی VLESS (پیش‌فرض فعال) | | `et` | yes/no | اختیاری، فعال‌سازی Trojan (پیش‌فرض غیرفعال) | | `ex` | yes/no | اختیاری، فعال‌سازی xhttp (پیش‌فرض غیرفعال) | | `tp` | رمز عبور سفارشی | اختیاری، رمز عبور Trojan، خالی بذارید از UUID استفاده می‌شه | #### پیکربندی گرافیکی (توصیه می‌شه) 1. در Workers یک فضای نام KV ایجاد کنید، متغیر محیطی `C` رو متصل کنید 2. بعد از استقرار به `/{UUID شما}` برید تا از رابط گرافیکی استفاده کنید 3. تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست #### کنترل پیشرفته | نام متغیر | مقدار | توضیحات | | :--- | :--- | :--- | | `yx` | IP/دامنه ترجیحی سفارشی | اختیاری، پشتیبانی از نامگذاری، فرمت: `1.1.1.1:443#گره هنگ‌کنگ,8.8.8.8:53#Google DNS` | | `yxURL` | URL منبع IP ترجیحی | اختیاری، اگر خالی بذارید از آدرس پیش‌فرض استفاده می‌شه | | `scu` | آدرس تبدیل اشتراک | اختیاری، پیش‌فرض: `https://url.v1.mk/sub` | | `epd` | yes/no | اختیاری، فعال‌سازی دامنه ترجیحی (پیش‌فرض فعال) | | `epi` | yes/no | اختیاری، فعال‌سازی IP ترجیحی (پیش‌فرض فعال) | | `egi` | yes/no | اختیاری، فعال‌سازی ترجیح GitHub (پیش‌فرض فعال) | | `qj` | no | اختیاری، وقتی `no` باشه حالت کاهش سطح فعال می‌شه: CF مستقیم ناموفق → SOCKS5 → fallback | | `dkby` | yes | اختیاری، وقتی `yes` باشه فقط گره‌های TLS تولید می‌شه | | `yxby` | yes | اختیاری، وقتی `yes` باشه تمام عملکردهای ترجیحی خاموش می‌شه | | `rm` | no | اختیاری، وقتی `no` باشه تطبیق هوشمند منطقه خاموش می‌شه | | `ae` | yes | اختیاری، وقتی `yes` باشه اجازه مدیریت API داده می‌شه (پیش‌فرض خاموش) | #### تنظیمات KV (توصیه می‌شه) 1. در Cloudflare Workers یک فضای نام KV ایجاد کنید 2. در تنظیمات Workers KV رو متصل کنید، نام متغیر رو `C` بذارید 3. Workers رو دوباره استقرار بدید 4. به `/{UUID شما}` برید تا از رابط گرافیکی استفاده کنید #### استفاده از API 1. نرم‌افزار ترجیحی: https://github.com/byJoey/yx-tools/releases 2. فعال‌سازی API: به `/{UUID}` یا `/{مسیر سفارشی}` برید، "اجازه مدیریت API" رو پیدا کنید، فعال کنید و ذخیره کنید 3. افزودن IP تک: ```bash # استفاده از مسیر UUID curl -X POST "https://your-worker.workers.dev/{UUID}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"ip": "1.2.3.4", "port": 443, "name": "گره هنگ‌کنگ"}' # استفاده از مسیر سفارشی (اگر متغیر d تنظیم شده باشد) curl -X POST "https://your-worker.workers.dev/{مسیر سفارشی}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"ip": "1.2.3.4", "port": 443, "name": "گره هنگ‌کنگ"}' ``` 4. افزودن دسته‌ای IP: ```bash curl -X POST "https://your-worker.workers.dev/{UUID یا مسیر سفارشی}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '[ {"ip": "1.2.3.4", "port": 443, "name": "گره 1"}, {"ip": "5.6.7.8", "port": 8443, "name": "گره 2"} ]' ``` 5. پاک کردن همه IP: ```bash curl -X DELETE "https://your-worker.workers.dev/{UUID یا مسیر سفارشی}/api/preferred-ips" \ -H "Content-Type: application/json" \ -d '{"all": true}' ``` ### توضیحات عملکرد #### تست تاخیر از v2.7 شروع شد، v2.9 فیلتر رو تقویت کرد - ابزار تست داخلی، نیازی به نصب نرم‌افزار دیگه نیست، مستقیماً در صفحه پیکربندی تست تاخیر IP - منابع IP: - ورودی دستی: مستقیماً IP یا دامنه وارد کنید، پشتیبانی از دسته‌ای (با کاما جدا کنید) - IP تصادفی CF: از محدوده IP Cloudflare به صورت تصادفی تولید می‌شه - دریافت از URL: از URL راه‌دور لیست IP رو دریافت می‌کنه - پشتیبانی از تست همزمان 1-50 رشته، پیش‌فرض 5 رشته - دریافت خودکار کد فرودگاه (مثل SJC، LAX) - نگاشت خودکار نام فرودگاه چینی (SJC→سن‌خوزه) - کسر خودکار زمان DNS+TLS، نمایش تاخیر واقعی - تنظیمات خودکار در مرورگر ذخیره می‌شه - پشتیبانی از فیلتر بر اساس منطقه - پشتیبانی از نمایش فقط 10 تا سریع‌ترین - پشتیبانی از حالت اضافه یا جایگزین #### پشتیبانی چند پروتکل - VLESS: پیش‌فرض فعال - Trojan: پشتیبانی از Trojan-WS-TLS، می‌تونید رمز عبور سفارشی بذارید، خالی بذارید از UUID استفاده می‌شه - xhttp: پروتکل استتار مبتنی بر HTTP POST - می‌تونید همزمان چند پروتکل رو فعال کنید، کلاینت خودکار تشخیص می‌ده - در رابط گرافیکی می‌تونید با یک کلیک فعال/غیرفعال کنید - دکمه ذخیره مستقل برای پیکربندی پروتکل #### مسیر سفارشی (متغیر d) - دیگه از UUID به عنوان مسیر استفاده نمی‌شه، می‌تونید خودتون تنظیم کنید - پشتیبانی از مسیرهای چند سطحی، مثل `/path/to/sub` - اگر مسیر با `/` شروع نشه خودکار اضافه می‌شه - بعد از مسیر سفارشی مسیر UUID خودکار غیرفعال می‌شه - می‌تونید هر زمان از رابط گرافیکی مسیر رو تغییر بدید #### مدیریت پیکربندی گرافیکی - از Cloudflare KV برای ذخیره پیکربندی استفاده می‌شه - به `/{UUID شما}` یا `/{مسیر سفارشی}` برید تا از رابط استفاده کنید - تغییرات بلافاصله اعمال می‌شه، نیازی به استقرار مجدد نیست - اولویت: پیکربندی KV > متغیر محیطی > مقدار پیش‌فرض #### پشتیبانی چند زبان - بر اساس زبان مرورگر خودکار چینی یا فارسی رو انتخاب می‌کنه - در گوشه بالا راست می‌تونید دستی تغییر بدید - انتخاب زبان در مرورگر ذخیره می‌شه - نسخه فارسی خودکار RTL رو فعال می‌کنه #### کنترل تبدیل اشتراک - می‌تونید آدرس سرویس تبدیل رو خودتون تنظیم کنید - می‌تونید دامنه ترجیحی، IP ترجیحی، ترجیح GitHub رو جداگانه کنترل کنید - پیش‌فرض همه فعال هستند - تغییرات بلافاصله اعمال می‌شه #### مدیریت API - از طریق RESTful API می‌تونید IP ترجیحی رو مدیریت کنید، نیازی به تغییر کد نیست - پشتیبانی از افزودن دسته‌ای - پشتیبانی از پاک کردن همه IP - پیش‌فرض خاموشه، باید در رابط گرافیکی فعال کنید - IP های اضافه شده از طریق API با متغیر yx خودکار ادغام می‌شه - API endpoints: - `GET /{UUID یا مسیر}/api/preferred-ips` - پرس‌وجوی لیست - `POST /{UUID یا مسیر}/api/preferred-ips` - افزودن (تک/دسته‌ای) - `DELETE /{UUID یا مسیر}/api/preferred-ips` - حذف (تک/همه) #### تعیین دستی منطقه - می‌تونید دستی منطقه Worker رو تنظیم کنید، تشخیص خودکار رو بازنویسی می‌کنه - تنظیم: `wk=SG` یا از رابط گرافیکی - پشتیبانی از: US، SG، JP، HK، KR، DE، SE، NL، FI، GB #### نامگذاری گره ترجیحی - می‌تونید نام سفارشی بذارید، فرمت: `IP:پورت#نام گره` - مثال: `1.1.1.1:443#گره هنگ‌کنگ,8.8.8.8:53#Google DNS` - اگر نام نذارید خودکار `ترجیح سفارشی-IP:پورت` تولید می‌شه #### وضعیت سیستم - نمایش منطقه Worker، روش تشخیص، وضعیت ProxyIP - منطق انتخاب: هم‌منطقه → منطقه مجاور → سایر مناطق #### کنترل پیشرفته - `rm=no` خاموش کردن تطبیق هوشمند منطقه - `qj=no` فعال‌سازی حالت کاهش سطح (CF مستقیم ناموفق → SOCKS5 → fallback) - `dkby=yes` فقط تولید گره‌های TLS - `yxby=yes` خاموش کردن تمام عملکردهای ترجیحی #### پشتیبانی چند کلاینت پشتیبانی از 10 کلاینت: CLASH، SURGE، SING-BOX، LOON، QUANTUMULT X، V2RAY، Shadowrocket، STASH، NEKORAY، V2RAYNG - بر اساس نوع کلاینت خودکار پیکربندی تولید می‌شه - در رابط گرافیکی می‌تونید یک کلیکی لینک اشتراک بگیرید - با کلیک روی دکمه خودکار برنامه کلاینت باز می‌شه - بر اساس User-Agent خودکار تشخیص می‌ده - کلاینت‌های مختلف خودکار با بهترین ترکیب پروتکل سازگار می‌شه - تمام لینک‌های TLS خودکار شامل `h3,h2,http/1.1` می‌شه #### بهینه‌سازی عملکرد - هر 15 دقیقه یکبار خودکار انتخاب می‌شه - چندین طرح پشتیبان - کش هوشمند، کاهش محاسبات تکراری ### تشکر - بر اساس [zizifn/edgetunnel](https://github.com/zizifn/edgetunnel) اصلاح شده - ProxyIP از [cmliu](https://github.com/cmliu) - IP پروکسی معکوس از [qwer-search](https://github.com/qwer-search) - رابط ترجیح آنلاین از [白嫖哥](https://t.me/bestcfipas) ## تاریخچه ستاره [![Star History Chart](https://api.star-history.com/svg?repos=byJoey/cfnew&type=Timeline)](https://www.star-history.com/#byJoey/cfnew&Timeline&LogScale) ================================================ FILE: 少年你相信光吗 ================================================ const Yf=G;const YV=G;(function(RY,RG){const YX=G;const YQ=G;const RO=RY();while(!![]){try{const RF=-parseInt(YX(0xa7))/0x1+-parseInt(YQ(0x9c))/0x2*(parseInt(YX(0xac))/0x3)+-parseInt(YX(0xa9))/0x4+-parseInt(YX(0xd9))/0x5*(-parseInt(YX(0xb9))/0x6)+-parseInt(YQ(0x9e))/0x7+-parseInt(YX(0xc4))/0x8*(-parseInt(YQ(0xe0))/0x9)+parseInt(YQ(0x96))/0xa;if(RF===RG){break;}else{RO['push'](RO['shift']());}}catch(Rt){RO['push'](RO['shift']());}}}(Y,0x43ad8));function G(D,R){D=D-0x77;const O=Y();let F=O[D];if(G['\x70\x56\x42\x4a\x6b\x65']===undefined){var t=function(S){const M='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let g='';let i='';for(let C=0x0,v,d,H=0x0;d=S['\x63\x68\x61\x72\x41\x74'](H++);~d&&(v=C%0x4?v*0x40+d:d,C++%0x4)?g+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&v>>(-0x2*C&0x6)):0x0){d=M['\x69\x6e\x64\x65\x78\x4f\x66'](d);}for(let J=0x0,X=g['\x6c\x65\x6e\x67\x74\x68'];JRF['\x61'+'\x62'+'\x6f'+'\x72'+'\x74'](),RO);const RK=await fetch('\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+RY,{'\x6d\x65\x74\x68\x6f\x64':'\x48'+'\x45'+'\x41'+'\x44','\x73\x69\x67\x6e\x61\x6c':RF['\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'],'\x68\x65\x61\x64\x65\x72\x73':{'\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74':'\x4d'+'\x6f'+'\x7a'+'\x69'+'\x6c'+'\x6c'+'\x61'+'\x2f'+'\x35'+'\x2e'+'\x30'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6d'+'\x70'+'\x61'+'\x74'+'\x69'+'\x62'+'\x6c'+'\x65'+'\x3b'+'\x20'+'\x43'+'\x46'+'\x2d'+'\x49'+'\x50'+'\x2d'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x72'+'\x2f'+'\x31'+'\x2e'+'\x30'+'\x29'}});clearTimeout(Rt);return RK['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']<0x1f4;}catch(Rq){return!![];}}async function DR(RY='',RG=C){if(E['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){return null;}const RO=E['\x6d'+'\x61'+'\x70'](Rt=>({...Rt,'\x61\x76\x61\x69\x6c\x61\x62\x6c\x65':!![]}));if(RG&&RY){const Rt=DO(RY,RO,RG);if(Rt['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){const RK=Rt[0x0];return RK;}}const RF=RO[0x0];return RF;}function DY(RY){const RG={'\x55\x53':['\x53'+'\x47','\x4a'+'\x50','\x4b'+'\x52'],'\x53\x47':['\x4a'+'\x50','\x4b'+'\x52','\x55'+'\x53'],'\x4a\x50':['\x53'+'\x47','\x4b'+'\x52','\x55'+'\x53'],'\x4b\x52':['\x4a'+'\x50','\x53'+'\x47','\x55'+'\x53'],'\x44\x45':['\x4e'+'\x4c','\x47'+'\x42','\x53'+'\x45','\x46'+'\x49'],'\x53\x45':['\x44'+'\x45','\x4e'+'\x4c','\x46'+'\x49','\x47'+'\x42'],'\x4e\x4c':['\x44'+'\x45','\x47'+'\x42','\x53'+'\x45','\x46'+'\x49'],'\x46\x49':['\x53'+'\x45','\x44'+'\x45','\x4e'+'\x4c','\x47'+'\x42'],'\x47\x42':['\x44'+'\x45','\x4e'+'\x4c','\x53'+'\x45','\x46'+'\x49']};return RG[RY]||[];}function DG(RY){const RG=DY(RY);const RO=['\x55'+'\x53','\x53'+'\x47','\x4a'+'\x50','\x4b'+'\x52','\x44'+'\x45','\x53'+'\x45','\x4e'+'\x4c','\x46'+'\x49','\x47'+'\x42'];return[RY,...RG,...RO['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RF=>RF!==RY&&!RG['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](RF))];}function DO(RY,RG,RO=C){if(!RO||!RY){return RG;}const RF=DG(RY);const Rt=[];for(const RK of RF){const Rq=RG['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RI=>RI['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x64'+'\x65']===RK);Rt['\x70'+'\x75'+'\x73'+'\x68'](...Rq);}return Rt;}function DF(RY){if(RY['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x5b')&&RY['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x5d')){const RO=RY['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/^\[([^\]]+)\](?::(\d+))?$/);if(RO){return{'\x61\x64\x64\x72\x65\x73\x73':RO[0x1],'\x70\x6f\x72\x74':RO[0x2]?parseInt(RO[0x2],0xa):null};}}const RG=RY['\x6c'+'\x61'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x3a');if(RG>0x0){const RF=RY['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,RG);const Rt=RY['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](RG+0x1);const RK=parseInt(Rt,0xa);if(!RF['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x3a')&&!isNaN(RK)&&RK>0x0&&RK<=0xffff){return{'\x61\x64\x64\x72\x65\x73\x73':RF,'\x70\x6f\x72\x74':RK};}}return{'\x61\x64\x64\x72\x65\x73\x73':RY,'\x70\x6f\x72\x74':null};}export default{async '\x66\x65\x74\x63\x68'(RY,RG,RO){const Yx=G;const Yy=G;try{await D4(RG);t=(RG['\x75']||RG['\x55']||t)['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();const RF=(RG['\x64']||RG['\x44']||t)['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();const Rt=D7('\x70',RG['\x70']||RG['\x50']);let RK=![];const Rq=D7('\x77'+'\x6b',RG['\x77'+'\x6b']||RG['\x57'+'\x4b']);if(Rq&&Rq['\x74'+'\x72'+'\x69'+'\x6d']()){d=Rq['\x74'+'\x72'+'\x69'+'\x6d']()['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();v=d;}else if(Rt&&Rt['\x74'+'\x72'+'\x69'+'\x6d']()){RK=!![];v='\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d';}else{v=await D9(RY);}const RI=RG['\x72'+'\x6d']||RG['\x52'+'\x4d'];if(RI&&RI['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x6e'+'\x6f'){C=![];}const RS=D7('\x70',RG['\x70']||RG['\x50']);if(RS){K=RS['\x74'+'\x72'+'\x69'+'\x6d']();}q=D7('\x73',RG['\x73']||RG['\x53'])||q;if(q){try{r=Dx(q);e=!![];}catch(Rh){e=![];}}const RM=D7('\x79'+'\x78',RG['\x79'+'\x78']||RG['\x59'+'\x58']);if(RM){try{const Rj=RM['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](Ru=>Ru['\x74'+'\x72'+'\x69'+'\x6d']())['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Ru=>Ru);I=[];S=[];Rj['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](Ru=>{let RT='';let Rc=Ru;if(Ru['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x23')){const RW=Ru['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x23');Rc=RW[0x0]['\x74'+'\x72'+'\x69'+'\x6d']();RT=RW[0x1]['\x74'+'\x72'+'\x69'+'\x6d']();}const {address:Ro,port:Ra}=DF(Rc);if(!RT){RT='\u81ea'+'\u5b9a'+'\u4e49'+'\u4f18'+'\u9009'+'\x2d'+Ro+(Ra?'\x3a'+Ra:'');}if(D3(Ro)){I['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Ro,'\x70\x6f\x72\x74':Ra,'\x69\x73\x70':RT});}else{S['\x70'+'\x75'+'\x73'+'\x68']({'\x64\x6f\x6d\x61\x69\x6e':Ro,'\x70\x6f\x72\x74':Ra,'\x6e\x61\x6d\x65':RT});}});}catch(Ru){I=[];S=[];}}const Rg=D7('\x71'+'\x6a',RG['\x71'+'\x6a']||RG['\x51'+'\x4a']);if(Rg&&Rg['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x6e'+'\x6f'){M=!![];}const Ri=D7('\x64'+'\x6b'+'\x62'+'\x79',RG['\x64'+'\x6b'+'\x62'+'\x79']||RG['\x44'+'\x4b'+'\x42'+'\x59']);if(Ri&&Ri['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x79'+'\x65'+'\x73'){g=!![];}const RC=RG['\x79'+'\x78'+'\x62'+'\x79']||RG['\x59'+'\x58'+'\x42'+'\x59'];if(RC&&RC['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x79'+'\x65'+'\x73'){i=!![];}const Rv=D7('\x65'+'\x76',RG['\x65'+'\x76']);if(Rv!==undefined&&Rv!==''){X=Rv==='\x79'+'\x65'+'\x73'||Rv===!![]||Rv==='\x74'+'\x72'+'\x75'+'\x65';}const Rd=D7('\x65'+'\x74',RG['\x65'+'\x74']);if(Rd!==undefined&&Rd!==''){Q=Rd==='\x79'+'\x65'+'\x73'||Rd===!![]||Rd==='\x74'+'\x72'+'\x75'+'\x65';}V=D7('\x74'+'\x70',RG['\x74'+'\x70'])||'';const RH=D7('\x65'+'\x78',RG['\x65'+'\x78']);if(RH!==undefined&&RH!==''){f=RH==='\x79'+'\x65'+'\x73'||RH===!![]||RH==='\x74'+'\x72'+'\x75'+'\x65';}h=D7('\x73'+'\x63'+'\x75',RG['\x73'+'\x63'+'\x75'])||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x75'+'\x72'+'\x6c'+'\x2e'+'\x76'+'\x31'+'\x2e'+'\x6d'+'\x6b'+'\x2f'+'\x73'+'\x75'+'\x62';const RJ=D7('\x65'+'\x70'+'\x64',RG['\x65'+'\x70'+'\x64']||'\x6e'+'\x6f');if(RJ!==undefined&&RJ!==''){u=RJ!=='\x6e'+'\x6f'&&RJ!==![]&&RJ!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const RX=D7('\x65'+'\x70'+'\x69',RG['\x65'+'\x70'+'\x69']);if(RX!==undefined&&RX!==''){T=RX!=='\x6e'+'\x6f'&&RX!==![]&&RX!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const RQ=D7('\x65'+'\x67'+'\x69',RG['\x65'+'\x67'+'\x69']);if(RQ!==undefined&&RQ!==''){c=RQ!=='\x6e'+'\x6f'&&RQ!==![]&&RQ!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const Rf=D7('\x65'+'\x63'+'\x68',RG['\x65'+'\x63'+'\x68']);if(Rf!==undefined&&Rf!==''){x=Rf==='\x79'+'\x65'+'\x73'||Rf===!![]||Rf==='\x74'+'\x72'+'\x75'+'\x65';}const RV=D7('\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53','');if(RV&&RV['\x74'+'\x72'+'\x69'+'\x6d']()){y=RV['\x74'+'\x72'+'\x69'+'\x6d']();}const Rx=D7('\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e','');if(Rx&&Rx['\x74'+'\x72'+'\x69'+'\x6d']()){b=Rx['\x74'+'\x72'+'\x69'+'\x6d']();}if(x){g=!![];const RT=D7('\x64'+'\x6b'+'\x62'+'\x79','');if(RT!=='\x79'+'\x65'+'\x73'){await D8('\x64'+'\x6b'+'\x62'+'\x79','\x79'+'\x65'+'\x73');}}if(!X&&!Q&&!f){X=!![];}H=D7('\x79'+'\x78'+'\x55'+'\x52'+'\x4c',RG['\x79'+'\x78'+'\x55'+'\x52'+'\x4c']||RG['\x59'+'\x58'+'\x55'+'\x52'+'\x4c'])||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';J=D7('\x64',RG['\x64']||RG['\x44'])||'';const Ry='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';if(H!==Ry){m['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']=0x0;I=[];S=[];}const Rb=new URL(RY['\x75'+'\x72'+'\x6c']);if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2f'+'\x61'+'\x70'+'\x69'+'\x2f'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67')){const Rc=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2f')['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Ra=>Ra);const Ro=Rc['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x61'+'\x70'+'\x69');if(Ro>0x0){const Ra=Rc['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,Ro);const RW=Ra['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2f');let RE=![];if(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()){const Rm=J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')?J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1):J['\x74'+'\x72'+'\x69'+'\x6d']();RE=RW===Rm;}else{RE=D2(RW)&&RW===t;}if(RE){return await R3(RY);}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u8def'+'\u5f84'+'\u9a8c'+'\u8bc1'+'\u5931'+'\u8d25'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u65e0'+'\u6548'+'\u7684'+'\x41'+'\x50'+'\x49'+'\u8def'+'\u5f84'}),{'\x73\x74\x61\x74\x75\x73':0x194,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2f'+'\x61'+'\x70'+'\x69'+'\x2f'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x2d'+'\x69'+'\x70'+'\x73')){const RL=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2f')['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Rz=>Rz);const RZ=RL['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x61'+'\x70'+'\x69');if(RZ>0x0){const Rz=RL['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,RZ);const Rw=Rz['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2f');let Rn=![];if(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()){const Rp=J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')?J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1):J['\x74'+'\x72'+'\x69'+'\x6d']();Rn=Rw===Rp;}else{Rn=D2(Rw)&&Rw===t;}if(Rn){return await R4(RY);}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u8def'+'\u5f84'+'\u9a8c'+'\u8bc1'+'\u5931'+'\u8d25'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u65e0'+'\u6548'+'\u7684'+'\x41'+'\x50'+'\x49'+'\u8def'+'\u5f84'}),{'\x73\x74\x61\x74\x75\x73':0x194,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x50'+'\x4f'+'\x53'+'\x54'&&f){const RN=await DA(RY);if(RN){RO['\x77'+'\x61'+'\x69'+'\x74'+'\x55'+'\x6e'+'\x74'+'\x69'+'\x6c'](RN['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65'+'\x64']);return new Response(RN['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65'],{'\x68\x65\x61\x64\x65\x72\x73':{'\x58\x2d\x41\x63\x63\x65\x6c\x2d\x42\x75\x66\x66\x65\x72\x69\x6e\x67':'\x6e'+'\x6f','\x43\x61\x63\x68\x65\x2d\x43\x6f\x6e\x74\x72\x6f\x6c':'\x6e'+'\x6f'+'\x2d'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x65','\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e':'\x6b'+'\x65'+'\x65'+'\x70'+'\x2d'+'\x61'+'\x6c'+'\x69'+'\x76'+'\x65','\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74':'\x47'+'\x6f'+'\x2d'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2d'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2f'+'\x32'+'\x2e'+'\x30','\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x67'+'\x72'+'\x70'+'\x63'}});}return new Response('\x49'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x6e'+'\x61'+'\x6c'+'\x20'+'\x53'+'\x65'+'\x72'+'\x76'+'\x65'+'\x72'+'\x20'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72',{'\x73\x74\x61\x74\x75\x73':0x1f4});}if(RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x55'+'\x70'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65')===atob('\x64'+'\x32'+'\x56'+'\x69'+'\x63'+'\x32'+'\x39'+'\x6a'+'\x61'+'\x32'+'\x56'+'\x30')){return await Dd(RY);}if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x47'+'\x45'+'\x54'){if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e')){const RU=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2f')['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Rk=>Rk);if(RU['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x2&&RU[0x1]==='\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'){const Rk=RU[0x0];let Rs=![];if(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()){const RA=J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')?J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1):J['\x74'+'\x72'+'\x69'+'\x6d']();Rs=Rk===RA;}else{Rs=D2(Rk)&&Rk===t;}if(Rs){const RP=D7('\x70',RG['\x70']||RG['\x50']);const Rl=D7('\x77'+'\x6b',RG['\x77'+'\x6b']||RG['\x57'+'\x4b']);if(Rl&&Rl['\x74'+'\x72'+'\x69'+'\x6d']()){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x72\x65\x67\x69\x6f\x6e':Rl['\x74'+'\x72'+'\x69'+'\x6d']()['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65'](),'\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x68\x6f\x64':'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\u5730'+'\u533a','\x6d\x61\x6e\x75\x61\x6c\x52\x65\x67\x69\x6f\x6e':Rl['\x74'+'\x72'+'\x69'+'\x6d']()['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65'](),'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else if(RP&&RP['\x74'+'\x72'+'\x69'+'\x6d']()){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x72\x65\x67\x69\x6f\x6e':'\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d','\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x68\x6f\x64':'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u6a21'+'\u5f0f','\x63\x69':RP,'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else{const Rr=await D9(RY);return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x72\x65\x67\x69\x6f\x6e':Rr,'\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x68\x6f\x64':'\x41'+'\x50'+'\x49'+'\u68c0'+'\u6d4b','\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u8bbf'+'\u95ee'+'\u88ab'+'\u62d2'+'\u7edd','\x6d\x65\x73\x73\x61\x67\x65':'\u8def'+'\u5f84'+'\u9a8c'+'\u8bc1'+'\u5931'+'\u8d25'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f'+'\x74'+'\x65'+'\x73'+'\x74'+'\x2d'+'\x61'+'\x70'+'\x69')){const Re=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2f')['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RB=>RB);if(Re['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x2&&Re[0x1]==='\x74'+'\x65'+'\x73'+'\x74'+'\x2d'+'\x61'+'\x70'+'\x69'){const RB=Re[0x0];let Y0=![];if(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()){const Y1=J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')?J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1):J['\x74'+'\x72'+'\x69'+'\x6d']();Y0=RB===Y1;}else{Y0=D2(RB)&&RB===t;}if(Y0){try{const Y2=await D9(RY);return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x64\x65\x74\x65\x63\x74\x65\x64\x52\x65\x67\x69\x6f\x6e':Y2,'\x6d\x65\x73\x73\x61\x67\x65':'\x41'+'\x50'+'\x49'+'\u6d4b'+'\u8bd5'+'\u5b8c'+'\u6210','\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}catch(Y3){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':Y3['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'],'\x6d\x65\x73\x73\x61\x67\x65':'\x41'+'\x50'+'\x49'+'\u6d4b'+'\u8bd5'+'\u5931'+'\u8d25'}),{'\x73\x74\x61\x74\x75\x73':0x1f4,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u8bbf'+'\u95ee'+'\u88ab'+'\u62d2'+'\u7edd','\x6d\x65\x73\x73\x61\x67\x65':'\u8def'+'\u5f84'+'\u9a8c'+'\u8bc1'+'\u5931'+'\u8d25'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']==='\x2f'){const Y4=D7('\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65',RG['\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65']||RG['\x48'+'\x4f'+'\x4d'+'\x45'+'\x50'+'\x41'+'\x47'+'\x45']);if(Y4&&Y4['\x74'+'\x72'+'\x69'+'\x6d']()){try{const YG=await fetch(Y4['\x74'+'\x72'+'\x69'+'\x6d'](),{'\x6d\x65\x74\x68\x6f\x64':'\x47'+'\x45'+'\x54','\x68\x65\x61\x64\x65\x72\x73':{'\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74':RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x55'+'\x73'+'\x65'+'\x72'+'\x2d'+'\x41'+'\x67'+'\x65'+'\x6e'+'\x74')||'\x4d'+'\x6f'+'\x7a'+'\x69'+'\x6c'+'\x6c'+'\x61'+'\x2f'+'\x35'+'\x2e'+'\x30','\x41\x63\x63\x65\x70\x74':RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x41'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74')||'\x2a'+'\x2f'+'\x2a','\x41\x63\x63\x65\x70\x74\x2d\x4c\x61\x6e\x67\x75\x61\x67\x65':RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x41'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74'+'\x2d'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65')||'\x65'+'\x6e'+'\x2d'+'\x55'+'\x53'+'\x2c'+'\x65'+'\x6e'+'\x3b'+'\x71'+'\x3d'+'\x30'+'\x2e'+'\x39'},'\x72\x65\x64\x69\x72\x65\x63\x74':'\x66'+'\x6f'+'\x6c'+'\x6c'+'\x6f'+'\x77'});if(YG['\x6f'+'\x6b']){const YO=YG['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x54'+'\x79'+'\x70'+'\x65')||'\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x75'+'\x74'+'\x66'+'\x2d'+'\x38';const YF=await YG['\x74'+'\x65'+'\x78'+'\x74']();return new Response(YF,{'\x73\x74\x61\x74\x75\x73':YG['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'],'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':YO,'\x43\x61\x63\x68\x65\x2d\x43\x6f\x6e\x74\x72\x6f\x6c':'\x6e'+'\x6f'+'\x2d'+'\x63'+'\x61'+'\x63'+'\x68'+'\x65'+'\x2c'+'\x20'+'\x6e'+'\x6f'+'\x2d'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x65'+'\x2c'+'\x20'+'\x6d'+'\x75'+'\x73'+'\x74'+'\x2d'+'\x72'+'\x65'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x61'+'\x74'+'\x65'}});}}catch(Yt){console['\x65'+'\x72'+'\x72'+'\x6f'+'\x72']('\u83b7'+'\u53d6'+'\u81ea'+'\u5b9a'+'\u4e49'+'\u9996'+'\u9875'+'\u5931'+'\u8d25'+'\x3a',Yt);}}const Y5=RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65')||'';let Y6=null;if(Y5){const YK=Y5['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3b')['\x6d'+'\x61'+'\x70'](Yq=>Yq['\x74'+'\x72'+'\x69'+'\x6d']());for(const Yq of YK){if(Yq['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d')){Y6=Yq['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3d')[0x1];break;}}}let Y7=![];if(Y6==='\x66'+'\x61'||Y6==='\x66'+'\x61'+'\x2d'+'\x49'+'\x52'){Y7=!![];}else if(Y6==='\x7a'+'\x68'||Y6==='\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e'){Y7=![];}else{const YI=RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x41'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74'+'\x2d'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65')||'';const YS=YI['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')[0x0]['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2d')[0x0]['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();Y7=YS==='\x66'+'\x61'||YI['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x66'+'\x61'+'\x2d'+'\x49'+'\x52')||YI['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x66'+'\x61');}const Y8=Y7?'\x66'+'\x61':'\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e';const Y9=Y7?'\x66'+'\x61'+'\x2d'+'\x49'+'\x52':'\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e';const YD={'\x7a\x68':{'\x74\x69\x74\x6c\x65':'\u7ec8'+'\u7aef','\x74\x65\x72\x6d\x69\x6e\x61\x6c':'\u7ec8'+'\u7aef','\x63\x6f\x6e\x67\x72\x61\x74\x75\x6c\x61\x74\x69\x6f\x6e\x73':'\u606d'+'\u559c'+'\u4f60'+'\u6765'+'\u5230'+'\u8fd9','\x65\x6e\x74\x65\x72\x55':'\u8bf7'+'\u8f93'+'\u5165'+'\u4f60'+'\x55'+'\u53d8'+'\u91cf'+'\u7684'+'\u503c','\x65\x6e\x74\x65\x72\x44':'\u8bf7'+'\u8f93'+'\u5165'+'\u4f60'+'\x44'+'\u53d8'+'\u91cf'+'\u7684'+'\u503c','\x63\x6f\x6d\x6d\x61\x6e\x64':'\u547d'+'\u4ee4'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x20'+'\x5b','\x75\x75\x69\x64':'\x55'+'\x55'+'\x49'+'\x44','\x70\x61\x74\x68':'\x50'+'\x41'+'\x54'+'\x48','\x69\x6e\x70\x75\x74\x55':'\u8f93'+'\u5165'+'\x55'+'\u53d8'+'\u91cf'+'\u7684'+'\u5185'+'\u5bb9'+'\u5e76'+'\u4e14'+'\u56de'+'\u8f66'+'\x2e'+'\x2e'+'\x2e','\x69\x6e\x70\x75\x74\x44':'\u8f93'+'\u5165'+'\x44'+'\u53d8'+'\u91cf'+'\u7684'+'\u5185'+'\u5bb9'+'\u5e76'+'\u4e14'+'\u56de'+'\u8f66'+'\x2e'+'\x2e'+'\x2e','\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67':'\u6b63'+'\u5728'+'\u8fde'+'\u63a5'+'\x2e'+'\x2e'+'\x2e','\x69\x6e\x76\x61\x64\x69\x6e\x67':'\u6b63'+'\u5728'+'\u5165'+'\u4fb5'+'\x2e'+'\x2e'+'\x2e','\x73\x75\x63\x63\x65\x73\x73':'\u8fde'+'\u63a5'+'\u6210'+'\u529f'+'\uff01'+'\u8fd4'+'\u56de'+'\u7ed3'+'\u679c'+'\x2e'+'\x2e'+'\x2e','\x65\x72\x72\x6f\x72':'\u9519'+'\u8bef'+'\x3a'+'\x20'+'\u65e0'+'\u6548'+'\u7684'+'\x55'+'\x55'+'\x49'+'\x44'+'\u683c'+'\u5f0f','\x72\x65\x65\x6e\x74\x65\x72':'\u8bf7'+'\u91cd'+'\u65b0'+'\u8f93'+'\u5165'+'\u6709'+'\u6548'+'\u7684'+'\x55'+'\x55'+'\x49'+'\x44'},'\x66\x61':{'\x74\x69\x74\x6c\x65':'\u062a'+'\u0631'+'\u0645'+'\u06cc'+'\u0646'+'\u0627'+'\u0644','\x74\x65\x72\x6d\x69\x6e\x61\x6c':'\u062a'+'\u0631'+'\u0645'+'\u06cc'+'\u0646'+'\u0627'+'\u0644','\x63\x6f\x6e\x67\x72\x61\x74\x75\x6c\x61\x74\x69\x6f\x6e\x73':'\u062a'+'\u0628'+'\u0631'+'\u06cc'+'\u06a9'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u06af'+'\u0648'+'\u06cc'+'\u06cc'+'\u0645'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0634'+'\u0645'+'\u0627','\x65\x6e\x74\x65\x72\x55':'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\u0645'+'\u0642'+'\u062f'+'\u0627'+'\u0631'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x55'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f','\x65\x6e\x74\x65\x72\x44':'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\u0645'+'\u0642'+'\u062f'+'\u0627'+'\u0631'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x44'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f','\x63\x6f\x6d\x6d\x61\x6e\x64':'\u062f'+'\u0633'+'\u062a'+'\u0648'+'\u0631'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x20'+'\x5b','\x75\x75\x69\x64':'\x55'+'\x55'+'\x49'+'\x44','\x70\x61\x74\x68':'\x50'+'\x41'+'\x54'+'\x48','\x69\x6e\x70\x75\x74\x55':'\u0645'+'\u062d'+'\u062a'+'\u0648'+'\u06cc'+'\u0627'+'\u062a'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x55'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0631'+'\u062f'+'\u0647'+'\x20'+'\u0648'+'\x20'+'\x45'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0628'+'\u0632'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x2e'+'\x2e','\x69\x6e\x70\x75\x74\x44':'\u0645'+'\u062d'+'\u062a'+'\u0648'+'\u06cc'+'\u0627'+'\u062a'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x44'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0631'+'\u062f'+'\u0647'+'\x20'+'\u0648'+'\x20'+'\x45'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0628'+'\u0632'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x2e'+'\x2e','\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6e\x67':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x2e'+'\x2e'+'\x2e','\x69\x6e\x76\x61\x64\x69\x6e\x67':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0646'+'\u0641'+'\u0648'+'\u0630'+'\x2e'+'\x2e'+'\x2e','\x73\x75\x63\x63\x65\x73\x73':'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x20'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x21'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0628'+'\u0627'+'\u0632'+'\u06af'+'\u0634'+'\u062a'+'\x20'+'\u0646'+'\u062a'+'\u06cc'+'\u062c'+'\u0647'+'\x2e'+'\x2e'+'\x2e','\x65\x72\x72\x6f\x72':'\u062e'+'\u0637'+'\u0627'+'\x3a'+'\x20'+'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0639'+'\u062a'+'\u0628'+'\u0631','\x72\x65\x65\x6e\x74\x65\x72':'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0645'+'\u0639'+'\u062a'+'\u0628'+'\u0631'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062f'+'\u0648'+'\u0628'+'\u0627'+'\u0631'+'\u0647'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'}};const YR=YD[Y7?'\x66'+'\x61':'\x7a'+'\x68'];const YY='\x3c'+'\x21'+'\x44'+'\x4f'+'\x43'+'\x54'+'\x59'+'\x50'+'\x45'+'\x20'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x3d'+'\x22'+Y9+('\x22'+'\x20'+'\x64'+'\x69'+'\x72'+'\x3d'+'\x22')+(Y7?'\x72'+'\x74'+'\x6c':'\x6c'+'\x74'+'\x72')+('\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x65'+'\x61'+'\x64'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6d'+'\x65'+'\x74'+'\x61'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x55'+'\x54'+'\x46'+'\x2d'+'\x38'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6d'+'\x65'+'\x74'+'\x61'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x76'+'\x69'+'\x65'+'\x77'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x22'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3d'+'\x64'+'\x65'+'\x76'+'\x69'+'\x63'+'\x65'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x69'+'\x74'+'\x69'+'\x61'+'\x6c'+'\x2d'+'\x73'+'\x63'+'\x61'+'\x6c'+'\x65'+'\x3d'+'\x31'+'\x2e'+'\x30'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x3e')+YR['\x74'+'\x69'+'\x74'+'\x6c'+'\x65']+('\x3c'+'\x2f'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2a'+'\x20'+'\x7b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x78'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x6a'+'\x75'+'\x73'+'\x74'+'\x69'+'\x66'+'\x79'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x62'+'\x67'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x62'+'\x67'+'\x2d'+'\x70'+'\x75'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x34'+'\x35'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x31'+'\x31'+'\x30'+'\x30'+'\x20'+'\x35'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x34'+'\x35'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x32'+'\x32'+'\x30'+'\x30'+'\x20'+'\x35'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+('\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x2d'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x73'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x64'+'\x72'+'\x6f'+'\x70'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x39'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x6f'+'\x64'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x32'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x35'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x33'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x38'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x39'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x38'+'\x30'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x35'+'\x30'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x64'+'\x72'+'\x6f'+'\x70'+'\x2d'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x28'+'\x31'+'\x30'+'\x70'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x35'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x35'+'\x66'+'\x35'+'\x37'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x32'+'\x29'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x62'+'\x64'+'\x32'+'\x65'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x33'+'\x29'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x32'+'\x38'+'\x63'+'\x61'+'\x34'+'\x32'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x63'+'\x61'+'\x6c'+'\x63'+'\x28'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x2d'+'\x20'+'\x35'+'\x30'+'\x70'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x79'+'\x3a'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x34'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x6f'+'\x75'+'\x74'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x61'+'\x72'+'\x65'+'\x74'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x3a'+'\x3a'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x37'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x62'+'\x6c'+'\x69'+'\x6e'+'\x6b'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x31'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x66'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x62'+'\x67'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x3e'))+YR['\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x3b'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x28'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x7a'+'\x68'+'\x22'+'\x20')+(!Y7?'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64':'')+('\x3e'+Yx(0x83)+'\x20'+'\u4e2d'+'\u6587'+'\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x61'+'\x22'+'\x20')+(Y7?'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64':'')+('\x3e'+Yy(0xc6)+'\x20'+'\u0641'+'\u0627'+'\u0631'+'\u0633'+'\u06cc'+'\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x73'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+YR['\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x22'+'\x3e'+'\x72'+'\x6f'+'\x6f'+'\x74'+'\x3a'+'\x7e'+'\x24'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x22'+'\x3e')+YR['\x63'+'\x6f'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x74'+'\x75'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x22'+'\x3e'+'\x72'+'\x6f'+'\x6f'+'\x74'+'\x3a'+'\x7e'+'\x24'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x22'+'\x3e')+(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()?YR['\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x44']:YR['\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x55'])+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x22'+'\x3e'+'\x72'+'\x6f'+'\x6f'+'\x74'+'\x3a'+'\x7e'+'\x24'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x22'+'\x3e')+YR['\x63'+'\x6f'+'\x6d'+'\x6d'+'\x61'+'\x6e'+'\x64']+(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()?YR['\x70'+'\x61'+'\x74'+'\x68']:YR['\x75'+'\x75'+'\x69'+'\x64'])+('\x5d'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x22'+'\x3e'+'\x72'+'\x6f'+'\x6f'+'\x74'+'\x3a'+'\x7e'+'\x24'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x75'+'\x75'+'\x69'+'\x64'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()?YR['\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44']:YR['\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x55'])+('\x22'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x66'+'\x6f'+'\x63'+'\x75'+'\x73'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x4d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x30'+'\x31'+'\x41'+'\x42'+'\x43'+'\x44'+'\x45'+'\x46'+'\x47'+'\x48'+'\x49'+'\x4a'+'\x4b'+'\x4c'+'\x4d'+'\x4e'+'\x4f'+'\x50'+'\x51'+'\x52'+'\x53'+'\x54'+'\x55'+'\x56'+'\x57'+'\x58'+'\x59'+'\x5a'+'\x61'+'\x62'+'\x63'+'\x64'+'\x65'+'\x66'+'\x67'+'\x68'+'\x69'+'\x6a'+'\x6b'+'\x6c'+'\x6d'+'\x6e'+'\x6f'+'\x70'+'\x71'+'\x72'+'\x73'+'\x74'+'\x75'+'\x76'+'\x77'+'\x78'+'\x79'+'\x7a'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x57'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x2f'+'\x20'+'\x31'+'\x38'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x3c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x3b'+'\x20'+'\x69'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x64'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x69'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x38'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x35'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x35'+'\x20'+'\x2b'+'\x20'+'\x38'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x53'+'\x69'+'\x7a'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x34'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x32'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x20'+'\x2b'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x33'+'\x30'+'\x20'+'\x2b'+'\x20'+'\x32'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x6a'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6a'+'\x20'+'\x3c'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x6a'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x5b'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x6e'+'\x65'+'\x73'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x62'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x6e'+'\x65'+'\x73'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x49'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x76'+'\x61'+'\x6c'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x35'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x5b'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x23'+'\x66'+'\x66'+'\x66'+'\x66'+'\x66'+'\x66'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x69'+'\x73'+'\x56'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x55'+'\x55'+'\x49'+'\x44'+'\x28'+'\x75'+'\x75'+'\x69'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x75'+'\x69'+'\x64'+'\x52'+'\x65'+'\x67'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x2f'+'\x5e'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x61'+'\x2d'+'\x66'+'\x5d'+'\x7b'+'\x38'+'\x7d'+'\x2d'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x61'+'\x2d'+'\x66'+'\x5d'+'\x7b'+'\x34'+'\x7d'+'\x2d'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x61'+'\x2d'+'\x66'+'\x5d'+'\x7b'+'\x34'+'\x7d'+'\x2d'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x61'+'\x2d'+'\x66'+'\x5d'+'\x7b'+'\x34'+'\x7d'+'\x2d'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x61'+'\x2d'+'\x66'+'\x5d'+'\x7b'+'\x31'+'\x32'+'\x7d'+'\x24'+'\x2f'+'\x69'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x75'+'\x75'+'\x69'+'\x64'+'\x52'+'\x65'+'\x67'+'\x65'+'\x78'+'\x2e'+'\x74'+'\x65'+'\x73'+'\x74'+'\x28'+'\x75'+'\x75'+'\x69'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2c'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x64'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2e'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x27'+'\x29'+'\x3b')+('\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x2e'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x72'+'\x6f'+'\x6f'+'\x74'+'\x3a'+'\x7e'+'\x24'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x2d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x70'+'\x72'+'\x6f'+'\x6d'+'\x70'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x2e'+'\x73'+'\x63'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x54'+'\x6f'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x42'+'\x6f'+'\x64'+'\x79'+'\x2e'+'\x73'+'\x63'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x48'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x68'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x55'+'\x55'+'\x49'+'\x44'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x75'+'\x75'+'\x69'+'\x64'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x27'))+J+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x59'+'\x32'+'\x39'+'\x75'+'\x62'+'\x6d'+'\x56'+'\x6a'+'\x64'+'\x43'+'\x41'+'\x3d'+'\x27'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x27'+'\u6b63'+'\u5728'+'\u8fde'+'\u63a5'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x76'+'\x61'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x27'+'\u6b63'+'\u5728'+'\u5165'+'\u4fb5'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x20'+'\x27'+'\u8fde'+'\u63a5'+'\u6210'+'\u529f'+'\uff01'+'\u8fd4'+'\u56de'+'\u7ed3'+'\u679c'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u9519'+'\u8bef'+'\x3a'+'\x20'+'\u65e0'+'\u6548'+'\u7684'+'\x55'+'\x55'+'\x49'+'\x44'+'\u683c'+'\u5f0f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u8bf7'+'\u91cd'+'\u65b0'+'\u8f93'+'\u5165'+'\u6709'+'\u6548'+'\u7684'+'\x55'+'\x55'+'\x49'+'\x44'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x27'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x76'+'\x61'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x27'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0646'+'\u0641'+'\u0648'+'\u0630'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x20'+'\x27'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x20'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x21'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0628'+'\u0627'+'\u0632'+'\u06af'+'\u0634'+'\u062a'+'\x20'+'\u0646'+'\u062a'+'\u06cc'+'\u062c'+'\u0647'+'\x2e'+'\x2e'+'\x2e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u062e'+'\u0637'+'\u0627'+'\x3a'+'\x20'+'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0639'+'\u062a'+'\u0628'+'\u0631'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0645'+'\u0639'+'\u062a'+'\u0628'+'\u0631'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062f'+'\u0648'+'\u0628'+'\u0627'+'\u0631'+'\u0647'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x70'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x6e'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68'+'\x28'+'\x27'+'\x2f'+'\x27'+'\x29'+'\x20'+'\x3f'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6e'+'\x67'+'\x2c'+'\x20'+'\x27'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x6e'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x35'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x69'+'\x73'+'\x56'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x55'+'\x55'+'\x49'+'\x44'+'\x28'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x76'+'\x61'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x2c'+'\x20'+'\x27'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x35'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x64'+'\x54'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x4c'+'\x69'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x2c'+'\x20'+'\x27'+'\x6f'+'\x75'+'\x74'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x28'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\uff08'+'\u6709'+'\u6548'+'\u671f'+'\x31'+'\u5e74'+'\uff09'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\uff0c'+'\u4e0d'+'\u4f7f'+'\u7528'+'\x55')+('\x52'+'\x4c'+'\u53c2'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x72'+'\x65'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u9875'+'\u9762'+'\u52a0'+'\u8f7d'+'\u65f6'+'\u68c0'+'\u67e5'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x20'+'\u548c'+'\x20'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\uff0c'+'\u5e76'+'\u6e05'+'\u7406'+'\x55'+'\x52'+'\x4c'+'\u53c2'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x44'+'\x4f'+'\x4d'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x64'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x53'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\x55'+'\x52'+'\x4c'+'\u4e2d'+'\u6709'+'\u8bed'+'\u8a00'+'\u53c2'+'\u6570'+'\uff0c'+'\u79fb'+'\u9664'+'\u5b83'+'\u5e76'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x2e'+'\x64'+'\x65'+'\x6c'+'\x65'+'\x74'+'\x65'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4f7f'+'\u7528'+'\x68'+'\x69'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x79'+'\x20'+'\x41'+'\x50'+'\x49'+'\u79fb'+'\u9664'+'\x55'+'\x52'+'\x4c'+'\u53c2'+'\u6570'+'\uff0c'+'\u4e0d'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x68'+'\x69'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x79'+'\x2e'+'\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x7b'+'\x7d'+'\x2c'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\u4e2d'+'\u6709'+'\u4f46'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\u4e2d'+'\u6ca1'+'\u6709'+'\uff0c'+'\u540c'+'\u6b65'+'\u5230'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67')+('\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x44'+'\x4f'+'\x4d'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x64'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x75'+'\x75'+'\x69'+'\x64'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x66'+'\x6f'+'\x63'+'\x75'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x6b'+'\x65'+'\x79'+'\x70'+'\x72'+'\x65'+'\x73'+'\x73'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x2e'+'\x6b'+'\x65'+'\x79'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x55'+'\x55'+'\x49'+'\x44'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3e'));return new Response(YY,{'\x73\x74\x61\x74\x75\x73':0xc8,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x75'+'\x74'+'\x66'+'\x2d'+'\x38'}});}if(J&&J['\x74'+'\x72'+'\x69'+'\x6d']()){const YM=J['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')?J['\x74'+'\x72'+'\x69'+'\x6d']():'\x2f'+J['\x74'+'\x72'+'\x69'+'\x6d']();const Yg=YM['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')&&YM['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x1?YM['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,-0x1):YM;const Yi=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2f')&&Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x1?Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,-0x1):Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'];if(Yi===Yg){return await Dy(RY,t);}if(Yi===Yg+('\x2f'+'\x73'+'\x75'+'\x62')){return await DM(RY,t,Rb);}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x1&&Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']!=='\x2f'){const YC=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\/$/,'')['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65']('\x2f'+'\x73'+'\x75'+'\x62','')['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1);if(D2(YC)){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\u8bbf'+'\u95ee'+'\u88ab'+'\u62d2'+'\u7edd','\x6d\x65\x73\x73\x61\x67\x65':'\u5f53'+'\u524d'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x20'+'\u5df2'+'\u542f'+'\u7528'+'\u81ea'+'\u5b9a'+'\u4e49'+'\u8def'+'\u5f84'+'\u6a21'+'\u5f0f'+'\uff0c'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u8bbf'+'\u95ee'+'\u5df2'+'\u7981'+'\u7528'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}}else{if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x1&&Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']!=='\x2f'&&!Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2f'+'\x73'+'\x75'+'\x62')){const Yv=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\/$/,'')['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1);if(D2(Yv)){if(Yv===t){return await Dy(RY,Yv);}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\x55'+'\x55'+'\x49'+'\x44'+'\u9519'+'\u8bef'+'\x20'+'\u8bf7'+'\u6ce8'+'\u610f'+'\u53d8'+'\u91cf'+'\u540d'+'\u79f0'+'\u662f'+'\x75'+'\u4e0d'+'\u662f'+'\x75'+'\x75'+'\x69'+'\x64'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2f'+'\x73'+'\x75'+'\x62')){const Yd=Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2f');if(Yd['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x2&&Yd[0x1]==='\x73'+'\x75'+'\x62'){const YH=Yd[0x0]['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1);if(D2(YH)){if(YH===t){return await DM(RY,YH,Rb);}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\x55'+'\x55'+'\x49'+'\x44'+'\u9519'+'\u8bef'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}}}}if(Rb['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2f'+RF)){return await DM(RY,t);}}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\x4e'+'\x6f'+'\x74'+'\x20'+'\x46'+'\x6f'+'\x75'+'\x6e'+'\x64'}),{'\x73\x74\x61\x74\x75\x73':0x194,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}catch(YJ){return new Response(YJ['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](),{'\x73\x74\x61\x74\x75\x73':0x1f4});}}};function Dt(RY){return btoa(RY['\x6a'+'\x6f'+'\x69'+'\x6e']('\x0a'));}function DK(RY){try{if(RY['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x76'+'\x6c'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x2f'+'\x2f')){const RG=new URL(RY);const RO=decodeURIComponent(RG['\x68'+'\x61'+'\x73'+'\x68']['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1));const RF=RG['\x75'+'\x73'+'\x65'+'\x72'+'\x6e'+'\x61'+'\x6d'+'\x65'];const Rt=RG['\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65'];const RK=parseInt(RG['\x70'+'\x6f'+'\x72'+'\x74'])||0x1bb;const Rq=new URLSearchParams(RG['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68']);const RI=Rq['\x67'+'\x65'+'\x74']('\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79')==='\x74'+'\x6c'+'\x73'||Rq['\x67'+'\x65'+'\x74']('\x74'+'\x6c'+'\x73')==='\x74'+'\x72'+'\x75'+'\x65';const RS=Rq['\x67'+'\x65'+'\x74']('\x74'+'\x79'+'\x70'+'\x65')||'\x77'+'\x73';const RM=Rq['\x67'+'\x65'+'\x74']('\x70'+'\x61'+'\x74'+'\x68')||'\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const Rg=Rq['\x67'+'\x65'+'\x74']('\x68'+'\x6f'+'\x73'+'\x74')||Rt;const Ri=Rq['\x67'+'\x65'+'\x74']('\x73'+'\x6e'+'\x69')||Rg;const RC=Rq['\x67'+'\x65'+'\x74']('\x61'+'\x6c'+'\x70'+'\x6e')||'\x68'+'\x33'+'\x2c'+'\x68'+'\x32'+'\x2c'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2f'+'\x31'+'\x2e'+'\x31';const Rv=Rq['\x67'+'\x65'+'\x74']('\x66'+'\x70')||Rq['\x67'+'\x65'+'\x74']('\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x69'+'\x6e'+'\x67'+'\x65'+'\x72'+'\x70'+'\x72'+'\x69'+'\x6e'+'\x74')||'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65';const Rd=Rq['\x67'+'\x65'+'\x74']('\x65'+'\x63'+'\x68');const RH={'\x6e\x61\x6d\x65':RO,'\x74\x79\x70\x65':'\x76'+'\x6c'+'\x65'+'\x73'+'\x73','\x73\x65\x72\x76\x65\x72':Rt,'\x70\x6f\x72\x74':RK,'\x75\x75\x69\x64':RF,'\x74\x6c\x73':RI,'\x6e\x65\x74\x77\x6f\x72\x6b':RS,'\x63\x6c\x69\x65\x6e\x74\x2d\x66\x69\x6e\x67\x65\x72\x70\x72\x69\x6e\x74':Rv};if(RI){RH['\x73'+'\x65'+'\x72'+'\x76'+'\x65'+'\x72'+'\x6e'+'\x61'+'\x6d'+'\x65']=Ri;RH['\x61'+'\x6c'+'\x70'+'\x6e']=RC['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](RJ=>RJ['\x74'+'\x72'+'\x69'+'\x6d']());RH['\x73'+'\x6b'+'\x69'+'\x70'+'\x2d'+'\x63'+'\x65'+'\x72'+'\x74'+'\x2d'+'\x76'+'\x65'+'\x72'+'\x69'+'\x66'+'\x79']=![];}if(RS==='\x77'+'\x73'){RH['\x77'+'\x73'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73']={'\x70\x61\x74\x68':RM,'\x68\x65\x61\x64\x65\x72\x73':{'\x48\x6f\x73\x74':Rg}};}if(Rd){const RJ=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';RH['\x65'+'\x63'+'\x68'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73']={'\x65\x6e\x61\x62\x6c\x65':!![],'\x71\x75\x65\x72\x79\x2d\x73\x65\x72\x76\x65\x72\x2d\x6e\x61\x6d\x65':RJ};}return RH;}if(RY['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x74'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x3a'+'\x2f'+'\x2f')){const RX=new URL(RY);const RQ=decodeURIComponent(RX['\x68'+'\x61'+'\x73'+'\x68']['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x1));const Rf=RX['\x75'+'\x73'+'\x65'+'\x72'+'\x6e'+'\x61'+'\x6d'+'\x65'];const RV=RX['\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65'];const Rx=parseInt(RX['\x70'+'\x6f'+'\x72'+'\x74'])||0x1bb;const Ry=new URLSearchParams(RX['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68']);const Rb=Ry['\x67'+'\x65'+'\x74']('\x74'+'\x79'+'\x70'+'\x65')||'\x77'+'\x73';const Rh=Ry['\x67'+'\x65'+'\x74']('\x70'+'\x61'+'\x74'+'\x68')||'\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const Rj=Ry['\x67'+'\x65'+'\x74']('\x68'+'\x6f'+'\x73'+'\x74')||RV;const Ru=Ry['\x67'+'\x65'+'\x74']('\x73'+'\x6e'+'\x69')||Rj;const RT=Ry['\x67'+'\x65'+'\x74']('\x61'+'\x6c'+'\x70'+'\x6e')||'\x68'+'\x33'+'\x2c'+'\x68'+'\x32'+'\x2c'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2f'+'\x31'+'\x2e'+'\x31';const Rc=Ry['\x67'+'\x65'+'\x74']('\x65'+'\x63'+'\x68');const Ro={'\x6e\x61\x6d\x65':RQ,'\x74\x79\x70\x65':'\x74'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e','\x73\x65\x72\x76\x65\x72':RV,'\x70\x6f\x72\x74':Rx,'\x70\x61\x73\x73\x77\x6f\x72\x64':Rf,'\x6e\x65\x74\x77\x6f\x72\x6b':Rb,'\x73\x6e\x69':Ru,'\x61\x6c\x70\x6e':RT['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](Ra=>Ra['\x74'+'\x72'+'\x69'+'\x6d']()),'\x73\x6b\x69\x70\x2d\x63\x65\x72\x74\x2d\x76\x65\x72\x69\x66\x79':![]};if(Rb==='\x77'+'\x73'){Ro['\x77'+'\x73'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73']={'\x70\x61\x74\x68':Rh,'\x68\x65\x61\x64\x65\x72\x73':{'\x48\x6f\x73\x74':Rj}};}if(Rc){const Ra=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Ro['\x65'+'\x63'+'\x68'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73']={'\x65\x6e\x61\x62\x6c\x65':!![],'\x71\x75\x65\x72\x79\x2d\x73\x65\x72\x76\x65\x72\x2d\x6e\x61\x6d\x65':Ra};}return Ro;}}catch(RW){return null;}return null;}async function Dq(RY,RG,RO){const RF=new URL(RG['\x75'+'\x72'+'\x6c']);RF['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']=RF['\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\/sub$/,'')+('\x2f'+'\x73'+'\x75'+'\x62');RF['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x73'+'\x65'+'\x74']('\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74','\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34');const Rt=encodeURIComponent(RF['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']());const RK=h+('\x3f'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3d'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x68'+'\x26'+'\x75'+'\x72'+'\x6c'+'\x3d')+Rt+('\x26'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x72'+'\x74'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x65'+'\x6d'+'\x6f'+'\x6a'+'\x69'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65'+'\x26'+'\x6c'+'\x69'+'\x73'+'\x74'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x78'+'\x75'+'\x64'+'\x70'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x75'+'\x64'+'\x70'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x74'+'\x66'+'\x6f'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x65'+'\x78'+'\x70'+'\x61'+'\x6e'+'\x64'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65'+'\x26'+'\x73'+'\x63'+'\x76'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x66'+'\x64'+'\x6e'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x6e'+'\x65'+'\x77'+'\x5f'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65');try{const Rq=await fetch(RK);if(!Rq['\x6f'+'\x6b']){throw new Error('\u8ba2'+'\u9605'+'\u8f6c'+'\u6362'+'\u670d'+'\u52a1'+'\u5931'+'\u8d25');}let RI=await Rq['\x74'+'\x65'+'\x78'+'\x74']();if(x){RI=RI['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x0a')['\x6d'+'\x61'+'\x70'](RS=>{if(/^\s*-\s*\{/['\x74'+'\x65'+'\x73'+'\x74'](RS)&&RS['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x6e'+'\x61'+'\x6d'+'\x65'+'\x3a')&&RS['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x73'+'\x65'+'\x72'+'\x76'+'\x65'+'\x72'+'\x3a')){if(RS['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x65'+'\x63'+'\x68'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73')){return RS;}const RM=RS['\x6c'+'\x61'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x7d');if(RM>0x0){const Rg=RS['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,RM)['\x74'+'\x72'+'\x69'+'\x6d']();if(Rg['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){const Ri=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';const RC=!Rg['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x2c')&&!Rg['\x65'+'\x6e'+'\x64'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x7b');return RS['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,RM)+(RC?'\x2c'+'\x20':'\x20')+('\x65'+'\x63'+'\x68'+'\x2d'+'\x6f'+'\x70'+'\x74'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x2c'+'\x20'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x2d'+'\x73'+'\x65'+'\x72'+'\x76'+'\x65'+'\x72'+'\x2d'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3a'+'\x20'+Ri+'\x7d')+RS['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](RM);}}}return RS;})['\x6a'+'\x6f'+'\x69'+'\x6e']('\x0a');}RI=RI['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/^(\s*nameserver:\s*\n)((?:\s*-\s*[^\n]+\n)*)/m,(RS,RM,Rg)=>{const Ri=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';return RM+('\x20'+'\x20'+'\x20'+'\x20'+'\x2d'+'\x20'+Ri+'\x0a');});return RI;}catch(RS){throw new Error('\u65e0'+'\u6cd5'+'\u83b7'+'\u53d6'+'\x20'+'\x43'+'\x6c'+'\x61'+'\x73'+'\x68'+'\x20'+'\u914d'+'\u7f6e'+'\x3a'+'\x20'+RS['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65']);}}let DI='';async function DS(RY){if(!x){DI='\x45'+'\x43'+'\x48'+'\u529f'+'\u80fd'+'\u5df2'+'\u7981'+'\u7528';return null;}DI='';const RG=[];try{RG['\x70'+'\x75'+'\x73'+'\x68']('\u5c1d'+'\u8bd5'+'\u4f7f'+'\u7528'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u67e5'+'\u8be2'+'\x20'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2e'+'\x2e'+'\x2e');const RO='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x76'+'\x2e'+'\x72'+'\x65'+'\x63'+'\x69'+'\x70'+'\x65'+'\x73'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x67'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2d'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x3f'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x36'+'\x35';const RF=await fetch(RO,{'\x68\x65\x61\x64\x65\x72\x73':{'\x41\x63\x63\x65\x70\x74':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u54cd'+'\u5e94'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+RF['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);if(RF['\x6f'+'\x6b']){const RS=await RF['\x6a'+'\x73'+'\x6f'+'\x6e']();RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u8fd4'+'\u56de'+'\u6570'+'\u636e'+'\x3a'+'\x20'+JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'](RS)['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,0xc8)+('\x2e'+'\x2e'+'\x2e'));if(RS['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']&&RS['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){RG['\x70'+'\x75'+'\x73'+'\x68']('\u627e'+'\u5230'+'\x20'+RS['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']+('\x20'+'\u6761'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55'));for(const RM of RS['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']){if(RM['\x64'+'\x61'+'\x74'+'\x61']){RG['\x70'+'\x75'+'\x73'+'\x68']('\u89e3'+'\u6790'+'\u7b54'+'\u6848'+'\u6570'+'\u636e'+'\x3a'+'\x20'+typeof RM['\x64'+'\x61'+'\x74'+'\x61']+('\x2c'+'\x20'+'\u957f'+'\u5ea6'+'\x3a'+'\x20')+String(RM['\x64'+'\x61'+'\x74'+'\x61'])['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);const Rg=typeof RM['\x64'+'\x61'+'\x74'+'\x61']==='\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'?RM['\x64'+'\x61'+'\x74'+'\x61']:JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'](RM['\x64'+'\x61'+'\x74'+'\x61']);const Ri=Rg['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/ech=([^\s"']+)/);if(Ri&&Ri[0x1]){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u2705'+'\x20'+'\u6210'+'\u529f'+'\u4ece'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u83b7'+'\u53d6'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e');return Ri[0x1];}if(RM['\x64'+'\x61'+'\x74'+'\x61']&&!Rg['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x65'+'\x63'+'\x68'+'\x3d')){try{const RC=atob(RM['\x64'+'\x61'+'\x74'+'\x61']);RG['\x70'+'\x75'+'\x73'+'\x68']('\u5c1d'+'\u8bd5'+'\x20'+'\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34'+'\x20'+'\u89e3'+'\u7801'+'\uff0c'+'\u89e3'+'\u7801'+'\u540e'+'\u957f'+'\u5ea6'+'\x3a'+'\x20'+RC['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);const Rv=RC['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/ech=([^\s"']+)/);if(Rv&&Rv[0x1]){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u2705'+'\x20'+'\u6210'+'\u529f'+'\u4ece'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34'+'\u89e3'+'\u7801'+'\x29'+'\x20'+'\u83b7'+'\u53d6'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e');return Rv[0x1];}}catch(Rd){RG['\x70'+'\x75'+'\x73'+'\x68']('\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34'+'\x20'+'\u89e3'+'\u7801'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+Rd['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65']);}}}}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u672a'+'\u8fd4'+'\u56de'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55');}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u8bf7'+'\u6c42'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+RF['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);}RG['\x70'+'\x75'+'\x73'+'\x68']('\u5c1d'+'\u8bd5'+'\u4f7f'+'\u7528'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u67e5'+'\u8be2'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x20'+RY+('\x2e'+'\x2e'+'\x2e'));const Rt='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x76'+'\x2e'+'\x72'+'\x65'+'\x63'+'\x69'+'\x70'+'\x65'+'\x73'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x67'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2d'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x3f'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+encodeURIComponent(RY)+('\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x36'+'\x35');const RK=await fetch(Rt,{'\x68\x65\x61\x64\x65\x72\x73':{'\x41\x63\x63\x65\x70\x74':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x29'+'\x20'+'\u54cd'+'\u5e94'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+RK['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);if(RK['\x6f'+'\x6b']){const RH=await RK['\x6a'+'\x73'+'\x6f'+'\x6e']();RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x29'+'\x20'+'\u8fd4'+'\u56de'+'\u6570'+'\u636e'+'\x3a'+'\x20'+JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'](RH)['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,0xc8)+('\x2e'+'\x2e'+'\x2e'));if(RH['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']&&RH['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){RG['\x70'+'\x75'+'\x73'+'\x68']('\u627e'+'\u5230'+'\x20'+RH['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']+('\x20'+'\u6761'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55'));for(const RJ of RH['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']){if(RJ['\x64'+'\x61'+'\x74'+'\x61']){const RX=typeof RJ['\x64'+'\x61'+'\x74'+'\x61']==='\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'?RJ['\x64'+'\x61'+'\x74'+'\x61']:JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'](RJ['\x64'+'\x61'+'\x74'+'\x61']);const RQ=RX['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/ech=([^\s"']+)/);if(RQ&&RQ[0x1]){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u2705'+'\x20'+'\u6210'+'\u529f'+'\u4ece'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x29'+'\x20'+'\u83b7'+'\u53d6'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e');return RQ[0x1];}try{const Rf=atob(RJ['\x64'+'\x61'+'\x74'+'\x61']);const RV=Rf['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/ech=([^\s"']+)/);if(RV&&RV[0x1]){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u2705'+'\x20'+'\u6210'+'\u529f'+'\u4ece'+'\x20'+'\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x2c'+'\x20'+'\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34'+'\u89e3'+'\u7801'+'\x29'+'\x20'+'\u83b7'+'\u53d6'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e');return RV[0x1];}}catch(Rx){RG['\x70'+'\x75'+'\x73'+'\x68']('\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34'+'\x20'+'\u89e3'+'\u7801'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+Rx['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65']);}}}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x29'+'\x20'+'\u672a'+'\u8fd4'+'\u56de'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55');}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x47'+'\x6f'+'\x6f'+'\x67'+'\x6c'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x28'+'\u76ee'+'\u6807'+'\u57df'+'\u540d'+'\x29'+'\x20'+'\u8bf7'+'\u6c42'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+RK['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);}RG['\x70'+'\x75'+'\x73'+'\x68']('\u5c1d'+'\u8bd5'+'\u4f7f'+'\u7528'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u4f5c'+'\u4e3a'+'\u5907'+'\u9009'+'\x2e'+'\x2e'+'\x2e');const Rq='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2d'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x3f'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x36'+'\x35';const RI=await fetch(Rq,{'\x68\x65\x61\x64\x65\x72\x73':{'\x41\x63\x63\x65\x70\x74':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2d'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});RG['\x70'+'\x75'+'\x73'+'\x68']('\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u54cd'+'\u5e94'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+RI['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);if(RI['\x6f'+'\x6b']){const Ry=await RI['\x6a'+'\x73'+'\x6f'+'\x6e']();RG['\x70'+'\x75'+'\x73'+'\x68']('\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u8fd4'+'\u56de'+'\u6570'+'\u636e'+'\x3a'+'\x20'+JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'](Ry)['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,0xc8)+('\x2e'+'\x2e'+'\x2e'));if(Ry['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']&&Ry['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){RG['\x70'+'\x75'+'\x73'+'\x68']('\u627e'+'\u5230'+'\x20'+Ry['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']+('\x20'+'\u6761'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55'));for(const Rb of Ry['\x41'+'\x6e'+'\x73'+'\x77'+'\x65'+'\x72']){if(Rb['\x64'+'\x61'+'\x74'+'\x61']){const Rh=Rb['\x64'+'\x61'+'\x74'+'\x61']['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/ech=([^\s"']+)/);if(Rh&&Rh[0x1]){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u2705'+'\x20'+'\u6210'+'\u529f'+'\u4ece'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u83b7'+'\u53d6'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e');return Rh[0x1];}}}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u672a'+'\u8fd4'+'\u56de'+'\u7b54'+'\u6848'+'\u8bb0'+'\u5f55');}}else{RG['\x70'+'\x75'+'\x73'+'\x68']('\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u8bf7'+'\u6c42'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+RI['\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']);}DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u274c'+'\x20'+'\u6240'+'\u6709'+'\x44'+'\x4e'+'\x53'+'\u67e5'+'\u8be2'+'\u5747'+'\u5931'+'\u8d25'+'\uff0c'+'\u672a'+'\u83b7'+'\u53d6'+'\u5230'+'\x45'+'\x43'+'\x48'+'\u914d'+'\u7f6e');return null;}catch(Rj){DI=RG['\x6a'+'\x6f'+'\x69'+'\x6e']('\x5c'+'\x6e')+('\x5c'+'\x6e'+'\u274c'+'\x20'+'\u83b7'+'\u53d6'+'\x45'+'\x43'+'\x48'+'\u914d'+'\u7f6e'+'\u65f6'+'\u53d1'+'\u751f'+'\u9519'+'\u8bef'+'\x3a'+'\x20')+Rj['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'];return null;}}async function DM(RY,RG,RO=null){if(!RO)RO=new URL(RY['\x75'+'\x72'+'\x6c']);const RF=[];const Rt=RO['\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65'];const RK=RO['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74')||'\x62'+'\x61'+'\x73'+'\x65'+'\x36'+'\x34';let Rq=null;if(x){const RC=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rv=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rq=Rv+'\x2b'+RC;}async function RI(Rd){if(X){RF['\x70'+'\x75'+'\x73'+'\x68'](...Dg(Rd,RG,Rt,Rq));}if(Q){RF['\x70'+'\x75'+'\x73'+'\x68'](...await Di(Rd,RG,Rt,Rq));}if(f){RF['\x70'+'\x75'+'\x73'+'\x68'](...R1(Rd,RG,Rt,Rq));}}if(v==='\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d'){const Rd=[{'\x69\x70':Rt,'\x69\x73\x70':'\u539f'+'\u751f'+'\u5730'+'\u5740'}];await RI(Rd);}else{try{const RH=[{'\x69\x70':Rt,'\x69\x73\x70':'\u539f'+'\u751f'+'\u5730'+'\u5740'}];await RI(RH);}catch(RJ){if(!v){v=await D9(RY);}const RX=await DR(v);if(RX){K=RX['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']+'\x3a'+RX['\x70'+'\x6f'+'\x72'+'\x74'];const RQ=[{'\x69\x70':RX['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'],'\x69\x73\x70':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2d'+v}];await RI(RQ);}else{const Rf=[{'\x69\x70':Rt,'\x69\x73\x70':'\u539f'+'\u751f'+'\u5730'+'\u5740'}];await RI(Rf);}}}const RS=I['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0||S['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0;if(i){}else if(RS){if(I['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0&&T){await RI(I);}if(S['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0&&u){const RV=S['\x6d'+'\x61'+'\x70'](Rx=>({'\x69\x70':Rx['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'],'\x69\x73\x70':Rx['\x6e'+'\x61'+'\x6d'+'\x65']||Rx['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']}));await RI(RV);}}else{if(u){const Rx=m['\x6d'+'\x61'+'\x70'](Ry=>({'\x69\x70':Ry['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'],'\x69\x73\x70':Ry['\x6e'+'\x61'+'\x6d'+'\x65']||Ry['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']}));await RI(Rx);}if(T){const Ry='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';if(H===Ry){try{const Rb=await DC();if(Rb['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){await RI(Rb);}}catch(Rh){if(!v){v=await D9(RY);}const Rj=await DR(v);if(Rj){K=Rj['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']+'\x3a'+Rj['\x70'+'\x6f'+'\x72'+'\x74'];const Ru=[{'\x69\x70':Rj['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'],'\x69\x73\x70':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2d'+v}];await RI(Ru);}}}}if(c){try{const RT=await DB();if(RT['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){if(X){RF['\x70'+'\x75'+'\x73'+'\x68'](...R0(RT,RG,Rt,Rq));}if(Q){RF['\x70'+'\x75'+'\x73'+'\x68'](...await R2(RT,RG,Rt,Rq));}}}catch(Rc){if(!v){v=await D9(RY);}const Ro=await DR(v);if(Ro){K=Ro['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']+'\x3a'+Ro['\x70'+'\x6f'+'\x72'+'\x74'];const Ra=[{'\x69\x70':Ro['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'],'\x69\x73\x70':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2d'+v}];await RI(Ra);}}}}if(RF['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){const RW='\u6240'+'\u6709'+'\u8282'+'\u70b9'+'\u83b7'+'\u53d6'+'\u5931'+'\u8d25';const RE=atob('\x64'+'\x6d'+'\x78'+'\x6c'+'\x63'+'\x33'+'\x4d'+'\x3d');const Rm=RE+('\x3a'+'\x2f'+'\x2f'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x2d'+'\x30'+'\x30'+'\x30'+'\x30'+'\x2d'+'\x30'+'\x30'+'\x30'+'\x30'+'\x2d'+'\x30'+'\x30'+'\x30'+'\x30'+'\x2d'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x30'+'\x40'+'\x31'+'\x32'+'\x37'+'\x2e'+'\x30'+'\x2e'+'\x30'+'\x2e'+'\x31'+'\x3a'+'\x38'+'\x30'+'\x3f'+'\x65'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x25'+'\x32'+'\x46'+'\x23')+encodeURIComponent(RW);RF['\x70'+'\x75'+'\x73'+'\x68'](Rm);}let RM;let Rg='\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x70'+'\x6c'+'\x61'+'\x69'+'\x6e'+'\x3b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x75'+'\x74'+'\x66'+'\x2d'+'\x38';switch(RK['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()){case atob('\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x67'+'\x3d'):case atob('\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x68'+'\x79'):RM=await Dq(RF,RY,RG);Rg='\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x79'+'\x61'+'\x6d'+'\x6c'+'\x3b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x75'+'\x74'+'\x66'+'\x2d'+'\x38';break;case atob('\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x3d'):case atob('\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x79'):case atob('\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x7a'):case atob('\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x30'):RM=generateSurgeConfig(RF);break;case atob('\x63'+'\x58'+'\x56'+'\x68'+'\x62'+'\x6e'+'\x52'+'\x31'+'\x62'+'\x58'+'\x56'+'\x73'+'\x64'+'\x41'+'\x3d'+'\x3d'):case atob('\x63'+'\x58'+'\x56'+'\x68'+'\x62'+'\x6e'+'\x67'+'\x3d'):case'\x71'+'\x75'+'\x61'+'\x6e'+'\x78':RM=Dt(RF);break;case atob('\x63'+'\x33'+'\x4d'+'\x3d'):case atob('\x63'+'\x33'+'\x4e'+'\x79'):RM=generateSSConfig(RF);break;case atob('\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'):RM=generateV2RayConfig(RF);break;case atob('\x62'+'\x47'+'\x39'+'\x76'+'\x62'+'\x67'+'\x3d'+'\x3d'):RM=generateLoonConfig(RF);break;default:RM=btoa(RF['\x6a'+'\x6f'+'\x69'+'\x6e']('\x0a'));}const Ri={'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':Rg,'\x43\x61\x63\x68\x65\x2d\x43\x6f\x6e\x74\x72\x6f\x6c':'\x6e'+'\x6f'+'\x2d'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x65'+'\x2c'+'\x20'+'\x6e'+'\x6f'+'\x2d'+'\x63'+'\x61'+'\x63'+'\x68'+'\x65'+'\x2c'+'\x20'+'\x6d'+'\x75'+'\x73'+'\x74'+'\x2d'+'\x72'+'\x65'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x61'+'\x74'+'\x65'+'\x2c'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x30'};if(x){Ri['\x58'+'\x2d'+'\x45'+'\x43'+'\x48'+'\x2d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']='\x45'+'\x4e'+'\x41'+'\x42'+'\x4c'+'\x45'+'\x44';if(Rq){Ri['\x58'+'\x2d'+'\x45'+'\x43'+'\x48'+'\x2d'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2d'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']=String(Rq['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);}}return new Response(RM,{'\x68\x65\x61\x64\x65\x72\x73':Ri});}function Dg(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[0x1bb];const RI=g?[]:[0x50];const RS=[];const RM='\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const Rg=atob('\x64'+'\x6d'+'\x78'+'\x6c'+'\x63'+'\x33'+'\x4d'+'\x3d');RY['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](Ri=>{let RC=Ri['\x69'+'\x73'+'\x70']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\s/g,'\x5f');if(Ri['\x63'+'\x6f'+'\x6c'+'\x6f']&&Ri['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']()){RC=RC+'\x2d'+Ri['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']();}const Rv=Ri['\x69'+'\x70']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x3a')?'\x5b'+Ri['\x69'+'\x70']+'\x5d':Ri['\x69'+'\x70'];let Rd=[];if(Ri['\x70'+'\x6f'+'\x72'+'\x74']){const RH=Ri['\x70'+'\x6f'+'\x72'+'\x74'];if(RK['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](RH)){Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':!![]});}else if(Rt['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](RH)){if(!g){Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':![]});}}else{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':!![]});}}else{Rq['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RJ=>{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RJ,'\x74\x6c\x73':!![]});});RI['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RJ=>{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RJ,'\x74\x6c\x73':![]});});}Rd['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](({port:RJ,tls:RX})=>{if(RX){const RQ=RC+'\x2d'+RJ+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');const Rf=new URLSearchParams({'\x65\x6e\x63\x72\x79\x70\x74\x69\x6f\x6e':'\x6e'+'\x6f'+'\x6e'+'\x65','\x73\x65\x63\x75\x72\x69\x74\x79':'\x74'+'\x6c'+'\x73','\x73\x6e\x69':RO,'\x66\x70':x?'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65':'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x69'+'\x7a'+'\x65'+'\x64','\x74\x79\x70\x65':'\x77'+'\x73','\x68\x6f\x73\x74':RO,'\x70\x61\x74\x68':RM});if(x){const RV=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rx=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rf['\x73'+'\x65'+'\x74']('\x61'+'\x6c'+'\x70'+'\x6e','\x68'+'\x33'+'\x2c'+'\x68'+'\x32'+'\x2c'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2f'+'\x31'+'\x2e'+'\x31');Rf['\x73'+'\x65'+'\x74']('\x65'+'\x63'+'\x68',Rx+'\x2b'+RV);}RS['\x70'+'\x75'+'\x73'+'\x68'](Rg+('\x3a'+'\x2f'+'\x2f')+RG+'\x40'+Rv+'\x3a'+RJ+'\x3f'+Rf['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()+'\x23'+encodeURIComponent(RQ));}else{const Ry=RC+'\x2d'+RJ+('\x2d'+'\x57'+'\x53');const Rb=new URLSearchParams({'\x65\x6e\x63\x72\x79\x70\x74\x69\x6f\x6e':'\x6e'+'\x6f'+'\x6e'+'\x65','\x73\x65\x63\x75\x72\x69\x74\x79':'\x6e'+'\x6f'+'\x6e'+'\x65','\x74\x79\x70\x65':'\x77'+'\x73','\x68\x6f\x73\x74':RO,'\x70\x61\x74\x68':RM});RS['\x70'+'\x75'+'\x73'+'\x68'](Rg+('\x3a'+'\x2f'+'\x2f')+RG+'\x40'+Rv+'\x3a'+RJ+'\x3f'+Rb['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()+'\x23'+encodeURIComponent(Ry));}});});return RS;}async function Di(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[0x1bb];const RI=g?[]:[0x50];const RS=[];const RM='\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const Rg=V||RG;RY['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](Ri=>{let RC=Ri['\x69'+'\x73'+'\x70']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\s/g,'\x5f');if(Ri['\x63'+'\x6f'+'\x6c'+'\x6f']&&Ri['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']()){RC=RC+'\x2d'+Ri['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']();}const Rv=Ri['\x69'+'\x70']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x3a')?'\x5b'+Ri['\x69'+'\x70']+'\x5d':Ri['\x69'+'\x70'];let Rd=[];if(Ri['\x70'+'\x6f'+'\x72'+'\x74']){const RH=Ri['\x70'+'\x6f'+'\x72'+'\x74'];if(RK['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](RH)){Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':!![]});}else if(Rt['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](RH)){if(!g){Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':![]});}}else{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RH,'\x74\x6c\x73':!![]});}}else{Rq['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RJ=>{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RJ,'\x74\x6c\x73':!![]});});RI['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RJ=>{Rd['\x70'+'\x75'+'\x73'+'\x68']({'\x70\x6f\x72\x74':RJ,'\x74\x6c\x73':![]});});}Rd['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](({port:RJ,tls:RX})=>{if(RX){const RQ=RC+'\x2d'+RJ+'\x2d'+atob('\x56'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');const Rf=new URLSearchParams({'\x73\x65\x63\x75\x72\x69\x74\x79':'\x74'+'\x6c'+'\x73','\x73\x6e\x69':RO,'\x66\x70':'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65','\x74\x79\x70\x65':'\x77'+'\x73','\x68\x6f\x73\x74':RO,'\x70\x61\x74\x68':RM});if(x){const RV=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rx=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rf['\x73'+'\x65'+'\x74']('\x61'+'\x6c'+'\x70'+'\x6e','\x68'+'\x33'+'\x2c'+'\x68'+'\x32'+'\x2c'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2f'+'\x31'+'\x2e'+'\x31');Rf['\x73'+'\x65'+'\x74']('\x65'+'\x63'+'\x68',Rx+'\x2b'+RV);}RS['\x70'+'\x75'+'\x73'+'\x68'](''+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75'+'\x4f'+'\x69'+'\x38'+'\x76')+Rg+'\x40'+Rv+'\x3a'+RJ+'\x3f'+Rf['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()+'\x23'+encodeURIComponent(RQ));}else{const Ry=RC+'\x2d'+RJ+'\x2d'+atob('\x56'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x2d'+'\x57'+'\x53');const Rb=new URLSearchParams({'\x73\x65\x63\x75\x72\x69\x74\x79':'\x6e'+'\x6f'+'\x6e'+'\x65','\x74\x79\x70\x65':'\x77'+'\x73','\x68\x6f\x73\x74':RO,'\x70\x61\x74\x68':RM});RS['\x70'+'\x75'+'\x73'+'\x68'](''+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75'+'\x4f'+'\x69'+'\x38'+'\x76')+Rg+'\x40'+Rv+'\x3a'+RJ+'\x3f'+Rb['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()+'\x23'+encodeURIComponent(Ry));}});});return RS;}async function DC(){const RY='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x77'+'\x77'+'\x77'+'\x2e'+'\x77'+'\x65'+'\x74'+'\x65'+'\x73'+'\x74'+'\x2e'+'\x76'+'\x69'+'\x70'+'\x2f'+'\x70'+'\x61'+'\x67'+'\x65'+'\x2f'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2f'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x5f'+'\x76'+'\x34'+'\x2e'+'\x68'+'\x74'+'\x6d'+'\x6c';const RG='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x77'+'\x77'+'\x77'+'\x2e'+'\x77'+'\x65'+'\x74'+'\x65'+'\x73'+'\x74'+'\x2e'+'\x76'+'\x69'+'\x70'+'\x2f'+'\x70'+'\x61'+'\x67'+'\x65'+'\x2f'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2f'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x5f'+'\x76'+'\x36'+'\x2e'+'\x68'+'\x74'+'\x6d'+'\x6c';let RO=[];const RF=D7('\x69'+'\x70'+'\x76'+'\x34','')===''||D7('\x69'+'\x70'+'\x76'+'\x34','\x79'+'\x65'+'\x73')!=='\x6e'+'\x6f';const Rt=D7('\x69'+'\x70'+'\x76'+'\x36','')===''||D7('\x69'+'\x70'+'\x76'+'\x36','\x79'+'\x65'+'\x73')!=='\x6e'+'\x6f';const RK=D7('\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65','')===''||D7('\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65','\x79'+'\x65'+'\x73')!=='\x6e'+'\x6f';const Rq=D7('\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d','')===''||D7('\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d','\x79'+'\x65'+'\x73')!=='\x6e'+'\x6f';const RI=D7('\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d','')===''||D7('\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d','\x79'+'\x65'+'\x73')!=='\x6e'+'\x6f';try{const RS=[];if(RF){RS['\x70'+'\x75'+'\x73'+'\x68'](Dv(RY));}else{RS['\x70'+'\x75'+'\x73'+'\x68'](Promise['\x72'+'\x65'+'\x73'+'\x6f'+'\x6c'+'\x76'+'\x65']([]));}if(Rt){RS['\x70'+'\x75'+'\x73'+'\x68'](Dv(RG));}else{RS['\x70'+'\x75'+'\x73'+'\x68'](Promise['\x72'+'\x65'+'\x73'+'\x6f'+'\x6c'+'\x76'+'\x65']([]));}const [RM,Rg]=await Promise['\x61'+'\x6c'+'\x6c'](RS);RO=[...RM,...Rg];if(RO['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){RO=RO['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Ri=>{const RC=Ri['\x69'+'\x73'+'\x70']||'';if(RC['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u79fb'+'\u52a8')&&!RK)return![];if(RC['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u8054'+'\u901a')&&!Rq)return![];if(RC['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u7535'+'\u4fe1')&&!RI)return![];return!![];});}if(RO['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){return RO;}}catch(Ri){}return[];}async function Dv(RY){try{const RG=await fetch(RY,{'\x68\x65\x61\x64\x65\x72\x73':{'\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74':'\x4d'+'\x6f'+'\x7a'+'\x69'+'\x6c'+'\x6c'+'\x61'+'\x2f'+'\x35'+'\x2e'+'\x30'}});if(!RG['\x6f'+'\x6b']){return[];}const RO=await RG['\x74'+'\x65'+'\x78'+'\x74']();const RF=[];const Rt=//g;const RK=/(.+?)<\/td>[\s\S]*?([\d.:a-fA-F]+)<\/td>[\s\S]*?(.+?)<\/td>/;let Rq;while((Rq=Rt['\x65'+'\x78'+'\x65'+'\x63'](RO))!==null){const RI=Rq[0x0];const RS=RI['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](RK);if(RS&&RS[0x1]&&RS[0x2]){const RM=RS[0x3]?RS[0x3]['\x74'+'\x72'+'\x69'+'\x6d']()['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/<.*?>/g,''):'';RF['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x73\x70':RS[0x1]['\x74'+'\x72'+'\x69'+'\x6d']()['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/<.*?>/g,''),'\x69\x70':RS[0x2]['\x74'+'\x72'+'\x69'+'\x6d'](),'\x63\x6f\x6c\x6f':RM});}}if(RF['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){}return RF;}catch(Rg){return[];}}async function Dd(RY){const RG=new URL(RY['\x75'+'\x72'+'\x6c']);const RO=RG['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x70')||'';const RF=(RG['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x77'+'\x6b')||'')['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();const Rt=RG['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x72'+'\x6d')||'';const RK=Rt?Rt['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()!=='\x6e'+'\x6f':null;const Rq=RG['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x73')||'';let RI=null;if(Rq){try{RI=Dx(Rq);}catch(RX){}}let RS=v;if(!RS||RS===''){if(RF){RS=RF;}else if(d&&d['\x74'+'\x72'+'\x69'+'\x6d']()){RS=d['\x74'+'\x72'+'\x69'+'\x6d']()['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();}else{RS=await D9(RY);}}else if(RF){RS=RF;}const RM=new WebSocketPair();const [Rg,Ri]=Object['\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x73'](RM);Ri['\x61'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74']();let RC={'\x73\x6f\x63\x6b\x65\x74':null};let Rv=![];let Rd=null;const RH=RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74'](atob('\x63'+'\x32'+'\x56'+'\x6a'+'\x4c'+'\x58'+'\x64'+'\x6c'+'\x59'+'\x6e'+'\x4e'+'\x76'+'\x59'+'\x32'+'\x74'+'\x6c'+'\x64'+'\x43'+'\x31'+'\x77'+'\x63'+'\x6d'+'\x39'+'\x30'+'\x62'+'\x32'+'\x4e'+'\x76'+'\x62'+'\x41'+'\x3d'+'\x3d'))||'';const RJ=DX(Ri,RH);RJ['\x70'+'\x69'+'\x70'+'\x65'+'\x54'+'\x6f'](new WritableStream({async '\x77\x72\x69\x74\x65'(RQ){if(Rv)return await Df(RQ,Ri,null);if(RC['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']){const Rf=RC['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();await Rf['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](RQ);Rf['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();return;}if(!Rd){if(X&&RQ['\x62'+'\x79'+'\x74'+'\x65'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>=0x18){const RV=DJ(RQ,t);if(!RV['\x68'+'\x61'+'\x73'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72']){Rd='\x76'+'\x6c'+'\x65'+'\x73'+'\x73';const {addressType:Rx,port:Ry,hostname:Rb,rawIndex:Rh,version:Rj,isUDP:Ru}=RV;if(Ru){if(Ry===0x35)Rv=!![];else throw new Error(w);}const RT=new Uint8Array([Rj[0x0],0x0]);const Rc=RQ['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rh);if(Rv)return Df(Rc,Ri,RT);await DH(Rx,Rb,Ry,Rc,Ri,RT,RC,RO,RS,RK,RI);return;}}if(Q&&RQ['\x62'+'\x79'+'\x74'+'\x65'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>=0x38){const Ro=await Db(RQ,t);if(!Ro['\x68'+'\x61'+'\x73'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72']){Rd=atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75');const {addressType:Ra,port:RW,hostname:RE,rawClientData:Rm}=Ro;await DH(Ra,RE,RW,Rm,Ri,null,RC,RO,RS,RK,RI);return;}}throw new Error('\x49'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x20'+'\x6f'+'\x72'+'\x20'+'\x61'+'\x75'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x74'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x66'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64');}}}))['\x63'+'\x61'+'\x74'+'\x63'+'\x68'](RQ=>{});return new Response(null,{'\x73\x74\x61\x74\x75\x73':0x65,'\x77\x65\x62\x53\x6f\x63\x6b\x65\x74':Rg});}async function DH(RY,RG,RO,RF,Rt,RK,Rq,RI='',RS='',RM=null,Rg=null){const Ri=RI||K;const RC=RS||v;const Rv=RM!==null?RM:C;const Rd=Rg||r;const RH=Rg?!![]:e;async function RJ(RQ,Rf,RV=![]){const Rx=RV?await DV(RY,RQ,Rf,Rd):connect({'\x68\x6f\x73\x74\x6e\x61\x6d\x65':RQ,'\x70\x6f\x72\x74':Rf});const Ry=Rx['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();await Ry['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](RF);Ry['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();return Rx;}async function RX(){if(M&&RH){try{const RQ=await RJ(RG,RO,!![]);Rq['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']=RQ;RQ['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65'+'\x64']['\x63'+'\x61'+'\x74'+'\x63'+'\x68'](()=>{})['\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'](()=>Dl(Rt));DQ(RQ,Rt,RK,null);return;}catch(Rf){let RV,Rx;if(Ri&&Ri['\x74'+'\x72'+'\x69'+'\x6d']()){const Ry=DF(Ri);RV=Ry['\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'];Rx=Ry['\x70'+'\x6f'+'\x72'+'\x74']||RO;}else{const Rb=await DR(RC,Rv);RV=Rb?Rb['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']:RG;Rx=Rb?Rb['\x70'+'\x6f'+'\x72'+'\x74']:RO;}try{const Rh=await RJ(RV,Rx,![]);Rq['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']=Rh;Rh['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65'+'\x64']['\x63'+'\x61'+'\x74'+'\x63'+'\x68'](()=>{})['\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'](()=>Dl(Rt));DQ(Rh,Rt,RK,null);}catch(Rj){Dl(Rt);}}}else{let Ru,RT;if(Ri&&Ri['\x74'+'\x72'+'\x69'+'\x6d']()){const Rc=DF(Ri);Ru=Rc['\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'];RT=Rc['\x70'+'\x6f'+'\x72'+'\x74']||RO;}else{const Ro=await DR(RC,Rv);Ru=Ro?Ro['\x64'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']:RG;RT=Ro?Ro['\x70'+'\x6f'+'\x72'+'\x74']:RO;}try{const Ra=await RJ(Ru,RT,RH);Rq['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']=Ra;Ra['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65'+'\x64']['\x63'+'\x61'+'\x74'+'\x63'+'\x68'](()=>{})['\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'](()=>Dl(Rt));DQ(Ra,Rt,RK,null);}catch(RW){Dl(Rt);}}}try{const RQ=await RJ(RG,RO,M?![]:RH);Rq['\x73'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74']=RQ;DQ(RQ,Rt,RK,RX);}catch(Rf){RX();}}function DJ(RY,RG){if(RY['\x62'+'\x79'+'\x74'+'\x65'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']<0x18)return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':L};const RO=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,0x1));if(De(new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x1,0x11)))!==RG)return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':Z};const RF=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x11,0x12))[0x0];const Rt=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x12+RF,0x13+RF))[0x0];let RK=![];if(Rt===0x1){}else if(Rt===0x2){RK=!![];}else{return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':z};}const Rq=0x13+RF;const RI=new DataView(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rq,Rq+0x2))['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x31'+'\x36'](0x0);let RS=Rq+0x2,RM=0x0,Rg=RS+0x1,Ri='';const RC=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](RS,Rg))[0x0];switch(RC){case B:RM=0x4;Ri=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rg,Rg+RM))['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2e');break;case D0:RM=new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rg,Rg+0x1))[0x0];Rg+=0x1;Ri=new TextDecoder()['\x64'+'\x65'+'\x63'+'\x6f'+'\x64'+'\x65'](RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rg,Rg+RM));break;case D1:RM=0x10;const Rv=[];const Rd=new DataView(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rg,Rg+RM));for(let RH=0x0;RH<0x8;RH++)Rv['\x70'+'\x75'+'\x73'+'\x68'](Rd['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x31'+'\x36'](RH*0x2)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10));Ri=Rv['\x6a'+'\x6f'+'\x69'+'\x6e']('\x3a');break;default:return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':n+('\x3a'+'\x20')+RC};}if(!Ri)return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':p+('\x3a'+'\x20')+RC};return{'\x68\x61\x73\x45\x72\x72\x6f\x72':![],'\x61\x64\x64\x72\x65\x73\x73\x54\x79\x70\x65':RC,'\x70\x6f\x72\x74':RI,'\x68\x6f\x73\x74\x6e\x61\x6d\x65':Ri,'\x69\x73\x55\x44\x50':RK,'\x72\x61\x77\x49\x6e\x64\x65\x78':Rg+RM,'\x76\x65\x72\x73\x69\x6f\x6e':RO};}function DX(RY,RG){let RO=![];return new ReadableStream({'\x73\x74\x61\x72\x74'(RF){RY['\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72']('\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65',Rq=>{if(!RO)RF['\x65'+'\x6e'+'\x71'+'\x75'+'\x65'+'\x75'+'\x65'](Rq['\x64'+'\x61'+'\x74'+'\x61']);});RY['\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72']('\x63'+'\x6c'+'\x6f'+'\x73'+'\x65',()=>{if(!RO){Dl(RY);RF['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();}});RY['\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72']('\x65'+'\x72'+'\x72'+'\x6f'+'\x72',Rq=>RF['\x65'+'\x72'+'\x72'+'\x6f'+'\x72'](Rq));const {earlyData:Rt,error:RK}=DP(RG);if(RK)RF['\x65'+'\x72'+'\x72'+'\x6f'+'\x72'](RK);else if(Rt)RF['\x65'+'\x6e'+'\x71'+'\x75'+'\x65'+'\x75'+'\x65'](Rt);},'\x63\x61\x6e\x63\x65\x6c'(){RO=!![];Dl(RY);}});}async function DQ(RY,RG,RO,RF){let Rt=RO,RK=![];await RY['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65']['\x70'+'\x69'+'\x70'+'\x65'+'\x54'+'\x6f'](new WritableStream({async '\x77\x72\x69\x74\x65'(Rq,RI){RK=!![];if(RG['\x72'+'\x65'+'\x61'+'\x64'+'\x79'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65']!==0x1)RI['\x65'+'\x72'+'\x72'+'\x6f'+'\x72'](N);if(Rt){RG['\x73'+'\x65'+'\x6e'+'\x64'](await new Blob([Rt,Rq])['\x61'+'\x72'+'\x72'+'\x61'+'\x79'+'\x42'+'\x75'+'\x66'+'\x66'+'\x65'+'\x72']());Rt=null;}else{RG['\x73'+'\x65'+'\x6e'+'\x64'](Rq);}},'\x61\x62\x6f\x72\x74'(Rq){}}))['\x63'+'\x61'+'\x74'+'\x63'+'\x68'](Rq=>{Dl(RG);});if(!RK&&RF)RF();}async function Df(RY,RG,RO){try{const RF=connect({'\x68\x6f\x73\x74\x6e\x61\x6d\x65':'\x38'+'\x2e'+'\x38'+'\x2e'+'\x34'+'\x2e'+'\x34','\x70\x6f\x72\x74':0x35});let Rt=RO;const RK=RF['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();await RK['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](RY);RK['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();await RF['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65']['\x70'+'\x69'+'\x70'+'\x65'+'\x54'+'\x6f'](new WritableStream({async '\x77\x72\x69\x74\x65'(Rq){if(RG['\x72'+'\x65'+'\x61'+'\x64'+'\x79'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65']===0x1){if(Rt){RG['\x73'+'\x65'+'\x6e'+'\x64'](await new Blob([Rt,Rq])['\x61'+'\x72'+'\x72'+'\x61'+'\x79'+'\x42'+'\x75'+'\x66'+'\x66'+'\x65'+'\x72']());Rt=null;}else{RG['\x73'+'\x65'+'\x6e'+'\x64'](Rq);}}}}));}catch(Rq){}}async function DV(RY,RG,RO,RF=r){const {username:Rt,password:RK,hostname:Rq,socksPort:RI}=RF;const RS=connect({'\x68\x6f\x73\x74\x6e\x61\x6d\x65':Rq,'\x70\x6f\x72\x74':RI});const RM=RS['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();await RM['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](new Uint8Array(Rt?[0x5,0x2,0x0,0x2]:[0x5,0x1,0x0]));const Rg=RS['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x52'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72']();let Ri=(await Rg['\x72'+'\x65'+'\x61'+'\x64']())['\x76'+'\x61'+'\x6c'+'\x75'+'\x65'];if(Ri[0x0]!==0x5||Ri[0x1]===0xff)throw new Error(s);if(Ri[0x1]===0x2){if(!Rt||!RK)throw new Error(A);const Rd=new TextEncoder();const RH=new Uint8Array([0x1,Rt['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],...Rd['\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'](Rt),RK['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],...Rd['\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'](RK)]);await RM['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](RH);Ri=(await Rg['\x72'+'\x65'+'\x61'+'\x64']())['\x76'+'\x61'+'\x6c'+'\x75'+'\x65'];if(Ri[0x0]!==0x1||Ri[0x1]!==0x0)throw new Error(P);}const RC=new TextEncoder();let Rv;switch(RY){case B:Rv=new Uint8Array([0x1,...RG['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2e')['\x6d'+'\x61'+'\x70'](Number)]);break;case D0:Rv=new Uint8Array([0x3,RG['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],...RC['\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'](RG)]);break;case D1:Rv=new Uint8Array([0x4,...RG['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3a')['\x66'+'\x6c'+'\x61'+'\x74'+'\x4d'+'\x61'+'\x70'](RJ=>[parseInt(RJ['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,0x2),0x10),parseInt(RJ['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x2),0x10)])]);break;default:throw new Error(n);}await RM['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](new Uint8Array([0x5,0x1,0x0,...Rv,RO>>0x8,RO&0xff]));Ri=(await Rg['\x72'+'\x65'+'\x61'+'\x64']())['\x76'+'\x61'+'\x6c'+'\x75'+'\x65'];if(Ri[0x1]!==0x0)throw new Error(l);RM['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();Rg['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();return RS;}function Dx(RY){let [RG,RO]=RY['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x40')['\x72'+'\x65'+'\x76'+'\x65'+'\x72'+'\x73'+'\x65']();let RF,Rt,RK,Rq;if(RO){const RS=RO['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3a');if(RS['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']!==0x2)throw new Error(k);[RF,Rt]=RS;}const RI=RG['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3a');Rq=Number(RI['\x70'+'\x6f'+'\x70']());if(isNaN(Rq))throw new Error(k);RK=RI['\x6a'+'\x6f'+'\x69'+'\x6e']('\x3a');if(RK['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x3a')&&!/^\[.*\]$/['\x74'+'\x65'+'\x73'+'\x74'](RK))throw new Error(k);return{'\x75\x73\x65\x72\x6e\x61\x6d\x65':RF,'\x70\x61\x73\x73\x77\x6f\x72\x64':Rt,'\x68\x6f\x73\x74\x6e\x61\x6d\x65':RK,'\x73\x6f\x63\x6b\x73\x50\x6f\x72\x74':Rq};}async function Dy(RY,RG=null){const Yb=G;const Yh=G;if(!RG)RG=t;const RO=new URL(RY['\x75'+'\x72'+'\x6c']);const RF=RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65')||'';let Rt=null;if(RF){const Rg=RF['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3b')['\x6d'+'\x61'+'\x70'](Ri=>Ri['\x74'+'\x72'+'\x69'+'\x6d']());for(const Ri of Rg){if(Ri['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d')){Rt=Ri['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x3d')[0x1];break;}}}let RK=![];if(Rt==='\x66'+'\x61'||Rt==='\x66'+'\x61'+'\x2d'+'\x49'+'\x52'){RK=!![];}else if(Rt==='\x7a'+'\x68'||Rt==='\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e'){RK=![];}else{const RC=RY['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x41'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74'+'\x2d'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65')||'';const Rv=RC['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')[0x0]['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2d')[0x0]['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();RK=Rv==='\x66'+'\x61'||RC['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x66'+'\x61'+'\x2d'+'\x49'+'\x52')||RC['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x66'+'\x61');}const Rq=RK?'\x66'+'\x61'+'\x2d'+'\x49'+'\x52':'\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e';const RI={'\x7a\x68':{'\x74\x69\x74\x6c\x65':'\u8ba2'+'\u9605'+'\u4e2d'+'\u5fc3','\x73\x75\x62\x74\x69\x74\x6c\x65':'\u591a'+'\u5ba2'+'\u6237'+'\u7aef'+'\u652f'+'\u6301'+'\x20'+'\u2022'+'\x20'+'\u667a'+'\u80fd'+'\u4f18'+'\u9009'+'\x20'+'\u2022'+'\x20'+'\u4e00'+'\u952e'+'\u751f'+'\u6210','\x73\x65\x6c\x65\x63\x74\x43\x6c\x69\x65\x6e\x74':'\x5b'+'\x20'+'\u9009'+'\u62e9'+'\u5ba2'+'\u6237'+'\u7aef'+'\x20'+'\x5d','\x73\x79\x73\x74\x65\x6d\x53\x74\x61\x74\x75\x73':'\x5b'+'\x20'+'\u7cfb'+'\u7edf'+'\u72b6'+'\u6001'+'\x20'+'\x5d','\x63\x6f\x6e\x66\x69\x67\x4d\x61\x6e\x61\x67\x65\x6d\x65\x6e\x74':'\x5b'+'\x20'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\x20'+'\x5d','\x72\x65\x6c\x61\x74\x65\x64\x4c\x69\x6e\x6b\x73':'\x5b'+'\x20'+'\u76f8'+'\u5173'+'\u94fe'+'\u63a5'+'\x20'+'\x5d','\x63\x68\x65\x63\x6b\x69\x6e\x67':'\u68c0'+'\u6d4b'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e','\x77\x6f\x72\x6b\x65\x72\x52\x65\x67\x69\x6f\x6e':'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\u5730'+'\u533a'+'\x3a'+'\x20','\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x68\x6f\x64':'\u68c0'+'\u6d4b'+'\u65b9'+'\u5f0f'+'\x3a'+'\x20','\x70\x72\x6f\x78\x79\x49\x50\x53\x74\x61\x74\x75\x73':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u72b6'+'\u6001'+'\x3a'+'\x20','\x63\x75\x72\x72\x65\x6e\x74\x49\x50':'\u5f53'+'\u524d'+'\u4f7f'+'\u7528'+'\x49'+'\x50'+'\x3a'+'\x20','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68':'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x3a'+'\x20','\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x4c\x6f\x67\x69\x63':'\u9009'+'\u62e9'+'\u903b'+'\u8f91'+'\x3a'+'\x20','\x6b\x76\x53\x74\x61\x74\x75\x73\x43\x68\x65\x63\x6b\x69\x6e\x67':'\u68c0'+'\u6d4b'+'\x4b'+'\x56'+'\u72b6'+'\u6001'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e','\x6b\x76\x45\x6e\x61\x62\x6c\x65\x64':'\u2705'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u5df2'+'\u542f'+'\u7528'+'\uff0c'+'\u53ef'+'\u4ee5'+'\u4f7f'+'\u7528'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u529f'+'\u80fd','\x6b\x76\x44\x69\x73\x61\x62\x6c\x65\x64':'\u26a0\ufe0f'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u542f'+'\u7528'+'\u6216'+'\u672a'+'\u914d'+'\u7f6e','\x73\x70\x65\x63\x69\x66\x79\x52\x65\x67\x69\x6f\x6e':'\u6307'+'\u5b9a'+'\u5730'+'\u533a'+'\x20'+'\x28'+'\x77'+'\x6b'+'\x29'+'\x3a','\x61\x75\x74\x6f\x44\x65\x74\x65\x63\x74':'\u81ea'+'\u52a8'+'\u68c0'+'\u6d4b','\x73\x61\x76\x65\x52\x65\x67\x69\x6f\x6e':'\u4fdd'+'\u5b58'+'\u5730'+'\u533a'+'\u914d'+'\u7f6e','\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e':'\u534f'+'\u8bae'+'\u9009'+'\u62e9'+'\x3a','\x65\x6e\x61\x62\x6c\x65\x56\x4c\x45\x53\x53':'\u542f'+'\u7528'+'\x20'+'\x56'+'\x4c'+'\x45'+'\x53'+'\x53'+'\x20'+'\u534f'+'\u8bae','\x65\x6e\x61\x62\x6c\x65\x54\x72\x6f\x6a\x61\x6e':'\u542f'+'\u7528'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x20'+'\u534f'+'\u8bae','\x65\x6e\x61\x62\x6c\x65\x58\x68\x74\x74\x70':'\u542f'+'\u7528'+'\x20'+'\x78'+'\x68'+'\x74'+'\x74'+'\x70'+'\x20'+'\u534f'+'\u8bae','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64':'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x20'+'\u5bc6'+'\u7801'+'\x20'+'\x28'+'\u53ef'+'\u9009'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x50\x61\x74\x68':'\u81ea'+'\u5b9a'+'\u4e49'+'\u8def'+'\u5f84'+'\x20'+'\x28'+'\x64'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x49\x50':'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\x28'+'\x70'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50\x73':'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u5217'+'\u8868'+'\x20'+'\x28'+'\x79'+'\x78'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50\x73\x55\x52\x4c':'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u6765'+'\u6e90'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x28'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x29'+'\x3a','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74':'\u5ef6'+'\u8fdf'+'\u6d4b'+'\u8bd5','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x49\x50':'\u6d4b'+'\u8bd5'+'\x49'+'\x50'+'\x2f'+'\u57df'+'\u540d'+'\x3a','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x49\x50\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u8f93'+'\u5165'+'\x49'+'\x50'+'\u6216'+'\u57df'+'\u540d'+'\uff0c'+'\u591a'+'\u4e2a'+'\u7528'+'\u9017'+'\u53f7'+'\u5206'+'\u9694','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x50\x6f\x72\x74':'\u7aef'+'\u53e3'+'\x3a','\x73\x74\x61\x72\x74\x54\x65\x73\x74':'\u5f00'+'\u59cb'+'\u6d4b'+'\u8bd5','\x73\x74\x6f\x70\x54\x65\x73\x74':'\u505c'+'\u6b62'+'\u6d4b'+'\u8bd5','\x74\x65\x73\x74\x52\x65\x73\x75\x6c\x74':'\u6d4b'+'\u8bd5'+'\u7ed3'+'\u679c'+'\x3a','\x61\x64\x64\x54\x6f\x59\x78':'\u6dfb'+'\u52a0'+'\u5230'+'\u4f18'+'\u9009'+'\u5217'+'\u8868','\x61\x64\x64\x53\x65\x6c\x65\x63\x74\x65\x64\x54\x6f\x59\x78':'\u6dfb'+'\u52a0'+'\u9009'+'\u4e2d'+'\u9879'+'\u5230'+'\u4f18'+'\u9009'+'\u5217'+'\u8868','\x73\x65\x6c\x65\x63\x74\x41\x6c\x6c':'\u5168'+'\u9009','\x64\x65\x73\x65\x6c\x65\x63\x74\x41\x6c\x6c':'\u53d6'+'\u6d88'+'\u5168'+'\u9009','\x74\x65\x73\x74\x69\x6e\x67\x49\x6e\x50\x72\x6f\x67\x72\x65\x73\x73':'\u6d4b'+'\u8bd5'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e','\x74\x65\x73\x74\x43\x6f\x6d\x70\x6c\x65\x74\x65':'\u6d4b'+'\u8bd5'+'\u5b8c'+'\u6210','\x6c\x61\x74\x65\x6e\x63\x79\x4d\x73':'\u5ef6'+'\u8fdf','\x74\x69\x6d\x65\x6f\x75\x74':'\u8d85'+'\u65f6','\x69\x70\x53\x6f\x75\x72\x63\x65':'\x49'+'\x50'+'\u6765'+'\u6e90'+'\x3a','\x6d\x61\x6e\x75\x61\x6c\x49\x6e\x70\x75\x74':'\u624b'+'\u52a8'+'\u8f93'+'\u5165','\x63\x66\x52\x61\x6e\x64\x6f\x6d\x49\x50':'\x43'+'\x46'+'\u968f'+'\u673a'+'\x49'+'\x50','\x75\x72\x6c\x46\x65\x74\x63\x68':'\x55'+'\x52'+'\x4c'+'\u83b7'+'\u53d6','\x72\x61\x6e\x64\x6f\x6d\x43\x6f\x75\x6e\x74':'\u751f'+'\u6210'+'\u6570'+'\u91cf'+'\x3a','\x66\x65\x74\x63\x68\x55\x52\x4c':'\u83b7'+'\u53d6'+'\x55'+'\x52'+'\x4c'+'\x3a','\x66\x65\x74\x63\x68\x55\x52\x4c\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u8f93'+'\u5165'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u7684'+'\x55'+'\x52'+'\x4c'+'\u5730'+'\u5740','\x67\x65\x6e\x65\x72\x61\x74\x65\x49\x50':'\u751f'+'\u6210'+'\x49'+'\x50','\x66\x65\x74\x63\x68\x49\x50':'\u83b7'+'\u53d6'+'\x49'+'\x50','\x73\x6f\x63\x6b\x73\x35\x43\x6f\x6e\x66\x69\x67':'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\u914d'+'\u7f6e'+'\x20'+'\x28'+'\x73'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65':'\u81ea'+'\u5b9a'+'\u4e49'+'\u9996'+'\u9875'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x28'+'\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x65'+'\x78'+'\x61'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6d','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x55'+'\x52'+'\x4c'+'\u4f5c'+'\u4e3a'+'\u9996'+'\u9875'+'\u4f2a'+'\u88c5'+'\u3002'+'\u8bbf'+'\u95ee'+'\u6839'+'\u8def'+'\u5f84'+'\x20'+'\x2f'+'\x20'+'\u65f6'+'\u5c06'+'\u663e'+'\u793a'+'\u8be5'+'\x55'+'\x52'+'\x4c'+'\u7684'+'\u5185'+'\u5bb9'+'\u3002'+'\u7559'+'\u7a7a'+'\u5219'+'\u663e'+'\u793a'+'\u9ed8'+'\u8ba4'+'\u7ec8'+'\u7aef'+'\u9875'+'\u9762'+'\u3002','\x73\x61\x76\x65\x43\x6f\x6e\x66\x69\x67':'\u4fdd'+'\u5b58'+'\u914d'+'\u7f6e','\x61\x64\x76\x61\x6e\x63\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c':'\u9ad8'+'\u7ea7'+'\u63a7'+'\u5236','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72':'\u8ba2'+'\u9605'+'\u8f6c'+'\u6362'+'\u5730'+'\u5740'+'\x3a','\x62\x75\x69\x6c\x74\x69\x6e\x50\x72\x65\x66\x65\x72\x72\x65\x64':'\u5185'+'\u7f6e'+'\u4f18'+'\u9009'+'\u7c7b'+'\u578b'+'\x3a','\x65\x6e\x61\x62\x6c\x65\x50\x72\x65\x66\x65\x72\x72\x65\x64\x44\x6f\x6d\x61\x69\x6e':'\u542f'+'\u7528'+'\u4f18'+'\u9009'+'\u57df'+'\u540d','\x65\x6e\x61\x62\x6c\x65\x50\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50':'\u542f'+'\u7528'+'\u4f18'+'\u9009'+'\x20'+'\x49'+'\x50','\x65\x6e\x61\x62\x6c\x65\x47\x69\x74\x48\x75\x62\x50\x72\x65\x66\x65\x72\x72\x65\x64':'\u542f'+'\u7528'+'\x20'+'\x47'+'\x69'+'\x74'+'\x48'+'\x75'+'\x62'+'\x20'+'\u9ed8'+'\u8ba4'+'\u4f18'+'\u9009','\x61\x6c\x6c\x6f\x77\x41\x50\x49\x4d\x61\x6e\x61\x67\x65\x6d\x65\x6e\x74':'\u5141'+'\u8bb8'+'\x41'+'\x50'+'\x49'+'\u7ba1'+'\u7406'+'\x20'+'\x28'+'\x61'+'\x65'+'\x29'+'\x3a','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67':'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x20'+'\x28'+'\x72'+'\x6d'+'\x29'+'\x3a','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c':'\u964d'+'\u7ea7'+'\u63a7'+'\u5236'+'\x20'+'\x28'+'\x71'+'\x6a'+'\x29'+'\x3a','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c':'\x54'+'\x4c'+'\x53'+'\u63a7'+'\u5236'+'\x20'+'\x28'+'\x64'+'\x6b'+'\x62'+'\x79'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c':'\u4f18'+'\u9009'+'\u63a7'+'\u5236'+'\x20'+'\x28'+'\x79'+'\x78'+'\x62'+'\x79'+'\x29'+'\x3a','\x73\x61\x76\x65\x41\x64\x76\x61\x6e\x63\x65\x64':'\u4fdd'+'\u5b58'+'\u9ad8'+'\u7ea7'+'\u914d'+'\u7f6e','\x6c\x6f\x61\x64\x69\x6e\x67':'\u52a0'+'\u8f7d'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e','\x63\x75\x72\x72\x65\x6e\x74\x43\x6f\x6e\x66\x69\x67':'\ud83d\udccd'+'\x20'+'\u5f53'+'\u524d'+'\u8def'+'\u5f84'+'\u914d'+'\u7f6e','\x72\x65\x66\x72\x65\x73\x68\x43\x6f\x6e\x66\x69\x67':'\u5237'+'\u65b0'+'\u914d'+'\u7f6e','\x72\x65\x73\x65\x74\x43\x6f\x6e\x66\x69\x67':'\u91cd'+'\u7f6e'+'\u914d'+'\u7f6e','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x70\x69\x65\x64':'\u8ba2'+'\u9605'+'\u94fe'+'\u63a5'+'\u5df2'+'\u590d'+'\u5236','\x61\x75\x74\x6f\x53\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x70\x69\x65\x64':'\u81ea'+'\u52a8'+'\u8bc6'+'\u522b'+'\u8ba2'+'\u9605'+'\u94fe'+'\u63a5'+'\u5df2'+'\u590d'+'\u5236'+'\uff0c'+'\u5ba2'+'\u6237'+'\u7aef'+'\u8bbf'+'\u95ee'+'\u65f6'+'\u4f1a'+'\u6839'+'\u636e'+'\x55'+'\x73'+'\x65'+'\x72'+'\x2d'+'\x41'+'\x67'+'\x65'+'\x6e'+'\x74'+'\u81ea'+'\u52a8'+'\u8bc6'+'\u522b'+'\u5e76'+'\u8fd4'+'\u56de'+'\u5bf9'+'\u5e94'+'\u683c'+'\u5f0f','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u7559'+'\u7a7a'+'\u5219'+'\u81ea'+'\u52a8'+'\u4f7f'+'\u7528'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x20'+'\u5bc6'+'\u7801'+'\u3002'+'\u7559'+'\u7a7a'+'\u5219'+'\u4f7f'+'\u7528'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\u3002'+'\u5ba2'+'\u6237'+'\u7aef'+'\u4f1a'+'\u81ea'+'\u52a8'+'\u5bf9'+'\u5bc6'+'\u7801'+'\u8fdb'+'\u884c'+'\x20'+'\x53'+'\x48'+'\x41'+'\x32'+'\x32'+'\x34'+'\x20'+'\u54c8'+'\u5e0c'+'\u3002','\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x48\x69\x6e\x74':'\u53ef'+'\u4ee5'+'\u540c'+'\u65f6'+'\u542f'+'\u7528'+'\u591a'+'\u4e2a'+'\u534f'+'\u8bae'+'\u3002'+'\u8ba2'+'\u9605'+'\u5c06'+'\u751f'+'\u6210'+'\u9009'+'\u4e2d'+'\u534f'+'\u8bae'+'\u7684'+'\u8282'+'\u70b9'+'\u3002'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x56'+'\x4c'+'\x45'+'\x53'+'\x53'+'\x20'+'\x57'+'\x53'+'\x3a'+'\x20'+'\u57fa'+'\u4e8e'+'\x20'+'\x57'+'\x65'+'\x62'+'\x53'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x20'+'\u7684'+'\u6807'+'\u51c6'+'\u534f'+'\u8bae'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x3a'+'\x20'+'\u4f7f'+'\u7528'+'\x20'+'\x53'+'\x48'+'\x41'+'\x32'+'\x32'+'\x34'+'\x20'+'\u5bc6'+'\u7801'+'\u8ba4'+'\u8bc1'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x78'+'\x68'+'\x74'+'\x74'+'\x70'+'\x3a'+'\x20'+'\u57fa'+'\u4e8e'+'\x20'+'\x48'+'\x54'+'\x54'+'\x50'+'\x20'+'\x50'+'\x4f'+'\x53'+'\x54'+'\x20'+'\u7684'+'\u4f2a'+'\u88c5'+'\u534f'+'\u8bae'+'\uff08'+'\u9700'+'\u8981'+'\u7ed1'+'\u5b9a'+'\u81ea'+'\u5b9a'+'\u4e49'+'\u57df'+'\u540d'+'\u5e76'+'\u5f00'+'\u542f'+'\x20'+'\x67'+'\x52'+'\x50'+'\x43'+'\uff09','\x65\x6e\x61\x62\x6c\x65\x45\x43\x48':'\u542f'+'\u7528'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\x28'+'\x45'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x65'+'\x64'+'\x20'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x48'+'\x65'+'\x6c'+'\x6c'+'\x6f'+'\x29','\x65\x6e\x61\x62\x6c\x65\x45\x43\x48\x48\x69\x6e\x74':'\u542f'+'\u7528'+'\u540e'+'\uff0c'+'\u6bcf'+'\u6b21'+'\u5237'+'\u65b0'+'\u8ba2'+'\u9605'+'\u65f6'+'\u4f1a'+'\u81ea'+'\u52a8'+'\u4ece'+'\x20'+'\x44'+'\x6f'+'\x48'+'\x20'+'\u83b7'+'\u53d6'+'\u6700'+'\u65b0'+'\u7684'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u914d'+'\u7f6e'+'\u5e76'+'\u6dfb'+'\u52a0'+'\u5230'+'\u94fe'+'\u63a5'+'\u4e2d','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53':'\u81ea'+'\u5b9a'+'\u4e49'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u670d'+'\u52a1'+'\u5668','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53\x48\x69\x6e\x74':'\u7528'+'\u4e8e'+'\x45'+'\x43'+'\x48'+'\u914d'+'\u7f6e'+'\u67e5'+'\u8be2'+'\u7684'+'\x44'+'\x4e'+'\x53'+'\u670d'+'\u52a1'+'\u5668'+'\u5730'+'\u5740'+'\uff08'+'\x44'+'\x6f'+'\x48'+'\u683c'+'\u5f0f'+'\uff09','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e':'\u81ea'+'\u5b9a'+'\u4e49'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u57df'+'\u540d','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e\x48\x69\x6e\x74':'\x45'+'\x43'+'\x48'+'\u914d'+'\u7f6e'+'\u4e2d'+'\u4f7f'+'\u7528'+'\u7684'+'\u57df'+'\u540d'+'\uff0c'+'\u7559'+'\u7a7a'+'\u5219'+'\u4f7f'+'\u7528'+'\u9ed8'+'\u8ba4'+'\u503c','\x73\x61\x76\x65\x50\x72\x6f\x74\x6f\x63\x6f\x6c':'\u4fdd'+'\u5b58'+'\u534f'+'\u8bae'+'\u914d'+'\u7f6e','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u9ed8'+'\u8ba4'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x75'+'\x72'+'\x6c'+'\x2e'+'\x76'+'\x31'+'\x2e'+'\x6d'+'\x6b'+'\x2f'+'\x73'+'\x75'+'\x62','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72\x48\x69\x6e\x74':'\u81ea'+'\u5b9a'+'\u4e49'+'\u8ba2'+'\u9605'+'\u8f6c'+'\u6362'+'\x41'+'\x50'+'\x49'+'\u5730'+'\u5740'+'\uff0c'+'\u7559'+'\u7a7a'+'\u5219'+'\u4f7f'+'\u7528'+'\u9ed8'+'\u8ba4'+'\u5730'+'\u5740','\x62\x75\x69\x6c\x74\x69\x6e\x50\x72\x65\x66\x65\x72\x72\x65\x64\x48\x69\x6e\x74':'\u63a7'+'\u5236'+'\u8ba2'+'\u9605'+'\u4e2d'+'\u5305'+'\u542b'+'\u54ea'+'\u4e9b'+'\u5185'+'\u7f6e'+'\u4f18'+'\u9009'+'\u8282'+'\u70b9'+'\u3002'+'\u9ed8'+'\u8ba4'+'\u5168'+'\u90e8'+'\u542f'+'\u7528'+'\u3002','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x44\x65\x66\x61\x75\x6c\x74':'\u9ed8'+'\u8ba4'+'\uff08'+'\u5173'+'\u95ed'+'\x41'+'\x50'+'\x49'+'\uff09','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x59\x65\x73':'\u5f00'+'\u542f'+'\x41'+'\x50'+'\x49'+'\u7ba1'+'\u7406','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x48\x69\x6e\x74':'\u26a0\ufe0f'+'\x20'+'\u5b89'+'\u5168'+'\u63d0'+'\u9192'+'\uff1a'+'\u5f00'+'\u542f'+'\u540e'+'\u5141'+'\u8bb8'+'\u901a'+'\u8fc7'+'\x41'+'\x50'+'\x49'+'\u52a8'+'\u6001'+'\u6dfb'+'\u52a0'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u3002'+'\u5efa'+'\u8bae'+'\u4ec5'+'\u5728'+'\u9700'+'\u8981'+'\u65f6'+'\u5f00'+'\u542f'+'\u3002','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x44\x65\x66\x61\x75\x6c\x74':'\u9ed8'+'\u8ba4'+'\uff08'+'\u542f'+'\u7528'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\uff09','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x4e\x6f':'\u5173'+'\u95ed'+'\u5730'+'\u533a'+'\u5339'+'\u914d','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u4e3a'+'\x22'+'\u5173'+'\u95ed'+'\x22'+'\u65f6'+'\u4e0d'+'\u8fdb'+'\u884c'+'\u5730'+'\u533a'+'\u667a'+'\u80fd'+'\u5339'+'\u914d','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u9ed8'+'\u8ba4'+'\uff08'+'\u4e0d'+'\u542f'+'\u7528'+'\u964d'+'\u7ea7'+'\uff09','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x4e\x6f':'\u542f'+'\u7528'+'\u964d'+'\u7ea7'+'\u6a21'+'\u5f0f','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u4e3a'+'\x22'+'\u542f'+'\u7528'+'\x22'+'\u65f6'+'\uff1a'+'\x43'+'\x46'+'\u76f4'+'\u8fde'+'\u5931'+'\u8d25'+'\u2192'+'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\u8fde'+'\u63a5'+'\u2192'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\u5730'+'\u5740','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u9ed8'+'\u8ba4'+'\uff08'+'\u4fdd'+'\u7559'+'\u6240'+'\u6709'+'\u8282'+'\u70b9'+'\uff09','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x59\x65\x73':'\u4ec5'+'\x54'+'\x4c'+'\x53'+'\u8282'+'\u70b9','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u4e3a'+'\x22'+'\u4ec5'+'\x54'+'\x4c'+'\x53'+'\u8282'+'\u70b9'+'\x22'+'\u65f6'+'\u53ea'+'\u751f'+'\u6210'+'\u5e26'+'\x54'+'\x4c'+'\x53'+'\u7684'+'\u8282'+'\u70b9'+'\uff0c'+'\u4e0d'+'\u751f'+'\u6210'+'\u975e'+'\x54'+'\x4c'+'\x53'+'\u8282'+'\u70b9'+'\uff08'+'\u5982'+'\x38'+'\x30'+'\u7aef'+'\u53e3'+'\uff09','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u9ed8'+'\u8ba4'+'\uff08'+'\u542f'+'\u7528'+'\u4f18'+'\u9009'+'\uff09','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x59\x65\x73':'\u5173'+'\u95ed'+'\u4f18'+'\u9009','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u8bbe'+'\u7f6e'+'\u4e3a'+'\x22'+'\u5173'+'\u95ed'+'\u4f18'+'\u9009'+'\x22'+'\u65f6'+'\u53ea'+'\u4f7f'+'\u7528'+'\u539f'+'\u751f'+'\u5730'+'\u5740'+'\uff0c'+'\u4e0d'+'\u751f'+'\u6210'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u548c'+'\u57df'+'\u540d'+'\u8282'+'\u70b9','\x72\x65\x67\x69\x6f\x6e\x4e\x61\x6d\x65\x73':{'\x55\x53':Yb(0x98)+'\x20'+'\u7f8e'+'\u56fd','\x53\x47':Yh(0xe5)+'\x20'+'\u65b0'+'\u52a0'+'\u5761','\x4a\x50':Yb(0x88)+'\x20'+'\u65e5'+'\u672c','\x4b\x52':Yh(0xb6)+'\x20'+'\u97e9'+'\u56fd','\x44\x45':Yh(0xd4)+'\x20'+'\u5fb7'+'\u56fd','\x53\x45':Yh(0xa5)+'\x20'+'\u745e'+'\u5178','\x4e\x4c':Yb(0xe3)+'\x20'+'\u8377'+'\u5170','\x46\x49':Yb(0xa3)+'\x20'+'\u82ac'+'\u5170','\x47\x42':Yb(0xdc)+'\x20'+'\u82f1'+'\u56fd'},'\x74\x65\x72\x6d\x69\x6e\x61\x6c':'\u7ec8'+'\u7aef'+'\x20'+'\x76'+'\x32'+'\x2e'+'\x39'+'\x2e'+'\x34','\x67\x69\x74\x68\x75\x62\x50\x72\x6f\x6a\x65\x63\x74':'\x47'+'\x69'+'\x74'+'\x48'+'\x75'+'\x62'+'\x20'+'\u9879'+'\u76ee','\x61\x75\x74\x6f\x44\x65\x74\x65\x63\x74\x43\x6c\x69\x65\x6e\x74':'\u81ea'+'\u52a8'+'\u8bc6'+'\u522b','\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x4c\x6f\x67\x69\x63\x54\x65\x78\x74':'\u540c'+'\u5730'+'\u533a'+'\x20'+'\u2192'+'\x20'+'\u90bb'+'\u8fd1'+'\u5730'+'\u533a'+'\x20'+'\u2192'+'\x20'+'\u5176'+'\u4ed6'+'\u5730'+'\u533a','\x63\x75\x73\x74\x6f\x6d\x49\x50\x44\x69\x73\x61\x62\x6c\x65\x64\x48\x69\x6e\x74':'\u4f7f'+'\u7528'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u65f6'+'\uff0c'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u5df2'+'\u7981'+'\u7528','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65':'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\x20'+'\x28'+'\x70'+'\u53d8'+'\u91cf'+'\u542f'+'\u7528'+'\x29','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65\x44\x65\x73\x63':'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\x20'+'\x28'+'\u5df2'+'\u7981'+'\u7528'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x29','\x75\x73\x69\x6e\x67\x43\x75\x73\x74\x6f\x6d\x50\x72\x6f\x78\x79\x49\x50':'\u4f7f'+'\u7528'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20','\x63\x75\x73\x74\x6f\x6d\x49\x50\x43\x6f\x6e\x66\x69\x67':'\x20'+'\x28'+'\x70'+'\u53d8'+'\u91cf'+'\u914d'+'\u7f6e'+'\x29','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65\x44\x69\x73\x61\x62\x6c\x65\x64':'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\uff0c'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u5df2'+'\u7981'+'\u7528','\x6d\x61\x6e\x75\x61\x6c\x52\x65\x67\x69\x6f\x6e':'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\u5730'+'\u533a','\x6d\x61\x6e\x75\x61\x6c\x52\x65\x67\x69\x6f\x6e\x44\x65\x73\x63':'\x20'+'\x28'+'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\x29','\x70\x72\x6f\x78\x79\x49\x50\x41\x76\x61\x69\x6c\x61\x62\x6c\x65':'\x31'+'\x30'+'\x2f'+'\x31'+'\x30'+'\x20'+'\u53ef'+'\u7528'+'\x20'+'\x28'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u57df'+'\u540d'+'\u9884'+'\u8bbe'+'\u53ef'+'\u7528'+'\x29','\x73\x6d\x61\x72\x74\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e':'\u667a'+'\u80fd'+'\u5c31'+'\u8fd1'+'\u9009'+'\u62e9'+'\u4e2d','\x73\x61\x6d\x65\x52\x65\x67\x69\x6f\x6e\x49\x50':'\u540c'+'\u5730'+'\u533a'+'\x49'+'\x50'+'\u53ef'+'\u7528'+'\x20'+'\x28'+'\x31'+'\u4e2a'+'\x29','\x63\x6c\x6f\x75\x64\x66\x6c\x61\x72\x65\x44\x65\x74\x65\x63\x74\x69\x6f\x6e':'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\u5185'+'\u7f6e'+'\u68c0'+'\u6d4b','\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x46\x61\x69\x6c\x65\x64':'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25','\x61\x70\x69\x54\x65\x73\x74\x52\x65\x73\x75\x6c\x74':'\x41'+'\x50'+'\x49'+'\u68c0'+'\u6d4b'+'\u7ed3'+'\u679c'+'\x3a'+'\x20','\x61\x70\x69\x54\x65\x73\x74\x54\x69\x6d\x65':'\u68c0'+'\u6d4b'+'\u65f6'+'\u95f4'+'\x3a'+'\x20','\x61\x70\x69\x54\x65\x73\x74\x46\x61\x69\x6c\x65\x64':'\x41'+'\x50'+'\x49'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x3a'+'\x20','\x75\x6e\x6b\x6e\x6f\x77\x6e\x45\x72\x72\x6f\x72':'\u672a'+'\u77e5'+'\u9519'+'\u8bef','\x61\x70\x69\x54\x65\x73\x74\x45\x72\x72\x6f\x72':'\x41'+'\x50'+'\x49'+'\u6d4b'+'\u8bd5'+'\u5931'+'\u8d25'+'\x3a'+'\x20','\x6b\x76\x4e\x6f\x74\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x64':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u4f7f'+'\u7528'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u529f'+'\u80fd'+'\u3002'+'\x5c'+'\x6e'+'\x5c'+'\x6e'+'\u8bf7'+'\u5728'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x73'+'\u4e2d'+'\x3a'+'\x5c'+'\x6e'+'\x31'+'\x2e'+'\x20'+'\u521b'+'\u5efa'+'\x4b'+'\x56'+'\u547d'+'\u540d'+'\u7a7a'+'\u95f4'+'\x5c'+'\x6e'+'\x32'+'\x2e'+'\x20'+'\u7ed1'+'\u5b9a'+'\u73af'+'\u5883'+'\u53d8'+'\u91cf'+'\x20'+'\x43'+'\x5c'+'\x6e'+'\x33'+'\x2e'+'\x20'+'\u91cd'+'\u65b0'+'\u90e8'+'\u7f72'+'\u4ee3'+'\u7801','\x6b\x76\x4e\x6f\x74\x45\x6e\x61\x62\x6c\x65\x64':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\u54cd'+'\u5e94'+'\u683c'+'\u5f0f'+'\u9519'+'\u8bef','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64\x53\x74\x61\x74\x75\x73':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x20'+'\x2d'+'\x20'+'\u72b6'+'\u6001'+'\u7801'+'\x3a'+'\x20','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64\x45\x72\x72\x6f\x72':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x20'+'\x2d'+'\x20'+'\u9519'+'\u8bef'+'\x3a'+'\x20'},'\x66\x61':{'\x74\x69\x74\x6c\x65':'\u0645'+'\u0631'+'\u06a9'+'\u0632'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9','\x73\x75\x62\x74\x69\x74\x6c\x65':'\u067e'+'\u0634'+'\u062a'+'\u06cc'+'\u0628'+'\u0627'+'\u0646'+'\u06cc'+'\x20'+'\u0686'+'\u0646'+'\u062f'+'\x20'+'\u06a9'+'\u0644'+'\u0627'+'\u06cc'+'\u0646'+'\u062a'+'\x20'+'\u2022'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0647'+'\u0648'+'\u0634'+'\u0645'+'\u0646'+'\u062f'+'\x20'+'\u2022'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u06cc'+'\u06a9'+'\x20'+'\u06a9'+'\u0644'+'\u06cc'+'\u06a9'+'\u06cc','\x73\x65\x6c\x65\x63\x74\x43\x6c\x69\x65\x6e\x74':'\x5b'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u06a9'+'\u0644'+'\u0627'+'\u06cc'+'\u0646'+'\u062a'+'\x20'+'\x5d','\x73\x79\x73\x74\x65\x6d\x53\x74\x61\x74\x75\x73':'\x5b'+'\x20'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x20'+'\u0633'+'\u06cc'+'\u0633'+'\u062a'+'\u0645'+'\x20'+'\x5d','\x63\x6f\x6e\x66\x69\x67\x4d\x61\x6e\x61\x67\x65\x6d\x65\x6e\x74':'\x5b'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\x5d','\x72\x65\x6c\x61\x74\x65\x64\x4c\x69\x6e\x6b\x73':'\x5b'+'\x20'+'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u0645'+'\u0631'+'\u062a'+'\u0628'+'\u0637'+'\x20'+'\x5d','\x63\x68\x65\x63\x6b\x69\x6e\x67':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x2e'+'\x2e'+'\x2e','\x77\x6f\x72\x6b\x65\x72\x52\x65\x67\x69\x6f\x6e':'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x3a'+'\x20','\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x4d\x65\x74\x68\x6f\x64':'\u0631'+'\u0648'+'\u0634'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x3a'+'\x20','\x70\x72\x6f\x78\x79\x49\x50\x53\x74\x61\x74\x75\x73':'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20','\x63\x75\x72\x72\x65\x6e\x74\x49\x50':'\x49'+'\x50'+'\x20'+'\u0641'+'\u0639'+'\u0644'+'\u06cc'+'\x3a'+'\x20','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68':'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x3a'+'\x20','\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x4c\x6f\x67\x69\x63':'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x3a'+'\x20','\x6b\x76\x53\x74\x61\x74\x75\x73\x43\x68\x65\x63\x6b\x69\x6e\x67':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x20'+'\x4b'+'\x56'+'\x2e'+'\x2e'+'\x2e','\x6b\x76\x45\x6e\x61\x62\x6c\x65\x64':'\u2705'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u060c'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u062a'+'\u0648'+'\u0627'+'\u0646'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f','\x6b\x76\x44\x69\x73\x61\x62\x6c\x65\x64':'\u26a0\ufe0f'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0646'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a','\x73\x70\x65\x63\x69\x66\x79\x52\x65\x67\x69\x6f\x6e':'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\x28'+'\x77'+'\x6b'+'\x29'+'\x3a','\x61\x75\x74\x6f\x44\x65\x74\x65\x63\x74':'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631','\x73\x61\x76\x65\x52\x65\x67\x69\x6f\x6e':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647','\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e':'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x3a','\x65\x6e\x61\x62\x6c\x65\x56\x4c\x45\x53\x53':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\x56'+'\x4c'+'\x45'+'\x53'+'\x53','\x65\x6e\x61\x62\x6c\x65\x54\x72\x6f\x6a\x61\x6e':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e','\x65\x6e\x61\x62\x6c\x65\x58\x68\x74\x74\x70':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\x78'+'\x68'+'\x74'+'\x74'+'\x70','\x65\x6e\x61\x62\x6c\x65\x45\x43\x48':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\x28'+'\x45'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x65'+'\x64'+'\x20'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x48'+'\x65'+'\x6c'+'\x6c'+'\x6f'+'\x29','\x65\x6e\x61\x62\x6c\x65\x45\x43\x48\x48\x69\x6e\x74':'\u067e'+'\u0633'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\u060c'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0647'+'\u0631'+'\x20'+'\u0628'+'\u0627'+'\u0631'+'\x20'+'\u062a'+'\u0627'+'\u0632'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\u060c'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u0628'+'\u0647'+'\u200c'+'\u0631'+'\u0648'+'\u0632'+'\x20'+'\u0628'+'\u0647'+'\u200c'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x44'+'\x6f'+'\x48'+'\x20'+'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0648'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\u200c'+'\u0647'+'\u0627'+'\x20'+'\u0627'+'\u0636'+'\u0627'+'\u0641'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53':'\u0633'+'\u0631'+'\u0648'+'\u0631'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67','\x63\x75\x73\x74\x6f\x6d\x44\x4e\x53\x48\x69\x6e\x74':'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u0633'+'\u0631'+'\u0648'+'\u0631'+'\x20'+'\x44'+'\x4e'+'\x53'+'\x20'+'\u0628'+'\u0631'+'\u0627'+'\u06cc'+'\x20'+'\u062c'+'\u0633'+'\u062a'+'\u062c'+'\u0648'+'\u06cc'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\x28'+'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x20'+'\x44'+'\x6f'+'\x48'+'\x29','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e':'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d','\x63\x75\x73\x74\x6f\x6d\x45\x43\x48\x44\x6f\x6d\x61\x69\x6e\x48\x69\x6e\x74':'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\x45'+'\x43'+'\x48'+'\u060c'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u062a'+'\u0627'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0645'+'\u0642'+'\u062f'+'\u0627'+'\u0631'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0634'+'\u0648'+'\u062f','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64':'\u0631'+'\u0645'+'\u0632'+'\x20'+'\u0639'+'\u0628'+'\u0648'+'\u0631'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x20'+'\x28'+'\u0627'+'\u062e'+'\u062a'+'\u06cc'+'\u0627'+'\u0631'+'\u06cc'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x50\x61\x74\x68':'\u0645'+'\u0633'+'\u06cc'+'\u0631'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\x64'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x49\x50':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\x70'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50\x73':'\u0644'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\x28'+'\x79'+'\x78'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50\x73\x55\x52\x4c':'\x55'+'\x52'+'\x4c'+'\x20'+'\u0645'+'\u0646'+'\u0628'+'\u0639'+'\x20'+'\x49'+'\x50'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\x28'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x29'+'\x3a','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74':'\u062a'+'\u0633'+'\u062a'+'\x20'+'\u062a'+'\u0627'+'\u062e'+'\u06cc'+'\u0631','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x49\x50':'\x49'+'\x50'+'\x2f'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u062a'+'\u0633'+'\u062a'+'\x3a','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x49\x50\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\x49'+'\x50'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\u060c'+'\x20'+'\u0686'+'\u0646'+'\u062f'+'\x20'+'\u0645'+'\u0648'+'\u0631'+'\u062f'+'\x20'+'\u0628'+'\u0627'+'\x20'+'\u06a9'+'\u0627'+'\u0645'+'\u0627'+'\x20'+'\u062c'+'\u062f'+'\u0627'+'\x20'+'\u0634'+'\u0648'+'\u0646'+'\u062f','\x6c\x61\x74\x65\x6e\x63\x79\x54\x65\x73\x74\x50\x6f\x72\x74':'\u067e'+'\u0648'+'\u0631'+'\u062a'+'\x3a','\x73\x74\x61\x72\x74\x54\x65\x73\x74':'\u0634'+'\u0631'+'\u0648'+'\u0639'+'\x20'+'\u062a'+'\u0633'+'\u062a','\x73\x74\x6f\x70\x54\x65\x73\x74':'\u062a'+'\u0648'+'\u0642'+'\u0641'+'\x20'+'\u062a'+'\u0633'+'\u062a','\x74\x65\x73\x74\x52\x65\x73\x75\x6c\x74':'\u0646'+'\u062a'+'\u06cc'+'\u062c'+'\u0647'+'\x20'+'\u062a'+'\u0633'+'\u062a'+'\x3a','\x61\x64\x64\x54\x6f\x59\x78':'\u0627'+'\u0641'+'\u0632'+'\u0648'+'\u062f'+'\u0646'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0644'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc','\x61\x64\x64\x53\x65\x6c\x65\x63\x74\x65\x64\x54\x6f\x59\x78':'\u0627'+'\u0641'+'\u0632'+'\u0648'+'\u062f'+'\u0646'+'\x20'+'\u0645'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0634'+'\u062f'+'\u0647','\x73\x65\x6c\x65\x63\x74\x41\x6c\x6c':'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0647'+'\u0645'+'\u0647','\x64\x65\x73\x65\x6c\x65\x63\x74\x41\x6c\x6c':'\u0644'+'\u063a'+'\u0648'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628','\x74\x65\x73\x74\x69\x6e\x67\x49\x6e\x50\x72\x6f\x67\x72\x65\x73\x73':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u062a'+'\u0633'+'\u062a'+'\x2e'+'\x2e'+'\x2e','\x74\x65\x73\x74\x43\x6f\x6d\x70\x6c\x65\x74\x65':'\u062a'+'\u0633'+'\u062a'+'\x20'+'\u06a9'+'\u0627'+'\u0645'+'\u0644'+'\x20'+'\u0634'+'\u062f','\x6c\x61\x74\x65\x6e\x63\x79\x4d\x73':'\u062a'+'\u0627'+'\u062e'+'\u06cc'+'\u0631','\x74\x69\x6d\x65\x6f\x75\x74':'\u0632'+'\u0645'+'\u0627'+'\u0646'+'\x20'+'\u062a'+'\u0645'+'\u0627'+'\u0645'+'\x20'+'\u0634'+'\u062f','\x69\x70\x53\x6f\x75\x72\x63\x65':'\u0645'+'\u0646'+'\u0628'+'\u0639'+'\x20'+'\x49'+'\x50'+'\x3a','\x6d\x61\x6e\x75\x61\x6c\x49\x6e\x70\x75\x74':'\u0648'+'\u0631'+'\u0648'+'\u062f'+'\u06cc'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc','\x63\x66\x52\x61\x6e\x64\x6f\x6d\x49\x50':'\x49'+'\x50'+'\x20'+'\u062a'+'\u0635'+'\u0627'+'\u062f'+'\u0641'+'\u06cc'+'\x20'+'\x43'+'\x46','\x75\x72\x6c\x46\x65\x74\x63\x68':'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x55'+'\x52'+'\x4c','\x72\x61\x6e\x64\x6f\x6d\x43\x6f\x75\x6e\x74':'\u062a'+'\u0639'+'\u062f'+'\u0627'+'\u062f'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x3a','\x66\x65\x74\x63\x68\x55\x52\x4c':'\x55'+'\x52'+'\x4c'+'\x20'+'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x3a','\x66\x65\x74\x63\x68\x55\x52\x4c\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x20'+'\u0644'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f','\x67\x65\x6e\x65\x72\x61\x74\x65\x49\x50':'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\x49'+'\x50','\x66\x65\x74\x63\x68\x49\x50':'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\x49'+'\x50','\x73\x6f\x63\x6b\x73\x35\x43\x6f\x6e\x66\x69\x67':'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\x20'+'\x28'+'\x73'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65':'\x55'+'\x52'+'\x4c'+'\x20'+'\u0635'+'\u0641'+'\u062d'+'\u0647'+'\x20'+'\u0627'+'\u0635'+'\u0644'+'\u06cc'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x29'+'\x3a','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x65'+'\x78'+'\x61'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6d','\x63\x75\x73\x74\x6f\x6d\x48\x6f\x6d\x65\x70\x61\x67\x65\x48\x69\x6e\x74':'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0639'+'\u0646'+'\u0648'+'\u0627'+'\u0646'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u062a'+'\u0627'+'\u0631'+'\x20'+'\u0635'+'\u0641'+'\u062d'+'\u0647'+'\x20'+'\u0627'+'\u0635'+'\u0644'+'\u06cc'+'\x2e'+'\x20'+'\u0647'+'\u0646'+'\u06af'+'\u0627'+'\u0645'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0645'+'\u0633'+'\u06cc'+'\u0631'+'\x20'+'\u0627'+'\u0635'+'\u0644'+'\u06cc'+'\x20'+'\x2f'+'\x20'+'\u0645'+'\u062d'+'\u062a'+'\u0648'+'\u0627'+'\u06cc'+'\x20'+'\u0627'+'\u06cc'+'\u0646'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x20'+'\u0646'+'\u0645'+'\u0627'+'\u06cc'+'\u0634'+'\x20'+'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x2e'+'\x20'+'\u0627'+'\u06af'+'\u0631'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u0635'+'\u0641'+'\u062d'+'\u0647'+'\x20'+'\u062a'+'\u0631'+'\u0645'+'\u06cc'+'\u0646'+'\u0627'+'\u0644'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0646'+'\u0645'+'\u0627'+'\u06cc'+'\u0634'+'\x20'+'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x2e','\x73\x61\x76\x65\x43\x6f\x6e\x66\x69\x67':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a','\x61\x64\x76\x61\x6e\x63\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c':'\u06a9'+'\u0646'+'\u062a'+'\u0631'+'\u0644'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u0631'+'\u0641'+'\u062a'+'\u0647','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72':'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u062a'+'\u0628'+'\u062f'+'\u06cc'+'\u0644'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x3a','\x62\x75\x69\x6c\x74\x69\x6e\x50\x72\x65\x66\x65\x72\x72\x65\x64':'\u0646'+'\u0648'+'\u0639'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\u062f'+'\u0627'+'\u062e'+'\u0644'+'\u06cc'+'\x3a','\x65\x6e\x61\x62\x6c\x65\x50\x72\x65\x66\x65\x72\x72\x65\x64\x44\x6f\x6d\x61\x69\x6e':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc','\x65\x6e\x61\x62\x6c\x65\x50\x72\x65\x66\x65\x72\x72\x65\x64\x49\x50':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x49'+'\x50'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc','\x65\x6e\x61\x62\x6c\x65\x47\x69\x74\x48\x75\x62\x50\x72\x65\x66\x65\x72\x72\x65\x64':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x47'+'\x69'+'\x74'+'\x48'+'\x75'+'\x62','\x61\x6c\x6c\x6f\x77\x41\x50\x49\x4d\x61\x6e\x61\x67\x65\x6d\x65\x6e\x74':'\u0627'+'\u062c'+'\u0627'+'\u0632'+'\u0647'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\x28'+'\x61'+'\x65'+'\x29'+'\x3a','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67':'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\x28'+'\x72'+'\x6d'+'\x29'+'\x3a','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c':'\u06a9'+'\u0646'+'\u062a'+'\u0631'+'\u0644'+'\x20'+'\u06a9'+'\u0627'+'\u0647'+'\u0634'+'\x20'+'\u0633'+'\u0637'+'\u062d'+'\x20'+'\x28'+'\x71'+'\x6a'+'\x29'+'\x3a','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c':'\u06a9'+'\u0646'+'\u062a'+'\u0631'+'\u0644'+'\x20'+'\x54'+'\x4c'+'\x53'+'\x20'+'\x28'+'\x64'+'\x6b'+'\x62'+'\x79'+'\x29'+'\x3a','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c':'\u06a9'+'\u0646'+'\u062a'+'\u0631'+'\u0644'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\x28'+'\x79'+'\x78'+'\x62'+'\x79'+'\x29'+'\x3a','\x73\x61\x76\x65\x41\x64\x76\x61\x6e\x63\x65\x64':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u0631'+'\u0641'+'\u062a'+'\u0647','\x6c\x6f\x61\x64\x69\x6e\x67':'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0628'+'\u0627'+'\u0631'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\x2e'+'\x2e'+'\x2e','\x63\x75\x72\x72\x65\x6e\x74\x43\x6f\x6e\x66\x69\x67':'\ud83d\udccd'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0645'+'\u0633'+'\u06cc'+'\u0631'+'\x20'+'\u0641'+'\u0639'+'\u0644'+'\u06cc','\x72\x65\x66\x72\x65\x73\x68\x43\x6f\x6e\x66\x69\x67':'\u062a'+'\u0627'+'\u0632'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a','\x72\x65\x73\x65\x74\x43\x6f\x6e\x66\x69\x67':'\u0628'+'\u0627'+'\u0632'+'\u0646'+'\u0634'+'\u0627'+'\u0646'+'\u06cc'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x70\x69\x65\x64':'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u06a9'+'\u067e'+'\u06cc'+'\x20'+'\u0634'+'\u062f','\x61\x75\x74\x6f\x53\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x70\x69\x65\x64':'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u06a9'+'\u067e'+'\u06cc'+'\x20'+'\u0634'+'\u062f'+'\u060c'+'\x20'+'\u06a9'+'\u0644'+'\u0627'+'\u06cc'+'\u0646'+'\u062a'+'\x20'+'\u0647'+'\u0646'+'\u06af'+'\u0627'+'\u0645'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0628'+'\u0631'+'\x20'+'\u0627'+'\u0633'+'\u0627'+'\u0633'+'\x20'+'\x55'+'\x73'+'\x65'+'\x72'+'\x2d'+'\x41'+'\x67'+'\x65'+'\x6e'+'\x74'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0648'+'\x20'+'\u0642'+'\u0627'+'\u0644'+'\u0628'+'\x20'+'\u0645'+'\u0631'+'\u0628'+'\u0648'+'\u0637'+'\u0647'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0628'+'\u0631'+'\u0645'+'\u06cc'+'\u200c'+'\u06af'+'\u0631'+'\u062f'+'\u0627'+'\u0646'+'\u062f','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u062a'+'\u0627'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0634'+'\u0648'+'\u062f','\x74\x72\x6f\x6a\x61\x6e\x50\x61\x73\x73\x77\x6f\x72\x64\x48\x69\x6e\x74':'\u0631'+'\u0645'+'\u0632'+'\x20'+'\u0639'+'\u0628'+'\u0648'+'\u0631'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x20'+'\u0627'+'\u06af'+'\u0631'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x2e'+'\x20'+'\u06a9'+'\u0644'+'\u0627'+'\u06cc'+'\u0646'+'\u062a'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u0631'+'\u0645'+'\u0632'+'\x20'+'\u0639'+'\u0628'+'\u0648'+'\u0631'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0628'+'\u0627'+'\x20'+'\x53'+'\x48'+'\x41'+'\x32'+'\x32'+'\x34'+'\x20'+'\u0647'+'\u0634'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u06a9'+'\u0646'+'\u062f'+'\x2e','\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x48\x69\x6e\x74':'\u0645'+'\u06cc'+'\u200c'+'\u062a'+'\u0648'+'\u0627'+'\u0646'+'\u06cc'+'\u062f'+'\x20'+'\u0686'+'\u0646'+'\u062f'+'\u06cc'+'\u0646'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0647'+'\u0645'+'\u0632'+'\u0645'+'\u0627'+'\u0646'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u06a9'+'\u0646'+'\u062f'+'\x2e'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x56'+'\x4c'+'\x45'+'\x53'+'\x53'+'\x20'+'\x57'+'\x53'+'\x3a'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0627'+'\u0646'+'\u062f'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u0645'+'\u0628'+'\u062a'+'\u0646'+'\u06cc'+'\x20'+'\u0628'+'\u0631'+'\x20'+'\x57'+'\x65'+'\x62'+'\x53'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x3a'+'\x20'+'\u0627'+'\u062d'+'\u0631'+'\u0627'+'\u0632'+'\x20'+'\u0647'+'\u0648'+'\u06cc'+'\u062a'+'\x20'+'\u0628'+'\u0627'+'\x20'+'\u0631'+'\u0645'+'\u0632'+'\x20'+'\u0639'+'\u0628'+'\u0648'+'\u0631'+'\x20'+'\x53'+'\x48'+'\x41'+'\x32'+'\x32'+'\x34'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\u2022'+'\x20'+'\x78'+'\x68'+'\x74'+'\x74'+'\x70'+'\x3a'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u062a'+'\u0627'+'\u0631'+'\x20'+'\u0645'+'\u0628'+'\u062a'+'\u0646'+'\u06cc'+'\x20'+'\u0628'+'\u0631'+'\x20'+'\x48'+'\x54'+'\x54'+'\x50'+'\x20'+'\x50'+'\x4f'+'\x53'+'\x54'+'\x20'+'\x28'+'\u0646'+'\u06cc'+'\u0627'+'\u0632'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x20'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\u0648'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x67'+'\x52'+'\x50'+'\x43'+'\x20'+'\u062f'+'\u0627'+'\u0631'+'\u062f'+'\x29','\x73\x61\x76\x65\x50\x72\x6f\x74\x6f\x63\x6f\x6c':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u062a'+'\u06a9'+'\u0644','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72\x50\x6c\x61\x63\x65\x68\x6f\x6c\x64\x65\x72':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x75'+'\x72'+'\x6c'+'\x2e'+'\x76'+'\x31'+'\x2e'+'\x6d'+'\x6b'+'\x2f'+'\x73'+'\x75'+'\x62','\x73\x75\x62\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x43\x6f\x6e\x76\x65\x72\x74\x65\x72\x48\x69\x6e\x74':'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u062a'+'\u0628'+'\u062f'+'\u06cc'+'\u0644'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\u060c'+'\x20'+'\u0627'+'\u06af'+'\u0631'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f','\x62\x75\x69\x6c\x74\x69\x6e\x50\x72\x65\x66\x65\x72\x72\x65\x64\x48\x69\x6e\x74':'\u06a9'+'\u0646'+'\u062a'+'\u0631'+'\u0644'+'\x20'+'\u0627'+'\u06cc'+'\u0646'+'\u06a9'+'\u0647'+'\x20'+'\u06a9'+'\u062f'+'\u0627'+'\u0645'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\u062f'+'\u0627'+'\u062e'+'\u0644'+'\u06cc'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u06af'+'\u0646'+'\u062c'+'\u0627'+'\u0646'+'\u062f'+'\u0647'+'\x20'+'\u0634'+'\u0648'+'\u0646'+'\u062f'+'\x2e'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0647'+'\u0645'+'\u0647'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0647'+'\u0633'+'\u062a'+'\u0646'+'\u062f'+'\x2e','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x44\x65\x66\x61\x75\x6c\x74':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x28'+'\u0628'+'\u0633'+'\u062a'+'\u0646'+'\x20'+'\x41'+'\x50'+'\x49'+'\x29','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x59\x65\x73':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\x41'+'\x50'+'\x49','\x61\x70\x69\x45\x6e\x61\x62\x6c\x65\x64\x48\x69\x6e\x74':'\u26a0\ufe0f'+'\x20'+'\u0647'+'\u0634'+'\u062f'+'\u0627'+'\u0631'+'\x20'+'\u0627'+'\u0645'+'\u0646'+'\u06cc'+'\u062a'+'\u06cc'+'\x3a'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u0627'+'\u06cc'+'\u0646'+'\x20'+'\u06af'+'\u0632'+'\u06cc'+'\u0646'+'\u0647'+'\x20'+'\u0627'+'\u062c'+'\u0627'+'\u0632'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u062f'+'\u0647'+'\u062f'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0637'+'\u0631'+'\u06cc'+'\u0642'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u067e'+'\u0648'+'\u06cc'+'\u0627'+'\x20'+'\u0627'+'\u0636'+'\u0627'+'\u0641'+'\u0647'+'\x20'+'\u0634'+'\u0648'+'\u0646'+'\u062f'+'\x2e'+'\x20'+'\u062a'+'\u0648'+'\u0635'+'\u06cc'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x20'+'\u0641'+'\u0642'+'\u0637'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0635'+'\u0648'+'\u0631'+'\u062a'+'\x20'+'\u0646'+'\u06cc'+'\u0627'+'\u0632'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x2e','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x44\x65\x66\x61\x75\x6c\x74':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x28'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x29','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x4e\x6f':'\u0628'+'\u0633'+'\u062a'+'\u0646'+'\x20'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647','\x72\x65\x67\x69\x6f\x6e\x4d\x61\x74\x63\x68\x69\x6e\x67\x48\x69\x6e\x74':'\u0648'+'\u0642'+'\u062a'+'\u06cc'+'\x20'+'\x22'+'\u0628'+'\u0633'+'\u062a'+'\u0646'+'\x22'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\u0634'+'\u0648'+'\u062f'+'\u060c'+'\x20'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0647'+'\u0648'+'\u0634'+'\u0645'+'\u0646'+'\u062f'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u0627'+'\u0646'+'\u062c'+'\u0627'+'\u0645'+'\x20'+'\u0646'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x28'+'\u0639'+'\u062f'+'\u0645'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u06a9'+'\u0627'+'\u0647'+'\u0634'+'\x20'+'\u0633'+'\u0637'+'\u062d'+'\x29','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x4e\x6f':'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\u06a9'+'\u0627'+'\u0647'+'\u0634'+'\x20'+'\u0633'+'\u0637'+'\u062d','\x64\x6f\x77\x6e\x67\x72\x61\x64\x65\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u0648'+'\u0642'+'\u062a'+'\u06cc'+'\x20'+'\x22'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x22'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\u0634'+'\u0648'+'\u062f'+'\x3a'+'\x20'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x20'+'\u0645'+'\u0633'+'\u062a'+'\u0642'+'\u06cc'+'\u0645'+'\x20'+'\x43'+'\x46'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\u2192'+'\x20'+'\u0627'+'\u062a'+'\u0635'+'\u0627'+'\u0644'+'\x20'+'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\x20'+'\u2192'+'\x20'+'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x28'+'\u062d'+'\u0641'+'\u0638'+'\x20'+'\u0647'+'\u0645'+'\u0647'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\x29','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x59\x65\x73':'\u0641'+'\u0642'+'\u0637'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\x54'+'\x4c'+'\x53','\x74\x6c\x73\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u0648'+'\u0642'+'\u062a'+'\u06cc'+'\x20'+'\x22'+'\u0641'+'\u0642'+'\u0637'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\x54'+'\x4c'+'\x53'+'\x22'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\u0634'+'\u0648'+'\u062f'+'\u060c'+'\x20'+'\u0641'+'\u0642'+'\u0637'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u0628'+'\u0627'+'\x20'+'\x54'+'\x4c'+'\x53'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u0646'+'\u062f'+'\u060c'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x54'+'\x4c'+'\x53'+'\x20'+'\x28'+'\u0645'+'\u0627'+'\u0646'+'\u0646'+'\u062f'+'\x20'+'\u067e'+'\u0648'+'\u0631'+'\u062a'+'\x20'+'\x38'+'\x30'+'\x29'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u0646'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u0646'+'\u062f','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x44\x65\x66\x61\x75\x6c\x74':'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x28'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\x29','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x59\x65\x73':'\u0628'+'\u0633'+'\u062a'+'\u0646'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d','\x70\x72\x65\x66\x65\x72\x72\x65\x64\x43\x6f\x6e\x74\x72\x6f\x6c\x48\x69\x6e\x74':'\u0648'+'\u0642'+'\u062a'+'\u06cc'+'\x20'+'\x22'+'\u0628'+'\u0633'+'\u062a'+'\u0646'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\x22'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\x20'+'\u0634'+'\u0648'+'\u062f'+'\u060c'+'\x20'+'\u0641'+'\u0642'+'\u0637'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u0627'+'\u0635'+'\u0644'+'\u06cc'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\u060c'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\u200c'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0648'+'\x20'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u0646'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u0646'+'\u062f','\x72\x65\x67\x69\x6f\x6e\x4e\x61\x6d\x65\x73':{'\x55\x53':Yb(0x98)+'\x20'+'\u0622'+'\u0645'+'\u0631'+'\u06cc'+'\u06a9'+'\u0627','\x53\x47':Yb(0xe5)+'\x20'+'\u0633'+'\u0646'+'\u06af'+'\u0627'+'\u067e'+'\u0648'+'\u0631','\x4a\x50':Yh(0x88)+'\x20'+'\u0698'+'\u0627'+'\u067e'+'\u0646','\x4b\x52':Yh(0xb6)+'\x20'+'\u06a9'+'\u0631'+'\u0647'+'\x20'+'\u062c'+'\u0646'+'\u0648'+'\u0628'+'\u06cc','\x44\x45':Yh(0xd4)+'\x20'+'\u0622'+'\u0644'+'\u0645'+'\u0627'+'\u0646','\x53\x45':Yb(0xa5)+'\x20'+'\u0633'+'\u0648'+'\u0626'+'\u062f','\x4e\x4c':Yh(0xe3)+'\x20'+'\u0647'+'\u0644'+'\u0646'+'\u062f','\x46\x49':Yh(0xa3)+'\x20'+'\u0641'+'\u0646'+'\u0644'+'\u0627'+'\u0646'+'\u062f','\x47\x42':Yh(0xdc)+'\x20'+'\u0628'+'\u0631'+'\u06cc'+'\u062a'+'\u0627'+'\u0646'+'\u06cc'+'\u0627'},'\x74\x65\x72\x6d\x69\x6e\x61\x6c':'\u062a'+'\u0631'+'\u0645'+'\u06cc'+'\u0646'+'\u0627'+'\u0644'+'\x20'+'\x76'+'\x32'+'\x2e'+'\x39'+'\x2e'+'\x34','\x67\x69\x74\x68\x75\x62\x50\x72\x6f\x6a\x65\x63\x74':'\u067e'+'\u0631'+'\u0648'+'\u0698'+'\u0647'+'\x20'+'\x47'+'\x69'+'\x74'+'\x48'+'\x75'+'\x62','\x61\x75\x74\x6f\x44\x65\x74\x65\x63\x74\x43\x6c\x69\x65\x6e\x74':'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631','\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x4c\x6f\x67\x69\x63\x54\x65\x78\x74':'\u0647'+'\u0645'+'\u200c'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u2192'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u0645'+'\u062c'+'\u0627'+'\u0648'+'\u0631'+'\x20'+'\u2192'+'\x20'+'\u0633'+'\u0627'+'\u06cc'+'\u0631'+'\x20'+'\u0645'+'\u0646'+'\u0627'+'\u0637'+'\u0642','\x63\x75\x73\x74\x6f\x6d\x49\x50\x44\x69\x73\x61\x62\x6c\x65\x64\x48\x69\x6e\x74':'\u0647'+'\u0646'+'\u06af'+'\u0627'+'\u0645'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\u060c'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65':'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x70'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65\x44\x65\x73\x63':'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29','\x75\x73\x69\x6e\x67\x43\x75\x73\x74\x6f\x6d\x50\x72\x6f\x78\x79\x49\x50':'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x3a'+'\x20','\x63\x75\x73\x74\x6f\x6d\x49\x50\x43\x6f\x6e\x66\x69\x67':'\x20'+'\x28'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x70'+'\x29','\x63\x75\x73\x74\x6f\x6d\x49\x50\x4d\x6f\x64\x65\x44\x69\x73\x61\x62\x6c\x65\x64':'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\u060c'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a','\x6d\x61\x6e\x75\x61\x6c\x52\x65\x67\x69\x6f\x6e':'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc','\x6d\x61\x6e\x75\x61\x6c\x52\x65\x67\x69\x6f\x6e\x44\x65\x73\x63':'\x20'+'\x28'+'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc'+'\x29','\x70\x72\x6f\x78\x79\x49\x50\x41\x76\x61\x69\x6c\x61\x62\x6c\x65':'\x31'+'\x30'+'\x2f'+'\x31'+'\x30'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\x28'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29','\x73\x6d\x61\x72\x74\x53\x65\x6c\x65\x63\x74\x69\x6f\x6e':'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0647'+'\u0648'+'\u0634'+'\u0645'+'\u0646'+'\u062f'+'\x20'+'\u0646'+'\u0632'+'\u062f'+'\u06cc'+'\u06a9'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0646'+'\u062c'+'\u0627'+'\u0645'+'\x20'+'\u0627'+'\u0633'+'\u062a','\x73\x61\x6d\x65\x52\x65\x67\x69\x6f\x6e\x49\x50':'\x49'+'\x50'+'\x20'+'\u0647'+'\u0645'+'\u200c'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x20'+'\x28'+'\x31'+'\x29','\x63\x6c\x6f\x75\x64\x66\x6c\x61\x72\x65\x44\x65\x74\x65\x63\x74\x69\x6f\x6e':'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062f'+'\u0627'+'\u062e'+'\u0644'+'\u06cc'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65','\x64\x65\x74\x65\x63\x74\x69\x6f\x6e\x46\x61\x69\x6c\x65\x64':'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642','\x61\x70\x69\x54\x65\x73\x74\x52\x65\x73\x75\x6c\x74':'\u0646'+'\u062a'+'\u06cc'+'\u062c'+'\u0647'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\x41'+'\x50'+'\x49'+'\x3a'+'\x20','\x61\x70\x69\x54\x65\x73\x74\x54\x69\x6d\x65':'\u0632'+'\u0645'+'\u0627'+'\u0646'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x3a'+'\x20','\x61\x70\x69\x54\x65\x73\x74\x46\x61\x69\x6c\x65\x64':'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20','\x75\x6e\x6b\x6e\x6f\x77\x6e\x45\x72\x72\x6f\x72':'\u062e'+'\u0637'+'\u0627'+'\u06cc'+'\x20'+'\u0646'+'\u0627'+'\u0634'+'\u0646'+'\u0627'+'\u062e'+'\u062a'+'\u0647','\x61\x70\x69\x54\x65\x73\x74\x45\x72\x72\x6f\x72':'\u062a'+'\u0633'+'\u062a'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20','\x6b\x76\x4e\x6f\x74\x43\x6f\x6e\x66\x69\x67\x75\x72\x65\x64':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u060c'+'\x20'+'\u0646'+'\u0645'+'\u06cc'+'\u200c'+'\u062a'+'\u0648'+'\u0627'+'\u0646'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0639'+'\u0645'+'\u0644'+'\u06a9'+'\u0631'+'\u062f'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x5c'+'\x6e'+'\x5c'+'\x6e'+'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x73'+'\x3a'+'\x5c'+'\x6e'+'\x31'+'\x2e'+'\x20'+'\u0641'+'\u0636'+'\u0627'+'\u06cc'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0627'+'\u06cc'+'\u062c'+'\u0627'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x5c'+'\x6e'+'\x32'+'\x2e'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\u0645'+'\u062d'+'\u06cc'+'\u0637'+'\u06cc'+'\x20'+'\x43'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u067e'+'\u06cc'+'\u0648'+'\u0646'+'\u062f'+'\x20'+'\u062f'+'\u0647'+'\u06cc'+'\u062f'+'\x5c'+'\x6e'+'\x33'+'\x2e'+'\x20'+'\u06a9'+'\u062f'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062f'+'\u0648'+'\u0628'+'\u0627'+'\u0631'+'\u0647'+'\x20'+'\u0645'+'\u0633'+'\u062a'+'\u0642'+'\u0631'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f','\x6b\x76\x4e\x6f\x74\x45\x6e\x61\x62\x6c\x65\x64':'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64':'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20'+'\u062e'+'\u0637'+'\u0627'+'\u06cc'+'\x20'+'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x20'+'\u067e'+'\u0627'+'\u0633'+'\u062e','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64\x53\x74\x61\x74\x75\x73':'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\x2d'+'\x20'+'\u06a9'+'\u062f'+'\x20'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x3a'+'\x20','\x6b\x76\x43\x68\x65\x63\x6b\x46\x61\x69\x6c\x65\x64\x45\x72\x72\x6f\x72':'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\x2d'+'\x20'+'\u062e'+'\u0637'+'\u0627'+'\x3a'+'\x20'}};const RS=RI[RK?'\x66'+'\x61':'\x7a'+'\x68'];const RM='\x3c'+'\x21'+'\x44'+'\x4f'+'\x43'+'\x54'+'\x59'+'\x50'+'\x45'+'\x20'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x3d'+'\x22'+Rq+('\x22'+'\x20'+'\x64'+'\x69'+'\x72'+'\x3d'+'\x22')+(RK?'\x72'+'\x74'+'\x6c':'\x6c'+'\x74'+'\x72')+('\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x65'+'\x61'+'\x64'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6d'+'\x65'+'\x74'+'\x61'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x55'+'\x54'+'\x46'+'\x2d'+'\x38'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6d'+'\x65'+'\x74'+'\x61'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x76'+'\x69'+'\x65'+'\x77'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x22'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3d'+'\x64'+'\x65'+'\x76'+'\x69'+'\x63'+'\x65'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x69'+'\x74'+'\x69'+'\x61'+'\x6c'+'\x2d'+'\x73'+'\x63'+'\x61'+'\x6c'+'\x65'+'\x3d'+'\x31'+'\x2e'+'\x30'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x3e')+RS['\x74'+'\x69'+'\x74'+'\x6c'+'\x65']+('\x3c'+'\x2f'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2a'+'\x20'+'\x7b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x78'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x62'+'\x67'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x62'+'\x67'+'\x2d'+'\x70'+'\x75'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x34'+'\x35'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x31'+'\x31'+'\x30'+'\x30'+'\x20'+'\x35'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x34'+'\x35'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x32'+'\x32'+'\x30'+'\x30'+'\x20'+'\x35'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x23'+'\x30'+'\x30'+'\x30'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+('\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x2d'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x73'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x64'+'\x72'+'\x6f'+'\x70'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x39'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x76'+'\x68'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x6f'+'\x64'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x32'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64')+('\x28'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x35'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x3a'+'\x6e'+'\x74'+'\x68'+'\x2d'+'\x63'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x33'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2d'+'\x64'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x38'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x39'+'\x30'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x33'+'\x2e'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x67'+'\x6c'+'\x6f'+'\x77'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x72'+'\x6f'+'\x6d'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x6f'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61')+('\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x70'+'\x75'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x2d'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x25'+'\x20'+'\x35'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x2d'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x35'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x20'+'\x7b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x61'+'\x72'+'\x64'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x64'+'\x72'+'\x6f'+'\x70'+'\x2d'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x28'+'\x31'+'\x30'+'\x70'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x67'+'\x6c'+'\x6f'+'\x77'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x37'+'\x29'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x61'+'\x72'+'\x64'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x22'+'\x22'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x2d'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x73'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x73'+'\x63'+'\x61'+'\x6e'+'\x2d'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x58'+'\x28'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x58'+'\x28'+'\x31'+'\x30'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x67'+'\x72'+'\x69'+'\x64'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x67'+'\x72'+'\x69'+'\x64'+'\x3b'+'\x20'+'\x67'+'\x72'+'\x69'+'\x64'+'\x2d'+'\x74'+'\x65'+'\x6d'+'\x70'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x70'+'\x65'+'\x61'+'\x74'+'\x28'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x2d'+'\x66'+'\x69'+'\x74'+'\x2c'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x6d'+'\x61'+'\x78'+'\x28'+'\x31'+'\x34'+'\x30'+'\x70'+'\x78'+'\x2c'+'\x20'+'\x31'+'\x66'+'\x72'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x22'+'\x22'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x39'+'\x30'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x2c'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x30'+'\x2c'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x3a'+'\x61'+'\x66'+'\x74'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x22'+'\x22'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x34'+'\x35'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x33'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x30'+'\x2c'+'\x30'+'\x2e'+'\x31'+'\x29'+'\x20'+'\x35'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x37'+'\x30'+'\x25'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x68'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x68'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x3a'+'\x3a'+'\x61'+'\x66'+'\x74'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x68'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72')+('\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x2d'+'\x33'+'\x70'+'\x78'+'\x29'+'\x20'+'\x73'+'\x63'+'\x61'+'\x6c'+'\x65'+'\x28'+'\x31'+'\x2e'+'\x30'+'\x35'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x22'+'\x22'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x61'+'\x72'+'\x2d'+'\x67'+'\x72'+'\x61'+'\x64'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x39'+'\x30'+'\x64'+'\x65'+'\x67'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x2c'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x30'+'\x2c'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x2c'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e')+('\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x68'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x3a'+'\x68'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x34'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x59'+'\x28'+'\x2d'+'\x34'+'\x70'+'\x78'+'\x29'+'\x20'+'\x73'+'\x63'+'\x61'+'\x6c'+'\x65'+'\x28'+'\x31'+'\x2e'+'\x30'+'\x38'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x33'+'\x56'+'\x69'+'\x63'+'\x32'+'\x4e'+'\x79'+'\x61'+'\x58'+'\x42'+'\x30'+'\x61'+'\x57'+'\x39'+'\x75'+'\x27'+'\x29'+'\x2d'+'\x75'+'\x72'+'\x6c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x2d'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x3a'+'\x20'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x61'+'\x6c'+'\x6c'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x78'+'\x3a'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x2d'+'\x67'+'\x6c'+'\x6f'+'\x77'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x72'+'\x6f'+'\x6d'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x6f'+'\x20'+'\x7b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x2c'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x33'+'\x56'+'\x69'+'\x63'+'\x32'+'\x4e'+'\x79'+'\x61'+'\x58'+'\x42'+'\x30'+'\x61'+'\x57'+'\x39'+'\x75'+'\x27'+'\x29'+'\x2d'+'\x75'+'\x72'+'\x6c'+'\x3a'+'\x3a'+'\x62'+'\x65'+'\x66'+'\x6f'+'\x72'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x22'+'\x22'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x62'+'\x73'+'\x6f'+'\x6c'+'\x75'+'\x74'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x2d'+'\x73'+'\x63'+'\x61'+'\x6e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x22'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x22'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x40'+'\x6b'+'\x65'+'\x79'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x66'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x65'+'\x72'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x30'+'\x25'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x35'+'\x30'+'\x25'+'\x20'+'\x7b'+'\x20'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3e'+'\x0a'+'\x20'+'\x20')+('\x20'+'\x20'+'\x3c'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x62'+'\x67'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x2d'+'\x72'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x3e'))+RS['\x74'+'\x65'+'\x72'+'\x6d'+'\x69'+'\x6e'+'\x61'+'\x6c']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x78'+'\x65'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x7a'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x3b'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x28'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x7a'+'\x68'+'\x22'+'\x20')+(!RK?'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64':'')+('\x3e'+Yb(0x83)+'\x20'+'\u4e2d'+'\u6587'+'\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x61'+'\x22'+'\x20')+(RK?'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64':'')+('\x3e'+Yh(0xc6)+'\x20'+'\u0641'+'\u0627'+'\u0631'+'\u0633'+'\u06cc'+'\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x31'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+RS['\x74'+'\x69'+'\x74'+'\x6c'+'\x65']+('\x3c'+'\x2f'+'\x68'+'\x31'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x70'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x73'+'\x75'+'\x62'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+RS['\x73'+'\x75'+'\x62'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65']+('\x3c'+'\x2f'+'\x70'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x32'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+RS['\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x68'+'\x32'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x67'+'\x72'+'\x69'+'\x64'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x41'+'\x53'+'\x48'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x43'+'\x4c'+'\x41'+'\x53'+'\x48'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x55'+'\x52'+'\x47'+'\x45'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x53'+'\x55'+'\x52'+'\x47'+'\x45'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x32'+'\x6c'+'\x75'+'\x5a'+'\x32'+'\x4a'+'\x76'+'\x65'+'\x41'+'\x3d'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x49'+'\x4e'+'\x47'+'\x2d'+'\x42'+'\x4f'+'\x58'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x53'+'\x49'+'\x4e'+'\x47'+'\x2d'+'\x42'+'\x4f'+'\x58'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x62'+'\x47'+'\x39'+'\x76'+'\x62'+'\x67'+'\x3d'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x4f'+'\x4f'+'\x4e'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x4c'+'\x4f'+'\x4f'+'\x4e'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x58'+'\x56'+'\x68'+'\x62'+'\x6e'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x51'+'\x55'+'\x41'+'\x4e'+'\x54'+'\x55'+'\x4d'+'\x55'+'\x4c'+'\x54'+'\x20'+'\x58'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x51'+'\x55'+'\x41'+'\x4e'+'\x54'+'\x55'+'\x4d'+'\x55'+'\x4c'+'\x54'+'\x20'+'\x58'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x4e'+'\x47'+'\x27'+'\x29'+'\x22'+('\x3e'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x4e'+'\x47'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x45'+'\x4b'+'\x4f'+'\x52'+'\x41'+'\x59'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x4e'+'\x45'+'\x4b'+'\x4f'+'\x52'+'\x41'+'\x59'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x62'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'+'\x27'+'\x29'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x72'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x27'+'\x29'+'\x22'+'\x3e'+'\x53'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x72'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x33'+'\x56'+'\x69'+'\x63'+'\x32'+'\x4e'+'\x79'+'\x61'+'\x58'+'\x42'+'\x30'+'\x61'+'\x57'+'\x39'+'\x75'+'\x4c'+'\x58'+'\x56'+'\x79'+'\x62'+'\x41'+'\x3d'+'\x3d'+'\x27'+'\x29'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x32'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e'))+RS['\x73'+'\x79'+'\x73'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']+('\x3c'+'\x2f'+'\x68'+'\x32'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x79'+'\x73'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x78'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x74'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x29'+'\x3b'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x76'+'\x65'+'\x3b'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x5b'+'\x20')+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x20'+'\x5d'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e']+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73']+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50']+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\x45'+'\x43'+'\x48'+'\u72b6'+'\u6001'+'\x3a'+'\x20')+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68']+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4c'+'\x6f'+'\x67'+'\x69'+'\x63'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4c'+'\x6f'+'\x67'+'\x69'+'\x63']+RS['\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4c'+'\x6f'+'\x67'+'\x69'+'\x63'+'\x54'+'\x65'+'\x78'+'\x74']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x32'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+RS['\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x4d'+'\x61'+'\x6e'+'\x61'+'\x67'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x68'+'\x32'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+RS['\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x70'+'\x65'+'\x63'+'\x69'+'\x66'+'\x79'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x61'+'\x75'+'\x74'+'\x6f'+'\x44'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x55'+'\x53'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x55'+'\x53']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x53'+'\x47'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x53'+'\x47']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x4a'+'\x50'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x4a'+'\x50']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x4b'+'\x52'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x4b'+'\x52']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x44'+'\x45'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x44'+'\x45']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x53'+'\x45'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x53'+'\x45']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x4e'+'\x4c'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x4e'+'\x4c']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x46'+'\x49'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x46'+'\x49']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x47'+'\x42'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73']['\x47'+'\x42']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\u26a0\ufe0f'+'\x20')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x20'+'\x32'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x61'+'\x76'+'\x65'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6f'+'\x74'+'\x68'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x76'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x56'+'\x4c'+'\x45'+'\x53'+'\x53']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x54'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x78'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x58'+'\x68'+'\x74'+'\x74'+'\x70']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x63'+'\x68'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x45'+'\x43'+'\x48']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x45'+'\x43'+'\x48'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x74'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x50'+'\x61'+'\x73'+'\x73'+'\x77'+'\x6f'+'\x72'+'\x64']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x74'+'\x70'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x74'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x50'+'\x61'+'\x73'+'\x73'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x74'+'\x72'+'\x6f'+'\x6a'+'\x61'+'\x6e'+'\x50'+'\x61'+'\x73'+'\x73'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x61'+'\x74'+'\x68']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x61'+'\x74'+'\x68'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(RK?'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x2f'+'\x6d'+'\x79'+'\x70'+'\x61'+'\x74'+'\x68'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u062a'+'\u0627'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0634'+'\u0648'+'\u062f':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x2f'+'\x6d'+'\x79'+'\x70'+'\x61'+'\x74'+'\x68'+'\x20'+'\u6216'+'\u7559'+'\u7a7a'+'\u4f7f'+'\u7528'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44')+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\u0645'+'\u0633'+'\u06cc'+'\u0631'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x2e'+'\x20'+'\u0627'+'\u06af'+'\u0631'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0639'+'\u0646'+'\u0648'+'\u0627'+'\u0646'+'\x20'+'\u0645'+'\u0633'+'\u06cc'+'\u0631'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x2e':'\u81ea'+'\u5b9a'+'\u4e49'+'\u8ba2'+'\u9605'+'\u8def'+'\u5f84'+'\u3002'+'\u7559'+'\u7a7a'+'\u5219'+'\u4f7f'+'\u7528'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u4f5c'+'\u4e3a'+'\u8def'+'\u5f84'+'\u3002')+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(RK?'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x2e'+'\x33'+'\x2e'+'\x34'+'\x3a'+'\x34'+'\x34'+'\x33':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x2e'+'\x33'+'\x2e'+'\x34'+'\x3a'+'\x34'+'\x34'+'\x33')+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u0648'+'\x20'+'\u067e'+'\u0648'+'\u0631'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc':'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u5730'+'\u5740'+'\u548c'+'\u7aef'+'\u53e3')+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x49'+'\x50'+'\x73']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x79'+'\x78'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(RK?'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x2e'+'\x33'+'\x2e'+'\x34'+'\x3a'+'\x34'+'\x34'+'\x33'+'\x23'+'\u06af'+'\u0631'+'\u0647'+'\x20'+'\u0647'+'\u0646'+'\u06af'+'\u200c'+'\u06a9'+'\u0646'+'\u06af'+'\x2c'+'\x35'+'\x2e'+'\x36'+'\x2e'+'\x37'+'\x2e'+'\x38'+'\x3a'+'\x38'+'\x30'+'\x23'+'\u06af'+'\u0631'+'\u0647'+'\x20'+'\u0622'+'\u0645'+'\u0631'+'\u06cc'+'\u06a9'+'\u0627'+'\x2c'+'\x65'+'\x78'+'\x61'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x38'+'\x34'+'\x34'+'\x33'+'\x23'+'\u06af'+'\u0631'+'\u0647'+'\x20'+'\u0633'+'\u0646'+'\u06af'+'\u0627'+'\u067e'+'\u0648'+'\u0631':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x2e'+'\x33'+'\x2e'+'\x34'+'\x3a'+'\x34'+'\x34'+'\x33'+'\x23'+'\u65e5'+'\u672c'+'\u8282'+'\u70b9'+'\x2c'+'\x35'+'\x2e'+'\x36'+'\x2e'+'\x37'+'\x2e'+'\x38'+'\x3a'+'\x38'+'\x30'+'\x23'+'\u7f8e'+'\u56fd'+'\u8282'+'\u70b9'+'\x2c'+'\x65'+'\x78'+'\x61'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x38'+'\x34'+'\x34'+'\x33'+'\x23'+'\u65b0'+'\u52a0'+'\u5761'+'\u8282'+'\u70b9')+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x3a'+'\x20'+'\x49'+'\x50'+'\x3a'+'\u067e'+'\u0648'+'\u0631'+'\u062a'+'\x23'+'\u0646'+'\u0627'+'\u0645'+'\x20'+'\u06af'+'\u0631'+'\u0647'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\x49'+'\x50'+'\x3a'+'\u067e'+'\u0648'+'\u0631'+'\u062a'+'\x20'+'\x28'+'\u0628'+'\u062f'+'\u0648'+'\u0646'+'\x20'+'\x23'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f'+'\x29'+'\x2e'+'\x20'+'\u067e'+'\u0634'+'\u062a'+'\u06cc'+'\u0628'+'\u0627'+'\u0646'+'\u06cc'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0686'+'\u0646'+'\u062f'+'\u06cc'+'\u0646'+'\x20'+'\u0645'+'\u0648'+'\u0631'+'\u062f'+'\u060c'+'\x20'+'\u0628'+'\u0627'+'\x20'+'\u06a9'+'\u0627'+'\u0645'+'\u0627'+'\x20'+'\u062c'+'\u062f'+'\u0627'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u0646'+'\u062f'+'\x2e'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x49'+'\x50'+'\x20'+'\u0647'+'\u0627'+'\u06cc'+'\x20'+'\u0627'+'\u0636'+'\u0627'+'\u0641'+'\u0647'+'\x20'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0637'+'\u0631'+'\u06cc'+'\u0642'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0627'+'\u06cc'+'\u0646'+'\u062c'+'\u0627'+'\x20'+'\u0646'+'\u0645'+'\u0627'+'\u06cc'+'\u0634'+'\x20'+'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u0646'+'\u062f'+'\x2e'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e':'\u683c'+'\u5f0f'+'\x3a'+'\x20'+'\x49'+'\x50'+'\x3a'+'\u7aef'+'\u53e3'+'\x23'+'\u8282'+'\u70b9'+'\u540d'+'\u79f0'+'\x20'+'\u6216'+'\x20'+'\x49'+'\x50'+'\x3a'+'\u7aef'+'\u53e3'+'\x20'+'\x28'+'\u65e0'+'\x23'+'\u5219'+'\u4f7f'+'\u7528'+'\u9ed8'+'\u8ba4'+'\u540d'+'\u79f0'+'\x29'+'\u3002'+'\u652f'+'\u6301'+'\u591a'+'\u4e2a'+'\uff0c'+'\u7528'+'\u9017'+'\u53f7'+'\u5206'+'\u9694'+'\u3002'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x41'+'\x50'+'\x49'+'\u6dfb'+'\u52a0'+'\u7684'+'\x49'+'\x50'+'\u4f1a'+'\u81ea'+'\u52a8'+'\u663e'+'\u793a'+'\u5728'+'\u8fd9'+'\u91cc'+'\u3002'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e')+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x49'+'\x50'+'\x73'+'\x55'+'\x52'+'\x4c']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(RK?'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74':'\u9ed8'+'\u8ba4'+'\x3a'+'\x20'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74')+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\x55'+'\x52'+'\x4c'+'\x20'+'\u0645'+'\u0646'+'\u0628'+'\u0639'+'\x20'+'\u0644'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u062a'+'\u0631'+'\u062c'+'\u06cc'+'\u062d'+'\u06cc'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\u060c'+'\x20'+'\u0627'+'\u06af'+'\u0631'+'\x20'+'\u062e'+'\u0627'+'\u0644'+'\u06cc'+'\x20'+'\u0628'+'\u06af'+'\u0630'+'\u0627'+'\u0631'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f':'\u81ea'+'\u5b9a'+'\u4e49'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u5217'+'\u8868'+'\u6765'+'\u6e90'+'\x55'+'\x52'+'\x4c'+'\uff0c'+'\u7559'+'\u7a7a'+'\u5219'+'\u4f7f'+'\u7528'+'\u9ed8'+'\u8ba4'+'\u5730'+'\u5740')+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x34'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x34'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u26a1'+'\x20')+RS['\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74']+('\x3c'+'\x2f'+'\x68'+'\x34'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x2d'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x69'+'\x6e'+'\x2d'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x22'+'\x3e')+RS['\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x22'+'\x3e')+RS['\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x22'+'\x3e')+RS['\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x6e'+'\x75'+'\x6d'+'\x62'+'\x65'+'\x72'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x22'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x34'+'\x34'+'\x33'+'\x22'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x3d'+'\x22'+'\x31'+'\x22'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x3d'+'\x22'+'\x36'+'\x35'+'\x35'+'\x33'+'\x35'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x6e'+'\x75'+'\x6d'+'\x62'+'\x65'+'\x72'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x22'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x32'+'\x30'+'\x22'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x3d'+'\x22'+'\x31'+'\x22'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x3d'+'\x22'+'\x31'+'\x30'+'\x30'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x38'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\u0631'+'\u0634'+'\u062a'+'\u0647'+'\u200c'+'\u0647'+'\u0627':'\u7ebf'+'\u7a0b')+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x6e'+'\x75'+'\x6d'+'\x62'+'\x65'+'\x72'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x22'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x35'+'\x22'+'\x20'+'\x6d'+'\x69'+'\x6e'+'\x3d'+'\x22'+'\x31'+'\x22'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x3d'+'\x22'+'\x35'+'\x30'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x50'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x44'+'\x69'+'\x76'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x66'+'\x66'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x66'+'\x66'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x77'+'\x68'+'\x69'+'\x74'+'\x65'+'\x2d'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3b'+'\x22'+'\x3e'+'\u2b07'+'\x20')+RS['\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x44'+'\x69'+'\x76'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x3b'+'\x22'+'\x3e'+'\ud83c\udfb2'+'\x20')+RS['\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x3b'+'\x22'+'\x3e'+'\u25b6'+'\x20')+RS['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x3b'+'\x22'+'\x3e'+'\u23f9'+'\x20')+RS['\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x32'+'\x35'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x79'+'\x3a'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x6a'+'\x75'+'\x73'+'\x74'+'\x69'+'\x66'+'\x79'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x2d'+'\x62'+'\x65'+'\x74'+'\x77'+'\x65'+'\x65'+'\x6e'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x22'+'\x3e')+RS['\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e')+RS['\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x72'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x22'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x22'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x61'+'\x6c'+'\x6c'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e')+(RK?'\u5168'+'\u90e8'+'\u57ce'+'\u5e02':'\u5168'+'\u90e8'+'\u57ce'+'\u5e02')+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x72'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x22'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x22'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x61'+'\x73'+'\x74'+'\x65'+'\x73'+'\x74'+'\x31'+'\x30'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e')+(RK?'\u53ea'+'\u9009'+'\u62e9'+'\u6700'+'\u5feb'+'\u7684'+'\x31'+'\x30'+'\u4e2a':'\u53ea'+'\u9009'+'\u62e9'+'\u6700'+'\u5feb'+'\u7684'+'\x31'+'\x30'+'\u4e2a')+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x2d'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x78'+'\x2d'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x2d'+'\x79'+'\x3a'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x34'+'\x34'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x54'+'\x6f'+'\x59'+'\x78'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x3b'+'\x22'+'\x3e')+(RK?'\u8986'+'\u76d6'+'\u6dfb'+'\u52a0':'\u8986'+'\u76d6'+'\u6dfb'+'\u52a0')+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x54'+'\x6f'+'\x59'+'\x78'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x31'+'\x35'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x33'+'\x73'+'\x3b'+'\x22'+'\x3e')+(RK?'\u8ffd'+'\u52a0'+'\u6dfb'+'\u52a0':'\u8ffd'+'\u52a0'+'\u6dfb'+'\u52a0')+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x35'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+(RK?'\u0645'+'\u062b'+'\u0627'+'\u0644'+'\x3a'+'\x20'+'\x75'+'\x73'+'\x65'+'\x72'+'\x3a'+'\x70'+'\x61'+'\x73'+'\x73'+'\x40'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3a'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3a'+'\x70'+'\x6f'+'\x72'+'\x74':'\u4f8b'+'\u5982'+'\x3a'+'\x20'+'\x75'+'\x73'+'\x65'+'\x72'+'\x3a'+'\x70'+'\x61'+'\x73'+'\x73'+'\x40'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3a'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\u6216'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3a'+'\x70'+'\x6f'+'\x72'+'\x74')+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+(RK?'\u0622'+'\u062f'+'\u0631'+'\u0633'+'\x20'+'\u067e'+'\u0631'+'\u0648'+'\u06a9'+'\u0633'+'\u06cc'+'\x20'+'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\u060c'+'\x20'+'\u0628'+'\u0631'+'\u0627'+'\u06cc'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u0642'+'\u0627'+'\u0644'+'\x20'+'\u062a'+'\u0645'+'\u0627'+'\u0645'+'\x20'+'\u062a'+'\u0631'+'\u0627'+'\u0641'+'\u06cc'+'\u06a9'+'\x20'+'\u062e'+'\u0631'+'\u0648'+'\u062c'+'\u06cc'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u0634'+'\u0648'+'\u062f':'\x53'+'\x4f'+'\x43'+'\x4b'+'\x53'+'\x35'+'\u4ee3'+'\u7406'+'\u5730'+'\u5740'+'\uff0c'+'\u7528'+'\u4e8e'+'\u8f6c'+'\u53d1'+'\u6240'+'\u6709'+'\u51fa'+'\u7ad9'+'\u6d41'+'\u91cf')+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x20'+'\x32'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x33'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c']+('\x3c'+'\x2f'+'\x68'+'\x33'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x6e'+'\x76'+'\x65'+'\x72'+'\x74'+'\x65'+'\x72']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x63'+'\x75'+'\x22'+'\x20'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72'+'\x3d'+'\x22')+RS['\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x6e'+'\x76'+'\x65'+'\x72'+'\x74'+'\x65'+'\x72'+'\x50'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x68'+'\x6f'+'\x6c'+'\x64'+'\x65'+'\x72']+('\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x6e'+'\x76'+'\x65'+'\x72'+'\x74'+'\x65'+'\x72'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x62'+'\x75'+'\x69'+'\x6c'+'\x74'+'\x69'+'\x6e'+'\x50'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x70'+'\x64'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x50'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x70'+'\x69'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x50'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x49'+'\x50']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x65'+'\x67'+'\x69'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x65'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x47'+'\x69'+'\x74'+'\x48'+'\x75'+'\x62'+'\x50'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64']+('\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e')+RS['\x62'+'\x75'+'\x69'+'\x6c'+'\x74'+'\x69'+'\x6e'+'\x50'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u7b5b'+'\u9009'+'\u8bbe'+'\u7f6e'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x36'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x49'+'\x50'+'\u7248'+'\u672c'+'\u9009'+'\u62e9'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x2d'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x70'+'\x76'+'\x34'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+('\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\x49'+'\x50'+'\x76'+'\x34'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x70'+'\x76'+'\x36'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\x49'+'\x50'+'\x76'+'\x36'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u8fd0'+'\u8425'+'\u5546'+'\u9009'+'\u62e9'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66')+('\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x2d'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x77'+'\x72'+'\x61'+'\x70'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\u79fb'+'\u52a8'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\u8054'+'\u901a'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e')+('\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x22'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e'+'\u7535'+'\u4fe1'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\u9009'+'\u62e9'+'\u8981'+'\u4f7f'+'\u7528'+'\u7684'+'\x49'+'\x50'+'\u7248'+'\u672c'+'\u548c'+'\u8fd0'+'\u8425'+'\u5546'+'\uff0c'+'\u672a'+'\u9009'+'\u4e2d'+'\u7684'+'\u5c06'+'\u88ab'+'\u8fc7'+'\u6ee4'+'\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'))+RS['\x61'+'\x6c'+'\x6c'+'\x6f'+'\x77'+'\x41'+'\x50'+'\x49'+'\x4d'+'\x61'+'\x6e'+'\x61'+'\x67'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x79'+'\x65'+'\x73'+'\x22'+'\x3e')+RS['\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x59'+'\x65'+'\x73']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x6e'+'\x6f'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x4e'+'\x6f']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x6e'+'\x6f'+'\x22'+'\x3e')+RS['\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x4e'+'\x6f']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x74'+'\x6c'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x74'+'\x6c'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x79'+'\x65'+'\x73'+'\x22'+'\x3e')+RS['\x74'+'\x6c'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x59'+'\x65'+'\x73']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x74'+'\x6c'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x33'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c']+('\x3c'+'\x2f'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x30'+'\x25'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3d'+'\x22'+'\x79'+'\x65'+'\x73'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x59'+'\x65'+'\x73']+('\x3c'+'\x2f'+'\x6f'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x22'+'\x3e')+RS['\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x48'+'\x69'+'\x6e'+'\x74']+('\x3c'+'\x2f'+'\x73'+'\x6d'+'\x61'+'\x6c'+'\x6c'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x20'+'\x32'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x22'+'\x3e')+RS['\x73'+'\x61'+'\x76'+'\x65'+'\x41'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+RS['\x6c'+'\x6f'+'\x61'+'\x64'+'\x69'+'\x6e'+'\x67']+('\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x37'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e')+RS['\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x22'+'\x3e')+RS['\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x69'+'\x6e'+'\x67']+('\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x43'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x20'+'\x32'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x66'+'\x72'+'\x65'+'\x73'+'\x68'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x20'+'\x6f'+'\x6e'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x3d'+'\x22'+'\x72'+'\x65'+'\x73'+'\x65'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x32'+'\x35'+'\x35'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x35'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x32'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x66'+'\x66'+'\x30'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x32'+'\x70'+'\x78'+'\x20'+'\x32'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x30'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x75'+'\x72'+'\x69'+'\x65'+'\x72'+'\x20'+'\x4e'+'\x65'+'\x77'+'\x27'+'\x2c'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x77'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x62'+'\x6f'+'\x6c'+'\x64'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x38'+'\x70'+'\x78'+'\x20'+'\x23'+'\x66'+'\x66'+'\x30'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x69'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x73'+'\x20'+'\x65'+'\x61'+'\x73'+'\x65'+'\x3b'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x73'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67']+('\x3c'+'\x2f'+'\x62'+'\x75'+'\x74'+'\x74'+'\x6f'+'\x6e'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x69'+'\x64'+'\x3d'+'\x22'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x4d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x68'+'\x32'+'\x20'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x3d'+'\x22'+'\x63'+'\x61'+'\x72'+'\x64'+'\x2d'+'\x74'+'\x69'+'\x74'+'\x6c'+'\x65'+'\x22'+'\x3e')+RS['\x72'+'\x65'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x64'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x73']+('\x3c'+'\x2f'+'\x68'+'\x32'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x20'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x61'+'\x20'+'\x68'+'\x72'+'\x65'+'\x66'+'\x3d'+'\x22'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x62'+'\x79'+'\x4a'+'\x6f'+'\x65'+'\x79'+'\x2f'+'\x63'+'\x66'+'\x6e'+'\x65'+'\x77'+'\x22'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x5f'+'\x62'+'\x6c'+'\x61'+'\x6e'+'\x6b'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x64'+'\x65'+'\x63'+'\x6f'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e')+RS['\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x50'+'\x72'+'\x6f'+'\x6a'+'\x65'+'\x63'+'\x74']+('\x3c'+'\x2f'+'\x61'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x61'+'\x20'+'\x68'+'\x72'+'\x65'+'\x66'+'\x3d'+'\x22'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x77'+'\x77'+'\x77'+'\x2e'+'\x79'+'\x6f'+'\x75'+'\x74'+'\x75'+'\x62'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x40'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x22'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x5f'+'\x62'+'\x6c'+'\x61'+'\x6e'+'\x6b'+'\x22'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x64'+'\x65'+'\x63'+'\x6f'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x3b'+'\x20'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x32'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x2e'+'\x32'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2d'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x3a'+'\x20'+'\x30'+'\x20'+'\x30'+'\x20'+'\x35'+'\x70'+'\x78'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x59'+'\x6f'+'\x75'+'\x54'+'\x75'+'\x62'+'\x65'+'\x20'+'\x40'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x3c'+'\x2f'+'\x61'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8ba2'+'\u9605'+'\u8f6c'+'\u6362'+'\u5730'+'\u5740'+'\uff08'+'\u4ece'+'\u670d'+'\u52a1'+'\u5668'+'\u914d'+'\u7f6e'+'\u6ce8'+'\u5165'+'\uff09'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x53'+'\x55'+'\x42'+'\x5f'+'\x43'+'\x4f'+'\x4e'+'\x56'+'\x45'+'\x52'+'\x54'+'\x45'+'\x52'+'\x5f'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x22')+h+('\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8fdc'+'\u7a0b'+'\u914d'+'\u7f6e'+'\x55'+'\x52'+'\x4c'+'\uff08'+'\u786c'+'\u7f16'+'\u7801'+'\uff09'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x52'+'\x45'+'\x4d'+'\x4f'+'\x54'+'\x45'+'\x5f'+'\x43'+'\x4f'+'\x4e'+'\x46'+'\x49'+'\x47'+'\x5f'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x22')+j+('\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u7ffb'+'\u8bd1'+'\u5bf9'+'\u8c61'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u8ba2'+'\u9605'+'\u94fe'+'\u63a5'+'\u5df2'+'\u590d'+'\u5236'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u81ea'+'\u52a8'+'\u8bc6'+'\u522b'+'\u8ba2'+'\u9605'+'\u94fe'+'\u63a5'+'\u5df2'+'\u590d'+'\u5236'+'\uff0c'+'\u5ba2'+'\u6237'+'\u7aef'+'\u8bbf'+'\u95ee'+'\u65f6'+'\u4f1a'+'\u6839'+'\u636e'+'\x55'+'\x73'+'\x65'+'\x72'+'\x2d'+'\x41'+'\x67'+'\x65'+'\x6e'+'\x74'+'\u81ea'+'\u52a8'+'\u8bc6'+'\u522b'+'\u5e76'+'\u8fd4'+'\u56de'+'\u5bf9'+'\u5e94'+'\u683c'+'\u5f0f'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u06a9'+'\u067e'+'\u06cc'+'\x20'+'\u0634'+'\u062f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0644'+'\u06cc'+'\u0646'+'\u06a9'+'\x20'+'\u0627'+'\u0634'+'\u062a'+'\u0631'+'\u0627'+'\u06a9'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u06a9'+'\u067e'+'\u06cc'+'\x20'+'\u0634'+'\u062f'+'\u060c'+'\x20'+'\u06a9'+'\u0644'+'\u0627'+'\u06cc'+'\u0646'+'\u062a'+'\x20'+'\u0647'+'\u0646'+'\u06af'+'\u0627'+'\u0645'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0628'+'\u0631'+'\x20'+'\u0627'+'\u0633'+'\u0627'+'\u0633'+'\x20'+'\x55'+'\x73'+'\x65'+'\x72'+'\x2d'+'\x41'+'\x67'+'\x65'+'\x6e'+'\x74'+'\x20'+'\u0628'+'\u0647'+'\x20'+'\u0637'+'\u0648'+'\u0631'+'\x20'+'\u062e'+'\u0648'+'\u062f'+'\u06a9'+'\u0627'+'\u0631'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0648'+'\x20'+'\u0642'+'\u0627'+'\u0644'+'\u0628'+'\x20'+'\u0645'+'\u0631'+'\u0628'+'\u0648'+'\u0637'+'\u0647'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0628'+'\u0631'+'\u0645'+'\u06cc'+'\u200c'+'\u06af'+'\u0631'+'\u062f'+'\u0627'+'\u0646'+'\u062f'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+('\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x28'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\uff08'+'\u6709'+'\u6548'+'\u671f'+'\x31'+'\u5e74'+'\uff09'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79')+('\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\uff0c'+'\u4e0d'+'\u4f7f'+'\u7528'+'\x55'+'\x52'+'\x4c'+'\u53c2'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x72'+'\x65'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u9875'+'\u9762'+'\u52a0'+'\u8f7d'+'\u65f6'+'\u68c0'+'\u67e5'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x20'+'\u548c'+'\x20'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\uff0c'+'\u5e76'+'\u6e05'+'\u7406'+'\x55'+'\x52'+'\x4c'+'\u53c2'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x44'+'\x4f'+'\x4d'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x64'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x53'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\x55'+'\x52'+'\x4c'+'\u4e2d'+'\u6709'+'\u8bed'+'\u8a00'+'\u53c2'+'\u6570'+'\uff0c'+'\u79fb'+'\u9664'+'\u5b83'+'\u5e76'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73'+'\x2e'+'\x64'+'\x65'+'\x6c'+'\x65'+'\x74'+'\x65'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8bbe'+'\u7f6e'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e')+('\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4f7f'+'\u7528'+'\x68'+'\x69'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x79'+'\x20'+'\x41'+'\x50'+'\x49'+'\u79fb'+'\u9664'+'\x55'+'\x52'+'\x4c'+'\u53c2'+'\u6570'+'\uff0c'+'\u4e0d'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x68'+'\x69'+'\x73'+'\x74'+'\x6f'+'\x72'+'\x79'+'\x2e'+'\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x7b'+'\x7d'+'\x2c'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\u4e2d'+'\u6709'+'\u4f46'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\u4e2d'+'\u6ca1'+'\u6709'+'\uff0c'+'\u540c'+'\u6b65'+'\u5230'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x46'+'\x75'+'\x6c'+'\x6c'+'\x59'+'\x65'+'\x61'+'\x72'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d'+'\x2f'+'\x3b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x65'+'\x73'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x78'+'\x70'+'\x69'+'\x72'+'\x79'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x74'+'\x6f'+'\x55'+'\x54'+'\x43'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x53'+'\x61'+'\x6d'+'\x65'+'\x53'+'\x69'+'\x74'+'\x65'+'\x3d'+'\x4c'+'\x61'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x43'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x2c'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x32'+'\x35'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x61'+'\x70'+'\x70'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61')+('\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x63'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x45'+'\x78'+'\x65'+'\x63'+'\x75'+'\x74'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x65'+'\x6c'+'\x61'+'\x70'+'\x73'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x20'+'\x2d'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x6c'+'\x61'+'\x70'+'\x73'+'\x65'+'\x64'+'\x20'+'\x3c'+'\x20'+'\x33'+'\x30'+'\x30'+'\x30'+'\x20'+'\x26'+'\x26'+'\x20'+'\x21'+'\x63'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x45'+'\x78'+'\x65'+'\x63'+'\x75'+'\x74'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x27'+'\x2c'+'\x20'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x65'+'\x6c'+'\x61'+'\x70'+'\x73'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x20'+'\x2d'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x6c'+'\x61'+'\x70'+'\x73'+'\x65'+'\x64'+'\x20'+'\x3c'+'\x20'+'\x33'+'\x30'+'\x30'+'\x30'+'\x20'+'\x26'+'\x26'+'\x20'+'\x21'+'\x63'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x45'+'\x78'+'\x65'+'\x63'+'\x75'+'\x74'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x76'+'\x69'+'\x73'+'\x69'+'\x62'+'\x69'+'\x6c'+'\x69'+'\x74'+'\x79'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x31'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65')+('\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x31'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x73'+'\x72'+'\x63'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x26'+'\x26'+'\x20'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x70'+'\x61'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x6f'+'\x64'+'\x65'+'\x2e'+'\x72'+'\x65'+'\x6d'+'\x6f'+'\x76'+'\x65'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x69'+'\x66'+'\x72'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x72'+'\x65'+'\x6d'+'\x6f'+'\x76'+'\x65'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x27'+'\x2c'+'\x20'+'\x62'+'\x6c'+'\x75'+'\x72'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x6d'+'\x6f'+'\x76'+'\x65'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x76'+'\x69'+'\x73'+'\x69'+'\x62'+'\x69'+'\x6c'+'\x69'+'\x74'+'\x79'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x68'+'\x69'+'\x64'+'\x64'+'\x65'+'\x6e'+'\x48'+'\x61'+'\x6e'+'\x64'+'\x6c'+'\x65'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x63'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x45'+'\x78'+'\x65'+'\x63'+'\x75'+'\x74'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x45'+'\x78'+'\x65'+'\x63'+'\x75'+'\x74'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x61'+'\x70'+'\x70'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x43'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x43'+'\x61'+'\x6c'+'\x6c'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x6e'+'\x6b'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x2c'+'\x20'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x2f'+'\x73'+'\x75'+'\x62'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27')+('\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x64'+'\x6a'+'\x4a'+'\x79'+'\x59'+'\x58'+'\x6b'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x22'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x57'+'\x72'+'\x61'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x42'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x61'+'\x6c'+'\x6c'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x58'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6d'+'\x61'+'\x78'+'\x57'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x31'+'\x30'+'\x30'+'\x25'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x6f'+'\x78'+'\x53'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x72'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x68'+'\x61'+'\x64'+'\x6f'+'\x77'+'\x72'+'\x6f'+'\x63'+'\x6b'+'\x65'+'\x74'+'\x3a'+'\x2f'+'\x2f'+'\x61'+'\x64'+'\x64'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x56'+'\x32'+'\x52'+'\x41'+'\x59'+'\x4e'+'\x47'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x76'+'\x32'+'\x72'+'\x61'+'\x79'+'\x6e'+'\x67'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x4e'+'\x45'+'\x4b'+'\x4f'+'\x52'+'\x41'+'\x59'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x65'+'\x6b'+'\x6f'+'\x72'+'\x61'+'\x79'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u68c0'+'\u67e5'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u662f'+'\u5426'+'\u5f00'+'\u542f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x65'+'\x63'+'\x68'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x20'+'\x26'+'\x26'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u5f00'+'\u542f'+'\u4e14'+'\u662f'+'\x20'+'\x43'+'\x6c'+'\x61'+'\x73'+'\x68'+'\uff0c'+'\u76f4'+'\u63a5'+'\u4f7f'+'\u7528'+'\u540e'+'\u7aef'+'\u63a5'+'\u53e3'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x63'+'\x68'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x3f'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x22'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x57'+'\x72'+'\x61'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73')+('\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x42'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x61'+'\x6c'+'\x6c'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x58'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6d'+'\x61'+'\x78'+'\x57'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x31'+'\x30'+'\x30'+'\x25'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x6f'+'\x78'+'\x53'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x74'+'\x61'+'\x73'+'\x68'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x68'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x41'+'\x53'+'\x48'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5176'+'\u4ed6'+'\u60c5'+'\u51b5'+'\u4f7f'+'\u7528'+'\u8ba2'+'\u9605'+'\u8f6c'+'\u6362'+'\u670d'+'\u52a1'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x64'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x53'+'\x55'+'\x42'+'\x5f'+'\x43'+'\x4f'+'\x4e'+'\x56'+'\x45'+'\x52'+'\x54'+'\x45'+'\x52'+'\x5f'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x3f'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3d'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x26'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x64'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x26'+'\x69'+'\x6e'+'\x73'+'\x65'+'\x72'+'\x74'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3d'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x52'+'\x45'+'\x4d'+'\x4f'+'\x54'+'\x45'+'\x5f'+'\x43'+'\x4f'+'\x4e'+'\x46'+'\x49'+'\x47'+'\x5f'+'\x55'+'\x52'+'\x4c'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x26'+'\x65'+'\x6d'+'\x6f'+'\x6a'+'\x69'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65'+'\x26'+'\x6c'+'\x69'+'\x73'+'\x74'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x78'+'\x75'+'\x64'+'\x70'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x75'+'\x64'+'\x70'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x74'+'\x66'+'\x6f'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x65'+'\x78'+'\x70'+'\x61'+'\x6e'+'\x64'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65'+'\x26'+'\x73'+'\x63'+'\x76'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x66'+'\x64'+'\x6e'+'\x3d'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x26'+'\x6e'+'\x65'+'\x77'+'\x5f'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x74'+'\x72'+'\x75'+'\x65'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x76'+'\x61'+'\x72'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x22'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x22'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x57'+'\x72'+'\x61'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x64'+'\x42'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x2d'+'\x61'+'\x6c'+'\x6c'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x66'+'\x6c'+'\x6f'+'\x77'+'\x58'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x61'+'\x75'+'\x74'+'\x6f'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6d'+'\x61'+'\x78'+'\x57'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x31'+'\x30'+'\x30'+'\x25'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x6f'+'\x78'+'\x53'+'\x69'+'\x7a'+'\x69'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x22'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x59'+'\x32'+'\x78'+'\x68'+'\x63'+'\x32'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x74'+'\x61'+'\x73'+'\x68'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x54'+'\x41'+'\x53'+'\x48'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x68'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x41'+'\x53'+'\x48'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x33'+'\x56'+'\x79'+'\x5a'+'\x32'+'\x55'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x75'+'\x72'+'\x67'+'\x65'+'\x3a'+'\x2f'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x55'+'\x52'+'\x47'+'\x45'+'\x27'+'\x3b'+'\x0a'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x32'+'\x6c'+'\x75'+'\x5a'+'\x32'+'\x4a'+'\x76'+'\x65'+'\x41'+'\x3d'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x69'+'\x6e'+'\x67'+'\x2d'+'\x62'+'\x6f'+'\x78'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x53'+'\x49'+'\x4e'+'\x47'+'\x2d'+'\x42'+'\x4f'+'\x58'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x62'+'\x47'+'\x39'+'\x76'+'\x62'+'\x67'+'\x3d'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6c'+'\x6f'+'\x6f'+'\x6e'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x4c'+'\x4f'+'\x4f'+'\x4e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x69'+'\x65'+'\x6e'+'\x74'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x61'+'\x74'+'\x6f'+'\x62'+'\x28'+'\x27'+'\x63'+'\x58'+'\x56'+'\x68'+'\x62'+'\x6e'+'\x67'+'\x3d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x71'+'\x75'+'\x61'+'\x6e'+'\x74'+'\x75'+'\x6d'+'\x75'+'\x6c'+'\x74'+'\x2d'+'\x78'+'\x3a'+'\x2f'+'\x2f'+'\x69'+'\x6e'+'\x73'+'\x74'+'\x61'+'\x6c'+'\x6c'+'\x2d'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3f'+'\x75'+'\x72'+'\x6c'+'\x3d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'+'\x55'+'\x52'+'\x49'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x6f'+'\x6e'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x51'+'\x55'+'\x41'+'\x4e'+'\x54'+'\x55'+'\x4d'+'\x55'+'\x4c'+'\x54'+'\x20'+'\x58'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x4f'+'\x70'+'\x65'+'\x6e'+'\x41'+'\x70'+'\x70'+'\x28'+'\x73'+'\x63'+'\x68'+'\x65'+'\x6d'+'\x65'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73')+('\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x63'+'\x6c'+'\x69'+'\x70'+'\x62'+'\x6f'+'\x61'+'\x72'+'\x64'+'\x2e'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x54'+'\x65'+'\x78'+'\x74'+'\x28'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x2e'+'\x74'+'\x68'+'\x65'+'\x6e'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x22'+'\x20'+'\x22'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x43'+'\x6f'+'\x70'+'\x69'+'\x65'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x4d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x30'+'\x31'+'\x41'+'\x42'+'\x43'+'\x44'+'\x45'+'\x46'+'\x47'+'\x48'+'\x49'+'\x4a'+'\x4b'+'\x4c'+'\x4d'+'\x4e'+'\x4f'+'\x50'+'\x51'+'\x52'+'\x53'+'\x54'+'\x55'+'\x56'+'\x57'+'\x58'+'\x59'+'\x5a'+'\x61'+'\x62'+'\x63'+'\x64'+'\x65'+'\x66'+'\x67'+'\x68'+'\x69'+'\x6a'+'\x6b'+'\x6c'+'\x6d'+'\x6e'+'\x6f'+'\x70'+'\x71'+'\x72'+'\x73'+'\x74'+'\x75'+'\x76'+'\x77'+'\x78'+'\x79'+'\x7a'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x57'+'\x69'+'\x64'+'\x74'+'\x68'+'\x20'+'\x2f'+'\x20'+'\x31'+'\x38'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x3c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x3b'+'\x20'+'\x69'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x64'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x63'+'\x6c'+'\x61'+'\x73'+'\x73'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x65'+'\x66'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x69'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x38'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x65'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x4d')+('\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x35'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x61'+'\x6e'+'\x69'+'\x6d'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x75'+'\x72'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x31'+'\x35'+'\x20'+'\x2b'+'\x20'+'\x38'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x53'+'\x69'+'\x7a'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x34'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x32'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x70'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x20'+'\x2b'+'\x20'+'\x30'+'\x2e'+'\x32'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x33'+'\x30'+'\x20'+'\x2b'+'\x20'+'\x32'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x6a'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x6a'+'\x20'+'\x3c'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x6a'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x5b'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x6e'+'\x65'+'\x73'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x2e'+'\x31'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x62'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x6e'+'\x65'+'\x73'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x3c'+'\x62'+'\x72'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x49'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x76'+'\x61'+'\x6c'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c')+('\x28'+'\x27'+'\x2e'+'\x6d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x2d'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x35'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x75'+'\x6d'+'\x6e'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x5b'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x23'+'\x66'+'\x66'+'\x66'+'\x66'+'\x66'+'\x66'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x68'+'\x61'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x53'+'\x79'+'\x73'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x66'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x66'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c')+('\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u83b7'+'\u53d6'+'\u5f53'+'\u524d'+'\u8bed'+'\u8a00'+'\u8bbe'+'\u7f6e'+'\uff08'+'\u4f18'+'\u5148'+'\u4ece'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x2f'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\u8bfb'+'\u53d6'+'\uff09'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x2d'+'\x43'+'\x4e'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\u5730'+'\u533a'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u68c0'+'\u6d4b'+'\u65b9'+'\u5f0f'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\u5f53'+'\u524d'+'\u4f7f'+'\u7528'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x27'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x55'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u7f8e'+'\u56fd'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe5)+'\x20'+'\u65b0'+'\u52a0'+'\u5761'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4a'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u65e5'+'\u672c'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4b'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb6)+'\x20'+'\u97e9'+'\u56fd'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u5fb7'+'\u56fd'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa5)+'\x20'+'\u745e'+'\u5178'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe3)+'\x20'+'\u8377'+'\u5170'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x46'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa3)+'\x20'+'\u82ac'+'\u5170'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdc)+'\x20'+'\u82f1'+'\u56fd'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x3a'+'\x20'+'\x27'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\x20'+'\x28'+'\x70'+'\u53d8'+'\u91cf'+'\u542f'+'\u7528'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x65'+'\x73'+'\x63'+'\x3a'+'\x20'+'\x27'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\x20'+'\x28'+'\u5df2'+'\u7981'+'\u7528'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x73'+'\x69'+'\x6e'+'\x67'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\u4f7f'+'\u7528'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x28'+'\x70'+'\u53d8'+'\u91cf'+'\u914d'+'\u7f6e'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u6a21'+'\u5f0f'+'\uff0c'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u5df2'+'\u7981'+'\u7528'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\u5730'+'\u533a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x65'+'\x73'+'\x63'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x28'+'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x41'+'\x76'+'\x61'+'\x69'+'\x6c'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x3a'+'\x20'+'\x27'+'\x31'+'\x30'+'\x2f'+'\x31'+'\x30'+'\x20'+'\u53ef'+'\u7528'+'\x20'+'\x28'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u57df'+'\u540d'+'\u9884'+'\u8bbe'+'\u53ef'+'\u7528'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x6d'+'\x61'+'\x72'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u667a'+'\u80fd'+'\u5c31'+'\u8fd1'+'\u9009'+'\u62e9'+'\u4e2d'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x61'+'\x6d'+'\x65'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\u540c'+'\u5730'+'\u533a'+'\x49'+'\x50'+'\u53ef'+'\u7528'+'\x20'+'\x28'+'\x31'+'\u4e2a'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x44'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\u5185'+'\u7f6e'+'\u68c0'+'\u6d4b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u672a'+'\u77e5'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0631'+'\u0648'+'\u0634'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x49'+'\x50'+'\x20'+'\u0641'+'\u0639'+'\u0644'+'\u06cc'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x55'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u0622'+'\u0645'+'\u0631'+'\u06cc'+'\u06a9'+'\u0627'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe5)+'\x20'+'\u0633'+'\u0646'+'\u06af'+'\u0627'+'\u067e'+'\u0648'+'\u0631'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4a'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x88)+'\x20'+'\u0698'+'\u0627'+'\u067e'+'\u0646'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4b'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb6)+'\x20'+'\u06a9'+'\u0631'+'\u0647'+'\x20'+'\u062c'+'\u0646'+'\u0648'+'\u0628'+'\u06cc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u0622'+'\u0644'+'\u0645'+'\u0627'+'\u0646'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa5)+'\x20'+'\u0633'+'\u0648'+'\u0626'+'\u062f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe3)+'\x20'+'\u0647'+'\u0644'+'\u0646'+'\u062f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x46'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa3)+'\x20'+'\u0641'+'\u0646'+'\u0644'+'\u0627'+'\u0646'+'\u062f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdc)+'\x20'+'\u0628'+'\u0631'+'\u06cc'+'\u062a'+'\u0627'+'\u0646'+'\u06cc'+'\u0627'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x3a'+'\x20'+'\x27'+'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x70'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x65'+'\x73'+'\x63'+'\x3a'+'\x20'+'\x27'+'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x20'+'\x28'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x73'+'\x69'+'\x6e'+'\x67'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x28'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\x70'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u062d'+'\u0627'+'\u0644'+'\u062a'+'\x20'+'\x49'+'\x50'+'\x20'+'\u0633'+'\u0641'+'\u0627'+'\u0631'+'\u0634'+'\u06cc'+'\u060c'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u063a'+'\u06cc'+'\u0631'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x65'+'\x73'+'\x63'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x28'+'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x41'+'\x76'+'\x61'+'\x69'+'\x6c'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x3a'+'\x20'+'\x27'+'\x31'+'\x30'+'\x2f'+'\x31'+'\x30'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\x28'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u067e'+'\u06cc'+'\u0634'+'\u200c'+'\u0641'+'\u0631'+'\u0636'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x6d'+'\x61'+'\x72'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u0647'+'\u0648'+'\u0634'+'\u0645'+'\u0646'+'\u062f'+'\x20'+'\u0646'+'\u0632'+'\u062f'+'\u06cc'+'\u06a9'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0646'+'\u062c'+'\u0627'+'\u0645'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x61'+'\x6d'+'\x65'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x49'+'\x50'+'\x20'+'\u0647'+'\u0645'+'\u200c'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u0631'+'\u0633'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x20'+'\x28'+'\x31'+'\x29'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x44'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u062f'+'\u0627'+'\u062e'+'\u0644'+'\u06cc'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u0646'+'\u0627'+'\u0634'+'\u0646'+'\u0627'+'\u062e'+'\u062a'+'\u0647'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x55'+'\x53'+'\x27'+'\x3b'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u9ed8'+'\u8ba4'+'\u503c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x4d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x66')+('\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u83b7'+'\u53d6'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u7684'+'\u8be6'+'\u7ec6'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x63'+'\x69'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x74'+'\x2e'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u2699\ufe0f'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\ud83d\udd27'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x65'+'\x73'+'\x63'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u663e'+'\u793a'+'\u81ea'+'\u5b9a'+'\u4e49'+'\x49'+'\x50'+'\u914d'+'\u7f6e'+'\u72b6'+'\u6001'+'\uff0c'+'\u5305'+'\u542b'+'\u5177'+'\u4f53'+'\x49'+'\x50'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x29'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20')+('\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\ud83d\udd27'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x75'+'\x73'+'\x69'+'\x6e'+'\x67'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x29'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x29'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u26a0\ufe0f'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u63d0'+'\u524d'+'\u8fd4'+'\u56de'+'\uff0c'+'\u4e0d'+'\u6267'+'\u884c'+'\u540e'+'\u7eed'+'\u7684'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\u903b'+'\u8f91'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\u624b'+'\u52a8'+'\u6307'+'\u5b9a'+'\u5730'+'\u533a'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\u062a'+'\u0639'+'\u06cc'+'\u06cc'+'\u0646'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\u062f'+'\u0633'+'\u062a'+'\u06cc'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x4d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x61'+'\x61'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34')+('\x34'+'\x3b'+'\x22'+'\x3e'+'\ud83c\udfaf'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x5b'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x5d'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x44'+'\x65'+'\x73'+'\x63'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u663e'+'\u793a'+'\u914d'+'\u7f6e'+'\u72b6'+'\u6001'+'\u800c'+'\u4e0d'+'\u662f'+'\u68c0'+'\u6d4b'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x29'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x41'+'\x76'+'\x61'+'\x69'+'\x6c'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x29'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x6d'+'\x61'+'\x72'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x29'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x61'+'\x6d'+'\x65'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u63d0'+'\u524d'+'\u8fd4'+'\u56de'+'\uff0c'+'\u4e0d'+'\u6267'+'\u884c'+'\u540e'+'\u7eed'+'\u7684'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\u903b'+'\u8f91'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x26'+'\x26'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x5b'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x5d'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x6c')+('\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x44'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x73'+'\x5b'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x5d'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u76f4'+'\u63a5'+'\u663e'+'\u793a'+'\u914d'+'\u7f6e'+'\u72b6'+'\u6001'+'\uff0c'+'\u4e0d'+'\u518d'+'\u8fdb'+'\u884c'+'\u68c0'+'\u6d4b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x41'+'\x76'+'\x61'+'\x69'+'\x6c'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x6d'+'\x61'+'\x72'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e')+('\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x73'+'\x61'+'\x6d'+'\x65'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72')+('\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\u5730'+'\u533a'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u68c0'+'\u6d4b'+'\u65b9'+'\u5f0f'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\u5f53'+'\u524d'+'\u4f7f'+'\u7528'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x27'+'\u5730'+'\u533a'+'\u5339'+'\u914d'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x3a'+'\x20'+'\x27'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0631'+'\u0648'+'\u0634'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x27'+'\x49'+'\x50'+'\x20'+'\u0641'+'\u0639'+'\u0644'+'\u06cc'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0637'+'\u0628'+'\u06cc'+'\u0642'+'\x20'+'\u0645'+'\u0646'+'\u0637'+'\u0642'+'\u0647'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x77'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x67'+'\x65'+'\x6f'+'\x49'+'\x6e'+'\x66'+'\x6f'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x75'+'\x70'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x70'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x50'+'\x49'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x3a'+'\x20'+'\x27'+'\x41'+'\x50'+'\x49'+'\u68c0'+'\u6d4b'+'\u7ed3'+'\u679c'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x3a'+'\x20'+'\x27'+'\u68c0'+'\u6d4b'+'\u65f6'+'\u95f4'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x41'+'\x50'+'\x49'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u672a'+'\u77e5'+'\u9519'+'\u8bef'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x41'+'\x50'+'\x49'+'\u6d4b'+'\u8bd5'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x3a'+'\x20'+'\x27'+'\u0646'+'\u062a'+'\u06cc'+'\u062c'+'\u0647'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\x41'+'\x50'+'\x49'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x3a'+'\x20'+'\x27'+'\u0632'+'\u0645'+'\u0627'+'\u0646'+'\x20'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0634'+'\u062e'+'\u06cc'+'\u0635'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u062e'+'\u0637'+'\u0627'+'\u06cc'+'\x20'+'\u0646'+'\u0627'+'\u0634'+'\u0646'+'\u0627'+'\u062e'+'\u062a'+'\u0647'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0633'+'\u062a'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65')+('\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x74'+'\x65'+'\x73'+'\x74'+'\x2d'+'\x61'+'\x70'+'\x69'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x74'+'\x2e'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x64'+'\x65'+'\x74'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x5c'+'\x6e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x73'+'\x74'+'\x61'+'\x6d'+'\x70'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x74'+'\x2e'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x74'+'\x2e'+'\x75'+'\x6e'+'\x6b'+'\x6e'+'\x6f'+'\x77'+'\x6e'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74')+('\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x41'+'\x50'+'\x49'+'\u6d4b'+'\u8bd5'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x20'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u062a'+'\u0633'+'\u062a'+'\x20'+'\x41'+'\x50'+'\x49'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x74'+'\x2e'+'\x61'+'\x70'+'\x69'+'\x54'+'\x65'+'\x73'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u76f8'+'\u5173'+'\u51fd'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x4b'+'\x56'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x61'+'\x70'+'\x69'+'\x2f'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73')+('\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u542f'+'\u7528'+'\u6216'+'\u672a'+'\u914d'+'\u7f6e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x75'+'\x72'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u4f7f'+'\u7528'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u529f'+'\u80fd'+'\u3002'+'\x5c'+'\x6e'+'\x5c'+'\x6e'+'\u8bf7'+'\u5728'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x73'+'\u4e2d'+'\x3a'+'\x5c'+'\x6e'+'\x31'+'\x2e'+'\x20'+'\u521b'+'\u5efa'+'\x4b'+'\x56'+'\u547d'+'\u540d'+'\u7a7a'+'\u95f4'+'\x5c'+'\x6e'+'\x32'+'\x2e'+'\x20'+'\u7ed1'+'\u5b9a'+'\u73af'+'\u5883'+'\u53d8'+'\u91cf'+'\x20'+'\x43'+'\x5c'+'\x6e'+'\x33'+'\x2e'+'\x20'+'\u91cd'+'\u65b0'+'\u90e8'+'\u7f72'+'\u4ee3'+'\u7801'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u2705'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u5df2'+'\u542f'+'\u7528'+'\uff0c'+'\u53ef'+'\u4ee5'+'\u4f7f'+'\u7528'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u529f'+'\u80fd'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x61'+'\x74'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\u54cd'+'\u5e94'+'\u683c'+'\u5f0f'+'\u9519'+'\u8bef'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x20'+'\x2d'+'\x20'+'\u72b6'+'\u6001'+'\u7801'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x20'+'\x2d'+'\x20'+'\u9519'+'\u8bef'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0646'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x75'+'\x72'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u060c'+'\x20'+'\u0646'+'\u0645'+'\u06cc'+'\u200c'+'\u062a'+'\u0648'+'\u0627'+'\u0646'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0639'+'\u0645'+'\u0644'+'\u06a9')+('\u0631'+'\u062f'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x2e'+'\x5c'+'\x6e'+'\x5c'+'\x6e'+'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x73'+'\x3a'+'\x5c'+'\x6e'+'\x31'+'\x2e'+'\x20'+'\u0641'+'\u0636'+'\u0627'+'\u06cc'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0627'+'\u06cc'+'\u062c'+'\u0627'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x5c'+'\x6e'+'\x32'+'\x2e'+'\x20'+'\u0645'+'\u062a'+'\u063a'+'\u06cc'+'\u0631'+'\x20'+'\u0645'+'\u062d'+'\u06cc'+'\u0637'+'\u06cc'+'\x20'+'\x43'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u067e'+'\u06cc'+'\u0648'+'\u0646'+'\u062f'+'\x20'+'\u062f'+'\u0647'+'\u06cc'+'\u062f'+'\x5c'+'\x6e'+'\x33'+'\x2e'+'\x20'+'\u06a9'+'\u062f'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u062f'+'\u0648'+'\u0628'+'\u0627'+'\u0631'+'\u0647'+'\x20'+'\u0645'+'\u0633'+'\u062a'+'\u0642'+'\u0631'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u2705'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u060c'+'\x20'+'\u0645'+'\u06cc'+'\u200c'+'\u062a'+'\u0648'+'\u0627'+'\u0646'+'\u06cc'+'\u062f'+'\x20'+'\u0627'+'\u0632'+'\x20'+'\u0645'+'\u062f'+'\u06cc'+'\u0631'+'\u06cc'+'\u062a'+'\x20'+'\u062a'+'\u0646'+'\u0638'+'\u06cc'+'\u0645'+'\u0627'+'\u062a'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\u0641'+'\u0627'+'\u062f'+'\u0647'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x61'+'\x74'+'\x3a'+'\x20'+'\x27'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x3a'+'\x20'+'\u062e'+'\u0637'+'\u0627'+'\u06cc'+'\x20'+'\u0641'+'\u0631'+'\u0645'+'\u062a'+'\x20'+'\u067e'+'\u0627'+'\u0633'+'\u062e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x27'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\x2d'+'\x20'+'\u06a9'+'\u062f'+'\x20'+'\u0648'+'\u0636'+'\u0639'+'\u06cc'+'\u062a'+'\x3a'+'\x20'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\x2d'+'\x20'+'\u062e'+'\u0637'+'\u0627'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x35'+'\x30'+'\x33'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\x4b'+'\x56'+'\u672a'+'\u914d'+'\u7f6e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x75'+'\x72'+'\x65'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u68c0'+'\u67e5'+'\u54cd'+'\u5e94'+'\u662f'+'\u5426'+'\u5305'+'\u542b'+'\x4b'+'\x56'+'\u914d'+'\u7f6e'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x26'+'\x26'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x43'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x4e'+'\x6f'+'\x74'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x61'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42')+('\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x32'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x6f'+'\x70'+'\x28'+'\x29'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x3b'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x68'+'\x69'+'\x66'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x6c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x61'+'\x76'+'\x69'+'\x67'+'\x61'+'\x74'+'\x6f'+'\x72'+'\x2e'+'\x75'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6f'+'\x6b'+'\x69'+'\x65'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x75'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73')+('\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x27'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x62'+'\x72'+'\x6f'+'\x77'+'\x73'+'\x65'+'\x72'+'\x4c'+'\x61'+'\x6e'+'\x67'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x66'+'\x61'+'\x2d'+'\x49'+'\x52'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7a'+'\x68'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u542f'+'\u7528'+'\u6216'+'\u672a'+'\u914d'+'\u7f6e'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x20'+'\x2d'+'\x20'+'\u9519'+'\u8bef'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x61'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+'\x27'+'\u26a0\ufe0f'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0641'+'\u0639'+'\u0627'+'\u0644'+'\x20'+'\u0646'+'\u06cc'+'\u0633'+'\u062a'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u067e'+'\u06cc'+'\u06a9'+'\u0631'+'\u0628'+'\u0646'+'\u062f'+'\u06cc'+'\x20'+'\u0646'+'\u0634'+'\u062f'+'\u0647'+'\x20'+'\u0627'+'\u0633'+'\u062a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\u0628'+'\u0631'+'\u0631'+'\u0633'+'\u06cc'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\u200c'+'\u0633'+'\u0627'+'\u0632'+'\u06cc'+'\x20'+'\x4b'+'\x56'+'\x20'+'\u0646'+'\u0627'+'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\x20'+'\x2d'+'\x20'+'\u062e'+'\u0637'+'\u0627'+'\x3a'+'\x20'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x61'+'\x6e'+'\x73'+'\x6c'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73'+'\x5b'+'\x69'+'\x73'+'\x46'+'\x61'+'\x72'+'\x73'+'\x69'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x66'+'\x61'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x7a'+'\x68'+'\x27'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6b'+'\x76'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x44'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x43'+'\x61'+'\x72'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x2e'+'\x6b'+'\x76'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x46'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64')+('\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x43'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x61'+'\x70'+'\x69'+'\x2f'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x35'+'\x30'+'\x33'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u52a0'+'\u8f7d'+'\u914d'+'\u7f6e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\u52a0'+'\u8f7d'+'\u914d'+'\u7f6e'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8fc7'+'\u6ee4'+'\u6389'+'\u5185'+'\u90e8'+'\u5b57'+'\u6bb5'+'\x20'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x5b'+'\x6b'+'\x65'+'\x79'+'\x2c'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x5d'+'\x20'+'\x6f'+'\x66'+'\x20'+'\x4f'+'\x62'+'\x6a'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x65'+'\x6e'+'\x74'+'\x72'+'\x69'+'\x65'+'\x73'+'\x28')+('\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6b'+'\x65'+'\x79'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6b'+'\x76'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x5b'+'\x6b'+'\x65'+'\x79'+'\x5d'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\u5f53'+'\u524d'+'\u914d'+'\u7f6e'+'\x3a'+'\x5c'+'\x6e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x4f'+'\x62'+'\x6a'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x6b'+'\x65'+'\x79'+'\x73'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x29'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x27'+'\x28'+'\u6682'+'\u65e0'+'\u914d'+'\u7f6e'+'\x29'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x5b'+'\x6b'+'\x65'+'\x79'+'\x2c'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x5d'+'\x20'+'\x6f'+'\x66'+'\x20'+'\x4f'+'\x62'+'\x6a'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x65'+'\x6e'+'\x74'+'\x72'+'\x69'+'\x65'+'\x73'+'\x28'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x6b'+'\x65'+'\x79'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x28'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x28'+'\u672a'+'\u8bbe'+'\u7f6e'+'\x29'+'\x27'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x5c'+'\x6e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x54'+'\x65'+'\x78'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\u8868'+'\u5355'+'\u503c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x77'+'\x6b'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x76'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x76'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x74'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x63'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x70'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x74'+'\x70'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x63'+'\x75'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x73'+'\x63'+'\x75'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x70'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x70'+'\x64'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x70'+'\x69'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x70'+'\x69'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x67'+'\x69'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x65'+'\x67'+'\x69'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x34'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x29'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d')+('\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x34'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x69'+'\x70'+'\x76'+'\x34'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x36'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x29'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x36'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x69'+'\x70'+'\x76'+'\x36'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x27'+'\x29'+'\x29'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x29'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x61'+'\x74'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x64'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x70'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x79'+'\x78'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e')+('\x66'+'\x69'+'\x67'+'\x2e'+'\x73'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x61'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x72'+'\x6d'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x71'+'\x6a'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x64'+'\x6b'+'\x62'+'\x79'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x79'+'\x78'+'\x62'+'\x79'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\u8def'+'\u5f84'+'\u7c7b'+'\u578b'+'\u663e'+'\u793a'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x50'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2e'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u68c0'+'\u67e5'+'\x70'+'\u53d8'+'\u91cf'+'\uff0c'+'\u5982'+'\u679c'+'\u6709'+'\u503c'+'\u5219'+'\u7981'+'\u7528'+'\x77'+'\x6b'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x57'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\u52a0'+'\u8f7d'+'\u914d'+'\u7f6e'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\u8def'+'\u5f84'+'\u7c7b'+'\u578b'+'\u663e'+'\u793a'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f')+('\x6e'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x50'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x63'+'\x70'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2f'+'\x27'+'\x29'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x70'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x70'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x50'+'\x61'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x20'+'\x3f'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x30'+'\x5d'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x70'+'\x20'+'\x26'+'\x26'+'\x20'+'\x63'+'\x70'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4f7f'+'\u7528'+'\u81ea'+'\u5b9a'+'\u4e49'+'\u8def'+'\u5f84'+'\x20'+'\x28'+'\x64'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u4f7f'+'\u7528'+'\u7c7b'+'\u578b'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x74'+'\x72'+'\x6f'+'\x6e'+'\x67'+'\x3e'+'\u81ea'+'\u5b9a'+'\u4e49'+'\u8def'+'\u5f84'+'\x20'+'\x28'+'\x64'+'\x29'+'\x3c'+'\x2f'+'\x73'+'\x74'+'\x72'+'\x6f'+'\x6e'+'\x67'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u5f53'+'\u524d'+'\u8def'+'\u5f84'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x70'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u8bbf'+'\u95ee'+'\u5730'+'\u5740'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2f'+'\x27'+'\x29'+'\x5b'+'\x30'+'\x5d'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2f'+'\x27'+'\x29'+'\x5b'+'\x32'+'\x5d'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x70'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x73'+'\x75'+'\x62'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4f7f'+'\u7528'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\x28'+'\x75'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x61'+'\x74'+'\x68'+'\x54'+'\x79'+'\x70'+'\x65'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c')+('\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u4f7f'+'\u7528'+'\u7c7b'+'\u578b'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x74'+'\x72'+'\x6f'+'\x6e'+'\x67'+'\x3e'+'\x55'+'\x55'+'\x49'+'\x44'+'\x20'+'\u8def'+'\u5f84'+'\x20'+'\x28'+'\x75'+'\x29'+'\x3c'+'\x2f'+'\x73'+'\x74'+'\x72'+'\x6f'+'\x6e'+'\x67'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u5f53'+'\u524d'+'\u8def'+'\u5f84'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x50'+'\x61'+'\x74'+'\x68'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x28'+'\x55'+'\x55'+'\x49'+'\x44'+'\x29'+'\x27'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x3c'+'\x64'+'\x69'+'\x76'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x74'+'\x6f'+'\x70'+'\x3a'+'\x20'+'\x35'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x39'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u8bbf'+'\u95ee'+'\u5730'+'\u5740'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2f'+'\x73'+'\x75'+'\x62'+'\x27'+'\x29'+'\x5b'+'\x30'+'\x5d'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x73'+'\x75'+'\x62'+'\x3c'+'\x2f'+'\x64'+'\x69'+'\x76'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\x77'+'\x6b'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u7684'+'\u542f'+'\u7528'+'\x2f'+'\u7981'+'\u7528'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x57'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x26'+'\x26'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x68'+'\x61'+'\x73'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x61'+'\x73'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6dfb'+'\u52a0'+'\u89c6'+'\u89c9'+'\u53cd'+'\u9988'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x68'+'\x61'+'\x73'+'\x43'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x30'+'\x2e'+'\x35'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x74'+'\x2d'+'\x61'+'\x6c'+'\x6c'+'\x6f'+'\x77'+'\x65'+'\x64'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x35'+'\x29'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u663e'+'\u793a'+'\u63d0'+'\u793a'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x6f'+'\x70'+'\x61'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x31'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x29'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u9690'+'\u85cf'+'\u63d0'+'\u793a'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x48'+'\x69'+'\x6e'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x61'+'\x70'+'\x69')+('\x2f'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x61'+'\x70'+'\x69'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x50'+'\x4f'+'\x53'+'\x54'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x54'+'\x79'+'\x70'+'\x65'+'\x27'+'\x3a'+'\x20'+'\x27'+'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x27'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3a'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x2e'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x35'+'\x30'+'\x33'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u4fdd'+'\u5b58'+'\u914d'+'\u7f6e'+'\u3002'+'\u8bf7'+'\u5148'+'\u5728'+'\x43'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x20'+'\x57'+'\x6f'+'\x72'+'\x6b'+'\x65'+'\x72'+'\x73'+'\u4e2d'+'\u914d'+'\u7f6e'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u3002'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5c1d'+'\u8bd5'+'\u89e3'+'\u6790'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x20'+'\u9519'+'\u8bef'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x2e'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x44'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\u4fdd'+'\u5b58'+'\u5931'+'\u8d25'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\u4e0d'+'\u662f'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\uff0c')+('\u76f4'+'\u63a5'+'\u663e'+'\u793a'+'\u6587'+'\u672c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\u4fdd'+'\u5b58'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x43'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\x77'+'\x6b'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x57'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4fdd'+'\u5b58'+'\u6210'+'\u529f'+'\u540e'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\u4ee5'+'\u66f4'+'\u65b0'+'\u7cfb'+'\u7edf'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x72'+'\x65'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x35'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\u4fdd'+'\u5b58'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76')+('\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x4d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x23'+'\x66'+'\x66'+'\x30'+'\x30'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x23'+'\x66'+'\x66'+'\x30'+'\x30'+'\x30'+'\x30'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x33'+'\x30'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x72'+'\x65'+'\x73'+'\x65'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x72'+'\x6d'+'\x28'+'\x27'+'\u786e'+'\u5b9a'+'\u8981'+'\u91cd'+'\u7f6e'+'\u6240'+'\u6709'+'\u914d'+'\u7f6e'+'\u5417'+'\uff1f'+'\u8fd9'+'\u5c06'+'\u6e05'+'\u7a7a'+'\u6240'+'\u6709'+'\x4b'+'\x56'+'\u914d'+'\u7f6e'+'\uff0c'+'\u6062'+'\u590d'+'\u4e3a'+'\u73af'+'\u5883'+'\u53d8'+'\u91cf'+'\u8bbe'+'\u7f6e'+'\u3002'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x70'+'\x61'+'\x74'+'\x68'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x61'+'\x70'+'\x69'+'\x2f'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x2c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x50'+'\x4f'+'\x53'+'\x54'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x20'+'\x27'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x54'+'\x79'+'\x70'+'\x65'+'\x27'+'\x3a'+'\x20'+'\x27'+'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x27'+'\x20'+'\x7d'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3a'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x2e'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79'+'\x28'+'\x7b'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x6b'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x70'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x65'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x71'+'\x6a'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6b'+'\x62'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x62'+'\x79'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x76'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x74'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x70'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x73'+'\x63'+'\x75'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x70'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x70'+'\x69'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x67'+'\x69'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x76'+'\x34'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x69'+'\x70'+'\x76'+'\x36'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x35'+'\x30'+'\x33'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u91cd'+'\u7f6e'+'\u914d'+'\u7f6e'+'\u3002'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5c1d'+'\u8bd5'+'\u89e3'+'\u6790'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x20'+'\u9519'+'\u8bef'+'\u4fe1'+'\u606f'+'\x0a'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x2e'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x44'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\u91cd'+'\u7f6e'+'\u5931'+'\u8d25'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\u4e0d'+'\u662f'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\uff0c'+'\u76f4'+'\u63a5'+'\u663e'+'\u793a'+'\u6587'+'\u672c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\u91cd'+'\u7f6e'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x54'+'\x65'+'\x78'+'\x74'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6a'+'\x73'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\u914d'+'\u7f6e'+'\u5df2'+'\u91cd'+'\u7f6e'+'\x27'+'\x2c'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x43'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\x77'+'\x6b'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x57'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5237'+'\u65b0'+'\u9875'+'\u9762'+'\u4ee5'+'\u66f4'+'\u65b0'+'\u7cfb'+'\u7edf'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63')+('\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x72'+'\x65'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x2c'+'\x20'+'\x31'+'\x35'+'\x30'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'+'\u91cd'+'\u7f6e'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x45'+'\x43'+'\x48'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x77'+'\x69'+'\x6e'+'\x64'+'\x6f'+'\x77'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2e'+'\x68'+'\x72'+'\x65'+'\x66'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x73'+'\x75'+'\x62'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x43'+'\x48'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u68c0'+'\u6d4b'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x73'+'\x75'+'\x62'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x3a'+'\x20'+'\x27'+'\x47'+'\x45'+'\x54'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73'+'\x3a'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x63'+'\x63'+'\x65'+'\x70'+'\x74'+'\x27'+'\x3a'+'\x20'+'\x27'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x70'+'\x6c'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x48'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x28'+'\x27'+'\x58'+'\x2d'+'\x45'+'\x43'+'\x48'+'\x2d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x63'+'\x68'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x28'+'\x27'+'\x58'+'\x2d'+'\x45'+'\x43'+'\x48'+'\x2d'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x2d'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x48'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x4e'+'\x41'+'\x42'+'\x4c'+'\x45'+'\x44'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x43'+'\x48'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x34'+'\x34'+'\x66'+'\x66'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u2705'+'\x20'+'\u5df2'+'\u542f'+'\u7528'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x28'+'\x65'+'\x63'+'\x68'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x20'+'\x28'+'\u914d'+'\u7f6e'+'\u957f'+'\u5ea6'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x63'+'\x68'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x29'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x43'+'\x48'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\u26a0\ufe0f'+'\x20'+'\u672a'+'\u542f'+'\u7528'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x45'+'\x6c'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x45'+'\x43'+'\x48'+'\u72b6'+'\u6001'+'\x3a'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x34'+'\x34'+'\x34'+'\x34'+'\x3b'+'\x22'+'\x3e'+'\u274c'+'\x20'+'\u68c0'+'\u6d4b'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x44'+'\x4f'+'\x4d'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x64'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x4d'+'\x61'+'\x74'+'\x72'+'\x69'+'\x78'+'\x52'+'\x61'+'\x69'+'\x6e'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x53'+'\x79'+'\x73'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x4b'+'\x56'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x45'+'\x43'+'\x48'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u5f00'+'\u542f'+'\u65f6'+'\u81ea'+'\u52a8'+'\u8054'+'\u52a8'+'\u5f00'+'\u542f'+'\u4ec5'+'\x54'+'\x4c'+'\x53'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x63'+'\x68'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x63'+'\x68'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x26'+'\x26'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u5f00'+'\u542f'+'\u65f6'+'\uff0c'+'\u81ea'+'\u52a8'+'\u8bbe'+'\u7f6e'+'\u4ec5'+'\x54'+'\x4c'+'\x53'+'\u4e3a'+'\x20'+'\x79'+'\x65'+'\x73'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u9875'+'\u9762'+'\u52a0'+'\u8f7d'+'\u65f6'+'\uff0c'+'\u5982'+'\u679c'+'\x20'+'\x45'+'\x43'+'\x48'+'\x20'+'\u5df2'+'\u52fe'+'\u9009'+'\uff0c'+'\u4e5f'+'\u81ea'+'\u52a8'+'\u8bbe'+'\u7f6e'+'\u4ec5'+'\x54'+'\x4c'+'\x53'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x65'+'\x63'+'\x68'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u76d1'+'\u542c'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\u8f93'+'\u5165'+'\u6846'+'\u53d8'+'\u5316'+'\uff0c'+'\u5b9e'+'\u65f6'+'\u66f4'+'\u65b0'+'\x77'+'\x6b'+'\u5730'+'\u533a'+'\u9009'+'\u62e9'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x57'+'\x6b'+'\x52'+'\x65'+'\x67')+('\x69'+'\x6f'+'\x6e'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u7ed1'+'\u5b9a'+'\u8868'+'\u5355'+'\u4e8b'+'\u4ef6'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x2e'+'\x70'+'\x72'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x7b'+'\x20'+'\x77'+'\x6b'+'\x3a'+'\x20'+'\x77'+'\x6b'+'\x52'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x50'+'\x72'+'\x6f'+'\x74'+'\x6f'+'\x63'+'\x6f'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x2e'+'\x70'+'\x72'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x76'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x76'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x74'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x0a'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x70'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x70'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x76'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x27'+'\u81f3'+'\u5c11'+'\u9700'+'\u8981'+'\u542f'+'\u7528'+'\u4e00'+'\u4e2a'+'\u534f'+'\u8bae'+'\uff01'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6f'+'\x74'+'\x68'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6f')+('\x74'+'\x68'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6f'+'\x74'+'\x68'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x74'+'\x68'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x2e'+'\x70'+'\x72'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x20'+'\x65'+'\x76'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x76'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x74'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x63'+'\x68'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x63'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x70'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x70'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x50'+'\x61'+'\x74'+'\x68'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x48'+'\x6f'+'\x6d'+'\x65'+'\x70'+'\x61'+'\x67'+'\x65'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x3a')+('\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u786e'+'\u4fdd'+'\u81f3'+'\u5c11'+'\u9009'+'\u62e9'+'\u4e00'+'\u4e2a'+'\u534f'+'\u8bae'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x76'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x26'+'\x26'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x21'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x78'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x27'+'\u81f3'+'\u5c11'+'\u9700'+'\u8981'+'\u542f'+'\u7528'+'\u4e00'+'\u4e2a'+'\u534f'+'\u8bae'+'\uff01'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x64'+'\x76'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x46'+'\x6f'+'\x72'+'\x6d'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x73'+'\x75'+'\x62'+'\x6d'+'\x69'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x65'+'\x2e'+'\x70'+'\x72'+'\x65'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x44'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x20'+'\x73'+'\x63')+('\x75'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x63'+'\x75'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x20'+'\x65'+'\x70'+'\x64'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x70'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x70'+'\x69'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x70'+'\x69'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x67'+'\x69'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x65'+'\x67'+'\x69'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x65'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x61'+'\x70'+'\x69'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x6d'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x65'+'\x67'+'\x69'+'\x6f'+'\x6e'+'\x4d'+'\x61'+'\x74'+'\x63'+'\x68'+'\x69'+'\x6e'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x71'+'\x6a'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x64'+'\x6f'+'\x77'+'\x6e'+'\x67'+'\x72'+'\x61'+'\x64'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6b'+'\x62'+'\x79'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x62'+'\x79'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x70'+'\x72'+'\x65'+'\x66'+'\x65'+'\x72'+'\x72'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x76'+'\x34'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x34'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x76'+'\x36'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x76'+'\x36'+'\x45'+'\x6e'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x4d'+'\x6f'+'\x62'+'\x69'+'\x6c'+'\x65'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x55'+'\x6e'+'\x69'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x73'+'\x70'+'\x54'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x6f'+'\x6d'+'\x27'+'\x29'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x79'+'\x65'+'\x73'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x44'+'\x69'+'\x76'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x54'+'\x6f'+'\x59'+'\x78'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x54'+'\x6f'+'\x59'+'\x78'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63')+('\x74'+'\x41'+'\x6c'+'\x6c'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x44'+'\x69'+'\x76'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x44'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x44'+'\x69'+'\x76'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x44'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x29'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x29'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x61')+('\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u521d'+'\u59cb'+'\u5316'+'\u65f6'+'\uff0c'+'\u5982'+'\u679c'+'\u9ed8'+'\u8ba4'+'\u662f'+'\u9690'+'\u85cf'+'\u7684'+'\uff0c'+'\u5219'+'\u7981'+'\u7528'+'\u8f93'+'\u5165'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x20'+'\x26'+'\x26'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x29'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64')+('\x73'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x64'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5f53'+'\u9690'+'\u85cf'+'\u65f6'+'\u7981'+'\u7528'+'\u8f93'+'\u5165'+'\u6846'+'\uff0c'+'\u907f'+'\u514d'+'\u8868'+'\u5355'+'\u9a8c'+'\u8bc1'+'\u9519'+'\u8bef'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x43'+'\x46'+'\x5f'+'\x43'+'\x49'+'\x44'+'\x52'+'\x5f'+'\x4c'+'\x49'+'\x53'+'\x54'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x31'+'\x37'+'\x33'+'\x2e'+'\x32'+'\x34'+'\x35'+'\x2e'+'\x34'+'\x38'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x30'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x30'+'\x33'+'\x2e'+'\x32'+'\x31'+'\x2e'+'\x32'+'\x34'+'\x34'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x32'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x30'+'\x33'+'\x2e'+'\x32'+'\x32'+'\x2e'+'\x32'+'\x30'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x32'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x30'+'\x33'+'\x2e'+'\x33'+'\x31'+'\x2e'+'\x34'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x32'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x31'+'\x34'+'\x31'+'\x2e'+'\x31'+'\x30'+'\x31'+'\x2e'+'\x36'+'\x34'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x38'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x30'+'\x38'+'\x2e'+'\x31'+'\x36'+'\x32'+'\x2e'+'\x31'+'\x39'+'\x32'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x38'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x39'+'\x30'+'\x2e'+'\x39'+'\x33'+'\x2e'+'\x32'+'\x34'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x30'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x38'+'\x38'+'\x2e'+'\x31'+'\x31'+'\x34'+'\x2e'+'\x39'+'\x36'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x30'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x31'+'\x39'+'\x37'+'\x2e'+'\x32'+'\x33'+'\x34'+'\x2e'+'\x32'+'\x34'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x32'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x39'+'\x38'+'\x2e'+'\x34'+'\x31'+'\x2e'+'\x31'+'\x32'+'\x38'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x37'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x36'+'\x32'+'\x2e'+'\x31'+'\x35'+'\x38'+'\x2e'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x35'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x30'+'\x34'+'\x2e'+'\x31'+'\x36'+'\x2e'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x33'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x31'+'\x30'+'\x34'+'\x2e'+'\x32'+'\x34'+'\x2e'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x34'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x37'+'\x32'+'\x2e'+'\x36'+'\x34'+'\x2e'+'\x30'+'\x2e'+'\x30'+'\x2f'+'\x31'+'\x33'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x31'+'\x33'+'\x31'+'\x2e'+'\x30'+'\x2e'+'\x37'+'\x32'+'\x2e'+'\x30'+'\x2f'+'\x32'+'\x32'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x46'+'\x72'+'\x6f'+'\x6d'+'\x43'+'\x49'+'\x44'+'\x52'+'\x28'+'\x63'+'\x69'+'\x64'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x5b'+'\x62'+'\x61'+'\x73'+'\x65'+'\x49'+'\x50'+'\x2c'+'\x20'+'\x70'+'\x72'+'\x65'+'\x66'+'\x69'+'\x78'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x5d'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x64'+'\x72'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2f'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x72'+'\x65'+'\x66'+'\x69'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x70'+'\x72'+'\x65'+'\x66'+'\x69'+'\x78'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x42'+'\x69'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x33'+'\x32'+'\x20'+'\x2d'+'\x20'+'\x70'+'\x72'+'\x65'+'\x66'+'\x69'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x62'+'\x61'+'\x73'+'\x65'+'\x49'+'\x50'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2e'+'\x27'+'\x29'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x70'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x70'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x49'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x69'+'\x70'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x30'+'\x5d'+'\x20'+'\x3c'+'\x3c'+'\x20'+'\x32'+'\x34'+'\x29'+'\x20'+'\x7c'+'\x20'+'\x28'+'\x69'+'\x70'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x31'+'\x5d'+'\x20'+'\x3c'+'\x3c'+'\x20'+'\x31'+'\x36'+'\x29'+'\x20'+'\x7c'+'\x20'+'\x28'+'\x69'+'\x70'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x32'+'\x5d'+'\x20'+'\x3c'+'\x3c'+'\x20'+'\x38'+'\x29'+'\x20'+'\x7c'+'\x20'+'\x69')+('\x70'+'\x50'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x33'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x4f'+'\x66'+'\x66'+'\x73'+'\x65'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x70'+'\x6f'+'\x77'+'\x28'+'\x32'+'\x2c'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x42'+'\x69'+'\x74'+'\x73'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6d'+'\x61'+'\x73'+'\x6b'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x30'+'\x78'+'\x46'+'\x46'+'\x46'+'\x46'+'\x46'+'\x46'+'\x46'+'\x46'+'\x20'+'\x3c'+'\x3c'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x42'+'\x69'+'\x74'+'\x73'+'\x29'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x28'+'\x28'+'\x69'+'\x70'+'\x49'+'\x6e'+'\x74'+'\x20'+'\x26'+'\x20'+'\x6d'+'\x61'+'\x73'+'\x6b'+'\x29'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x30'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x4f'+'\x66'+'\x66'+'\x73'+'\x65'+'\x74'+'\x29'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x5b'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x32'+'\x34'+'\x29'+'\x20'+'\x26'+'\x20'+'\x30'+'\x78'+'\x46'+'\x46'+'\x2c'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x31'+'\x36'+'\x29'+'\x20'+'\x26'+'\x20'+'\x30'+'\x78'+'\x46'+'\x46'+'\x2c'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x3e'+'\x3e'+'\x3e'+'\x20'+'\x38'+'\x29'+'\x20'+'\x26'+'\x20'+'\x30'+'\x78'+'\x46'+'\x46'+'\x2c'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x20'+'\x26'+'\x20'+'\x30'+'\x78'+'\x46'+'\x46'+'\x5d'+'\x2e'+'\x6a'+'\x6f'+'\x69'+'\x6e'+'\x28'+'\x27'+'\x2e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x3c'+'\x20'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x3b'+'\x20'+'\x69'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x64'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x43'+'\x46'+'\x5f'+'\x43'+'\x49'+'\x44'+'\x52'+'\x5f'+'\x4c'+'\x49'+'\x53'+'\x54'+'\x5b'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x66'+'\x6c'+'\x6f'+'\x6f'+'\x72'+'\x28'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x28'+'\x29'+'\x20'+'\x2a'+'\x20'+'\x43'+'\x46'+'\x5f'+'\x43'+'\x49'+'\x44'+'\x52'+'\x5f'+'\x4c'+'\x49'+'\x53'+'\x54'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x29'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x46'+'\x72'+'\x6f'+'\x6d'+'\x43'+'\x49'+'\x44'+'\x52'+'\x28'+'\x63'+'\x69'+'\x64'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x73'+'\x2e'+'\x70'+'\x75'+'\x73'+'\x68'+'\x28'+'\x69'+'\x70'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x69'+'\x70'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x53'+'\x74'+'\x6f'+'\x72'+'\x61'+'\x67'+'\x65'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x28'+'\x27'+'\x69'+'\x70'+'\x53'+'\x6f'+'\x75'+'\x72'+'\x63'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x75'+'\x72'+'\x6c'+'\x46'+'\x65'+'\x74'+'\x63'+'\x68'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5f53'+'\u9690'+'\u85cf'+'\u65f6'+'\u7981'+'\u7528'+'\u8f93'+'\u5165'+'\u6846'+'\uff0c'+'\u907f'+'\u514d'+'\u8868'+'\u5355'+'\u9a8c'+'\u8bc1'+'\u9519'+'\u8bef'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x66'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x43'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x32'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e')+('\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x34'+'\x34'+'\x33'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x70'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x67'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x61'+'\x74'+'\x65'+'\x43'+'\x46'+'\x52'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x70'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x69'+'\x6e'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'))+(RK?'\u062a'+'\u0648'+'\u0644'+'\u06cc'+'\u062f'+'\x20'+'\u0634'+'\u062f':'\u5df2'+'\u751f'+'\u6210')+('\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20')+(RK?'\x49'+'\x50'+'\x20'+'\u062a'+'\u0635'+'\u0627'+'\u062f'+'\u0641'+'\u06cc'+'\x20'+'\x43'+'\x46':'\u4e2a'+'\x43'+'\x46'+'\u968f'+'\u673a'+'\x49'+'\x50')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x52'+'\x4c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x65'+'\x72'+'\x74'+'\x28'+'\x27')+(RK?'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\x55'+'\x52'+'\x4c'+'\x20'+'\u0631'+'\u0627'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f':'\u8bf7'+'\u8f93'+'\u5165'+'\x55'+'\x52'+'\x4c')+('\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x2e'+'\x2e'+'\x2e':'\u83b7'+'\u53d6'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u652f'+'\u6301'+'\u591a'+'\u4e2a'+'\x20'+'\x55'+'\x52'+'\x4c'+'\uff08'+'\u9017'+'\u53f7'+'\u5206'+'\u9694'+'\uff09'+'\u4ee5'+'\u53ca'+'\u8fd4'+'\u56de'+'\u5185'+'\u5bb9'+'\u4e2d'+'\u9017'+'\u53f7'+'\u5206'+'\u9694'+'\u7684'+'\u591a'+'\u4e2a'+'\x20'+'\x49'+'\x50'+'\x2f'+'\u8282'+'\u70b9'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x41'+'\x72'+'\x72'+'\x61'+'\x79'+'\x2e'+'\x66'+'\x72'+'\x6f'+'\x6d'+'\x28'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x53'+'\x65'+'\x74'+'\x28'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x55'+'\x72'+'\x6c'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x75'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x75'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x29'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x75'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x75'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x75'+'\x20'+'\x6f'+'\x66'+'\x20'+'\x75'+'\x72'+'\x6c'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x75'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x68'+'\x72'+'\x6f'+'\x77'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x28'+'\x27'+'\x48'+'\x54'+'\x54'+'\x50'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20'+'\x40'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x75'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5148'+'\u6309'+'\u884c'+'\u5206'+'\u5272'+'\uff0c'+'\u518d'+'\u5728'+'\u6bcf'+'\u884c'+'\u5185'+'\u6309'+'\u9017'+'\u53f7'+'\u5206'+'\u5272'+'\uff0c'+'\u517c'+'\u5bb9'+'\u201c'+'\u591a'+'\u884c'+'\x20'+'\x2b'+'\x20'+'\u9017'+'\u53f7'+'\u5206'+'\u9694'+'\u201d'+'\u4e24'+'\u79cd'+'\u683c'+'\u5f0f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x65'+'\x72'+'\x55'+'\x72'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x2f'+'\x5c'+'\x72'+'\x3f'+'\x5c'+'\x6e'+'\x2f'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x6c'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x6c'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x6c'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x6c'+'\x20'+'\x26'+'\x26'+'\x20'+'\x21'+'\x6c'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68'+'\x28'+'\x27'+'\x23'+'\x27'+'\x29'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x66'+'\x6c'+'\x61'+'\x74'+'\x4d'+'\x61'+'\x70'+'\x28'+'\x6c'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x6c'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x70'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x70'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x29'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x70'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x70'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x70'+'\x75'+'\x73'+'\x68'+'\x28'+'\x2e'+'\x2e'+'\x2e'+'\x70'+'\x65'+'\x72'+'\x55'+'\x72'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x61'+'\x6c'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x69'+'\x6e'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x75'+'\x61'+'\x6c'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'))+(RK?'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\u0634'+'\u062f':'\u5df2'+'\u83b7'+'\u53d6')+('\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20')+(RK?'\x49'+'\x50':'\u4e2a'+'\x49'+'\x50')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u062f'+'\u0627'+'\u062f'+'\u0647'+'\u200c'+'\u0627'+'\u06cc'+'\x20'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\u0646'+'\u0634'+'\u062f':'\u672a'+'\u83b7'+'\u53d6'+'\u5230'+'\u6570'+'\u636e')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u062e'+'\u0637'+'\u0627'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a':'\u83b7'+'\u53d6'+'\u5931'+'\u8d25')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x49'+'\x50'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\u2b07'+'\x20')+(RK?'\u062f'+'\u0631'+'\u06cc'+'\u0627'+'\u0641'+'\u062a'+'\x20'+'\x49'+'\x50':'\u83b7'+'\u53d6'+'\x49'+'\x50')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x74'+'\x65'+'\x73'+'\x74'+'\x54'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x34'+'\x34'+'\x33'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x46'+'\x69'+'\x65'+'\x6c'+'\x64'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x35'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\x49'+'\x50'+'\x20'+'\u06cc'+'\u0627'+'\x20'+'\u062f'+'\u0627'+'\u0645'+'\u0646'+'\u0647'+'\x20'+'\u0648'+'\u0627'+'\u0631'+'\u062f'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f':'\u8bf7'+'\u8f93'+'\u5165'+'\x49'+'\x50'+'\u6216'+'\u57df'+'\u540d')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x74'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x74'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x29'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x74'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x44'+'\x69'+'\x76'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x74'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x54'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x28'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x65'+'\x66'+'\x61'+'\x75'+'\x6c'+'\x74'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x23'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x23'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x31'+'\x5d'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x30'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x3a'+'\x27'+'\x29'+'\x20'+'\x26'+'\x26'+'\x20'+'\x21'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68'+'\x28'+'\x27'+'\x5b'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x61'+'\x73'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x6c'+'\x61'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66'+'\x28'+'\x27'+'\x3a'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x73'+'\x69'+'\x62'+'\x6c'+'\x65'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x6c'+'\x61'+'\x73'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x2f'+'\x5e'+'\x5b'+'\x30'+'\x2d'+'\x39'+'\x5d'+'\x2b'+'\x24'+'\x2f'+'\x2e'+'\x74'+'\x65'+'\x73'+'\x74'+'\x28'+'\x70'+'\x6f'+'\x73'+'\x73'+'\x69'+'\x62'+'\x6c'+'\x65'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x6f'+'\x73'+'\x73'+'\x69'+'\x62'+'\x6c'+'\x65'+'\x50'+'\x6f'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x73'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x6e'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'+'\x28'+'\x27'+'\x5d'+'\x3a'+'\x27'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x5d'+'\x3a'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x30'+'\x5d'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x5d'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x31'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x7b'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x2c'+'\x20'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x72'+'\x65'+'\x6e'+'\x64'+'\x65'+'\x72'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x2c'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x75'+'\x6c'+'\x64'+'\x53'+'\x68'+'\x6f'+'\x77'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u53ea'+'\u5c55'+'\u793a'+'\u5728'+'\u7ebf'+'\u4f18'+'\u9009'+'\u6210'+'\u529f'+'\u7684'+'\u7ed3'+'\u679c'+'\uff0c'+'\u5931'+'\u8d25'+'\x2f'+'\u8d85'+'\u65f6'+'\u7684'+'\u4e0d'+'\u518d'+'\u663e'+'\u793a'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x64'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x73'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x62'+'\x6f'+'\x74'+'\x74'+'\x6f'+'\x6d'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x33'+'\x33'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x67'+'\x61'+'\x70'+'\x3a'+'\x20'+'\x31'+'\x30'+'\x70'+'\x78'+'\x3b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e')+('\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x73'+'\x68'+'\x6f'+'\x75'+'\x6c'+'\x64'+'\x53'+'\x68'+'\x6f'+'\x77'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x73'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x66'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x64'+'\x69'+'\x76'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x73'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3a'+'\x20'+'\x31'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x66'+'\x61'+'\x6d'+'\x69'+'\x6c'+'\x79'+'\x3a'+'\x20'+'\x6d'+'\x6f'+'\x6e'+'\x6f'+'\x73'+'\x70'+'\x61'+'\x63'+'\x65'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x31'+'\x33'+'\x70'+'\x78'+'\x3b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3f'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x44'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3f'+'\x20'+'\x27'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74')+('\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x66'+'\x66'+'\x3b'+'\x22'+'\x3e'+'\x5b'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x5d'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x20'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x6e'+'\x66'+'\x6f'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x44'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20'+'\x3c'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x66'+'\x66'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x22'+'\x3e'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x6d'+'\x73'+'\x3c'+'\x2f'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x3e'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x69'+'\x6e'+'\x66'+'\x6f'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x4f'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x2e'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x7b'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x2c'+'\x20'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x7d'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x54'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x28'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x28'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x20'+'\x26'+'\x26'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x3f'+'\x20'+'\x28'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x28'+'\x27'+'\x43'+'\x46'+'\x2d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x29'+'\x20'+'\x3a'+'\x20'+'\x28'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x3c'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x2e'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x29'+'\x20'+'\x62'+'\x72'+'\x65'+'\x61'+'\x6b'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x62'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x61'+'\x72'+'\x67'+'\x65'+'\x74'+'\x73'+'\x2e'+'\x73'+'\x6c'+'\x69'+'\x63'+'\x65'+'\x28'+'\x69'+'\x2c'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x6d'+'\x69'+'\x6e'+'\x28'+'\x69'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2c'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'))+(RK?'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u062a'+'\u0633'+'\u062a':'\u6d4b'+'\u8bd5'+'\u4e2d')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x28'+'\x69'+'\x20'+'\x2b'+'\x20'+'\x31'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2d'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x4d'+'\x61'+'\x74'+'\x68'+'\x2e'+'\x6d'+'\x69'+'\x6e'+'\x28'+'\x69'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2c'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x29'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20'+'\x28')+(RK?'\u0631'+'\u0634'+'\u062a'+'\u0647'+'\u200c'+'\u0647'+'\u0627':'\u7ebf'+'\u7a0b')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x68'+'\x72'+'\x65'+'\x61'+'\x64'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x29'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x50'+'\x72'+'\x6f'+'\x6d'+'\x69'+'\x73'+'\x65'+'\x2e'+'\x61'+'\x6c'+'\x6c'+'\x28'+'\x62'+'\x61'+'\x74'+'\x63'+'\x68'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x74'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x4f'+'\x6e'+'\x65'+'\x28'+'\x74'+'\x29'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x6f'+'\x66'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x64'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x2e'+'\x70'+'\x75'+'\x73'+'\x68'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x6e'+'\x64'+'\x65'+'\x72'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2c'+'\x20'+'\x69'+'\x64'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x74'+'\x65'+'\x64'+'\x2b'+'\x2b'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u062a'+'\u0633'+'\u062a'+'\x20'+'\u06a9'+'\u0627'+'\u0645'+'\u0644'+'\x20'+'\u0634'+'\u062f':'\u6d4b'+'\u8bd5'+'\u5b8c'+'\u6210')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6f'+'\x6d'+'\x70'+'\x6c'+'\x65'+'\x74'+'\x65'+'\x64'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x6f'+'\x74'+'\x61'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u66f4'+'\u65b0'+'\u57ce'+'\u5e02'+'\u9009'+'\u62e9'+'\u5668'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x43'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x74'+'\x6f'+'\x70'+'\x54'+'\x65'+'\x73'+'\x74'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u062a'+'\u0633'+'\u062a'+'\x20'+'\u0645'+'\u062a'+'\u0648'+'\u0642'+'\u0641'+'\x20'+'\u0634'+'\u062f':'\u6d4b'+'\u8bd5'+'\u5df2'+'\u505c'+'\u6b62')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x3a'+'\x6e'+'\x6f'+'\x74'+'\x28'+'\x3a'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x29'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x64'+'\x65'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x41'+'\x6c'+'\x6c'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u83b7'+'\u53d6'+'\u9009'+'\u4e2d'+'\u9879'+'\u7684'+'\u901a'+'\u7528'+'\u51fd'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x3a'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27'))+(RK?'\u0644'+'\u0637'+'\u0641'+'\u0627'+'\x20'+'\u062d'+'\u062f'+'\u0627'+'\u0642'+'\u0644'+'\x20'+'\u06cc'+'\u06a9'+'\x20'+'\u0645'+'\u0648'+'\u0631'+'\u062f'+'\x20'+'\u0627'+'\u0646'+'\u062a'+'\u062e'+'\u0627'+'\u0628'+'\x20'+'\u06a9'+'\u0646'+'\u06cc'+'\u062f':'\u8bf7'+'\u81f3'+'\u5c11'+'\u9009'+'\u62e9'+'\u4e00'+'\u9879')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x5b'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x64'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x63'+'\x62'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x5b'+'\x69'+'\x64'+'\x78'+'\x5d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x20'+'\x26'+'\x26'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3f'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x3a'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6e'+'\x6f'+'\x64'+'\x65'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x23'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x70'+'\x75'+'\x73'+'\x68'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x53'+'\x74'+'\x72'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8986'+'\u76d6'+'\u6dfb'+'\u52a0'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x67'+'\x65'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x79'+'\x78'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x69'+'\x6e'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'))+(RK?'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x2e'+'\x2e'+'\x2e':'\u4fdd'+'\u5b58'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x3a'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\u06cc'+'\u062a'+'\u200c'+'\u0622'+'\u0645'+'\u06cc'+'\u0632'+'\x20'+'\u0628'+'\u0648'+'\u062f':'\u5df2'+'\u8986'+'\u76d6')+('\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20')+(RK?'\u0645'+'\u0648'+'\u0631'+'\u062f'+'\x20'+'\u0648'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u0634'+'\u062f':'\u9879'+'\u5e76'+'\u5df2'+'\u4fdd'+'\u5b58')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u062e'+'\u0637'+'\u0627'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647':'\u4fdd'+'\u5b58'+'\u5931'+'\u8d25')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u8986'+'\u76d6'+'\u6dfb'+'\u52a0':'\u8986'+'\u76d6'+'\u6dfb'+'\u52a0')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u8ffd'+'\u52a0'+'\u6dfb'+'\u52a0'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x6c'+'\x69'+'\x63'+'\x6b'+'\x27'+'\x2c'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x67'+'\x65'+'\x74'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x79'+'\x78'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x79'+'\x78'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2e'+'\x74'+'\x72'+'\x69'+'\x6d'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x69'+'\x6e'+'\x28'+'\x27'+'\x2c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3f'+'\x20'+'\x28'+'\x63'+'\x75'+'\x72'+'\x72'+'\x65'+'\x6e'+'\x74'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2c'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x29'+'\x20'+'\x3a'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x49'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u062f'+'\u0631'+'\x20'+'\u062d'+'\u0627'+'\u0644'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x2e'+'\x2e'+'\x2e':'\u4fdd'+'\u5b58'+'\u4e2d'+'\x2e'+'\x2e'+'\x2e')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x49'+'\x50'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x3a'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x56'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x79'+'\x78'+'\x55'+'\x52'+'\x4c'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x3a'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x73'+'\x6f'+'\x63'+'\x6b'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x27'+'\x29'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x73'+'\x61'+'\x76'+'\x65'+'\x43'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x28'+'\x63'+'\x6f'+'\x6e'+'\x66'+'\x69'+'\x67'+'\x44'+'\x61'+'\x74'+'\x61'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u0645'+'\u0648'+'\u0641'+'\u0642'+'\u06cc'+'\u062a'+'\u200c'+'\u0622'+'\u0645'+'\u06cc'+'\u0632'+'\x20'+'\u0628'+'\u0648'+'\u062f':'\u5df2'+'\u8ffd'+'\u52a0')+('\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20')+(RK?'\u0645'+'\u0648'+'\u0631'+'\u062f'+'\x20'+'\u0648'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647'+'\x20'+'\u0634'+'\u062f':'\u9879'+'\u5e76'+'\u5df2'+'\u4fdd'+'\u5b58')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x77'+'\x53'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x28'+'\x27')+(RK?'\u062e'+'\u0637'+'\u0627'+'\x20'+'\u062f'+'\u0631'+'\x20'+'\u0630'+'\u062e'+'\u06cc'+'\u0631'+'\u0647':'\u4fdd'+'\u5b58'+'\u5931'+'\u8d25')+('\x3a'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x65'+'\x72'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x2c'+'\x20'+'\x27'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6f'+'\x76'+'\x65'+'\x72'+'\x77'+'\x72'+'\x69'+'\x74'+'\x65'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x42'+'\x74'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27')+(RK?'\u8ffd'+'\u52a0'+'\u6dfb'+'\u52a0':'\u8ffd'+'\u52a0'+'\u6dfb'+'\u52a0')+('\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x69'+'\x70'+'\x54'+'\x6f'+'\x48'+'\x65'+'\x78'+'\x28'+'\x69'+'\x70'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x70'+'\x2e'+'\x73'+'\x70'+'\x6c'+'\x69'+'\x74'+'\x28'+'\x27'+'\x2e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x21'+'\x3d'+'\x3d'+'\x20'+'\x34'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x68'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x20'+'\x28'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x69'+'\x20'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x20'+'\x69'+'\x20'+'\x3c'+'\x20'+'\x34'+'\x3b'+'\x20'+'\x69'+'\x2b'+'\x2b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x75'+'\x6d'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x70'+'\x61'+'\x72'+'\x74'+'\x73'+'\x5b'+'\x69'+'\x5d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x69'+'\x73'+'\x4e'+'\x61'+'\x4e'+'\x28'+'\x6e'+'\x75'+'\x6d'+'\x29'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x75'+'\x6d'+'\x20'+'\x3c'+'\x20'+'\x30'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x75'+'\x6d'+'\x20'+'\x3e'+'\x20'+'\x32'+'\x35'+'\x35'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x6e'+'\x75'+'\x6c'+'\x6c'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x68'+'\x65'+'\x78'+'\x20'+'\x2b'+'\x3d'+'\x20'+'\x6e'+'\x75'+'\x6d'+'\x2e'+'\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x31'+'\x36'+'\x29'+'\x2e'+'\x70'+'\x61'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'+'\x28'+'\x32'+'\x2c'+'\x20'+'\x27'+'\x30'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x68'+'\x65'+'\x78'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4d'+'\x61'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x53'+'\x4a'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5723'+'\u4f55'+'\u585e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x41'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u6d1b'+'\u6749'+'\u77f6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x45'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u897f'+'\u96c5'+'\u56fe'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x46'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u65e7'+'\u91d1'+'\u5c71'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x46'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u8fbe'+'\u62c9'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4f'+'\x52'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u829d'+'\u52a0'+'\u54e5'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x41'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u534e'+'\u76db'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x54'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u4e9a'+'\u7279'+'\u5170'+'\u5927'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x49'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u8fc8'+'\u963f'+'\u5bc6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x45'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u4e39'+'\u4f5b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x50'+'\x48'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u51e4'+'\u51f0'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4f'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u6ce2'+'\u58eb'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x45'+'\x57'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u7ebd'+'\u74e6'+'\u514b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4a'+'\x46'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u7ebd'+'\u7ea6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x41'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u62c9'+'\u65af'+'\u7ef4'+'\u52a0'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x53'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u660e'+'\u5c3c'+'\u963f'+'\u6ce2'+'\u5229'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x54'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5e95'+'\u7279'+'\u5f8b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x48'+'\x4c'+'\x27'+('\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u8d39'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u590f'+'\u6d1b'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4c'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u76d0'+'\u6e56'+'\u57ce'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x50'+'\x44'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u6ce2'+'\u7279'+'\u5170'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x41'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5723'+'\u5730'+'\u4e9a'+'\u54e5'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x50'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5766'+'\u5e15'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x41'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u4f11'+'\u65af'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x43'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5965'+'\u5170'+'\u591a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x55'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5965'+'\u65af'+'\u6c40'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4e'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u7eb3'+'\u4ec0'+'\u7ef4'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x44'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u7f57'+'\u5229'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x4e'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5370'+'\u7b2c'+'\u5b89'+'\u7eb3'+'\u6ce2'+'\u5229'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4d'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u54e5'+'\u4f26'+'\u5e03'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x43'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u582a'+'\u8428'+'\u65af'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x4d'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5965'+'\u9a6c'+'\u54c8'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x42'+'\x51'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u963f'+'\u5c14'+'\u4f2f'+'\u514b'+'\u57fa'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x4b'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u4fc4'+'\u514b'+'\u62c9'+'\u8377'+'\u9a6c'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x45'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5b5f'+'\u83f2'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4a'+'\x41'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u6770'+'\u514b'+'\u900a'+'\u7ef4'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x49'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u91cc'+'\u58eb'+'\u6ee1'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x55'+'\x46'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5e03'+'\u6cd5'+'\u7f57'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x49'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5339'+'\u5179'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u514b'+'\u5229'+'\u592b'+'\u5170'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x43'+'\x56'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u8f9b'+'\u8f9b'+'\u90a3'+'\u63d0'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x4b'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5bc6'+'\u5c14'+'\u6c83'+'\u57fa'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x54'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5723'+'\u8def'+'\u6613'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x41'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u5723'+'\u5b89'+'\u4e1c'+'\u5c3c'+'\u5965'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x4e'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x98)+'\x20'+'\u6a80'+'\u9999'+'\u5c71'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x4e'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5b89'+'\u514b'+'\u96f7'+'\u5947'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4d'+'\x46'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u8428'+'\u514b'+'\u62c9'+'\u95e8'+'\u6258'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x4e'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5b89'+'\u5927'+'\u7565'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x41'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x98)+'\x20'+'\u5965'+'\u514b'+'\u5170'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x48'+'\x4b'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb5)+'\x20'+'\u9999'+'\u6e2f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x50'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb0)+'\x20'+'\u53f0'+'\u5317'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x53'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb0)+'\x20'+'\u53f0'+'\u5317'+'\u677e'+'\u5c71'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x48'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb0)+'\x20'+'\u9ad8'+'\u96c4'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4e'+'\x52'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x88)+'\x20'+'\u4e1c'+'\u4eac'+'\u6210'+'\u7530'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x4e'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x88)+'\x20'+'\u4e1c'+'\u4eac'+'\u7fbd'+'\u7530'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x49'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u5927'+'\u962a'+'\u5173'+'\u897f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x54'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u5927'+'\u962a'+'\u4f0a'+'\u4e39'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x47'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x88)+'\x20'+'\u540d'+'\u53e4'+'\u5c4b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x46'+'\x55'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u798f'+'\u5188'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x54'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u672d'+'\u5e4c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x4b'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x88)+'\x20'+'\u51b2'+'\u7ef3'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x49'+'\x43'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb6)+'\x20'+'\u9996'+'\u5c14'+'\u4ec1'+'\u5ddd'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x4d'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb6)+'\x20'+'\u9996'+'\u5c14'+'\u91d1'+'\u6d66'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x55'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb6)+'\x20'+'\u91dc'+'\u5c71'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x53'+'\x49'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe5)+'\x20'+'\u65b0'+'\u52a0'+'\u5761')+('\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4b'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x79)+'\x20'+'\u66fc'+'\u8c37'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x4d'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x79)+'\x20'+'\u66fc'+'\u8c37'+'\u5eca'+'\u66fc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x55'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x95)+'\x20'+'\u5409'+'\u9686'+'\u5761'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x47'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb2)+'\x20'+'\u96c5'+'\u52a0'+'\u8fbe'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x4e'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xcf)+'\x20'+'\u9a6c'+'\u5c3c'+'\u62c9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x45'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xcf)+'\x20'+'\u5bbf'+'\u52a1'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x41'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xab)+'\x20'+'\u6cb3'+'\u5185'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x47'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xab)+'\x20'+'\u80e1'+'\u5fd7'+'\u660e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x41'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xab)+'\x20'+'\u5c98'+'\u6e2f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x52'+'\x47'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc0)+'\x20'+'\u4ef0'+'\u5149'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x4e'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe8)+'\x20'+'\u91d1'+'\u8fb9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x45'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe8)+'\x20'+'\u66b9'+'\u7c92'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x54'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xde)+'\x20'+'\u4e07'+'\u8c61'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x42'+'\x4f'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u5b5f'+'\u4e70'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x45'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb3)+'\x20'+'\u65b0'+'\u5fb7'+'\u91cc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x41'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb3)+'\x20'+'\u91d1'+'\u5948'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4c'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb3)+'\x20'+'\u73ed'+'\u52a0'+'\u7f57'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x43'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u52a0'+'\u5c14'+'\u5404'+'\u7b54'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x48'+'\x59'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb3)+'\x20'+'\u6d77'+'\u5f97'+'\u62c9'+'\u5df4'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x4d'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u827e'+'\u54c8'+'\u8fc8'+'\u8fbe'+'\u5df4'+'\u5fb7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4f'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u79d1'+'\u94a6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x4e'+'\x51'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u6d66'+'\u90a3'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x4f'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb3)+'\x20'+'\u679c'+'\u963f'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x43'+'\x4d'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdf)+'\x20'+'\u79d1'+'\u4f26'+'\u5761'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x41'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd2)+'\x20'+'\u8fbe'+'\u5361'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x54'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xb4)+'\x20'+'\u52a0'+'\u5fb7'+'\u6ee1'+'\u90fd'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x53'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xcb)+'\x20'+'\u4f0a'+'\u65af'+'\u5170'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x48'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xcb)+'\x20'+'\u5361'+'\u62c9'+'\u5947'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x48'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xcb)+'\x20'+'\u62c9'+'\u5408'+'\u5c14'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4c'+'\x48'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdc)+'\x20'+'\u4f26'+'\u6566'+'\u5e0c'+'\u601d'+'\u7f57'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x47'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdc)+'\x20'+'\u4f26'+'\u6566'+'\u76d6'+'\u7279'+'\u5a01'+'\u514b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x54'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdc)+'\x20'+'\u4f26'+'\u6566'+'\u65af'+'\u5766'+'\u65af'+'\u7279'+'\u5fb7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x54'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdc)+'\x20'+'\u4f26'+'\u6566'+'\u5362'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x41'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdc)+'\x20'+'\u66fc'+'\u5f7b'+'\u65af'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x45'+'\x44'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdc)+'\x20'+'\u7231'+'\u4e01'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x48'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdc)+'\x20'+'\u4f2f'+'\u660e'+'\u7ff0'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x43'+'\x44'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xbb)+'\x20'+'\u5df4'+'\u9ece'+'\u6234'+'\u9ad8'+'\u4e50'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x52'+'\x59'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xbb)+'\x20'+'\u5df4'+'\u9ece'+'\u5965'+'\u5229'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x52'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xbb)+'\x20'+'\u9a6c'+'\u8d5b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x59'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xbb)+'\x20'+'\u91cc'+'\u6602'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x43'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xbb)+'\x20'+'\u5c3c'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x46'+'\x52'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u6cd5'+'\u5170'+'\u514b'+'\u798f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x55'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u6155'+'\u5c3c'+'\u9ed1'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x58'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u67cf'+'\u6797'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x45'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u67cf'+'\u6797'+'\u52c3'+'\u5170'+'\u767b'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x41'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u6c49'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x55'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u675c'+'\u585e'+'\u5c14'+'\u591a'+'\u592b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x47'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u79d1'+'\u9686'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x54'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd4)+'\x20'+'\u65af'+'\u56fe'+'\u52a0'+'\u7279'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x4d'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe3)+'\x20'+'\u963f'+'\u59c6'+'\u65af'+'\u7279'+'\u4e39'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x52'+'\x55'+'\x27')+('\x3a'+'\x20'+'\x27'+Yh(0xe2)+'\x20'+'\u5e03'+'\u9c81'+'\u585e'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x55'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xce)+'\x20'+'\u5362'+'\u68ee'+'\u5821'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x5a'+'\x52'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xaf)+'\x20'+'\u82cf'+'\u9ece'+'\u4e16'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x56'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xaf)+'\x20'+'\u65e5'+'\u5185'+'\u74e6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x53'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xaf)+'\x20'+'\u5df4'+'\u585e'+'\u5c14'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x56'+'\x49'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xad)+'\x20'+'\u7ef4'+'\u4e5f'+'\u7eb3'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x52'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb7)+'\x20'+'\u5e03'+'\u62c9'+'\u683c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x55'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8f)+'\x20'+'\u5e03'+'\u8fbe'+'\u4f69'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x57'+'\x41'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7e)+'\x20'+'\u534e'+'\u6c99'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x52'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7e)+'\x20'+'\u514b'+'\u62c9'+'\u79d1'+'\u592b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x58'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc2)+'\x20'+'\u7c73'+'\u5170'+'\u9a6c'+'\u5c14'+'\u5f6d'+'\u8428'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x49'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc2)+'\x20'+'\u7c73'+'\u5170'+'\u5229'+'\u7eb3'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x46'+'\x43'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc2)+'\x20'+'\u7f57'+'\u9a6c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x43'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc2)+'\x20'+'\u5a01'+'\u5c3c'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x41'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc2)+'\x20'+'\u90a3'+'\u4e0d'+'\u52d2'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x46'+'\x4c'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc2)+'\x20'+'\u4f5b'+'\u7f57'+'\u4f26'+'\u8428'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x47'+'\x59'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc2)+'\x20'+'\u8d1d'+'\u52a0'+'\u83ab'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x41'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7f)+'\x20'+'\u9a6c'+'\u5fb7'+'\u91cc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x43'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7f)+'\x20'+'\u5df4'+'\u585e'+'\u7f57'+'\u90a3'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x4d'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7f)+'\x20'+'\u5e15'+'\u5c14'+'\u9a6c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x47'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7f)+'\x20'+'\u9a6c'+'\u62c9'+'\u52a0'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x4c'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7f)+'\x20'+'\u74e6'+'\u4f26'+'\u897f'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x56'+'\x51'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7f)+'\x20'+'\u585e'+'\u7ef4'+'\u5229'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x49'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7f)+'\x20'+'\u6bd5'+'\u5c14'+'\u5df4'+'\u9102'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4c'+'\x49'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x77)+'\x20'+'\u91cc'+'\u65af'+'\u672c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x50'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x77)+'\x20'+'\u6ce2'+'\u5c14'+'\u56fe'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x46'+'\x41'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x77)+'\x20'+'\u6cd5'+'\u9c81'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x44'+'\x55'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x80)+'\x20'+'\u90fd'+'\u67cf'+'\u6797'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x50'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x89)+'\x20'+'\u54e5'+'\u672c'+'\u54c8'+'\u6839'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x52'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa5)+'\x20'+'\u65af'+'\u5fb7'+'\u54e5'+'\u5c14'+'\u6469'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x4f'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa5)+'\x20'+'\u54e5'+'\u5fb7'+'\u5821'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4f'+'\x53'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xca)+'\x20'+'\u5965'+'\u65af'+'\u9646'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x47'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xca)+'\x20'+'\u5351'+'\u5c14'+'\u6839'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x45'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa3)+'\x20'+'\u8d6b'+'\u5c14'+'\u8f9b'+'\u57fa'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x49'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x99)+'\x20'+'\u91cc'+'\u52a0'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x4c'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc9)+'\x20'+'\u5854'+'\u6797'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x4e'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa0)+'\x20'+'\u7ef4'+'\u5c14'+'\u7ebd'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x54'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdb)+'\x20'+'\u96c5'+'\u5178'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4b'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xdb)+'\x20'+'\u585e'+'\u8428'+'\u6d1b'+'\u5c3c'+'\u57fa'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4f'+'\x46'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x9a)+'\x20'+'\u7d22'+'\u975e'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x54'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x91)+'\x20'+'\u5e03'+'\u52a0'+'\u52d2'+'\u65af'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x45'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc3)+'\x20'+'\u8d1d'+'\u5c14'+'\u683c'+'\u83b1'+'\u5fb7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x5a'+'\x41'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7d)+'\x20'+'\u8428'+'\u683c'+'\u52d2'+'\u5e03'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x4a'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa6)+'\x20'+'\u5362'+'\u5e03'+'\u5c14'+'\u96c5'+'\u90a3'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4b'+'\x42'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa1)+'\x20'+'\u57fa'+'\u8f85'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x49'+'\x45'+'\x56'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa1)+'\x20'+'\u57fa'+'\u8f85'+'\u8339'+'\u826f'+'\u5c3c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x44'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa1)+'\x20'+'\u6556'+'\u5fb7'+'\u8428'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x53'+'\x56'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x97)+'\x20'+'\u83ab'+'\u65af'+'\u79d1'+'\u8c22'+'\u5217'+'\u6885'+'\u6377'+'\u6c83'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x4d'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x97))+('\x20'+'\u83ab'+'\u65af'+'\u79d1'+'\u591a'+'\u83ab'+'\u6770'+'\u591a'+'\u6c83'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x56'+'\x4b'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x97)+'\x20'+'\u83ab'+'\u65af'+'\u79d1'+'\u4f0f'+'\u52aa'+'\u79d1'+'\u6c83'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x45'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x97)+'\x20'+'\u5723'+'\u5f7c'+'\u5f97'+'\u5821'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x49'+'\x53'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7b)+'\x20'+'\u4f0a'+'\u65af'+'\u5766'+'\u5e03'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x41'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7b)+'\x20'+'\u4f0a'+'\u65af'+'\u5766'+'\u5e03'+'\u5c14'+'\u8428'+'\u6bd4'+'\u54c8'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x45'+'\x53'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7b)+'\x20'+'\u5b89'+'\u5361'+'\u62c9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x59'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7b)+'\x20'+'\u5b89'+'\u5854'+'\u5229'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x44'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7b)+'\x20'+'\u4f0a'+'\u5179'+'\u5bc6'+'\u5c14'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x54'+'\x4c'+'\x56'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xda)+'\x20'+'\u7279'+'\u62c9'+'\u7ef4'+'\u592b'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x4d'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x93)+'\x20'+'\u5b89'+'\u66fc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x45'+'\x59'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x87)+'\x20'+'\u8d1d'+'\u9c81'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x41'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x9d)+'\x20'+'\u5df4'+'\u6797'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x57'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8c)+'\x20'+'\u79d1'+'\u5a01'+'\u7279'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x44'+'\x58'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x81)+'\x20'+'\u8fea'+'\u62dc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x55'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x81)+'\x20'+'\u963f'+'\u5e03'+'\u624e'+'\u6bd4'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x48'+'\x4a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x81)+'\x20'+'\u6c99'+'\u8fe6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x4f'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xd1)+'\x20'+'\u591a'+'\u54c8'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x43'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe6)+'\x20'+'\u9a6c'+'\u65af'+'\u5580'+'\u7279'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x52'+'\x55'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa8)+'\x20'+'\u5229'+'\u96c5'+'\u5f97'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4a'+'\x45'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa8)+'\x20'+'\u5409'+'\u8fbe'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x4d'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa8)+'\x20'+'\u8fbe'+'\u66fc'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x43'+'\x41'+'\x49'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x86)+'\x20'+'\u5f00'+'\u7f57'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x42'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x86)+'\x20'+'\u4e9a'+'\u5386'+'\u5c71'+'\u5927'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x53'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x86)+'\x20'+'\u6c99'+'\u59c6'+'\u6c99'+'\u4f0a'+'\u8d6b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x43'+'\x4d'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xbc)+'\x20'+'\u5361'+'\u8428'+'\u5e03'+'\u5170'+'\u5361'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x41'+'\x4b'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xbc)+'\x20'+'\u9a6c'+'\u62c9'+'\u5580'+'\u4ec0'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x55'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd3)+'\x20'+'\u7a81'+'\u5c3c'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x4c'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xbe)+'\x20'+'\u963f'+'\u5c14'+'\u53ca'+'\u5c14'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4c'+'\x4f'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x9f)+'\x20'+'\u62c9'+'\u5404'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x42'+'\x56'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x9f)+'\x20'+'\u963f'+'\u5e03'+'\u8d3e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x43'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x92)+'\x20'+'\u963f'+'\u514b'+'\u62c9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x42'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb8)+'\x20'+'\u5185'+'\u7f57'+'\u6bd5'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x42'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb8)+'\x20'+'\u8499'+'\u5df4'+'\u8428'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x44'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xcc)+'\x20'+'\u4e9a'+'\u7684'+'\u65af'+'\u4e9a'+'\u8d1d'+'\u5df4'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x41'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7a)+'\x20'+'\u8fbe'+'\u7d2f'+'\u65af'+'\u8428'+'\u62c9'+'\u59c6'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4a'+'\x4e'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc8)+'\x20'+'\u7ea6'+'\u7ff0'+'\u5185'+'\u65af'+'\u5821'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x50'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc8)+'\x20'+'\u5f00'+'\u666e'+'\u6566'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x44'+'\x55'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc8)+'\x20'+'\u5fb7'+'\u73ed'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x52'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x94)+'\x20'+'\u54c8'+'\u62c9'+'\u96f7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x55'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x82)+'\x20'+'\u5362'+'\u8428'+'\u5361'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x52'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x9b)+'\x20'+'\u6bdb'+'\u91cc'+'\u6c42'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x45'+'\x5a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd7)+'\x20'+'\u585e'+'\u820c'+'\u5c14'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x53'+'\x59'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x90)+'\x20'+'\u6089'+'\u5c3c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x45'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x90)+'\x20'+'\u58a8'+'\u5c14'+'\u672c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4e'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x90)+'\x20'+'\u5e03'+'\u91cc'+'\u65af'+'\u73ed'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x45'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x90)+'\x20'+'\u73c0'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x44'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x90)+'\x20'+'\u963f'+'\u5fb7'+'\u83b1'+'\u5fb7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x42'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x90)+'\x20'+'\u582a'+'\u57f9'+'\u62c9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x4f'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x90)+'\x20'+'\u9ec4'+'\u91d1')+('\u6d77'+'\u5cb8'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4e'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x90)+'\x20'+'\u51ef'+'\u6069'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x41'+'\x4b'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe7)+'\x20'+'\u5965'+'\u514b'+'\u5170'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x57'+'\x4c'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe7)+'\x20'+'\u60e0'+'\u7075'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x48'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe7)+'\x20'+'\u57fa'+'\u7763'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x5a'+'\x51'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe7)+'\x20'+'\u7687'+'\u540e'+'\u9547'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4e'+'\x41'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xcd)+'\x20'+'\u6960'+'\u8fea'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x50'+'\x54'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8e)+'\x20'+'\u5e15'+'\u76ae'+'\u63d0'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x55'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x84)+'\x20'+'\u5173'+'\u5c9b'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x47'+'\x52'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa2)+'\x20'+'\u5723'+'\u4fdd'+'\u7f57'+'\u74dc'+'\u9c81'+'\u67f3'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x47'+'\x48'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa2)+'\x20'+'\u5723'+'\u4fdd'+'\u7f57'+'\u5b54'+'\u6208'+'\u5c3c'+'\u4e9a'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x49'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u91cc'+'\u7ea6'+'\u70ed'+'\u5185'+'\u5362'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x53'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u5df4'+'\u897f'+'\u5229'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4e'+'\x46'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa2)+'\x20'+'\u8d1d'+'\u6d1b'+'\u5965'+'\u91cc'+'\u85cf'+'\u7279'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x4f'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xa2)+'\x20'+'\u963f'+'\u96f7'+'\u683c'+'\u91cc'+'\u6e2f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x57'+'\x42'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u5e93'+'\u91cc'+'\u8482'+'\u5df4'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x46'+'\x4f'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u798f'+'\u5854'+'\u83b1'+'\u8428'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x52'+'\x45'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u7d2f'+'\u897f'+'\u8153'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x53'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa2)+'\x20'+'\u8428'+'\u5c14'+'\u74e6'+'\u591a'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x45'+'\x5a'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x8b)+'\x20'+'\u5e03'+'\u5b9c'+'\u8bfa'+'\u65af'+'\u827e'+'\u5229'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x45'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x8b)+'\x20'+'\u5e03'+'\u5b9c'+'\u8bfa'+'\u65af'+'\u827e'+'\u5229'+'\u65af'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4f'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8b)+'\x20'+'\u79d1'+'\u5c14'+'\u591a'+'\u74e6'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x44'+'\x5a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8b)+'\x20'+'\u95e8'+'\u591a'+'\u8428'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x53'+'\x43'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x85)+'\x20'+'\u5723'+'\u5730'+'\u4e9a'+'\u54e5'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4c'+'\x49'+'\x4d'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd0)+'\x20'+'\u5229'+'\u9a6c'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x4f'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x8d)+'\x20'+'\u6ce2'+'\u54e5'+'\u5927'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x44'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x8d)+'\x20'+'\u9ea6'+'\u5fb7'+'\u6797'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x4c'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x8d)+'\x20'+'\u5361'+'\u5229'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x55'+'\x49'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd8)+'\x20'+'\u57fa'+'\u591a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x59'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xd8)+'\x20'+'\u74dc'+'\u4e9a'+'\u57fa'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x43'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xb1)+'\x20'+'\u52a0'+'\u62c9'+'\u52a0'+'\u65af'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x56'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x78)+'\x20'+'\u8499'+'\u5f97'+'\u7ef4'+'\u7684'+'\u4e9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x41'+'\x53'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x8a)+'\x20'+'\u4e9a'+'\u677e'+'\u68ee'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x50'+'\x54'+'\x59'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc5)+'\x20'+'\u5df4'+'\u62ff'+'\u9a6c'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4a'+'\x4f'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xe1)+'\x20'+'\u5723'+'\u4f55'+'\u585e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x55'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xbd)+'\x20'+'\u5371'+'\u5730'+'\u9a6c'+'\u62c9'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x41'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xbf)+'\x20'+'\u5723'+'\u8428'+'\u5c14'+'\u74e6'+'\u591a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x47'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xa4)+'\x20'+'\u7279'+'\u53e4'+'\u897f'+'\u52a0'+'\u5c14'+'\u5df4'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x47'+'\x41'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xae)+'\x20'+'\u9a6c'+'\u90a3'+'\u74dc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x42'+'\x5a'+'\x45'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd6)+'\x20'+'\u4f2f'+'\u5229'+'\u5179'+'\u57ce'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x4d'+'\x45'+'\x58'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7c)+'\x20'+'\u58a8'+'\u897f'+'\u54e5'+'\u57ce'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x47'+'\x44'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7c)+'\x20'+'\u74dc'+'\u8fbe'+'\u62c9'+'\u54c8'+'\u62c9'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x54'+'\x59'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7c)+'\x20'+'\u8499'+'\u7279'+'\u96f7'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x43'+'\x55'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0x7c)+'\x20'+'\u574e'+'\u6606'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x54'+'\x49'+'\x4a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7c)+'\x20'+'\u8482'+'\u534e'+'\u7eb3'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4a'+'\x44'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0x7c)+'\x20'+'\u5723'+'\u4f55'+'\u585e'+'\u5fb7'+'\u5c14'+'\u5361'+'\u6c83'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x59'+'\x59'+'\x5a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc1)+'\x20'+'\u591a'+'\u4f26'+'\u591a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x56'+'\x52'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc1)+'\x20'+'\u6e29'+'\u54e5'+'\u534e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x55'+'\x4c'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc1)+'\x20'+'\u8499'+'\u7279'+'\u5229'+'\u5c14'+'\x27'+'\x2c'+'\x20'+'\x27')+('\x59'+'\x59'+'\x43'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xc1)+'\x20'+'\u5361'+'\u5c14'+'\u52a0'+'\u91cc'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x45'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc1)+'\x20'+'\u57c3'+'\u5fb7'+'\u8499'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x4f'+'\x57'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc1)+'\x20'+'\u6e25'+'\u592a'+'\u534e'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x57'+'\x47'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc1)+'\x20'+'\u6e29'+'\u5c3c'+'\u4f2f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x59'+'\x48'+'\x5a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc1)+'\x20'+'\u54c8'+'\u5229'+'\u6cd5'+'\u514b'+'\u65af'+'\x27'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x27'+'\x48'+'\x41'+'\x56'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xba)+'\x20'+'\u54c8'+'\u74e6'+'\u90a3'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x4a'+'\x55'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xdd)+'\x20'+'\u5723'+'\u80e1'+'\u5b89'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x44'+'\x51'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xaa)+'\x20'+'\u5723'+'\u591a'+'\u660e'+'\u5404'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x50'+'\x41'+'\x50'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xc7)+'\x20'+'\u592a'+'\u5b50'+'\u6e2f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4b'+'\x49'+'\x4e'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd5)+'\x20'+'\u91d1'+'\u65af'+'\u987f'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4e'+'\x41'+'\x53'+'\x27'+'\x3a'+'\x20'+'\x27'+Yb(0xe4)+'\x20'+'\u62ff'+'\u9a9a'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x4d'+'\x42'+'\x4a'+'\x27'+'\x3a'+'\x20'+'\x27'+Yh(0xd5)+'\x20'+'\u8499'+'\u7279'+'\u54e5'+'\u8d1d'+'\x27'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x4d'+'\x61'+'\x70'+'\x5b'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x5d'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u57ce'+'\u5e02'+'\u7b5b'+'\u9009'+'\u76f8'+'\u5173'+'\u51fd'+'\u6570'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x42'+'\x79'+'\x49'+'\x64'+'\x28'+'\x27'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x75'+'\x70'+'\x64'+'\x61'+'\x74'+'\x65'+'\x43'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x21'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u4ece'+'\u6d4b'+'\u8bd5'+'\u7ed3'+'\u679c'+'\u4e2d'+'\u63d0'+'\u53d6'+'\u6240'+'\u6709'+'\u53ef'+'\u7528'+'\u7684'+'\u57ce'+'\u5e02'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x4d'+'\x61'+'\x70'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x20'+'\x26'+'\x26'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x2e'+'\x68'+'\x61'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x2e'+'\x73'+'\x65'+'\x74'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x2c'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3a'+'\x20'+'\x67'+'\x65'+'\x74'+'\x43'+'\x6f'+'\x6c'+'\x6f'+'\x4e'+'\x61'+'\x6d'+'\x65'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x2c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x3a'+'\x20'+'\x30'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x2e'+'\x67'+'\x65'+'\x74'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x2e'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x2b'+'\x2b'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x2e'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x62'+'\x6c'+'\x6f'+'\x63'+'\x6b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x69'+'\x6e'+'\x6e'+'\x65'+'\x72'+'\x48'+'\x54'+'\x4d'+'\x4c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6309'+'\u57ce'+'\u5e02'+'\u540d'+'\u79f0'+'\u6392'+'\u5e8f'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x41'+'\x72'+'\x72'+'\x61'+'\x79'+'\x2e'+'\x66'+'\x72'+'\x6f'+'\x6d'+'\x28'+'\x63'+'\x69'+'\x74'+'\x79'+'\x4d'+'\x61'+'\x70'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x73'+'\x28'+'\x29'+'\x29'+'\x2e'+'\x73'+'\x6f'+'\x72'+'\x74'+'\x28'+'\x28'+'\x61'+'\x2c'+'\x20'+'\x62'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x61'+'\x2e'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x63'+'\x61'+'\x6c'+'\x65'+'\x43'+'\x6f'+'\x6d'+'\x70'+'\x61'+'\x72'+'\x65'+'\x28'+'\x62'+'\x2e'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69')+('\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x69'+'\x74'+'\x79'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x73'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x3a'+'\x20'+'\x69'+'\x6e'+'\x6c'+'\x69'+'\x6e'+'\x65'+'\x2d'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x3b'+'\x20'+'\x61'+'\x6c'+'\x69'+'\x67'+'\x6e'+'\x2d'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x3a'+'\x20'+'\x63'+'\x65'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x23'+'\x30'+'\x30'+'\x66'+'\x66'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x66'+'\x6f'+'\x6e'+'\x74'+'\x2d'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x3a'+'\x20'+'\x30'+'\x2e'+'\x38'+'\x35'+'\x72'+'\x65'+'\x6d'+'\x3b'+'\x20'+'\x70'+'\x61'+'\x64'+'\x64'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x20'+'\x38'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x62'+'\x61'+'\x63'+'\x6b'+'\x67'+'\x72'+'\x6f'+'\x75'+'\x6e'+'\x64'+'\x3a'+'\x20'+'\x72'+'\x67'+'\x62'+'\x61'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x34'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2c'+'\x20'+'\x30'+'\x2e'+'\x34'+'\x29'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x3a'+'\x20'+'\x31'+'\x70'+'\x78'+'\x20'+'\x73'+'\x6f'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x23'+'\x30'+'\x30'+'\x61'+'\x61'+'\x30'+'\x30'+'\x3b'+'\x20'+'\x62'+'\x6f'+'\x72'+'\x64'+'\x65'+'\x72'+'\x2d'+'\x72'+'\x61'+'\x64'+'\x69'+'\x75'+'\x73'+'\x3a'+'\x20'+'\x34'+'\x70'+'\x78'+'\x3b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x73'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6d'+'\x61'+'\x72'+'\x67'+'\x69'+'\x6e'+'\x2d'+'\x72'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x77'+'\x69'+'\x64'+'\x74'+'\x68'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x68'+'\x65'+'\x69'+'\x67'+'\x68'+'\x74'+'\x3a'+'\x20'+'\x31'+'\x36'+'\x70'+'\x78'+'\x3b'+'\x20'+'\x63'+'\x75'+'\x72'+'\x73'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x70'+'\x6f'+'\x69'+'\x6e'+'\x74'+'\x65'+'\x72'+'\x3b'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x72'+'\x65'+'\x61'+'\x74'+'\x65'+'\x45'+'\x6c'+'\x65'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x28'+'\x27'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x2e'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20'+'\x28'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x2e'+'\x63'+'\x6f'+'\x75'+'\x6e'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x29'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68')+('\x69'+'\x6c'+'\x64'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x73'+'\x70'+'\x61'+'\x6e'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x70'+'\x70'+'\x65'+'\x6e'+'\x64'+'\x43'+'\x68'+'\x69'+'\x6c'+'\x64'+'\x28'+'\x6c'+'\x61'+'\x62'+'\x65'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x42'+'\x79'+'\x43'+'\x69'+'\x74'+'\x79'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u76d1'+'\u542c'+'\u7b5b'+'\u9009'+'\u6a21'+'\u5f0f'+'\u53d8'+'\u5316'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x52'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x72'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x61'+'\x64'+'\x69'+'\x6f'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x63'+'\x68'+'\x61'+'\x6e'+'\x67'+'\x65'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x74'+'\x68'+'\x69'+'\x73'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x61'+'\x6c'+'\x6c'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5207'+'\u6362'+'\u5230'+'\x22'+'\u5168'+'\u90e8'+'\u57ce'+'\u5e02'+'\x22'+'\u6a21'+'\u5f0f'+'\u65f6'+'\uff0c'+'\u81ea'+'\u52a8'+'\u9009'+'\u4e2d'+'\u6240'+'\u6709'+'\u57ce'+'\u5e02'+'\u590d'+'\u9009'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x42'+'\x79'+'\x43'+'\x69'+'\x74'+'\x79'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x42'+'\x79'+'\x43'+'\x69'+'\x74'+'\x79'+'\x28'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x21'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x29'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x6f'+'\x63'+'\x75'+'\x6d'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x69'+'\x74'+'\x79'+'\x46'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x22'+'\x5d'+'\x3a'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x27'+'\x29'+'\x3f'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x61'+'\x6c'+'\x6c'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x5b'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2d'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x61'+'\x69'+'\x6e'+'\x65'+'\x72'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x41'+'\x6c'+'\x6c'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x4d'+'\x6f'+'\x64'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x61'+'\x73'+'\x74'+'\x65'+'\x73'+'\x74'+'\x31'+'\x30'+'\x27'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u53ea'+'\u9009'+'\u62e9'+'\u6700'+'\u5feb'+'\u7684'+'\x31'+'\x30'+'\u4e2a'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x28'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x28'+'\x7b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2c'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x20'+'\x7d'+'\x29'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x73'+'\x6f'+'\x72'+'\x74'+'\x28'+'\x28'+'\x61'+'\x2c'+'\x20'+'\x62'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x61'+'\x2e'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x2e'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x20'+'\x2d'+'\x20'+'\x62'+'\x2e'+'\x72'+'\x65'+'\x73')+('\x75'+'\x6c'+'\x74'+'\x2e'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x29'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2e'+'\x73'+'\x6c'+'\x69'+'\x63'+'\x65'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x31'+'\x30'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x61'+'\x73'+'\x74'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x69'+'\x63'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x53'+'\x65'+'\x74'+'\x28'+'\x73'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x52'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x73'+'\x2e'+'\x6d'+'\x61'+'\x70'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x49'+'\x6e'+'\x74'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x66'+'\x61'+'\x73'+'\x74'+'\x65'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x69'+'\x63'+'\x65'+'\x73'+'\x2e'+'\x68'+'\x61'+'\x73'+'\x28'+'\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u7981'+'\u7528'+'\u57ce'+'\u5e02'+'\u590d'+'\u9009'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20')+('\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6839'+'\u636e'+'\u9009'+'\u4e2d'+'\u7684'+'\u57ce'+'\u5e02'+'\u7b5b'+'\u9009'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x53'+'\x65'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x62'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x28'+'\x63'+'\x62'+'\x2e'+'\x76'+'\x61'+'\x6c'+'\x75'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u5982'+'\u679c'+'\u6240'+'\u6709'+'\u57ce'+'\u5e02'+'\u90fd'+'\u88ab'+'\u9009'+'\u4e2d'+'\uff08'+'\u6216'+'\u6ca1'+'\u6709'+'\u9009'+'\u4e2d'+'\u4efb'+'\u4f55'+'\u57ce'+'\u5e02'+'\uff09'+'\uff0c'+'\u663e'+'\u793a'+'\u6240'+'\u6709'+'\u7ed3'+'\u679c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x20'+'\x3e'+'\x20'+'\x30'+'\x20'+'\x26'+'\x26'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x73'+'\x69'+'\x7a'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x73'+'\x75'+'\x6c'+'\x74'+'\x49'+'\x74'+'\x65'+'\x6d'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x64'+'\x61'+'\x74'+'\x61'+'\x73'+'\x65'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x71'+'\x75'+'\x65'+'\x72'+'\x79'+'\x53'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x6f'+'\x72'+'\x28'+'\x27'+'\x69'+'\x6e'+'\x70'+'\x75'+'\x74'+'\x5b'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x22'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x22'+'\x5d'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x61'+'\x6c'+'\x6c'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x7c'+'\x7c'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x68'+'\x61'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x66'+'\x6c'+'\x65'+'\x78'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u540c'+'\u6b65'+'\u66f4'+'\u65b0'+'\u7ed3'+'\u679c'+'\u9879'+'\u590d'+'\u9009'+'\u6846'+'\u7684'+'\u9009'+'\u4e2d'+'\u72b6'+'\u6001'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x61'+'\x6c'+'\x6c'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6240'+'\u6709'+'\u57ce'+'\u5e02'+'\u90fd'+'\u9009'+'\u4e2d'+'\u65f6'+'\uff0c'+'\u6240'+'\u6709'+'\u7ed3'+'\u679c'+'\u9879'+'\u590d'+'\u9009'+'\u6846'+'\u90fd'+'\u9009'+'\u4e2d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6ca1'+'\u6709'+'\u9009'+'\u4e2d'+'\u4efb'+'\u4f55'+'\u57ce'+'\u5e02'+'\u65f6'+'\uff0c'+'\u6240'+'\u6709'+'\u7ed3'+'\u679c'+'\u9879'+'\u590d'+'\u9009'+'\u6846'+'\u90fd'+'\u53d6'+'\u6d88'+'\u9009'+'\u4e2d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u6839'+'\u636e'+'\u57ce'+'\u5e02'+'\u9009'+'\u62e9'+'\u72b6'+'\u6001'+'\u540c'+'\u6b65'+'\u590d'+'\u9009'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x65'+'\x6c'+'\x65'+'\x63'+'\x74'+'\x65'+'\x64'+'\x43'+'\x69'+'\x74'+'\x69'+'\x65'+'\x73'+'\x2e'+'\x68'+'\x61'+'\x73'+'\x28'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x65'+'\x6c'+'\x73'+'\x65'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x74'+'\x65'+'\x6d'+'\x2e'+'\x73'+'\x74'+'\x79'+'\x6c'+'\x65'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x70'+'\x6c'+'\x61'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u53d6'+'\u6d88'+'\u9009'+'\u4e2d'+'\u9690'+'\u85cf'+'\u7684'+'\u7ed3'+'\u679c'+'\u9879'+'\u590d'+'\u9009'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x2e'+'\x63'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20')+('\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x2f'+'\x2f'+'\x20'+'\u542f'+'\u7528'+'\u57ce'+'\u5e02'+'\u590d'+'\u9009'+'\u6846'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x69'+'\x74'+'\x79'+'\x43'+'\x68'+'\x65'+'\x63'+'\x6b'+'\x62'+'\x6f'+'\x78'+'\x65'+'\x73'+'\x2e'+'\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'+'\x28'+'\x63'+'\x62'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x62'+'\x2e'+'\x64'+'\x69'+'\x73'+'\x61'+'\x62'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x73'+'\x79'+'\x6e'+'\x63'+'\x20'+'\x66'+'\x75'+'\x6e'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x28'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2c'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x2c'+'\x20'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x38'+'\x30'+'\x30'+'\x30'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x6c'+'\x65'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x20'+'\x3d'+'\x20'+'\x6e'+'\x65'+'\x77'+'\x20'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x43'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x49'+'\x64'+'\x20'+'\x3d'+'\x20'+'\x73'+'\x65'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x28'+'\x29'+'\x2c'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x2e'+'\x61'+'\x64'+'\x64'+'\x45'+'\x76'+'\x65'+'\x6e'+'\x74'+'\x4c'+'\x69'+'\x73'+'\x74'+'\x65'+'\x6e'+'\x65'+'\x72'+'\x28'+'\x27'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x27'+'\x2c'+'\x20'+'\x28'+'\x29'+'\x20'+'\x3d'+'\x3e'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x61'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x28'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x6e'+'\x48'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x2e'+'\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x28'+'\x2f'+'\x5e'+'\x5c'+'\x5b'+'\x7c'+'\x5c'+'\x5d'+'\x24'+'\x2f'+'\x67'+'\x2c'+'\x20'+'\x27'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x68'+'\x65'+'\x78'+'\x49'+'\x50'+'\x20'+'\x3d'+'\x20'+'\x69'+'\x70'+'\x54'+'\x6f'+'\x48'+'\x65'+'\x78'+'\x28'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x6e'+'\x48'+'\x6f'+'\x73'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74')+('\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x3d'+'\x20'+'\x68'+'\x65'+'\x78'+'\x49'+'\x50'+'\x20'+'\x3f'+'\x20'+'\x28'+'\x68'+'\x65'+'\x78'+'\x49'+'\x50'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2e'+'\x6e'+'\x69'+'\x70'+'\x2e'+'\x6c'+'\x66'+'\x72'+'\x65'+'\x65'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x27'+'\x29'+'\x20'+'\x3a'+'\x20'+'\x28'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x6e'+'\x48'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2e'+'\x6e'+'\x69'+'\x70'+'\x2e'+'\x6c'+'\x66'+'\x72'+'\x65'+'\x65'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x3d'+'\x20'+'\x27'+'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x2f'+'\x27'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x6f'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x67'+'\x28'+'\x27'+'\x5b'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x5d'+'\x20'+'\x54'+'\x65'+'\x73'+'\x74'+'\x69'+'\x6e'+'\x67'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x27'+'\x4f'+'\x72'+'\x69'+'\x67'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x3a'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x2c'+'\x20'+'\x27'+'\x48'+'\x65'+'\x78'+'\x49'+'\x50'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x68'+'\x65'+'\x78'+'\x49'+'\x50'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x69'+'\x72'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x31'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x7b'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x66'+'\x69'+'\x72'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x20'+'\x2d'+'\x20'+'\x66'+'\x69'+'\x72'+'\x73'+'\x74'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x21'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x31'+'\x2e'+'\x6f'+'\x6b'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x72'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x49'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x7b'+'\x20'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x3a'+'\x20'+'\x66'+'\x69'+'\x72'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x2c'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x27'+'\x48'+'\x54'+'\x54'+'\x50'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x31'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x20'+'\x27'+'\x20'+'\x2b'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x31'+'\x2e'+'\x73'+'\x74'+'\x61'+'\x74'+'\x75'+'\x73'+'\x54'+'\x65'+'\x78'+'\x74'+'\x2c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x3a'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x74'+'\x72'+'\x79'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73')+('\x74'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x31'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x6f'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x67'+'\x28'+'\x27'+'\x5b'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x5d'+'\x20'+'\x52'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x20'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x78'+'\x74'+'\x2e'+'\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x28'+'\x30'+'\x2c'+'\x20'+'\x32'+'\x30'+'\x30'+'\x29'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x3d'+'\x20'+'\x4a'+'\x53'+'\x4f'+'\x4e'+'\x2e'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x28'+'\x74'+'\x65'+'\x78'+'\x74'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x69'+'\x66'+'\x20'+'\x28'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x20'+'\x3d'+'\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x2e'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x6f'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x67'+'\x28'+'\x27'+'\x5b'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x5d'+'\x20'+'\x50'+'\x61'+'\x72'+'\x73'+'\x65'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x73'+'\x65'+'\x63'+'\x6f'+'\x6e'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x32'+'\x20'+'\x3d'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x66'+'\x65'+'\x74'+'\x63'+'\x68'+'\x28'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x2c'+'\x20'+'\x7b'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x72'+'\x6f'+'\x6c'+'\x6c'+'\x65'+'\x72'+'\x2e'+'\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x61'+'\x77'+'\x61'+'\x69'+'\x74'+'\x20'+'\x72'+'\x65'+'\x73'+'\x70'+'\x6f'+'\x6e'+'\x73'+'\x65'+'\x32'+'\x2e'+'\x74'+'\x65'+'\x78'+'\x74'+'\x28'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x20'+'\x3d'+'\x20'+'\x44'+'\x61'+'\x74'+'\x65'+'\x2e'+'\x6e'+'\x6f'+'\x77'+'\x28'+'\x29'+'\x20'+'\x2d'+'\x20'+'\x73'+'\x65'+'\x63'+'\x6f'+'\x6e'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6c'+'\x65'+'\x61'+'\x72'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x28'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74'+'\x49'+'\x64'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x6f'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x67'+'\x28'+'\x27'+'\x5b'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x5d'+'\x20'+'\x46'+'\x69'+'\x72'+'\x73'+'\x74'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x66'+'\x69'+'\x72'+'\x73'+'\x74'+'\x54'+'\x69'+'\x6d'+'\x65'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x6d'+'\x73'+'\x20'+'\x28'+'\x44'+'\x4e'+'\x53'+'\x2b'+'\x54'+'\x4c'+'\x53'+'\x2b'+'\x52'+'\x54'+'\x54'+'\x29'+'\x27'+'\x2c'+'\x20'+'\x27'+'\x53'+'\x65'+'\x63'+'\x6f'+'\x6e')+('\x64'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x20'+'\x2b'+'\x20'+'\x27'+'\x6d'+'\x73'+'\x20'+'\x28'+'\x52'+'\x54'+'\x54'+'\x20'+'\x6f'+'\x6e'+'\x6c'+'\x79'+'\x29'+'\x27'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x7b'+'\x20'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x3a'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x2c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3a'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x3a'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x20'+'\x63'+'\x61'+'\x74'+'\x63'+'\x68'+'\x20'+'\x28'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x29'+'\x20'+'\x7b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x4d'+'\x73'+'\x67'+'\x20'+'\x3d'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x20'+'\x3d'+'\x3d'+'\x3d'+'\x20'+'\x27'+'\x41'+'\x62'+'\x6f'+'\x72'+'\x74'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x27'+'\x20'+'\x3f'+'\x20'+'\x27'))+(RK?'\u0632'+'\u0645'+'\u0627'+'\u0646'+'\x20'+'\u062a'+'\u0645'+'\u0627'+'\u0645'+'\x20'+'\u0634'+'\u062f':'\u8d85'+'\u65f6')+('\x27'+'\x20'+'\x3a'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x2e'+'\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x73'+'\x6f'+'\x6c'+'\x65'+'\x2e'+'\x6c'+'\x6f'+'\x67'+'\x28'+'\x27'+'\x5b'+'\x4c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x54'+'\x65'+'\x73'+'\x74'+'\x5d'+'\x20'+'\x45'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x4d'+'\x73'+'\x67'+'\x2c'+'\x20'+'\x27'+'\x55'+'\x52'+'\x4c'+'\x3a'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x72'+'\x65'+'\x74'+'\x75'+'\x72'+'\x6e'+'\x20'+'\x7b'+'\x20'+'\x73'+'\x75'+'\x63'+'\x63'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x20'+'\x66'+'\x61'+'\x6c'+'\x73'+'\x65'+'\x2c'+'\x20'+'\x6c'+'\x61'+'\x74'+'\x65'+'\x6e'+'\x63'+'\x79'+'\x3a'+'\x20'+'\x2d'+'\x31'+'\x2c'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x3a'+'\x20'+'\x65'+'\x72'+'\x72'+'\x6f'+'\x72'+'\x4d'+'\x73'+'\x67'+'\x2c'+'\x20'+'\x63'+'\x6f'+'\x6c'+'\x6f'+'\x3a'+'\x20'+'\x27'+'\x27'+'\x2c'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x3a'+'\x20'+'\x74'+'\x65'+'\x73'+'\x74'+'\x55'+'\x72'+'\x6c'+'\x20'+'\x7d'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x7d'+'\x29'+'\x3b'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x73'+'\x63'+'\x72'+'\x69'+'\x70'+'\x74'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x62'+'\x6f'+'\x64'+'\x79'+'\x3e'+'\x0a'+'\x20'+'\x20'+'\x20'+'\x20'+'\x3c'+'\x2f'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3e');return new Response(RM,{'\x73\x74\x61\x74\x75\x73':0xc8,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x74'+'\x65'+'\x78'+'\x74'+'\x2f'+'\x68'+'\x74'+'\x6d'+'\x6c'+'\x3b'+'\x20'+'\x63'+'\x68'+'\x61'+'\x72'+'\x73'+'\x65'+'\x74'+'\x3d'+'\x75'+'\x74'+'\x66'+'\x2d'+'\x38'}});}async function Db(RY,RG){const RO=V||RG;const RF=await Dh(RO);if(RY['\x62'+'\x79'+'\x74'+'\x65'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']<0x38){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x69'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x20'+'\x64'+'\x61'+'\x74'+'\x61'+'\x20'+'\x2d'+'\x20'+'\x74'+'\x6f'+'\x6f'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x72'+'\x74')};}let Rt=0x38;if(new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x38,0x39))[0x0]!==0xd||new Uint8Array(RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x39,0x3a))[0x0]!==0xa){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x69'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x20'+'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x66'+'\x6f'+'\x72'+'\x6d'+'\x61'+'\x74'+'\x20'+'\x28'+'\x6d'+'\x69'+'\x73'+'\x73'+'\x69'+'\x6e'+'\x67'+'\x20'+'\x43'+'\x52'+'\x20'+'\x4c'+'\x46'+'\x29')};}const RK=new TextDecoder()['\x64'+'\x65'+'\x63'+'\x6f'+'\x64'+'\x65'](RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,Rt));if(RK!==RF){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x69'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x20'+'\x70'+'\x61'+'\x73'+'\x73'+'\x77'+'\x6f'+'\x72'+'\x64')};}const Rq=RY['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rt+0x2);if(Rq['\x62'+'\x79'+'\x74'+'\x65'+'\x4c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']<0x6){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':atob('\x61'+'\x57'+'\x35'+'\x32'+'\x59'+'\x57'+'\x78'+'\x70'+'\x5a'+'\x43'+'\x42'+'\x54'+'\x54'+'\x30'+'\x4e'+'\x4c'+'\x55'+'\x7a'+'\x55'+'\x67'+'\x63'+'\x6d'+'\x56'+'\x78'+'\x64'+'\x57'+'\x56'+'\x7a'+'\x64'+'\x43'+'\x42'+'\x6b'+'\x59'+'\x58'+'\x52'+'\x68')};}const RI=new DataView(Rq);const RS=RI['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x38'](0x0);if(RS!==0x1){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x75'+'\x6e'+'\x73'+'\x75'+'\x70'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x20'+'\x63'+'\x6f'+'\x6d'+'\x6d'+'\x61'+'\x6e'+'\x64'+'\x2c'+'\x20'+'\x6f'+'\x6e'+'\x6c'+'\x79'+'\x20'+'\x54'+'\x43'+'\x50'+'\x20'+'\x28'+'\x43'+'\x4f'+'\x4e'+'\x4e'+'\x45'+'\x43'+'\x54'+'\x29'+'\x20'+'\x69'+'\x73'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x6f'+'\x77'+'\x65'+'\x64'};}const RM=RI['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x38'](0x1);let Rg=0x0;let Ri=0x2;let RC='';switch(RM){case 0x1:Rg=0x4;RC=new Uint8Array(Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Ri,Ri+Rg))['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2e');break;case 0x3:Rg=new Uint8Array(Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Ri,Ri+0x1))[0x0];Ri+=0x1;RC=new TextDecoder()['\x64'+'\x65'+'\x63'+'\x6f'+'\x64'+'\x65'](Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Ri,Ri+Rg));break;case 0x4:Rg=0x10;const RJ=new DataView(Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Ri,Ri+Rg));const RX=[];for(let RQ=0x0;RQ<0x8;RQ++){RX['\x70'+'\x75'+'\x73'+'\x68'](RJ['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x31'+'\x36'](RQ*0x2)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10));}RC=RX['\x6a'+'\x6f'+'\x69'+'\x6e']('\x3a');break;default:return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x69'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x69'+'\x73'+'\x20'+RM};}if(!RC){return{'\x68\x61\x73\x45\x72\x72\x6f\x72':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x20'+'\x69'+'\x73'+'\x20'+'\x65'+'\x6d'+'\x70'+'\x74'+'\x79'+'\x2c'+'\x20'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x54'+'\x79'+'\x70'+'\x65'+'\x20'+'\x69'+'\x73'+'\x20'+RM};}const Rv=Ri+Rg;const Rd=Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rv,Rv+0x2);const RH=new DataView(Rd)['\x67'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x31'+'\x36'](0x0);return{'\x68\x61\x73\x45\x72\x72\x6f\x72':![],'\x61\x64\x64\x72\x65\x73\x73\x52\x65\x6d\x6f\x74\x65':RC,'\x61\x64\x64\x72\x65\x73\x73\x54\x79\x70\x65':RM,'\x70\x6f\x72\x74':RH,'\x68\x6f\x73\x74\x6e\x61\x6d\x65':RC,'\x72\x61\x77\x43\x6c\x69\x65\x6e\x74\x44\x61\x74\x61':Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](Rv+0x4)};}async function Dh(RY){const RG=new TextEncoder();const RO=RG['\x65'+'\x6e'+'\x63'+'\x6f'+'\x64'+'\x65'](RY);const RF=[0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5,0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174,0xe49b69c1,0xefbe4786,0xfc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x6ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85,0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2];let Rt=[0xc1059ed8,0x367cd507,0x3070dd17,0xf70e5939,0xffc00b31,0x68581511,0x64f98fa7,0xbefa4fa4];const RK=RO['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];const Rq=RK*0x8;const RI=Math['\x63'+'\x65'+'\x69'+'\x6c']((RK+0x9)/0x40)*0x40;const RS=new Uint8Array(RI);RS['\x73'+'\x65'+'\x74'](RO);RS[RK]=0x80;const RM=new DataView(RS['\x62'+'\x75'+'\x66'+'\x66'+'\x65'+'\x72']);RM['\x73'+'\x65'+'\x74'+'\x55'+'\x69'+'\x6e'+'\x74'+'\x33'+'\x32'](RI-0x4,Rq,![]);for(let Ri=0x0;Ri>>0x3;const Rh=Dj(RC[Ry-0x2],0x11)^Dj(RC[Ry-0x2],0x13)^RC[Ry-0x2]>>>0xa;RC[Ry]=RC[Ry-0x10]+Rb+RC[Ry-0x7]+Rh>>>0x0;}let [Rv,Rd,RH,RJ,RX,RQ,Rf,RV]=Rt;for(let Rj=0x0;Rj<0x40;Rj++){const Ru=Dj(RX,0x6)^Dj(RX,0xb)^Dj(RX,0x19);const RT=RX&RQ^~RX&Rf;const Rc=RV+Ru+RT+RF[Rj]+RC[Rj]>>>0x0;const Ro=Dj(Rv,0x2)^Dj(Rv,0xd)^Dj(Rv,0x16);const Ra=Rv&Rd^Rv&RH^Rd&RH;const RW=Ro+Ra>>>0x0;RV=Rf;Rf=RQ;RQ=RX;RX=RJ+Rc>>>0x0;RJ=RH;RH=Rd;Rd=Rv;Rv=Rc+RW>>>0x0;}Rt[0x0]=Rt[0x0]+Rv>>>0x0;Rt[0x1]=Rt[0x1]+Rd>>>0x0;Rt[0x2]=Rt[0x2]+RH>>>0x0;Rt[0x3]=Rt[0x3]+RJ>>>0x0;Rt[0x4]=Rt[0x4]+RX>>>0x0;Rt[0x5]=Rt[0x5]+RQ>>>0x0;Rt[0x6]=Rt[0x6]+Rf>>>0x0;Rt[0x7]=Rt[0x7]+RV>>>0x0;}const Rg=[];for(let RE=0x0;RE<0x7;RE++){Rg['\x70'+'\x75'+'\x73'+'\x68']((Rt[RE]>>>0x18&0xff)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)['\x70'+'\x61'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'](0x2,'\x30'),(Rt[RE]>>>0x10&0xff)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)['\x70'+'\x61'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'](0x2,'\x30'),(Rt[RE]>>>0x8&0xff)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)['\x70'+'\x61'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'](0x2,'\x30'),(Rt[RE]&0xff)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)['\x70'+'\x61'+'\x64'+'\x53'+'\x74'+'\x61'+'\x72'+'\x74'](0x2,'\x30'));}return Rg['\x6a'+'\x6f'+'\x69'+'\x6e']('');}function Dj(RY,RG){return RY>>>RG|RY<<0x20-RG;}let Du=0x0;const DT=0x80*0x400;const Dc=0x1388;const Do=0xafc8;const Da=0x2;const DW=0x20;function DE(RY){return new Promise(RG=>setTimeout(RG,RY));}function Dm(RY,RG){for(let RO=0x0;RO<0x10;RO++){if(RY[RO]!==RG[RO]){return![];}}return!![];}class DL{#total;constructor(){this.#total=0x0;}['\x67'+'\x65'+'\x74'](){return this.#total;}['\x61'+'\x64'+'\x64'](RY){this.#total+=RY;}}function DZ(RY,...RG){let RO=RY['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];for(let Rt of RG){RO+=Rt['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];}const RF=new RY['\x63'+'\x6f'+'\x6e'+'\x73'+'\x74'+'\x72'+'\x75'+'\x63'+'\x74'+'\x6f'+'\x72'](RO);RF['\x73'+'\x65'+'\x74'](RY,0x0);RO=RY['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];for(let RK of RG){RF['\x73'+'\x65'+'\x74'](RK,RO);RO+=RK['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];}return RF;}function Dz(RY){RY=RY['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'+'\x41'+'\x6c'+'\x6c']('\x2d','');const RG=[];for(let RO=0x0;RO<0x10;RO++){const RF=parseInt(RY['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'](RO*0x2,0x2),0x10);RG['\x70'+'\x75'+'\x73'+'\x68'](RF);}return RG;}function Dw(RY){return new Uint8Array(new ArrayBuffer(RY||DT));}async function Dn(RY,RG){const RO=RY['\x67'+'\x65'+'\x74'+'\x52'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72']({'\x6d\x6f\x64\x65':'\x62'+'\x79'+'\x6f'+'\x62'});try{let RF=await RO['\x72'+'\x65'+'\x61'+'\x64'+'\x41'+'\x74'+'\x4c'+'\x65'+'\x61'+'\x73'+'\x74'](0x1+0x10+0x1,Dw());let Rt=0x0;let RK=0x0;let Rq=RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65'];Rt+=RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];const RI=Rq[0x0];const RS=Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x1,0x1+0x10);const RM=Dz(RG);if(!Dm(RS,RM)){return'\x69'+'\x6e'+'\x76'+'\x61'+'\x6c'+'\x69'+'\x64'+'\x20'+'\x55'+'\x55'+'\x49'+'\x44';}const Rg=Rq[0x1+0x10];const Ri=0x1+0x10+0x1+Rg+0x1+0x2+0x1;if(Ri+0x1>Rt){if(RF['\x64'+'\x6f'+'\x6e'+'\x65']){return'\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x20'+'\x74'+'\x6f'+'\x6f'+'\x20'+'\x73'+'\x68'+'\x6f'+'\x72'+'\x74';}RK=Ri+0x1-Rt;RF=await RO['\x72'+'\x65'+'\x61'+'\x64'+'\x41'+'\x74'+'\x4c'+'\x65'+'\x61'+'\x73'+'\x74'](RK,Dw());Rt+=RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];Rq=DZ(Rq,RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']);}const RC=Rq[0x1+0x10+0x1+Rg];if(RC!==0x1){return'\x75'+'\x6e'+'\x73'+'\x75'+'\x70'+'\x70'+'\x6f'+'\x72'+'\x74'+'\x65'+'\x64'+'\x20'+'\x63'+'\x6f'+'\x6d'+'\x6d'+'\x61'+'\x6e'+'\x64'+'\x3a'+'\x20'+RC;}const Rv=(Rq[Ri-0x1-0x2]<<0x8)+Rq[Ri-0x1-0x1];const Rd=Rq[Ri-0x1];let RH=-0x1;if(Rd===B){RH=Ri+0x4;}else if(Rd===D1){RH=Ri+0x10;}else if(Rd===D0){RH=Ri+0x1+Rq[Ri];}if(RH<0x0){return'\x72'+'\x65'+'\x61'+'\x64'+'\x20'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x20'+'\x74'+'\x79'+'\x70'+'\x65'+'\x20'+'\x66'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64';}RK=RH-Rt;if(RK>0x0){if(RF['\x64'+'\x6f'+'\x6e'+'\x65']){return'\x72'+'\x65'+'\x61'+'\x64'+'\x20'+'\x61'+'\x64'+'\x64'+'\x72'+'\x65'+'\x73'+'\x73'+'\x20'+'\x66'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64';}RF=await RO['\x72'+'\x65'+'\x61'+'\x64'+'\x41'+'\x74'+'\x4c'+'\x65'+'\x61'+'\x73'+'\x74'](RK,Dw());Rt+=RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];Rq=DZ(Rq,RF['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']);}let RJ='';RK=Ri;switch(Rd){case B:RJ=Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](RK,RK+0x4)['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2e');break;case D0:RJ=new TextDecoder()['\x64'+'\x65'+'\x63'+'\x6f'+'\x64'+'\x65'](Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](RK+0x1,RK+0x1+Rq[RK]));break;case D1:RJ=Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](RK,RK+0x10)['\x72'+'\x65'+'\x64'+'\x75'+'\x63'+'\x65']((RQ,Rf,RV,Rx)=>RV%0x2?RQ['\x63'+'\x6f'+'\x6e'+'\x63'+'\x61'+'\x74'](((Rx[RV-0x1]<<0x8)+Rf)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)):RQ,[])['\x6a'+'\x6f'+'\x69'+'\x6e']('\x3a');break;}if(RJ['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']<0x1){return'\x66'+'\x61'+'\x69'+'\x6c'+'\x65'+'\x64'+'\x20'+'\x74'+'\x6f'+'\x20'+'\x70'+'\x61'+'\x72'+'\x73'+'\x65'+'\x20'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65';}const RX=Rq['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](RH);return{'\x68\x6f\x73\x74\x6e\x61\x6d\x65':RJ,'\x70\x6f\x72\x74':Rv,'\x64\x61\x74\x61':RX,'\x72\x65\x73\x70':new Uint8Array([RI,0x0]),'\x72\x65\x61\x64\x65\x72':RO,'\x64\x6f\x6e\x65':RF['\x64'+'\x6f'+'\x6e'+'\x65']};}catch(RQ){try{RO['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();}catch(Rf){}throw RQ;}}async function Dp(RY,RG,RO){async function RF(Rt){if(!Rt||Rt['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){return;}RY['\x61'+'\x64'+'\x64'](Rt['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);try{await RG['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](Rt);}catch(RK){throw RK;}}try{await RF(RO['\x64'+'\x61'+'\x74'+'\x61']);let Rt=0x0;while(!RO['\x64'+'\x6f'+'\x6e'+'\x65']){const RK=await RO['\x72'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72']['\x72'+'\x65'+'\x61'+'\x64'](Dw());if(RK['\x64'+'\x6f'+'\x6e'+'\x65'])break;await RF(RK['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']);RO['\x64'+'\x6f'+'\x6e'+'\x65']=RK['\x64'+'\x6f'+'\x6e'+'\x65'];Rt++;if(Rt%0xa===0x0){await DE(0x0);}if(!RK['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']||RK['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){await DE(0x2);}}}catch(Rq){throw Rq;}}function DN(RY,RG){const RO=new DL();const RF=RG['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();const Rt=((async()=>{try{await Dp(RO,RF,RY);}catch(RK){throw RK;}finally{try{await RF['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();}catch(Rq){}}})());return{'\x63\x6f\x75\x6e\x74\x65\x72':RO,'\x64\x6f\x6e\x65':Rt,'\x61\x62\x6f\x72\x74':()=>{try{RF['\x61'+'\x62'+'\x6f'+'\x72'+'\x74']();}catch(RK){}}};}function DU(RY,RG){const RO=new DL();let RF;const Rt=new Promise((RK,Rq)=>{RF=new TransformStream({'\x73\x74\x61\x72\x74'(Ri){RO['\x61'+'\x64'+'\x64'](RY['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);Ri['\x65'+'\x6e'+'\x71'+'\x75'+'\x65'+'\x75'+'\x65'](RY);},'\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d'(Ri,RC){RO['\x61'+'\x64'+'\x64'](Ri['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']);RC['\x65'+'\x6e'+'\x71'+'\x75'+'\x65'+'\x75'+'\x65'](Ri);},'\x63\x61\x6e\x63\x65\x6c'(Ri){Rq('\x64'+'\x6f'+'\x77'+'\x6e'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x20'+'\x63'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x6c'+'\x6c'+'\x65'+'\x64'+'\x3a'+'\x20'+Ri);}},null,new ByteLengthQueuingStrategy({'\x68\x69\x67\x68\x57\x61\x74\x65\x72\x4d\x61\x72\x6b':DT}));let RI=Date['\x6e'+'\x6f'+'\x77']();const RS=setInterval(()=>{if(Date['\x6e'+'\x6f'+'\x77']()-RI>Do){try{RF['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x61'+'\x62'+'\x6f'+'\x72'+'\x74']?.('\x69'+'\x64'+'\x6c'+'\x65'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74');}catch(Ri){}clearInterval(RS);Rq('\x69'+'\x64'+'\x6c'+'\x65'+'\x20'+'\x74'+'\x69'+'\x6d'+'\x65'+'\x6f'+'\x75'+'\x74');}},0x1388);const RM=RG['\x67'+'\x65'+'\x74'+'\x52'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72']();const Rg=RF['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x67'+'\x65'+'\x74'+'\x57'+'\x72'+'\x69'+'\x74'+'\x65'+'\x72']();;((async()=>{try{let Ri=0x0;while(!![]){const RC=await RM['\x72'+'\x65'+'\x61'+'\x64']();if(RC['\x64'+'\x6f'+'\x6e'+'\x65']){break;}RI=Date['\x6e'+'\x6f'+'\x77']();await Rg['\x77'+'\x72'+'\x69'+'\x74'+'\x65'](RC['\x76'+'\x61'+'\x6c'+'\x75'+'\x65']);Ri++;if(Ri%0x5===0x0){await DE(0x0);}}await Rg['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();RK();}catch(Rv){Rq(Rv);}finally{try{RM['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();}catch(Rd){}try{Rg['\x72'+'\x65'+'\x6c'+'\x65'+'\x61'+'\x73'+'\x65'+'\x4c'+'\x6f'+'\x63'+'\x6b']();}catch(RH){}clearInterval(RS);}})());});return{'\x72\x65\x61\x64\x61\x62\x6c\x65':RF['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65'],'\x63\x6f\x75\x6e\x74\x65\x72':RO,'\x64\x6f\x6e\x65':Rt,'\x61\x62\x6f\x72\x74':()=>{try{RF['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65']['\x63'+'\x61'+'\x6e'+'\x63'+'\x65'+'\x6c']();}catch(RK){}try{RF['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']['\x61'+'\x62'+'\x6f'+'\x72'+'\x74']();}catch(Rq){}}};}async function Dk(RY,...RG){let RO=0x0;let RF;const Rt=[RY['\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65'],...RG['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RK=>RK&&RK!==RY['\x68'+'\x6f'+'\x73'+'\x74'+'\x6e'+'\x61'+'\x6d'+'\x65'])];for(const RK of Rt){if(!RK)continue;RO=0x0;while(RO{throw new Error(atob('\x59'+'\x32'+'\x39'+'\x75'+'\x62'+'\x6d'+'\x56'+'\x6a'+'\x64'+'\x43'+'\x42'+'\x30'+'\x61'+'\x57'+'\x31'+'\x6c'+'\x62'+'\x33'+'\x56'+'\x30'));});await Promise['\x72'+'\x61'+'\x63'+'\x65']([Rq['\x6f'+'\x70'+'\x65'+'\x6e'+'\x65'+'\x64'],RI]);const RS=DN(RY,Rq['\x77'+'\x72'+'\x69'+'\x74'+'\x61'+'\x62'+'\x6c'+'\x65']);const RM=DU(RY['\x72'+'\x65'+'\x73'+'\x70'],Rq['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65']);return{'\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x65\x72':RM,'\x75\x70\x6c\x6f\x61\x64\x65\x72':RS,'\x63\x6c\x6f\x73\x65':()=>{try{Rq['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();}catch(Rg){}}};}catch(Rg){RF=Rg;if(RO=DW){return new Response('\x54'+'\x6f'+'\x6f'+'\x20'+'\x6d'+'\x61'+'\x6e'+'\x79'+'\x20'+'\x63'+'\x6f'+'\x6e'+'\x6e'+'\x65'+'\x63'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x73',{'\x73\x74\x61\x74\x75\x73':0x1ad});}Du++;let RO=![];const RF=()=>{if(!RO){Du=Math['\x6d'+'\x61'+'\x78'](0x0,Du-0x1);RO=!![];}};try{const Rt=await Dn(RY,RG);if(typeof Rt!=='\x6f'+'\x62'+'\x6a'+'\x65'+'\x63'+'\x74'||!Rt){return null;}const RK=await Dk(Rt,K,'\x31'+'\x33'+'\x2e'+'\x32'+'\x33'+'\x30'+'\x2e'+'\x33'+'\x34'+'\x2e'+'\x33'+'\x30');if(RK===null){return null;}const Rq=Promise['\x72'+'\x61'+'\x63'+'\x65']([((async()=>{try{await RK['\x64'+'\x6f'+'\x77'+'\x6e'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x72']['\x64'+'\x6f'+'\x6e'+'\x65'];}catch(RI){}})()),((async()=>{try{await RK['\x75'+'\x70'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x72']['\x64'+'\x6f'+'\x6e'+'\x65'];}catch(RI){}})()),DE(Do)['\x74'+'\x68'+'\x65'+'\x6e'](()=>{})])['\x66'+'\x69'+'\x6e'+'\x61'+'\x6c'+'\x6c'+'\x79'](()=>{try{RK['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();}catch(RI){}try{RK['\x64'+'\x6f'+'\x77'+'\x6e'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x72']['\x61'+'\x62'+'\x6f'+'\x72'+'\x74']();}catch(RS){}try{RK['\x75'+'\x70'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x72']['\x61'+'\x62'+'\x6f'+'\x72'+'\x74']();}catch(RM){}RF();});return{'\x72\x65\x61\x64\x61\x62\x6c\x65':RK['\x64'+'\x6f'+'\x77'+'\x6e'+'\x6c'+'\x6f'+'\x61'+'\x64'+'\x65'+'\x72']['\x72'+'\x65'+'\x61'+'\x64'+'\x61'+'\x62'+'\x6c'+'\x65'],'\x63\x6c\x6f\x73\x65\x64':Rq};}catch(RI){RF();return null;}}async function DA(RY){try{return await Ds(RY['\x62'+'\x6f'+'\x64'+'\x79'],t);}catch(RG){return null;}}function DP(RY){if(!RY)return{'\x65\x72\x72\x6f\x72':null};try{RY=RY['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/-/g,'\x2b')['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/_/g,'\x2f');return{'\x65\x61\x72\x6c\x79\x44\x61\x74\x61':Uint8Array['\x66'+'\x72'+'\x6f'+'\x6d'](atob(RY),RG=>RG['\x63'+'\x68'+'\x61'+'\x72'+'\x43'+'\x6f'+'\x64'+'\x65'+'\x41'+'\x74'](0x0))['\x62'+'\x75'+'\x66'+'\x66'+'\x65'+'\x72'],'\x65\x72\x72\x6f\x72':null};}catch(RG){return{'\x65\x72\x72\x6f\x72':RG};}}function Dl(RY){try{if(RY['\x72'+'\x65'+'\x61'+'\x64'+'\x79'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65']===0x1||RY['\x72'+'\x65'+'\x61'+'\x64'+'\x79'+'\x53'+'\x74'+'\x61'+'\x74'+'\x65']===0x2)RY['\x63'+'\x6c'+'\x6f'+'\x73'+'\x65']();}catch(RG){}}const Dr=Array['\x66'+'\x72'+'\x6f'+'\x6d']({'\x6c\x65\x6e\x67\x74\x68':0x100},(RY,RG)=>(RG+0x100)['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x10)['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x1));function De(RY,RG=0x0){const RO=(Dr[RY[RG]]+Dr[RY[RG+0x1]]+Dr[RY[RG+0x2]]+Dr[RY[RG+0x3]]+'\x2d'+Dr[RY[RG+0x4]]+Dr[RY[RG+0x5]]+'\x2d'+Dr[RY[RG+0x6]]+Dr[RY[RG+0x7]]+'\x2d'+Dr[RY[RG+0x8]]+Dr[RY[RG+0x9]]+'\x2d'+Dr[RY[RG+0xa]]+Dr[RY[RG+0xb]]+Dr[RY[RG+0xc]]+Dr[RY[RG+0xd]]+Dr[RY[RG+0xe]]+Dr[RY[RG+0xf]])['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();if(!D2(RO))throw new TypeError(U);return RO;}async function DB(){const RY=H||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';try{const RG=RY['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2c')?RY['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](RS=>RS['\x74'+'\x72'+'\x69'+'\x6d']())['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RS=>RS):[RY];const RO=await RR(RG,'\x34'+'\x34'+'\x33',0x1388);if(RO['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){const RS=[];const RM=/^(\[[\da-fA-F:]+\]|[\d.]+|[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?)*)(?::(\d+))?(?:#(.+))?$/;for(const Rg of RO){const Ri=Rg['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](RM);if(Ri){RS['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Ri[0x1],'\x70\x6f\x72\x74':parseInt(Ri[0x2]||'\x34'+'\x34'+'\x33',0xa),'\x6e\x61\x6d\x65':Ri[0x3]?.['\x74'+'\x72'+'\x69'+'\x6d']()||Ri[0x1]});}}return RS;}const RF=await fetch(RY);if(!RF['\x6f'+'\x6b'])return[];const Rt=await RF['\x74'+'\x65'+'\x78'+'\x74']();const RK=[];const Rq=Rt['\x74'+'\x72'+'\x69'+'\x6d']()['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\r/g,'')['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x0a');const RI=/^([^:]+):(\d+)#(.*)$/;for(const RC of Rq){const Rv=RC['\x74'+'\x72'+'\x69'+'\x6d']();if(!Rv)continue;const Rd=Rv['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](RI);if(Rd){RK['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Rd[0x1],'\x70\x6f\x72\x74':parseInt(Rd[0x2],0xa),'\x6e\x61\x6d\x65':Rd[0x3]['\x74'+'\x72'+'\x69'+'\x6d']()||Rd[0x1]});}}return RK;}catch(RH){return[];}}function R0(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[];const RI='\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const RS=atob('\x64'+'\x6d'+'\x78'+'\x6c'+'\x63'+'\x33'+'\x4d'+'\x3d');RY['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RM=>{const Rg=RM['\x6e'+'\x61'+'\x6d'+'\x65']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\s/g,'\x5f');const Ri=RM['\x70'+'\x6f'+'\x72'+'\x74'];if(RK['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](Ri)){const RC=Rg+'\x2d'+Ri+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');let Rv=RS+('\x3a'+'\x2f'+'\x2f')+RG+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x65'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x74'+'\x6c'+'\x73'+'\x26'+'\x73'+'\x6e'+'\x69'+'\x3d')+RO+('\x26'+'\x66'+'\x70'+'\x3d')+(x?'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65':'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x69'+'\x7a'+'\x65'+'\x64')+('\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI;if(x){const Rd=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const RH=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rv+='\x26'+'\x61'+'\x6c'+'\x70'+'\x6e'+'\x3d'+'\x68'+'\x33'+'\x25'+'\x32'+'\x43'+'\x68'+'\x32'+'\x25'+'\x32'+'\x43'+'\x68'+'\x74'+'\x74'+'\x70'+'\x25'+'\x32'+'\x46'+'\x31'+'\x2e'+'\x31'+'\x26'+'\x65'+'\x63'+'\x68'+'\x3d'+encodeURIComponent(RH+'\x2b'+Rd);}Rv+='\x23'+encodeURIComponent(RC);Rq['\x70'+'\x75'+'\x73'+'\x68'](Rv);}else if(Rt['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](Ri)){if(!g){const RJ=Rg+'\x2d'+Ri+('\x2d'+'\x57'+'\x53');const RX=RS+('\x3a'+'\x2f'+'\x2f')+RG+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x65'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI+'\x23'+encodeURIComponent(RJ);Rq['\x70'+'\x75'+'\x73'+'\x68'](RX);}}else{const RQ=Rg+'\x2d'+Ri+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');let Rf=RS+('\x3a'+'\x2f'+'\x2f')+RG+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x65'+'\x6e'+'\x63'+'\x72'+'\x79'+'\x70'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x74'+'\x6c'+'\x73'+'\x26'+'\x73'+'\x6e'+'\x69'+'\x3d')+RO+('\x26'+'\x66'+'\x70'+'\x3d')+(x?'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65':'\x72'+'\x61'+'\x6e'+'\x64'+'\x6f'+'\x6d'+'\x69'+'\x7a'+'\x65'+'\x64')+('\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI;if(x){const RV=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rx=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rf+='\x26'+'\x61'+'\x6c'+'\x70'+'\x6e'+'\x3d'+'\x68'+'\x33'+'\x25'+'\x32'+'\x43'+'\x68'+'\x32'+'\x25'+'\x32'+'\x43'+'\x68'+'\x74'+'\x74'+'\x70'+'\x25'+'\x32'+'\x46'+'\x31'+'\x2e'+'\x31'+'\x26'+'\x65'+'\x63'+'\x68'+'\x3d'+encodeURIComponent(Rx+'\x2b'+RV);}Rf+='\x23'+encodeURIComponent(RQ);Rq['\x70'+'\x75'+'\x73'+'\x68'](Rf);}});return Rq;}function R1(RY,RG,RO,RF=null){const Rt=[];const RK=RG['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,0x8);RY['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](Rq=>{let RI=Rq['\x69'+'\x73'+'\x70']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\s/g,'\x5f');if(Rq['\x63'+'\x6f'+'\x6c'+'\x6f']&&Rq['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']()){RI=RI+'\x2d'+Rq['\x63'+'\x6f'+'\x6c'+'\x6f']['\x74'+'\x72'+'\x69'+'\x6d']();}const RS=Rq['\x69'+'\x70']['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x3a')?'\x5b'+Rq['\x69'+'\x70']+'\x5d':Rq['\x69'+'\x70'];const RM=Rq['\x70'+'\x6f'+'\x72'+'\x74']||0x1bb;const Rg=RI+'\x2d'+RM+('\x2d'+'\x78'+'\x68'+'\x74'+'\x74'+'\x70');const Ri=new URLSearchParams({'\x65\x6e\x63\x72\x79\x70\x74\x69\x6f\x6e':'\x6e'+'\x6f'+'\x6e'+'\x65','\x73\x65\x63\x75\x72\x69\x74\x79':'\x74'+'\x6c'+'\x73','\x73\x6e\x69':RO,'\x66\x70':'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65','\x74\x79\x70\x65':'\x78'+'\x68'+'\x74'+'\x74'+'\x70','\x68\x6f\x73\x74':RO,'\x70\x61\x74\x68':'\x2f'+RK,'\x6d\x6f\x64\x65':'\x73'+'\x74'+'\x72'+'\x65'+'\x61'+'\x6d'+'\x2d'+'\x6f'+'\x6e'+'\x65'});if(x){const RC=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rv=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Ri['\x73'+'\x65'+'\x74']('\x61'+'\x6c'+'\x70'+'\x6e','\x68'+'\x33'+'\x2c'+'\x68'+'\x32'+'\x2c'+'\x68'+'\x74'+'\x74'+'\x70'+'\x2f'+'\x31'+'\x2e'+'\x31');Ri['\x73'+'\x65'+'\x74']('\x65'+'\x63'+'\x68',Rv+'\x2b'+RC);}Rt['\x70'+'\x75'+'\x73'+'\x68']('\x76'+'\x6c'+'\x65'+'\x73'+'\x73'+'\x3a'+'\x2f'+'\x2f'+RG+'\x40'+RS+'\x3a'+RM+'\x3f'+Ri['\x74'+'\x6f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()+'\x23'+encodeURIComponent(Rg));});return Rt;}async function R2(RY,RG,RO,RF=null){const Rt=[0x50,0x1f90,0x22b0,0x804,0x822,0x826,0x82f];const RK=[0x1bb,0x805,0x823,0x827,0x830,0x20fb];const Rq=[];const RI='\x2f'+'\x3f'+'\x65'+'\x64'+'\x3d'+'\x32'+'\x30'+'\x34'+'\x38';const RS=V||RG;RY['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RM=>{const Rg=RM['\x6e'+'\x61'+'\x6d'+'\x65']['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/\s/g,'\x5f');const Ri=RM['\x70'+'\x6f'+'\x72'+'\x74'];if(RK['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](Ri)){const RC=Rg+'\x2d'+Ri+'\x2d'+atob('\x56'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');let Rv=''+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75'+'\x4f'+'\x69'+'\x38'+'\x76')+RS+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x74'+'\x6c'+'\x73'+'\x26'+'\x73'+'\x6e'+'\x69'+'\x3d')+RO+('\x26'+'\x66'+'\x70'+'\x3d'+'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI;if(x){const Rd=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const RH=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rv+='\x26'+'\x61'+'\x6c'+'\x70'+'\x6e'+'\x3d'+'\x68'+'\x33'+'\x25'+'\x32'+'\x43'+'\x68'+'\x32'+'\x25'+'\x32'+'\x43'+'\x68'+'\x74'+'\x74'+'\x70'+'\x25'+'\x32'+'\x46'+'\x31'+'\x2e'+'\x31'+'\x26'+'\x65'+'\x63'+'\x68'+'\x3d'+encodeURIComponent(RH+'\x2b'+Rd);}Rv+='\x23'+encodeURIComponent(RC);Rq['\x70'+'\x75'+'\x73'+'\x68'](Rv);}else if(Rt['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73'](Ri)){if(!g){const RJ=Rg+'\x2d'+Ri+'\x2d'+atob('\x56'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x2d'+'\x57'+'\x53');const RX=''+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75'+'\x4f'+'\x69'+'\x38'+'\x76')+RS+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x6e'+'\x6f'+'\x6e'+'\x65'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI+'\x23'+encodeURIComponent(RJ);Rq['\x70'+'\x75'+'\x73'+'\x68'](RX);}}else{const RQ=Rg+'\x2d'+Ri+'\x2d'+atob('\x56'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75')+('\x2d'+'\x57'+'\x53'+'\x2d'+'\x54'+'\x4c'+'\x53');let Rf=''+atob('\x64'+'\x48'+'\x4a'+'\x76'+'\x61'+'\x6d'+'\x46'+'\x75'+'\x4f'+'\x69'+'\x38'+'\x76')+RS+'\x40'+RM['\x69'+'\x70']+'\x3a'+Ri+('\x3f'+'\x73'+'\x65'+'\x63'+'\x75'+'\x72'+'\x69'+'\x74'+'\x79'+'\x3d'+'\x74'+'\x6c'+'\x73'+'\x26'+'\x73'+'\x6e'+'\x69'+'\x3d')+RO+('\x26'+'\x66'+'\x70'+'\x3d'+'\x63'+'\x68'+'\x72'+'\x6f'+'\x6d'+'\x65'+'\x26'+'\x74'+'\x79'+'\x70'+'\x65'+'\x3d'+'\x77'+'\x73'+'\x26'+'\x68'+'\x6f'+'\x73'+'\x74'+'\x3d')+RO+('\x26'+'\x70'+'\x61'+'\x74'+'\x68'+'\x3d')+RI;if(x){const RV=y||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';const Rx=b||'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';Rf+='\x26'+'\x61'+'\x6c'+'\x70'+'\x6e'+'\x3d'+'\x68'+'\x33'+'\x25'+'\x32'+'\x43'+'\x68'+'\x32'+'\x25'+'\x32'+'\x43'+'\x68'+'\x74'+'\x74'+'\x70'+'\x25'+'\x32'+'\x46'+'\x31'+'\x2e'+'\x31'+'\x26'+'\x65'+'\x63'+'\x68'+'\x3d'+encodeURIComponent(Rx+'\x2b'+RV);}Rf+='\x23'+encodeURIComponent(RQ);Rq['\x70'+'\x75'+'\x73'+'\x68'](Rf);}});return Rq;}async function R3(RY){if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x47'+'\x45'+'\x54'){if(!o){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e','\x6b\x76\x45\x6e\x61\x62\x6c\x65\x64':![]}),{'\x73\x74\x61\x74\x75\x73':0x1f7,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({...a,'\x6b\x76\x45\x6e\x61\x62\x6c\x65\x64':!![]}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x50'+'\x4f'+'\x53'+'\x54'){if(!o){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x6d\x65\x73\x73\x61\x67\x65':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e'+'\uff0c'+'\u65e0'+'\u6cd5'+'\u4fdd'+'\u5b58'+'\u914d'+'\u7f6e'}),{'\x73\x74\x61\x74\x75\x73':0x1f7,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}try{const RG=await RY['\x6a'+'\x73'+'\x6f'+'\x6e']();for(const [Rt,RK]of Object['\x65'+'\x6e'+'\x74'+'\x72'+'\x69'+'\x65'+'\x73'](RG)){if(RK===''||RK===null||RK===undefined){delete a[Rt];}else{a[Rt]=RK;}}await D6();R5();if(RG['\x79'+'\x78']!==undefined){R6();}const RO=D7('\x79'+'\x78'+'\x55'+'\x52'+'\x4c','')||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';const RF='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';if(RO!==RF){m['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']=0x0;I=[];S=[];}else{E=[{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x55'+'\x53'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x55'+'\x53','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x55'+'\x53','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x53'+'\x47'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x53'+'\x47','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x53'+'\x47','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x4a'+'\x50'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x4a'+'\x50','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x4a'+'\x50','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x4b'+'\x52'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x4b'+'\x52','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x4b'+'\x52','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x44'+'\x45'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x44'+'\x45','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x44'+'\x45','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x53'+'\x45'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x53'+'\x45','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x53'+'\x45','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x4e'+'\x4c'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x4e'+'\x4c','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x4e'+'\x4c','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x46'+'\x49'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x46'+'\x49','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x46'+'\x49','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x47'+'\x42'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x47'+'\x42','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x47'+'\x42','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x4f'+'\x72'+'\x61'+'\x63'+'\x6c'+'\x65'+'\x2e'+'\x63'+'\x6d'+'\x6c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x4f'+'\x72'+'\x61'+'\x63'+'\x6c'+'\x65','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x4f'+'\x72'+'\x61'+'\x63'+'\x6c'+'\x65','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x44'+'\x69'+'\x67'+'\x69'+'\x74'+'\x61'+'\x6c'+'\x4f'+'\x63'+'\x65'+'\x61'+'\x6e'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x44'+'\x69'+'\x67'+'\x69'+'\x74'+'\x61'+'\x6c'+'\x4f'+'\x63'+'\x65'+'\x61'+'\x6e','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x44'+'\x69'+'\x67'+'\x69'+'\x74'+'\x61'+'\x6c'+'\x4f'+'\x63'+'\x65'+'\x61'+'\x6e','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x56'+'\x75'+'\x6c'+'\x74'+'\x72'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x56'+'\x75'+'\x6c'+'\x74'+'\x72','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x56'+'\x75'+'\x6c'+'\x74'+'\x72','\x70\x6f\x72\x74':0x1bb},{'\x64\x6f\x6d\x61\x69\x6e':'\x50'+'\x72'+'\x6f'+'\x78'+'\x79'+'\x49'+'\x50'+'\x2e'+'\x4d'+'\x75'+'\x6c'+'\x74'+'\x61'+'\x63'+'\x6f'+'\x6d'+'\x2e'+'\x43'+'\x4d'+'\x4c'+'\x69'+'\x75'+'\x73'+'\x73'+'\x73'+'\x73'+'\x2e'+'\x6e'+'\x65'+'\x74','\x72\x65\x67\x69\x6f\x6e':'\x4d'+'\x75'+'\x6c'+'\x74'+'\x61'+'\x63'+'\x6f'+'\x6d','\x72\x65\x67\x69\x6f\x6e\x43\x6f\x64\x65':'\x4d'+'\x75'+'\x6c'+'\x74'+'\x61'+'\x63'+'\x6f'+'\x6d','\x70\x6f\x72\x74':0x1bb}];m['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']=0x0;m['\x70'+'\x75'+'\x73'+'\x68']({'\x6e\x61\x6d\x65':'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2e'+'\x31'+'\x38'+'\x32'+'\x36'+'\x38'+'\x32'+'\x2e'+'\x78'+'\x79'+'\x7a','\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2e'+'\x31'+'\x38'+'\x32'+'\x36'+'\x38'+'\x32'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x6e\x61\x6d\x65':'\x73'+'\x70'+'\x65'+'\x65'+'\x64'+'\x2e'+'\x6d'+'\x61'+'\x72'+'\x69'+'\x73'+'\x61'+'\x6c'+'\x6e'+'\x63'+'\x2e'+'\x63'+'\x6f'+'\x6d','\x64\x6f\x6d\x61\x69\x6e':'\x73'+'\x70'+'\x65'+'\x65'+'\x64'+'\x2e'+'\x6d'+'\x61'+'\x72'+'\x69'+'\x73'+'\x61'+'\x6c'+'\x6e'+'\x63'+'\x2e'+'\x63'+'\x6f'+'\x6d'},{'\x64\x6f\x6d\x61\x69\x6e':'\x66'+'\x72'+'\x65'+'\x65'+'\x79'+'\x78'+'\x2e'+'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x38'+'\x38'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'},{'\x64\x6f\x6d\x61\x69\x6e':'\x62'+'\x65'+'\x73'+'\x74'+'\x63'+'\x66'+'\x2e'+'\x74'+'\x6f'+'\x70'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x64'+'\x6e'+'\x2e'+'\x32'+'\x30'+'\x32'+'\x30'+'\x31'+'\x31'+'\x31'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x69'+'\x70'+'\x2e'+'\x63'+'\x66'+'\x63'+'\x64'+'\x6e'+'\x2e'+'\x76'+'\x69'+'\x70'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x2e'+'\x30'+'\x73'+'\x6d'+'\x2e'+'\x63'+'\x6f'+'\x6d'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x2e'+'\x30'+'\x39'+'\x30'+'\x32'+'\x32'+'\x37'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x2e'+'\x7a'+'\x68'+'\x65'+'\x74'+'\x65'+'\x6e'+'\x67'+'\x73'+'\x68'+'\x61'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2e'+'\x39'+'\x6a'+'\x79'+'\x2e'+'\x63'+'\x63'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x2e'+'\x7a'+'\x65'+'\x72'+'\x6f'+'\x6e'+'\x65'+'\x2d'+'\x63'+'\x64'+'\x6e'+'\x2e'+'\x70'+'\x70'+'\x2e'+'\x75'+'\x61'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x69'+'\x70'+'\x2e'+'\x31'+'\x33'+'\x32'+'\x33'+'\x31'+'\x32'+'\x33'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x66'+'\x75'+'\x63'+'\x6b'+'\x78'+'\x78'+'\x73'+'\x2e'+'\x79'+'\x75'+'\x63'+'\x68'+'\x65'+'\x6e'+'\x2e'+'\x69'+'\x63'+'\x75'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x69'+'\x70'+'\x2e'+'\x6d'+'\x6f'+'\x66'+'\x61'+'\x73'+'\x68'+'\x69'+'\x2e'+'\x6c'+'\x74'+'\x64'},{'\x64\x6f\x6d\x61\x69\x6e':'\x31'+'\x31'+'\x35'+'\x31'+'\x35'+'\x35'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x6e'+'\x61'+'\x6d'+'\x65'+'\x2e'+'\x78'+'\x69'+'\x72'+'\x61'+'\x6e'+'\x63'+'\x64'+'\x6e'+'\x2e'+'\x75'+'\x73'},{'\x64\x6f\x6d\x61\x69\x6e':'\x66'+'\x33'+'\x30'+'\x35'+'\x38'+'\x31'+'\x37'+'\x31'+'\x63'+'\x61'+'\x64'+'\x2e'+'\x30'+'\x30'+'\x32'+'\x34'+'\x30'+'\x34'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x38'+'\x2e'+'\x38'+'\x38'+'\x39'+'\x32'+'\x38'+'\x38'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x64'+'\x6e'+'\x2e'+'\x74'+'\x7a'+'\x70'+'\x72'+'\x6f'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x63'+'\x66'+'\x2e'+'\x38'+'\x37'+'\x37'+'\x37'+'\x37'+'\x31'+'\x2e'+'\x78'+'\x79'+'\x7a'},{'\x64\x6f\x6d\x61\x69\x6e':'\x78'+'\x6e'+'\x2d'+'\x2d'+'\x62'+'\x36'+'\x67'+'\x61'+'\x63'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'});}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\u914d'+'\u7f6e'+'\u5df2'+'\u4fdd'+'\u5b58','\x63\x6f\x6e\x66\x69\x67':a}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}catch(Rq){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x6d\x65\x73\x73\x61\x67\x65':'\u4fdd'+'\u5b58'+'\u914d'+'\u7f6e'+'\u5931'+'\u8d25'+'\x3a'+'\x20'+Rq['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65']}),{'\x73\x74\x61\x74\x75\x73':0x1f4,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x65\x72\x72\x6f\x72':'\x4d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64'+'\x20'+'\x6e'+'\x6f'+'\x74'+'\x20'+'\x61'+'\x6c'+'\x6c'+'\x6f'+'\x77'+'\x65'+'\x64'}),{'\x73\x74\x61\x74\x75\x73':0x195,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}async function R4(RY){if(!o){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u672a'+'\u914d'+'\u7f6e','\x6d\x65\x73\x73\x61\x67\x65':'\u9700'+'\u8981'+'\u914d'+'\u7f6e'+'\x4b'+'\x56'+'\u5b58'+'\u50a8'+'\u624d'+'\u80fd'+'\u4f7f'+'\u7528'+'\u6b64'+'\u529f'+'\u80fd'}),{'\x73\x74\x61\x74\x75\x73':0x1f7,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}const RG=D7('\x61'+'\x65','')==='\x79'+'\x65'+'\x73';if(!RG){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\x41'+'\x50'+'\x49'+'\u529f'+'\u80fd'+'\u672a'+'\u542f'+'\u7528','\x6d\x65\x73\x73\x61\x67\x65':'\u51fa'+'\u4e8e'+'\u5b89'+'\u5168'+'\u8003'+'\u8651'+'\uff0c'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\x20'+'\x41'+'\x50'+'\x49'+'\u529f'+'\u80fd'+'\u9ed8'+'\u8ba4'+'\u5173'+'\u95ed'+'\u3002'+'\u8bf7'+'\u5728'+'\u914d'+'\u7f6e'+'\u7ba1'+'\u7406'+'\u9875'+'\u9762'+'\u5f00'+'\u542f'+'\x22'+'\u5141'+'\u8bb8'+'\x41'+'\x50'+'\x49'+'\u7ba1'+'\u7406'+'\x22'+'\u9009'+'\u9879'+'\u540e'+'\u4f7f'+'\u7528'+'\u3002'}),{'\x73\x74\x61\x74\x75\x73':0x193,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}try{if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x47'+'\x45'+'\x54'){const RO=D7('\x79'+'\x78','');const RF=R7(RO);return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':!![],'\x63\x6f\x75\x6e\x74':RF['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],'\x64\x61\x74\x61':RF}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x50'+'\x4f'+'\x53'+'\x54'){const Rt=await RY['\x6a'+'\x73'+'\x6f'+'\x6e']();const RK=Array['\x69'+'\x73'+'\x41'+'\x72'+'\x72'+'\x61'+'\x79'](Rt)?Rt:[Rt];if(RK['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\u8bf7'+'\u6c42'+'\u6570'+'\u636e'+'\u4e3a'+'\u7a7a','\x6d\x65\x73\x73\x61\x67\x65':'\u8bf7'+'\u63d0'+'\u4f9b'+'\x49'+'\x50'+'\u6570'+'\u636e'}),{'\x73\x74\x61\x74\x75\x73':0x190,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}const Rq=D7('\x79'+'\x78','');let RI=R7(Rq);const RS=[];const RM=[];const Rg=[];for(const Ri of RK){if(!Ri['\x69'+'\x70']){Rg['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':'\u672a'+'\u77e5','\x72\x65\x61\x73\x6f\x6e':'\x49'+'\x50'+'\u5730'+'\u5740'+'\u662f'+'\u5fc5'+'\u9700'+'\u7684'});continue;}const RC=Ri['\x70'+'\x6f'+'\x72'+'\x74']||0x1bb;const Rv=Ri['\x6e'+'\x61'+'\x6d'+'\x65']||'\x41'+'\x50'+'\x49'+'\u4f18'+'\u9009'+'\x2d'+Ri['\x69'+'\x70']+'\x3a'+RC;if(!D3(Ri['\x69'+'\x70'])&&!R9(Ri['\x69'+'\x70'])){Rg['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Ri['\x69'+'\x70'],'\x72\x65\x61\x73\x6f\x6e':'\u65e0'+'\u6548'+'\u7684'+'\x49'+'\x50'+'\u6216'+'\u57df'+'\u540d'+'\u683c'+'\u5f0f'});continue;}const Rd=RI['\x73'+'\x6f'+'\x6d'+'\x65'](RJ=>RJ['\x69'+'\x70']===Ri['\x69'+'\x70']&&RJ['\x70'+'\x6f'+'\x72'+'\x74']===RC);if(Rd){RM['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Ri['\x69'+'\x70'],'\x70\x6f\x72\x74':RC,'\x72\x65\x61\x73\x6f\x6e':'\u5df2'+'\u5b58'+'\u5728'});continue;}const RH={'\x69\x70':Ri['\x69'+'\x70'],'\x70\x6f\x72\x74':RC,'\x6e\x61\x6d\x65':Rv,'\x61\x64\x64\x65\x64\x41\x74':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()};RI['\x70'+'\x75'+'\x73'+'\x68'](RH);RS['\x70'+'\x75'+'\x73'+'\x68'](RH);}if(RS['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){const RJ=R8(RI);await D8('\x79'+'\x78',RJ);R6();}return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':RS['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0,'\x6d\x65\x73\x73\x61\x67\x65':'\u6210'+'\u529f'+'\u6dfb'+'\u52a0'+'\x20'+RS['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']+('\x20'+'\u4e2a'+'\x49'+'\x50'),'\x61\x64\x64\x65\x64':RS['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],'\x73\x6b\x69\x70\x70\x65\x64':RM['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],'\x65\x72\x72\x6f\x72\x73':Rg['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'],'\x64\x61\x74\x61':{'\x61\x64\x64\x65\x64\x49\x50\x73':RS,'\x73\x6b\x69\x70\x70\x65\x64\x49\x50\x73':RM['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0?RM:undefined,'\x65\x72\x72\x6f\x72\x73':Rg['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0?Rg:undefined}}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else if(RY['\x6d'+'\x65'+'\x74'+'\x68'+'\x6f'+'\x64']==='\x44'+'\x45'+'\x4c'+'\x45'+'\x54'+'\x45'){const RX=await RY['\x6a'+'\x73'+'\x6f'+'\x6e']();if(RX['\x61'+'\x6c'+'\x6c']===!![]){const Rh=D7('\x79'+'\x78','');const Rj=R7(Rh);const Ru=Rj['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];await D8('\x79'+'\x78','');R6();return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\u5df2'+'\u6e05'+'\u7a7a'+'\u6240'+'\u6709'+'\u4f18'+'\u9009'+'\x49'+'\x50'+'\uff0c'+'\u5171'+'\u5220'+'\u9664'+'\x20'+Ru+('\x20'+'\u4e2a'),'\x64\x65\x6c\x65\x74\x65\x64\x43\x6f\x75\x6e\x74':Ru}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}if(!RX['\x69'+'\x70']){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\x49'+'\x50'+'\u5730'+'\u5740'+'\u662f'+'\u5fc5'+'\u9700'+'\u7684','\x6d\x65\x73\x73\x61\x67\x65':'\u8bf7'+'\u63d0'+'\u4f9b'+'\u8981'+'\u5220'+'\u9664'+'\u7684'+'\x69'+'\x70'+'\u5b57'+'\u6bb5'+'\uff0c'+'\u6216'+'\u4f7f'+'\u7528'+'\x20'+'\x7b'+'\x22'+'\x61'+'\x6c'+'\x6c'+'\x22'+'\x3a'+'\x20'+'\x74'+'\x72'+'\x75'+'\x65'+'\x7d'+'\x20'+'\u6e05'+'\u7a7a'+'\u6240'+'\u6709'}),{'\x73\x74\x61\x74\x75\x73':0x190,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}const RQ=RX['\x70'+'\x6f'+'\x72'+'\x74']||0x1bb;const Rf=D7('\x79'+'\x78','');let RV=R7(Rf);const Rx=RV['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'];const Ry=RV['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RT=>!(RT['\x69'+'\x70']===RX['\x69'+'\x70']&&RT['\x70'+'\x6f'+'\x72'+'\x74']===RQ));if(Ry['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===Rx){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u4e0d'+'\u5b58'+'\u5728','\x6d\x65\x73\x73\x61\x67\x65':RX['\x69'+'\x70']+'\x3a'+RQ+('\x20'+'\u672a'+'\u627e'+'\u5230')}),{'\x73\x74\x61\x74\x75\x73':0x194,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}const Rb=R8(Ry);await D8('\x79'+'\x78',Rb);R6();return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':!![],'\x6d\x65\x73\x73\x61\x67\x65':'\u4f18'+'\u9009'+'\x49'+'\x50'+'\u5df2'+'\u5220'+'\u9664','\x64\x65\x6c\x65\x74\x65\x64':{'\x69\x70':RX['\x69'+'\x70'],'\x70\x6f\x72\x74':RQ}}),{'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}else{return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\u4e0d'+'\u652f'+'\u6301'+'\u7684'+'\u8bf7'+'\u6c42'+'\u65b9'+'\u6cd5','\x6d\x65\x73\x73\x61\x67\x65':'\u652f'+'\u6301'+'\u7684'+'\u65b9'+'\u6cd5'+'\x3a'+'\x20'+'\x47'+'\x45'+'\x54'+'\x2c'+'\x20'+'\x50'+'\x4f'+'\x53'+'\x54'+'\x2c'+'\x20'+'\x44'+'\x45'+'\x4c'+'\x45'+'\x54'+'\x45'}),{'\x73\x74\x61\x74\x75\x73':0x195,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}catch(RT){return new Response(JSON['\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'+'\x69'+'\x66'+'\x79']({'\x73\x75\x63\x63\x65\x73\x73':![],'\x65\x72\x72\x6f\x72':'\u5904'+'\u7406'+'\u8bf7'+'\u6c42'+'\u5931'+'\u8d25','\x6d\x65\x73\x73\x61\x67\x65':RT['\x6d'+'\x65'+'\x73'+'\x73'+'\x61'+'\x67'+'\x65']}),{'\x73\x74\x61\x74\x75\x73':0x1f4,'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61'+'\x70'+'\x70'+'\x6c'+'\x69'+'\x63'+'\x61'+'\x74'+'\x69'+'\x6f'+'\x6e'+'\x2f'+'\x6a'+'\x73'+'\x6f'+'\x6e'}});}}function R5(){const RY=D7('\x77'+'\x6b','');if(RY&&RY['\x74'+'\x72'+'\x69'+'\x6d']()){d=RY['\x74'+'\x72'+'\x69'+'\x6d']()['\x74'+'\x6f'+'\x55'+'\x70'+'\x70'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();v=d;}else{const RH=D7('\x70','');if(RH&&RH['\x74'+'\x72'+'\x69'+'\x6d']()){v='\x43'+'\x55'+'\x53'+'\x54'+'\x4f'+'\x4d';}else{d='';}}const RG=D7('\x72'+'\x6d','');if(RG&&RG['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x6e'+'\x6f'){C=![];}else{C=!![];}const RO=D7('\x65'+'\x76','');if(RO!==undefined&&RO!==''){X=RO==='\x79'+'\x65'+'\x73'||RO===!![]||RO==='\x74'+'\x72'+'\x75'+'\x65';}const RF=D7('\x65'+'\x74','');if(RF!==undefined&&RF!==''){Q=RF==='\x79'+'\x65'+'\x73'||RF===!![]||RF==='\x74'+'\x72'+'\x75'+'\x65';}V=D7('\x74'+'\x70','')||'';const Rt=D7('\x65'+'\x78','');if(Rt!==undefined&&Rt!==''){f=Rt==='\x79'+'\x65'+'\x73'||Rt===!![]||Rt==='\x74'+'\x72'+'\x75'+'\x65';}if(!X&&!Q&&!f){X=!![];}h=D7('\x73'+'\x63'+'\x75','')||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x75'+'\x72'+'\x6c'+'\x2e'+'\x76'+'\x31'+'\x2e'+'\x6d'+'\x6b'+'\x2f'+'\x73'+'\x75'+'\x62';const RK=D7('\x65'+'\x70'+'\x64','\x6e'+'\x6f');if(RK!==undefined&&RK!==''){u=RK!=='\x6e'+'\x6f'&&RK!==![]&&RK!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const Rq=D7('\x65'+'\x70'+'\x69','');if(Rq!==undefined&&Rq!==''){T=Rq!=='\x6e'+'\x6f'&&Rq!==![]&&Rq!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const RI=D7('\x65'+'\x67'+'\x69','');if(RI!==undefined&&RI!==''){c=RI!=='\x6e'+'\x6f'&&RI!==![]&&RI!=='\x66'+'\x61'+'\x6c'+'\x73'+'\x65';}const RS=D7('\x65'+'\x63'+'\x68','');if(RS!==undefined&&RS!==''){x=RS==='\x79'+'\x65'+'\x73'||RS===!![]||RS==='\x74'+'\x72'+'\x75'+'\x65';}const RM=D7('\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x44'+'\x4e'+'\x53','');if(RM&&RM['\x74'+'\x72'+'\x69'+'\x6d']()){y=RM['\x74'+'\x72'+'\x69'+'\x6d']();}else{y='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x64'+'\x6e'+'\x73'+'\x2e'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67'+'\x2e'+'\x65'+'\x75'+'\x2e'+'\x6f'+'\x72'+'\x67'+'\x2f'+'\x6a'+'\x6f'+'\x65'+'\x79'+'\x62'+'\x6c'+'\x6f'+'\x67';}const Rg=D7('\x63'+'\x75'+'\x73'+'\x74'+'\x6f'+'\x6d'+'\x45'+'\x43'+'\x48'+'\x44'+'\x6f'+'\x6d'+'\x61'+'\x69'+'\x6e','');if(Rg&&Rg['\x74'+'\x72'+'\x69'+'\x6d']()){b=Rg['\x74'+'\x72'+'\x69'+'\x6d']();}else{b='\x63'+'\x6c'+'\x6f'+'\x75'+'\x64'+'\x66'+'\x6c'+'\x61'+'\x72'+'\x65'+'\x2d'+'\x65'+'\x63'+'\x68'+'\x2e'+'\x63'+'\x6f'+'\x6d';}if(x){g=!![];}const Ri=D7('\x64'+'\x6b'+'\x62'+'\x79','');if(Ri&&Ri['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x79'+'\x65'+'\x73'){g=!![];}J=D7('\x64','')||'';H=D7('\x79'+'\x78'+'\x55'+'\x52'+'\x4c','')||'\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';const RC=D7('\x70','');if(RC){K=RC['\x74'+'\x72'+'\x69'+'\x6d']();}else{K='';}q=D7('\x73','')||'';if(q){try{r=Dx(q);e=!![];}catch(RJ){e=![];}}else{e=![];}const Rv=D7('\x79'+'\x78'+'\x62'+'\x79','');if(Rv&&Rv['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()==='\x79'+'\x65'+'\x73'){i=!![];}else{i=![];}const Rd='\x68'+'\x74'+'\x74'+'\x70'+'\x73'+'\x3a'+'\x2f'+'\x2f'+'\x72'+'\x61'+'\x77'+'\x2e'+'\x67'+'\x69'+'\x74'+'\x68'+'\x75'+'\x62'+'\x75'+'\x73'+'\x65'+'\x72'+'\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2e'+'\x63'+'\x6f'+'\x6d'+'\x2f'+'\x71'+'\x77'+'\x65'+'\x72'+'\x2d'+'\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x2f'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2f'+'\x72'+'\x65'+'\x66'+'\x73'+'\x2f'+'\x68'+'\x65'+'\x61'+'\x64'+'\x73'+'\x2f'+'\x6d'+'\x61'+'\x69'+'\x6e'+'\x2f'+'\x6b'+'\x65'+'\x6a'+'\x69'+'\x6c'+'\x61'+'\x6e'+'\x64'+'\x62'+'\x65'+'\x73'+'\x74'+'\x69'+'\x70'+'\x2e'+'\x74'+'\x78'+'\x74';if(H!==Rd){m['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']=0x0;I=[];S=[];}}function R6(){const RY=D7('\x79'+'\x78','');if(RY){try{const RG=RY['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](RO=>RO['\x74'+'\x72'+'\x69'+'\x6d']())['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RO=>RO);I=[];S=[];RG['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RO=>{let RF='';let Rt=RO;if(RO['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x23')){const RI=RO['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x23');Rt=RI[0x0]['\x74'+'\x72'+'\x69'+'\x6d']();RF=RI[0x1]['\x74'+'\x72'+'\x69'+'\x6d']();}const {address:RK,port:Rq}=DF(Rt);if(!RF){RF='\u81ea'+'\u5b9a'+'\u4e49'+'\u4f18'+'\u9009'+'\x2d'+RK+(Rq?'\x3a'+Rq:'');}if(D3(RK)){I['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':RK,'\x70\x6f\x72\x74':Rq,'\x69\x73\x70':RF});}else{S['\x70'+'\x75'+'\x73'+'\x68']({'\x64\x6f\x6d\x61\x69\x6e':RK,'\x70\x6f\x72\x74':Rq,'\x6e\x61\x6d\x65':RF});}});}catch(RO){I=[];S=[];}}else{I=[];S=[];}}function R7(RY){if(!RY||!RY['\x74'+'\x72'+'\x69'+'\x6d']())return[];const RG=RY['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](RF=>RF['\x74'+'\x72'+'\x69'+'\x6d']())['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](RF=>RF);const RO=[];for(const RF of RG){let Rt='';let RK=RF;if(RF['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x23')){const RS=RF['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x23');RK=RS[0x0]['\x74'+'\x72'+'\x69'+'\x6d']();Rt=RS[0x1]['\x74'+'\x72'+'\x69'+'\x6d']();}const {address:Rq,port:RI}=DF(RK);if(!Rt){Rt=Rq+(RI?'\x3a'+RI:'');}RO['\x70'+'\x75'+'\x73'+'\x68']({'\x69\x70':Rq,'\x70\x6f\x72\x74':RI||0x1bb,'\x6e\x61\x6d\x65':Rt,'\x61\x64\x64\x65\x64\x41\x74':new Date()['\x74'+'\x6f'+'\x49'+'\x53'+'\x4f'+'\x53'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67']()});}return RO;}function R8(RY){if(!RY||RY['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0)return'';return RY['\x6d'+'\x61'+'\x70'](RG=>{const RO=RG['\x70'+'\x6f'+'\x72'+'\x74']||0x1bb;return RG['\x69'+'\x70']+'\x3a'+RO+'\x23'+RG['\x6e'+'\x61'+'\x6d'+'\x65'];})['\x6a'+'\x6f'+'\x69'+'\x6e']('\x2c');}function R9(RY){const RG=/^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}$/;return RG['\x74'+'\x65'+'\x73'+'\x74'](RY);}async function RD(RY){var RG=RY['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/[ "'\r\n]+/g,'\x2c')['\x72'+'\x65'+'\x70'+'\x6c'+'\x61'+'\x63'+'\x65'](/,+/g,'\x2c');if(RG['\x63'+'\x68'+'\x61'+'\x72'+'\x41'+'\x74'](0x0)=='\x2c')RG=RG['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x1);if(RG['\x63'+'\x68'+'\x61'+'\x72'+'\x41'+'\x74'](RG['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']-0x1)=='\x2c')RG=RG['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x0,RG['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']-0x1);return RG['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c');}async function RR(RY,RG='\x34'+'\x34'+'\x33',RO=0xbb8){if(!RY?.['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68'])return[];const RF=new Set();await Promise['\x61'+'\x6c'+'\x6c'+'\x53'+'\x65'+'\x74'+'\x74'+'\x6c'+'\x65'+'\x64'](RY['\x6d'+'\x61'+'\x70'](async Rt=>{try{const RK=new AbortController();const Rq=setTimeout(()=>RK['\x61'+'\x62'+'\x6f'+'\x72'+'\x74'](),RO);const RI=await fetch(Rt,{'\x73\x69\x67\x6e\x61\x6c':RK['\x73'+'\x69'+'\x67'+'\x6e'+'\x61'+'\x6c']});clearTimeout(Rq);let RS='';try{const RC=await RI['\x61'+'\x72'+'\x72'+'\x61'+'\x79'+'\x42'+'\x75'+'\x66'+'\x66'+'\x65'+'\x72']();const Rv=(RI['\x68'+'\x65'+'\x61'+'\x64'+'\x65'+'\x72'+'\x73']['\x67'+'\x65'+'\x74']('\x63'+'\x6f'+'\x6e'+'\x74'+'\x65'+'\x6e'+'\x74'+'\x2d'+'\x74'+'\x79'+'\x70'+'\x65')||'')['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']();const Rd=Rv['\x6d'+'\x61'+'\x74'+'\x63'+'\x68'](/charset=([^\s;]+)/i)?.[0x1]?.['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()||'';let RH=['\x75'+'\x74'+'\x66'+'\x2d'+'\x38','\x67'+'\x62'+'\x32'+'\x33'+'\x31'+'\x32'];if(Rd['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x67'+'\x62')||Rd['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x67'+'\x62'+'\x6b')||Rd['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x67'+'\x62'+'\x32'+'\x33'+'\x31'+'\x32')){RH=['\x67'+'\x62'+'\x32'+'\x33'+'\x31'+'\x32','\x75'+'\x74'+'\x66'+'\x2d'+'\x38'];}let RJ=![];for(const RX of RH){try{const RQ=new TextDecoder(RX)['\x64'+'\x65'+'\x63'+'\x6f'+'\x64'+'\x65'](RC);if(RQ&&RQ['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0&&!RQ['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\ufffd')){RS=RQ;RJ=!![];break;}else if(RQ&&RQ['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x0){continue;}}catch(Rf){continue;}}if(!RJ){RS=await RI['\x74'+'\x65'+'\x78'+'\x74']();}if(!RS||RS['\x74'+'\x72'+'\x69'+'\x6d']()['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']===0x0){return;}}catch(RV){return;}const RM=RS['\x74'+'\x72'+'\x69'+'\x6d']()['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x0a')['\x6d'+'\x61'+'\x70'](Rx=>Rx['\x74'+'\x72'+'\x69'+'\x6d']())['\x66'+'\x69'+'\x6c'+'\x74'+'\x65'+'\x72'](Rx=>Rx);const Rg=RM['\x6c'+'\x65'+'\x6e'+'\x67'+'\x74'+'\x68']>0x1&&RM[0x0]['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x2c');const Ri=/^[^\[\]]*:[^\[\]]*:[^\[\]]/;if(!Rg){RM['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](Rx=>{const Ry=Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x23');const [Rb,Rh]=Ry>-0x1?[Rx['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](0x0,Ry),Rx['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](Ry)]:[Rx,''];let Rj=![];if(Rb['\x73'+'\x74'+'\x61'+'\x72'+'\x74'+'\x73'+'\x57'+'\x69'+'\x74'+'\x68']('\x5b')){Rj=/\]:(\d+)$/['\x74'+'\x65'+'\x73'+'\x74'](Rb);}else{const RT=Rb['\x6c'+'\x61'+'\x73'+'\x74'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x3a');Rj=RT>-0x1&&/^\d+$/['\x74'+'\x65'+'\x73'+'\x74'](Rb['\x73'+'\x75'+'\x62'+'\x73'+'\x74'+'\x72'+'\x69'+'\x6e'+'\x67'](RT+0x1));}const Ru=new URL(Rt)['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x70'+'\x6f'+'\x72'+'\x74')||RG;RF['\x61'+'\x64'+'\x64'](Rj?Rx:Rb+'\x3a'+Ru+Rh);});}else{const Rx=RM[0x0]['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](Rb=>Rb['\x74'+'\x72'+'\x69'+'\x6d']());const Ry=RM['\x73'+'\x6c'+'\x69'+'\x63'+'\x65'](0x1);if(Rx['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x49'+'\x50'+'\u5730'+'\u5740')&&Rx['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u7aef'+'\u53e3')&&Rx['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u6570'+'\u636e'+'\u4e2d'+'\u5fc3')){const Rb=Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x49'+'\x50'+'\u5730'+'\u5740'),Rh=Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u7aef'+'\u53e3');const Rj=Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u56fd'+'\u5bb6')>-0x1?Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u56fd'+'\u5bb6'):Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u57ce'+'\u5e02')>-0x1?Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u57ce'+'\u5e02'):Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\u6570'+'\u636e'+'\u4e2d'+'\u5fc3');const Ru=Rx['\x69'+'\x6e'+'\x64'+'\x65'+'\x78'+'\x4f'+'\x66']('\x54'+'\x4c'+'\x53');Ry['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RT=>{const Rc=RT['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](Ra=>Ra['\x74'+'\x72'+'\x69'+'\x6d']());if(Ru!==-0x1&&Rc[Ru]?.['\x74'+'\x6f'+'\x4c'+'\x6f'+'\x77'+'\x65'+'\x72'+'\x43'+'\x61'+'\x73'+'\x65']()!=='\x74'+'\x72'+'\x75'+'\x65')return;const Ro=Ri['\x74'+'\x65'+'\x73'+'\x74'](Rc[Rb])?'\x5b'+Rc[Rb]+'\x5d':Rc[Rb];RF['\x61'+'\x64'+'\x64'](Ro+'\x3a'+Rc[Rh]+'\x23'+Rc[Rj]);});}else if(Rx['\x73'+'\x6f'+'\x6d'+'\x65'](RT=>RT['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x49'+'\x50'))&&Rx['\x73'+'\x6f'+'\x6d'+'\x65'](RT=>RT['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u5ef6'+'\u8fdf'))&&Rx['\x73'+'\x6f'+'\x6d'+'\x65'](RT=>RT['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u4e0b'+'\u8f7d'+'\u901f'+'\u5ea6'))){const RT=Rx['\x66'+'\x69'+'\x6e'+'\x64'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'](RW=>RW['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\x49'+'\x50'));const Rc=Rx['\x66'+'\x69'+'\x6e'+'\x64'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'](RW=>RW['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u5ef6'+'\u8fdf'));const Ro=Rx['\x66'+'\x69'+'\x6e'+'\x64'+'\x49'+'\x6e'+'\x64'+'\x65'+'\x78'](RW=>RW['\x69'+'\x6e'+'\x63'+'\x6c'+'\x75'+'\x64'+'\x65'+'\x73']('\u4e0b'+'\u8f7d'+'\u901f'+'\u5ea6'));const Ra=new URL(Rt)['\x73'+'\x65'+'\x61'+'\x72'+'\x63'+'\x68'+'\x50'+'\x61'+'\x72'+'\x61'+'\x6d'+'\x73']['\x67'+'\x65'+'\x74']('\x70'+'\x6f'+'\x72'+'\x74')||RG;Ry['\x66'+'\x6f'+'\x72'+'\x45'+'\x61'+'\x63'+'\x68'](RW=>{const RE=RW['\x73'+'\x70'+'\x6c'+'\x69'+'\x74']('\x2c')['\x6d'+'\x61'+'\x70'](RL=>RL['\x74'+'\x72'+'\x69'+'\x6d']());const Rm=Ri['\x74'+'\x65'+'\x73'+'\x74'](RE[RT])?'\x5b'+RE[RT]+'\x5d':RE[RT];RF['\x61'+'\x64'+'\x64'](Rm+'\x3a'+Ra+('\x23'+'\x43'+'\x46'+'\u4f18'+'\u9009'+'\x20')+RE[Rc]+('\x6d'+'\x73'+'\x20')+RE[Ro]+('\x4d'+'\x42'+'\x2f'+'\x73'));});}}}catch(RW){}}));return Array['\x66'+'\x72'+'\x6f'+'\x6d'](RF);} ================================================ FILE: 明文源吗 ================================================ // CFnew - 终端 v2.9.4 // 版本: v2.9.4 import { connect } from 'cloudflare:sockets'; let at = '351c9981-04b6-4103-aa4b-864aa9c91469'; let fallbackAddress = ''; let socks5Config = ''; let customPreferredIPs = []; let customPreferredDomains = []; let enableSocksDowngrade = false; let disableNonTLS = false; let disablePreferred = false; let enableRegionMatching = true; let currentWorkerRegion = ''; let manualWorkerRegion = ''; let piu = ''; let cp = ''; let ev = true; let et = false; let ex = false; let tp = ''; // 启用ECH功能(true启用,false禁用) let enableECH = false; // 自定义DNS服务器(默认:https://dns.joeyblog.eu.org/joeyblog) let customDNS = 'https://dns.joeyblog.eu.org/joeyblog'; // 自定义ECH域名(默认:cloudflare-ech.com) let customECHDomain = 'cloudflare-ech.com'; let scu = 'https://url.v1.mk/sub'; // 远程配置URL(硬编码) const remoteConfigUrl = 'https://raw.githubusercontent.com/byJoey/test/refs/heads/main/tist.ini'; let epd = false; // 优选域名默认关闭 let epi = true; let egi = true; let kvStore = null; let kvConfig = {}; const regionMapping = { 'US': ['🇺🇸 美国', 'US', 'United States'], 'SG': ['🇸🇬 新加坡', 'SG', 'Singapore'], 'JP': ['🇯🇵 日本', 'JP', 'Japan'], 'KR': ['🇰🇷 韩国', 'KR', 'South Korea'], 'DE': ['🇩🇪 德国', 'DE', 'Germany'], 'SE': ['🇸🇪 瑞典', 'SE', 'Sweden'], 'NL': ['🇳🇱 荷兰', 'NL', 'Netherlands'], 'FI': ['🇫🇮 芬兰', 'FI', 'Finland'], 'GB': ['🇬🇧 英国', 'GB', 'United Kingdom'], 'Oracle': ['甲骨文', 'Oracle'], 'DigitalOcean': ['数码海', 'DigitalOcean'], 'Vultr': ['Vultr', 'Vultr'], 'Multacom': ['Multacom', 'Multacom'] }; let backupIPs = [ { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 }, { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 }, { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 }, { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 }, { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 }, { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 }, { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 }, { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 }, { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 }, { domain: 'ProxyIP.Oracle.cmliussss.net', region: 'Oracle', regionCode: 'Oracle', port: 443 }, { domain: 'ProxyIP.DigitalOcean.CMLiussss.net', region: 'DigitalOcean', regionCode: 'DigitalOcean', port: 443 }, { domain: 'ProxyIP.Vultr.CMLiussss.net', region: 'Vultr', regionCode: 'Vultr', port: 443 }, { domain: 'ProxyIP.Multacom.CMLiussss.net', region: 'Multacom', regionCode: 'Multacom', port: 443 } ]; const directDomains = [ { name: "cloudflare.182682.xyz", domain: "cloudflare.182682.xyz" }, { name: "speed.marisalnc.com", domain: "speed.marisalnc.com" }, { domain: "freeyx.cloudflare88.eu.org" }, { domain: "bestcf.top" }, { domain: "cdn.2020111.xyz" }, { domain: "cfip.cfcdn.vip" }, { domain: "cf.0sm.com" }, { domain: "cf.090227.xyz" }, { domain: "cf.zhetengsha.eu.org" }, { domain: "cloudflare.9jy.cc" }, { domain: "cf.zerone-cdn.pp.ua" }, { domain: "cfip.1323123.xyz" }, { domain: "cnamefuckxxs.yuchen.icu" }, { domain: "cloudflare-ip.mofashi.ltd" }, { domain: "115155.xyz" }, { domain: "cname.xirancdn.us" }, { domain: "f3058171cad.002404.xyz" }, { domain: "8.889288.xyz" }, { domain: "cdn.tzpro.xyz" }, { domain: "cf.877771.xyz" }, { domain: "xn--b6gac.eu.org" } ]; const E_INVALID_DATA = atob('aW52YWxpZCBkYXRh'); const E_INVALID_USER = atob('aW52YWxpZCB1c2Vy'); const E_UNSUPPORTED_CMD = atob('Y29tbWFuZCBpcyBub3Qgc3VwcG9ydGVk'); const E_UDP_DNS_ONLY = atob('VURQIHByb3h5IG9ubHkgZW5hYmxlIGZvciBETlMgd2hpY2ggaXMgcG9ydCA1Mw=='); const E_INVALID_ADDR_TYPE = atob('aW52YWxpZCBhZGRyZXNzVHlwZQ=='); const E_EMPTY_ADDR = atob('YWRkcmVzc1ZhbHVlIGlzIGVtcHR5'); const E_WS_NOT_OPEN = atob('d2ViU29ja2V0LmVhZHlTdGF0ZSBpcyBub3Qgb3Blbg=='); const E_INVALID_ID_STR = atob('U3RyaW5naWZpZWQgaWRlbnRpZmllciBpcyBpbnZhbGlk'); const E_INVALID_SOCKS_ADDR = atob('SW52YWxpZCBTT0NLUyBhZGRyZXNzIGZvcm1hdA=='); const E_SOCKS_NO_METHOD = atob('bm8gYWNjZXB0YWJsZSBtZXRob2Rz'); const E_SOCKS_AUTH_NEEDED = atob('c29ja3Mgc2VydmVyIG5lZWRzIGF1dGg='); const E_SOCKS_AUTH_FAIL = atob('ZmFpbCB0byBhdXRoIHNvY2tzIHNlcnZlcg=='); const E_SOCKS_CONN_FAIL = atob('ZmFpbCB0byBvcGVuIHNvY2tzIGNvbm5lY3Rpb24='); let parsedSocks5Config = {}; let isSocksEnabled = false; const ADDRESS_TYPE_IPV4 = 1; const ADDRESS_TYPE_URL = 2; const ADDRESS_TYPE_IPV6 = 3; function isValidFormat(str) { const userRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; return userRegex.test(str); } function isValidIP(ip) { const ipv4Regex = /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/; if (ipv4Regex.test(ip)) return true; const ipv6Regex = /^(?:[0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}$/; if (ipv6Regex.test(ip)) return true; const ipv6ShortRegex = /^::1$|^::$|^(?:[0-9a-fA-F]{1,4}:)*::(?:[0-9a-fA-F]{1,4}:)*[0-9a-fA-F]{1,4}$/; if (ipv6ShortRegex.test(ip)) return true; return false; } async function initKVStore(env) { if (env.C) { try { kvStore = env.C; await loadKVConfig(); } catch (error) { kvStore = null; } } else { } } async function loadKVConfig() { if (!kvStore) { return; } try { const configData = await kvStore.get('c'); if (configData) { kvConfig = JSON.parse(configData); } else { } } catch (error) { kvConfig = {}; } } async function saveKVConfig() { if (!kvStore) { return; } try { const configString = JSON.stringify(kvConfig); await kvStore.put('c', configString); } catch (error) { throw error; } } function getConfigValue(key, defaultValue = '') { if (kvConfig[key] !== undefined) { return kvConfig[key]; } return defaultValue; } async function setConfigValue(key, value) { kvConfig[key] = value; await saveKVConfig(); } async function detectWorkerRegion(request) { try { const cfCountry = request.cf?.country; if (cfCountry) { const countryToRegion = { 'US': 'US', 'SG': 'SG', 'JP': 'JP', 'KR': 'KR', 'DE': 'DE', 'SE': 'SE', 'NL': 'NL', 'FI': 'FI', 'GB': 'GB', 'CN': 'SG', 'TW': 'JP', 'AU': 'SG', 'CA': 'US', 'FR': 'DE', 'IT': 'DE', 'ES': 'DE', 'CH': 'DE', 'AT': 'DE', 'BE': 'NL', 'DK': 'SE', 'NO': 'SE', 'IE': 'GB' }; if (countryToRegion[cfCountry]) { return countryToRegion[cfCountry]; } } return 'SG'; } catch (error) { return 'SG'; } } async function checkIPAvailability(domain, port = 443, timeout = 2000) { try { const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), timeout); const response = await fetch(`https://${domain}`, { method: 'HEAD', signal: controller.signal, headers: { 'User-Agent': 'Mozilla/5.0 (compatible; CF-IP-Checker/1.0)' } }); clearTimeout(timeoutId); return response.status < 500; } catch (error) { return true; } } async function getBestBackupIP(workerRegion = '', useRegionMatching = enableRegionMatching) { if (backupIPs.length === 0) { return null; } const availableIPs = backupIPs.map(ip => ({ ...ip, available: true })); if (useRegionMatching && workerRegion) { const sortedIPs = getSmartRegionSelection(workerRegion, availableIPs, useRegionMatching); if (sortedIPs.length > 0) { const selectedIP = sortedIPs[0]; return selectedIP; } } const selectedIP = availableIPs[0]; return selectedIP; } function getNearbyRegions(region) { const nearbyMap = { 'US': ['SG', 'JP', 'KR'], 'SG': ['JP', 'KR', 'US'], 'JP': ['SG', 'KR', 'US'], 'KR': ['JP', 'SG', 'US'], 'DE': ['NL', 'GB', 'SE', 'FI'], 'SE': ['DE', 'NL', 'FI', 'GB'], 'NL': ['DE', 'GB', 'SE', 'FI'], 'FI': ['SE', 'DE', 'NL', 'GB'], 'GB': ['DE', 'NL', 'SE', 'FI'] }; return nearbyMap[region] || []; } function getAllRegionsByPriority(region) { const nearbyRegions = getNearbyRegions(region); const allRegions = ['US', 'SG', 'JP', 'KR', 'DE', 'SE', 'NL', 'FI', 'GB']; return [region, ...nearbyRegions, ...allRegions.filter(r => r !== region && !nearbyRegions.includes(r))]; } function getSmartRegionSelection(workerRegion, availableIPs, useRegionMatching = enableRegionMatching) { if (!useRegionMatching || !workerRegion) { return availableIPs; } const priorityRegions = getAllRegionsByPriority(workerRegion); const sortedIPs = []; for (const region of priorityRegions) { const regionIPs = availableIPs.filter(ip => ip.regionCode === region); sortedIPs.push(...regionIPs); } return sortedIPs; } function parseAddressAndPort(input) { if (input.includes('[') && input.includes(']')) { const match = input.match(/^\[([^\]]+)\](?::(\d+))?$/); if (match) { return { address: match[1], port: match[2] ? parseInt(match[2], 10) : null }; } } const lastColonIndex = input.lastIndexOf(':'); if (lastColonIndex > 0) { const address = input.substring(0, lastColonIndex); const portStr = input.substring(lastColonIndex + 1); const port = parseInt(portStr, 10); // address 含 ':' 说明是裸 IPv6(如 2001:db8::1),整体当地址,无端口 if (!address.includes(':') && !isNaN(port) && port > 0 && port <= 65535) { return { address, port }; } } return { address: input, port: null }; } export default { async fetch(request, env, ctx) { try { await initKVStore(env); at = (env.u || env.U || at).toLowerCase(); const subPath = (env.d || env.D || at).toLowerCase(); const ci = getConfigValue('p', env.p || env.P); let useCustomIP = false; const manualRegion = getConfigValue('wk', env.wk || env.WK); if (manualRegion && manualRegion.trim()) { manualWorkerRegion = manualRegion.trim().toUpperCase(); currentWorkerRegion = manualWorkerRegion; } else if (ci && ci.trim()) { useCustomIP = true; currentWorkerRegion = 'CUSTOM'; } else { currentWorkerRegion = await detectWorkerRegion(request); } const regionMatchingControl = env.rm || env.RM; if (regionMatchingControl && regionMatchingControl.toLowerCase() === 'no') { enableRegionMatching = false; } const envFallback = getConfigValue('p', env.p || env.P); if (envFallback) { fallbackAddress = envFallback.trim(); } socks5Config = getConfigValue('s', env.s || env.S) || socks5Config; if (socks5Config) { try { parsedSocks5Config = parseSocksConfig(socks5Config); isSocksEnabled = true; } catch (err) { isSocksEnabled = false; } } const customPreferred = getConfigValue('yx', env.yx || env.YX); if (customPreferred) { try { const preferredList = customPreferred.split(',').map(item => item.trim()).filter(item => item); customPreferredIPs = []; customPreferredDomains = []; preferredList.forEach(item => { let nodeName = ''; let addressPart = item; if (item.includes('#')) { const parts = item.split('#'); addressPart = parts[0].trim(); nodeName = parts[1].trim(); } const { address, port } = parseAddressAndPort(addressPart); if (!nodeName) { nodeName = '自定义优选-' + address + (port ? ':' + port : ''); } if (isValidIP(address)) { customPreferredIPs.push({ ip: address, port: port, isp: nodeName }); } else { customPreferredDomains.push({ domain: address, port: port, name: nodeName }); } }); } catch (err) { customPreferredIPs = []; customPreferredDomains = []; } } const downgradeControl = getConfigValue('qj', env.qj || env.QJ); if (downgradeControl && downgradeControl.toLowerCase() === 'no') { enableSocksDowngrade = true; } const dkbyControl = getConfigValue('dkby', env.dkby || env.DKBY); if (dkbyControl && dkbyControl.toLowerCase() === 'yes') { disableNonTLS = true; } const yxbyControl = env.yxby || env.YXBY; if (yxbyControl && yxbyControl.toLowerCase() === 'yes') { disablePreferred = true; } const vlessControl = getConfigValue('ev', env.ev); if (vlessControl !== undefined && vlessControl !== '') { ev = vlessControl === 'yes' || vlessControl === true || vlessControl === 'true'; } const tjControl = getConfigValue('et', env.et); if (tjControl !== undefined && tjControl !== '') { et = tjControl === 'yes' || tjControl === true || tjControl === 'true'; } tp = getConfigValue('tp', env.tp) || ''; const xhttpControl = getConfigValue('ex', env.ex); if (xhttpControl !== undefined && xhttpControl !== '') { ex = xhttpControl === 'yes' || xhttpControl === true || xhttpControl === 'true'; } scu = getConfigValue('scu', env.scu) || 'https://url.v1.mk/sub'; const preferredDomainsControl = getConfigValue('epd', env.epd || 'no'); if (preferredDomainsControl !== undefined && preferredDomainsControl !== '') { epd = preferredDomainsControl !== 'no' && preferredDomainsControl !== false && preferredDomainsControl !== 'false'; } const preferredIPsControl = getConfigValue('epi', env.epi); if (preferredIPsControl !== undefined && preferredIPsControl !== '') { epi = preferredIPsControl !== 'no' && preferredIPsControl !== false && preferredIPsControl !== 'false'; } const githubIPsControl = getConfigValue('egi', env.egi); if (githubIPsControl !== undefined && githubIPsControl !== '') { egi = githubIPsControl !== 'no' && githubIPsControl !== false && githubIPsControl !== 'false'; } const echControl = getConfigValue('ech', env.ech); if (echControl !== undefined && echControl !== '') { enableECH = echControl === 'yes' || echControl === true || echControl === 'true'; } // 加载自定义DNS和ECH域名配置 const customDNSValue = getConfigValue('customDNS', ''); if (customDNSValue && customDNSValue.trim()) { customDNS = customDNSValue.trim(); } const customECHDomainValue = getConfigValue('customECHDomain', ''); if (customECHDomainValue && customECHDomainValue.trim()) { customECHDomain = customECHDomainValue.trim(); } // 如果启用了ECH,自动启用仅TLS模式(避免80端口干扰) // ECH需要TLS才能工作,所以必须禁用非TLS节点 if (enableECH) { disableNonTLS = true; // 检查 KV 中是否有 dkby: yes,没有就直接写入 const currentDkby = getConfigValue('dkby', ''); if (currentDkby !== 'yes') { await setConfigValue('dkby', 'yes'); } } if (!ev && !et && !ex) { ev = true; } piu = getConfigValue('yxURL', env.yxURL || env.YXURL) || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; cp = getConfigValue('d', env.d || env.D) || ''; const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; if (piu !== defaultURL) { directDomains.length = 0; customPreferredIPs = []; customPreferredDomains = []; } const url = new URL(request.url); if (url.pathname.includes('/api/config')) { const pathParts = url.pathname.split('/').filter(p => p); const apiIndex = pathParts.indexOf('api'); if (apiIndex > 0) { const pathSegments = pathParts.slice(0, apiIndex); const pathIdentifier = pathSegments.join('/'); let isValid = false; if (cp && cp.trim()) { const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim(); isValid = (pathIdentifier === cleanCustomPath); } else { isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at); } if (isValid) { return await handleConfigAPI(request); } else { return new Response(JSON.stringify({ error: '路径验证失败' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } return new Response(JSON.stringify({ error: '无效的API路径' }), { status: 404, headers: { 'Content-Type': 'application/json' } }); } if (url.pathname.includes('/api/preferred-ips')) { const pathParts = url.pathname.split('/').filter(p => p); const apiIndex = pathParts.indexOf('api'); if (apiIndex > 0) { const pathSegments = pathParts.slice(0, apiIndex); const pathIdentifier = pathSegments.join('/'); let isValid = false; if (cp && cp.trim()) { const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim(); isValid = (pathIdentifier === cleanCustomPath); } else { isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at); } if (isValid) { return await handlePreferredIPsAPI(request); } else { return new Response(JSON.stringify({ error: '路径验证失败' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } return new Response(JSON.stringify({ error: '无效的API路径' }), { status: 404, headers: { 'Content-Type': 'application/json' } }); } if (request.method === 'POST' && ex) { const r = await handleXhttpPost(request); if (r) { ctx.waitUntil(r.closed); return new Response(r.readable, { headers: { 'X-Accel-Buffering': 'no', 'Cache-Control': 'no-store', Connection: 'keep-alive', 'User-Agent': 'Go-http-client/2.0', 'Content-Type': 'application/grpc', }, }); } return new Response('Internal Server Error', { status: 500 }); } if (request.headers.get('Upgrade') === atob('d2Vic29ja2V0')) { return await handleWsRequest(request); } if (request.method === 'GET') { // 处理 /{UUID}/region 或 /{自定义路径}/region if (url.pathname.endsWith('/region')) { const pathParts = url.pathname.split('/').filter(p => p); if (pathParts.length === 2 && pathParts[1] === 'region') { const pathIdentifier = pathParts[0]; let isValid = false; if (cp && cp.trim()) { // 使用自定义路径 const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim(); isValid = (pathIdentifier === cleanCustomPath); } else { // 使用UUID路径 isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at); } if (isValid) { const ci = getConfigValue('p', env.p || env.P); const manualRegion = getConfigValue('wk', env.wk || env.WK); if (manualRegion && manualRegion.trim()) { return new Response(JSON.stringify({ region: manualRegion.trim().toUpperCase(), detectionMethod: '手动指定地区', manualRegion: manualRegion.trim().toUpperCase(), timestamp: new Date().toISOString() }), { headers: { 'Content-Type': 'application/json' } }); } else if (ci && ci.trim()) { return new Response(JSON.stringify({ region: 'CUSTOM', detectionMethod: '自定义ProxyIP模式', ci: ci, timestamp: new Date().toISOString() }), { headers: { 'Content-Type': 'application/json' } }); } else { const detectedRegion = await detectWorkerRegion(request); return new Response(JSON.stringify({ region: detectedRegion, detectionMethod: 'API检测', timestamp: new Date().toISOString() }), { headers: { 'Content-Type': 'application/json' } }); } } else { return new Response(JSON.stringify({ error: '访问被拒绝', message: '路径验证失败' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } } // 处理 /{UUID}/test-api 或 /{自定义路径}/test-api if (url.pathname.endsWith('/test-api')) { const pathParts = url.pathname.split('/').filter(p => p); if (pathParts.length === 2 && pathParts[1] === 'test-api') { const pathIdentifier = pathParts[0]; let isValid = false; if (cp && cp.trim()) { // 使用自定义路径 const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim().substring(1) : cp.trim(); isValid = (pathIdentifier === cleanCustomPath); } else { // 使用UUID路径 isValid = (isValidFormat(pathIdentifier) && pathIdentifier === at); } if (isValid) { try { const testRegion = await detectWorkerRegion(request); return new Response(JSON.stringify({ detectedRegion: testRegion, message: 'API测试完成', timestamp: new Date().toISOString() }), { headers: { 'Content-Type': 'application/json' } }); } catch (error) { return new Response(JSON.stringify({ error: error.message, message: 'API测试失败' }), { status: 500, headers: { 'Content-Type': 'application/json' } }); } } else { return new Response(JSON.stringify({ error: '访问被拒绝', message: '路径验证失败' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } } if (url.pathname === '/') { // 检查是否有自定义首页URL配置 const customHomepage = getConfigValue('homepage', env.homepage || env.HOMEPAGE); if (customHomepage && customHomepage.trim()) { try { // 从自定义URL获取内容 const homepageResponse = await fetch(customHomepage.trim(), { method: 'GET', headers: { 'User-Agent': request.headers.get('User-Agent') || 'Mozilla/5.0', 'Accept': request.headers.get('Accept') || '*/*', 'Accept-Language': request.headers.get('Accept-Language') || 'en-US,en;q=0.9', }, redirect: 'follow' }); if (homepageResponse.ok) { // 获取响应内容 const contentType = homepageResponse.headers.get('Content-Type') || 'text/html; charset=utf-8'; const content = await homepageResponse.text(); // 返回自定义首页内容 return new Response(content, { status: homepageResponse.status, headers: { 'Content-Type': contentType, 'Cache-Control': 'no-cache, no-store, must-revalidate', } }); } } catch (error) { // 如果获取失败,继续使用默认终端页面 console.error('获取自定义首页失败:', error); } } // 优先检查Cookie中的语言设置 const cookieHeader = request.headers.get('Cookie') || ''; let langFromCookie = null; if (cookieHeader) { const cookies = cookieHeader.split(';').map(c => c.trim()); for (const cookie of cookies) { if (cookie.startsWith('preferredLanguage=')) { langFromCookie = cookie.split('=')[1]; break; } } } let isFarsi = false; if (langFromCookie === 'fa' || langFromCookie === 'fa-IR') { isFarsi = true; } else if (langFromCookie === 'zh' || langFromCookie === 'zh-CN') { isFarsi = false; } else { // 如果没有Cookie,使用浏览器语言检测 const acceptLanguage = request.headers.get('Accept-Language') || ''; const browserLang = acceptLanguage.split(',')[0].split('-')[0].toLowerCase(); isFarsi = browserLang === 'fa' || acceptLanguage.includes('fa-IR') || acceptLanguage.includes('fa'); } const lang = isFarsi ? 'fa' : 'zh-CN'; const langAttr = isFarsi ? 'fa-IR' : 'zh-CN'; const translations = { zh: { title: '终端', terminal: '终端', congratulations: '恭喜你来到这', enterU: '请输入你U变量的值', enterD: '请输入你D变量的值', command: '命令: connect [', uuid: 'UUID', path: 'PATH', inputU: '输入U变量的内容并且回车...', inputD: '输入D变量的内容并且回车...', connecting: '正在连接...', invading: '正在入侵...', success: '连接成功!返回结果...', error: '错误: 无效的UUID格式', reenter: '请重新输入有效的UUID' }, fa: { title: 'ترمینال', terminal: 'ترمینال', congratulations: 'تبریک می‌گوییم به شما', enterU: 'لطفا مقدار متغیر U خود را وارد کنید', enterD: 'لطفا مقدار متغیر D خود را وارد کنید', command: 'دستور: connect [', uuid: 'UUID', path: 'PATH', inputU: 'محتویات متغیر U را وارد کرده و Enter را بزنید...', inputD: 'محتویات متغیر D را وارد کرده و Enter را بزنید...', connecting: 'در حال اتصال...', invading: 'در حال نفوذ...', success: 'اتصال موفق! در حال بازگشت نتیجه...', error: 'خطا: فرمت UUID نامعتبر', reenter: 'لطفا UUID معتبر را دوباره وارد کنید' } }; const t = translations[isFarsi ? 'fa' : 'zh']; const terminalHtml = ` ${t.title}
${t.terminal}
${t.terminal}
root:~$ ${t.congratulations}
root:~$ ${cp && cp.trim() ? t.enterD : t.enterU}
root:~$ ${t.command}${cp && cp.trim() ? t.path : t.uuid}]
root:~$
`; return new Response(terminalHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } }); } if (cp && cp.trim()) { const cleanCustomPath = cp.trim().startsWith('/') ? cp.trim() : '/' + cp.trim(); const normalizedCustomPath = cleanCustomPath.endsWith('/') && cleanCustomPath.length > 1 ? cleanCustomPath.slice(0, -1) : cleanCustomPath; const normalizedPath = url.pathname.endsWith('/') && url.pathname.length > 1 ? url.pathname.slice(0, -1) : url.pathname; if (normalizedPath === normalizedCustomPath) { return await handleSubscriptionPage(request, at); } if (normalizedPath === normalizedCustomPath + '/sub') { return await handleSubscriptionRequest(request, at, url); } if (url.pathname.length > 1 && url.pathname !== '/') { const user = url.pathname.replace(/\/$/, '').replace('/sub', '').substring(1); if (isValidFormat(user)) { return new Response(JSON.stringify({ error: '访问被拒绝', message: '当前 Worker 已启用自定义路径模式,UUID 访问已禁用' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } } else { if (url.pathname.length > 1 && url.pathname !== '/' && !url.pathname.includes('/sub')) { const user = url.pathname.replace(/\/$/, '').substring(1); if (isValidFormat(user)) { if (user === at) { return await handleSubscriptionPage(request, user); } else { return new Response(JSON.stringify({ error: 'UUID错误 请注意变量名称是u不是uuid' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } } if (url.pathname.includes('/sub')) { const pathParts = url.pathname.split('/'); if (pathParts.length === 2 && pathParts[1] === 'sub') { const user = pathParts[0].substring(1); if (isValidFormat(user)) { if (user === at) { return await handleSubscriptionRequest(request, user, url); } else { return new Response(JSON.stringify({ error: 'UUID错误' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } } } } } if (url.pathname.toLowerCase().includes(`/${subPath}`)) { return await handleSubscriptionRequest(request, at); } } return new Response(JSON.stringify({ error: 'Not Found' }), { status: 404, headers: { 'Content-Type': 'application/json' } }); } catch (err) { return new Response(err.toString(), { status: 500 }); } }, }; function generateQuantumultConfig(links) { return btoa(links.join('\n')); } // 解析 VLESS/Trojan 链接并生成 Clash 节点配置 function parseLinkToClashNode(link) { try { // 解析 VLESS 链接 if (link.startsWith('vless://')) { const url = new URL(link); const name = decodeURIComponent(url.hash.substring(1)); const uuid = url.username; const server = url.hostname; const port = parseInt(url.port) || 443; const params = new URLSearchParams(url.search); const tls = params.get('security') === 'tls' || params.get('tls') === 'true'; const network = params.get('type') || 'ws'; const path = params.get('path') || '/?ed=2048'; const host = params.get('host') || server; const servername = params.get('sni') || host; const alpn = params.get('alpn') || 'h3,h2,http/1.1'; const fingerprint = params.get('fp') || params.get('client-fingerprint') || 'chrome'; const ech = params.get('ech'); const node = { name: name, type: 'vless', server: server, port: port, uuid: uuid, tls: tls, network: network, 'client-fingerprint': fingerprint }; if (tls) { node.servername = servername; node.alpn = alpn.split(',').map(a => a.trim()); node['skip-cert-verify'] = false; } if (network === 'ws') { node['ws-opts'] = { path: path, headers: { Host: host } }; } if (ech) { const echDomain = customECHDomain || 'cloudflare-ech.com'; node['ech-opts'] = { enable: true, 'query-server-name': echDomain }; } return node; } // 解析 Trojan 链接 if (link.startsWith('trojan://')) { const url = new URL(link); const name = decodeURIComponent(url.hash.substring(1)); const password = url.username; const server = url.hostname; const port = parseInt(url.port) || 443; const params = new URLSearchParams(url.search); const network = params.get('type') || 'ws'; const path = params.get('path') || '/?ed=2048'; const host = params.get('host') || server; const sni = params.get('sni') || host; const alpn = params.get('alpn') || 'h3,h2,http/1.1'; const ech = params.get('ech'); const node = { name: name, type: 'trojan', server: server, port: port, password: password, network: network, sni: sni, alpn: alpn.split(',').map(a => a.trim()), 'skip-cert-verify': false }; if (network === 'ws') { node['ws-opts'] = { path: path, headers: { Host: host } }; } if (ech) { const echDomain = customECHDomain || 'cloudflare-ech.com'; node['ech-opts'] = { enable: true, 'query-server-name': echDomain }; } return node; } } catch (e) { return null; } return null; } // 生成 Clash 配置 async function generateClashConfig(links, request, user) { // 先通过订阅转换服务获取 Clash 配置 const subscriptionUrl = new URL(request.url); subscriptionUrl.pathname = subscriptionUrl.pathname.replace(/\/sub$/, '') + '/sub'; subscriptionUrl.searchParams.set('target', 'base64'); const encodedUrl = encodeURIComponent(subscriptionUrl.toString()); const converterUrl = `${scu}?target=clash&url=${encodedUrl}&insert=false&emoji=true&list=false&xudp=false&udp=false&tfo=false&expand=true&scv=false&fdn=false&new_name=true`; try { const response = await fetch(converterUrl); if (!response.ok) { throw new Error('订阅转换服务失败'); } let clashConfig = await response.text(); // 如果 ECH 开启,为所有节点添加 ECH 参数 if (enableECH) { // 处理单行格式的节点: - {name: ..., server: ..., ...} // 需要正确处理嵌套的花括号(如 ws-opts: {path: "...", headers: {Host: ...}}) clashConfig = clashConfig.split('\n').map(line => { // 检查是否是节点行(以 " - {" 开头,且包含 name: 和 server:) if (/^\s*-\s*\{/.test(line) && line.includes('name:') && line.includes('server:')) { // 检查是否已经有 ech-opts if (line.includes('ech-opts')) { return line; // 已有 ech-opts,不修改 } // 找到最后一个 } 的位置(从右往左查找,处理嵌套花括号) const lastBraceIndex = line.lastIndexOf('}'); if (lastBraceIndex > 0) { // 检查最后一个 } 之前是否有内容,确保格式正确 const beforeBrace = line.substring(0, lastBraceIndex).trim(); if (beforeBrace.length > 0) { // 在最后一个 } 之前添加 , ech-opts: {enable: true, query-server-name: ...} // 确保在逗号前有空格 const echDomain = customECHDomain || 'cloudflare-ech.com'; const needsComma = !beforeBrace.endsWith(',') && !beforeBrace.endsWith('{'); return line.substring(0, lastBraceIndex) + (needsComma ? ', ' : ' ') + `ech-opts: {enable: true, query-server-name: ${echDomain}}` + line.substring(lastBraceIndex); } } } return line; }).join('\n'); // 处理多行格式的节点(如果存在) // 只处理单行格式,多行格式由订阅转换服务处理,不需要额外修改 // 如果订阅转换服务返回多行格式,通常已经是正确的格式 } // 替换 DNS nameserver 为阿里的加密 DNS clashConfig = clashConfig.replace(/^(\s*nameserver:\s*\n)((?:\s*-\s*[^\n]+\n)*)/m, (match, header, items) => { // 替换所有 nameserver 项为阿里的加密 DNS const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; return header + ` - ${dnsServer}\n`; }); return clashConfig; } catch (e) { // 如果订阅转换失败,返回错误 throw new Error('无法获取 Clash 配置: ' + e.message); } } // 全局变量存储ECH调试信息 let echDebugInfo = ''; async function fetchECHConfig(domain) { if (!enableECH) { echDebugInfo = 'ECH功能已禁用'; return null; } echDebugInfo = ''; const debugSteps = []; try { // 优先使用 Google DNS 查询 cloudflare-ech.com 的 ECH 配置 debugSteps.push('尝试使用 Google DNS 查询 cloudflare-ech.com...'); const echDomainUrl = `https://v.recipes/dns/dns.google/dns-query?name=cloudflare-ech.com&type=65`; const echResponse = await fetch(echDomainUrl, { headers: { 'Accept': 'application/json' } }); debugSteps.push(`Google DNS 响应状态: ${echResponse.status}`); if (echResponse.ok) { const echData = await echResponse.json(); debugSteps.push(`Google DNS 返回数据: ${JSON.stringify(echData).substring(0, 200)}...`); if (echData.Answer && echData.Answer.length > 0) { debugSteps.push(`找到 ${echData.Answer.length} 条答案记录`); for (const answer of echData.Answer) { if (answer.data) { debugSteps.push(`解析答案数据: ${typeof answer.data}, 长度: ${String(answer.data).length}`); // Google DNS 返回的数据格式可能不同,需要解析 const dataStr = typeof answer.data === 'string' ? answer.data : JSON.stringify(answer.data); const echMatch = dataStr.match(/ech=([^\s"']+)/); if (echMatch && echMatch[1]) { echDebugInfo = debugSteps.join('\\n') + '\\n✅ 成功从 Google DNS 获取 ECH 配置'; return echMatch[1]; } // 如果没有找到,尝试直接使用 data(可能是 base64 编码的) if (answer.data && !dataStr.includes('ech=')) { try { const decoded = atob(answer.data); debugSteps.push(`尝试 base64 解码,解码后长度: ${decoded.length}`); const decodedMatch = decoded.match(/ech=([^\s"']+)/); if (decodedMatch && decodedMatch[1]) { echDebugInfo = debugSteps.join('\\n') + '\\n✅ 成功从 Google DNS (base64解码) 获取 ECH 配置'; return decodedMatch[1]; } } catch (e) { debugSteps.push(`base64 解码失败: ${e.message}`); } } } } } else { debugSteps.push('Google DNS 未返回答案记录'); } } else { debugSteps.push(`Google DNS 请求失败: ${echResponse.status}`); } // 如果 cloudflare-ech.com 查询失败,尝试使用 Google DNS 查询目标域名的 HTTPS 记录 debugSteps.push(`尝试使用 Google DNS 查询目标域名 ${domain}...`); const dohUrl = `https://v.recipes/dns/dns.google/dns-query?name=${encodeURIComponent(domain)}&type=65`; const response = await fetch(dohUrl, { headers: { 'Accept': 'application/json' } }); debugSteps.push(`Google DNS (目标域名) 响应状态: ${response.status}`); if (response.ok) { const data = await response.json(); debugSteps.push(`Google DNS (目标域名) 返回数据: ${JSON.stringify(data).substring(0, 200)}...`); if (data.Answer && data.Answer.length > 0) { debugSteps.push(`找到 ${data.Answer.length} 条答案记录`); for (const answer of data.Answer) { if (answer.data) { const dataStr = typeof answer.data === 'string' ? answer.data : JSON.stringify(answer.data); const echMatch = dataStr.match(/ech=([^\s"']+)/); if (echMatch && echMatch[1]) { echDebugInfo = debugSteps.join('\\n') + '\\n✅ 成功从 Google DNS (目标域名) 获取 ECH 配置'; return echMatch[1]; } // 尝试 base64 解码 try { const decoded = atob(answer.data); const decodedMatch = decoded.match(/ech=([^\s"']+)/); if (decodedMatch && decodedMatch[1]) { echDebugInfo = debugSteps.join('\\n') + '\\n✅ 成功从 Google DNS (目标域名, base64解码) 获取 ECH 配置'; return decodedMatch[1]; } } catch (e) { debugSteps.push(`base64 解码失败: ${e.message}`); } } } } else { debugSteps.push('Google DNS (目标域名) 未返回答案记录'); } } else { debugSteps.push(`Google DNS (目标域名) 请求失败: ${response.status}`); } // 如果 Google DNS 失败,尝试使用 Cloudflare DNS 作为备选 debugSteps.push('尝试使用 Cloudflare DNS 作为备选...'); const cfEchUrl = `https://cloudflare-dns.com/dns-query?name=cloudflare-ech.com&type=65`; const cfResponse = await fetch(cfEchUrl, { headers: { 'Accept': 'application/dns-json' } }); debugSteps.push(`Cloudflare DNS 响应状态: ${cfResponse.status}`); if (cfResponse.ok) { const cfData = await cfResponse.json(); debugSteps.push(`Cloudflare DNS 返回数据: ${JSON.stringify(cfData).substring(0, 200)}...`); if (cfData.Answer && cfData.Answer.length > 0) { debugSteps.push(`找到 ${cfData.Answer.length} 条答案记录`); for (const answer of cfData.Answer) { if (answer.data) { const echMatch = answer.data.match(/ech=([^\s"']+)/); if (echMatch && echMatch[1]) { echDebugInfo = debugSteps.join('\\n') + '\\n✅ 成功从 Cloudflare DNS 获取 ECH 配置'; return echMatch[1]; } } } } else { debugSteps.push('Cloudflare DNS 未返回答案记录'); } } else { debugSteps.push(`Cloudflare DNS 请求失败: ${cfResponse.status}`); } echDebugInfo = debugSteps.join('\\n') + '\\n❌ 所有DNS查询均失败,未获取到ECH配置'; return null; } catch (error) { echDebugInfo = debugSteps.join('\\n') + '\\n❌ 获取ECH配置时发生错误: ' + error.message; return null; } } async function handleSubscriptionRequest(request, user, url = null) { if (!url) url = new URL(request.url); const finalLinks = []; const workerDomain = url.hostname; const target = url.searchParams.get('target') || 'base64'; // 如果启用了ECH,使用自定义值 let echConfig = null; if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; echConfig = `${echDomain}+${dnsServer}`; } async function addNodesFromList(list) { if (ev) { finalLinks.push(...generateLinksFromSource(list, user, workerDomain, echConfig)); } if (et) { finalLinks.push(...await generateTrojanLinksFromSource(list, user, workerDomain, echConfig)); } if (ex) { finalLinks.push(...generateXhttpLinksFromSource(list, user, workerDomain, echConfig)); } } if (currentWorkerRegion === 'CUSTOM') { const nativeList = [{ ip: workerDomain, isp: '原生地址' }]; await addNodesFromList(nativeList); } else { try { const nativeList = [{ ip: workerDomain, isp: '原生地址' }]; await addNodesFromList(nativeList); } catch (error) { if (!currentWorkerRegion) { currentWorkerRegion = await detectWorkerRegion(request); } const bestBackupIP = await getBestBackupIP(currentWorkerRegion); if (bestBackupIP) { fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port; const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }]; await addNodesFromList(backupList); } else { const nativeList = [{ ip: workerDomain, isp: '原生地址' }]; await addNodesFromList(nativeList); } } } const hasCustomPreferred = customPreferredIPs.length > 0 || customPreferredDomains.length > 0; if (disablePreferred) { } else if (hasCustomPreferred) { if (customPreferredIPs.length > 0 && epi) { await addNodesFromList(customPreferredIPs); } if (customPreferredDomains.length > 0 && epd) { const customDomainList = customPreferredDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain })); await addNodesFromList(customDomainList); } } else { if (epd) { const domainList = directDomains.map(d => ({ ip: d.domain, isp: d.name || d.domain })); await addNodesFromList(domainList); } if (epi) { const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; if (piu === defaultURL) { try { const dynamicIPList = await fetchDynamicIPs(); if (dynamicIPList.length > 0) { await addNodesFromList(dynamicIPList); } } catch (error) { if (!currentWorkerRegion) { currentWorkerRegion = await detectWorkerRegion(request); } const bestBackupIP = await getBestBackupIP(currentWorkerRegion); if (bestBackupIP) { fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port; const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }]; await addNodesFromList(backupList); } } } } if (egi) { try { const newIPList = await fetchAndParseNewIPs(); if (newIPList.length > 0) { if (ev) { finalLinks.push(...generateLinksFromNewIPs(newIPList, user, workerDomain, echConfig)); } if (et) { finalLinks.push(...await generateTrojanLinksFromNewIPs(newIPList, user, workerDomain, echConfig)); } } } catch (error) { if (!currentWorkerRegion) { currentWorkerRegion = await detectWorkerRegion(request); } const bestBackupIP = await getBestBackupIP(currentWorkerRegion); if (bestBackupIP) { fallbackAddress = bestBackupIP.domain + ':' + bestBackupIP.port; const backupList = [{ ip: bestBackupIP.domain, isp: 'ProxyIP-' + currentWorkerRegion }]; await addNodesFromList(backupList); } } } } if (finalLinks.length === 0) { const errorRemark = "所有节点获取失败"; const proto = atob('dmxlc3M='); const errorLink = `${proto}://00000000-0000-0000-0000-000000000000@127.0.0.1:80?encryption=none&security=none&type=ws&host=error.com&path=%2F#${encodeURIComponent(errorRemark)}`; finalLinks.push(errorLink); } let subscriptionContent; let contentType = 'text/plain; charset=utf-8'; switch (target.toLowerCase()) { case atob('Y2xhc2g='): case atob('Y2xhc2hy'): subscriptionContent = await generateClashConfig(finalLinks, request, user); contentType = 'text/yaml; charset=utf-8'; break; case atob('c3VyZ2U='): case atob('c3VyZ2Uy'): case atob('c3VyZ2Uz'): case atob('c3VyZ2U0'): subscriptionContent = generateSurgeConfig(finalLinks); break; case atob('cXVhbnR1bXVsdA=='): case atob('cXVhbng='): case 'quanx': subscriptionContent = generateQuantumultConfig(finalLinks); break; case atob('c3M='): case atob('c3Ny'): subscriptionContent = generateSSConfig(finalLinks); break; case atob('djJyYXk='): subscriptionContent = generateV2RayConfig(finalLinks); break; case atob('bG9vbg=='): subscriptionContent = generateLoonConfig(finalLinks); break; default: subscriptionContent = btoa(finalLinks.join('\n')); } const responseHeaders = { 'Content-Type': contentType, 'Cache-Control': 'no-store, no-cache, must-revalidate, max-age=0', }; // 添加ECH状态到响应头 if (enableECH) { responseHeaders['X-ECH-Status'] = 'ENABLED'; if (echConfig) { responseHeaders['X-ECH-Config-Length'] = String(echConfig.length); } } return new Response(subscriptionContent, { headers: responseHeaders, }); } function generateLinksFromSource(list, user, workerDomain, echConfig = null) { const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095]; const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443]; const defaultHttpsPorts = [443]; const defaultHttpPorts = disableNonTLS ? [] : [80]; const links = []; const wsPath = '/?ed=2048'; const proto = atob('dmxlc3M='); list.forEach(item => { let nodeNameBase = item.isp.replace(/\s/g, '_'); if (item.colo && item.colo.trim()) { nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`; } const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip; let portsToGenerate = []; if (item.port) { const port = item.port; if (CF_HTTPS_PORTS.includes(port)) { portsToGenerate.push({ port: port, tls: true }); } else if (CF_HTTP_PORTS.includes(port)) { if (!disableNonTLS) { portsToGenerate.push({ port: port, tls: false }); } } else { portsToGenerate.push({ port: port, tls: true }); } } else { defaultHttpsPorts.forEach(port => { portsToGenerate.push({ port: port, tls: true }); }); defaultHttpPorts.forEach(port => { portsToGenerate.push({ port: port, tls: false }); }); } portsToGenerate.forEach(({ port, tls }) => { if (tls) { const wsNodeName = `${nodeNameBase}-${port}-WS-TLS`; const wsParams = new URLSearchParams({ encryption: 'none', security: 'tls', sni: workerDomain, fp: enableECH ? 'chrome' : 'randomized', type: 'ws', host: workerDomain, path: wsPath }); // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; wsParams.set('alpn', 'h3,h2,http/1.1'); wsParams.set('ech', `${echDomain}+${dnsServer}`); } links.push(`${proto}://${user}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`); } else { const wsNodeName = `${nodeNameBase}-${port}-WS`; const wsParams = new URLSearchParams({ encryption: 'none', security: 'none', type: 'ws', host: workerDomain, path: wsPath }); links.push(`${proto}://${user}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`); } }); }); return links; } async function generateTrojanLinksFromSource(list, user, workerDomain, echConfig = null) { const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095]; const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443]; const defaultHttpsPorts = [443]; const defaultHttpPorts = disableNonTLS ? [] : [80]; const links = []; const wsPath = '/?ed=2048'; const password = tp || user; list.forEach(item => { let nodeNameBase = item.isp.replace(/\s/g, '_'); if (item.colo && item.colo.trim()) { nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`; } const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip; let portsToGenerate = []; if (item.port) { const port = item.port; if (CF_HTTPS_PORTS.includes(port)) { portsToGenerate.push({ port: port, tls: true }); } else if (CF_HTTP_PORTS.includes(port)) { if (!disableNonTLS) { portsToGenerate.push({ port: port, tls: false }); } } else { portsToGenerate.push({ port: port, tls: true }); } } else { defaultHttpsPorts.forEach(port => { portsToGenerate.push({ port: port, tls: true }); }); defaultHttpPorts.forEach(port => { portsToGenerate.push({ port: port, tls: false }); }); } portsToGenerate.forEach(({ port, tls }) => { if (tls) { const wsNodeName = `${nodeNameBase}-${port}-${atob('VHJvamFu')}-WS-TLS`; const wsParams = new URLSearchParams({ security: 'tls', sni: workerDomain, fp: 'chrome', type: 'ws', host: workerDomain, path: wsPath }); // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; wsParams.set('alpn', 'h3,h2,http/1.1'); wsParams.set('ech', `${echDomain}+${dnsServer}`); } links.push(`${atob('dHJvamFuOi8v')}${password}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`); } else { const wsNodeName = `${nodeNameBase}-${port}-${atob('VHJvamFu')}-WS`; const wsParams = new URLSearchParams({ security: 'none', type: 'ws', host: workerDomain, path: wsPath }); links.push(`${atob('dHJvamFuOi8v')}${password}@${safeIP}:${port}?${wsParams.toString()}#${encodeURIComponent(wsNodeName)}`); } }); }); return links; } async function fetchDynamicIPs() { const v4Url1 = "https://www.wetest.vip/page/cloudflare/address_v4.html"; const v6Url1 = "https://www.wetest.vip/page/cloudflare/address_v6.html"; let results = []; // 读取筛选配置(默认全部启用) const ipv4Enabled = getConfigValue('ipv4', '') === '' || getConfigValue('ipv4', 'yes') !== 'no'; const ipv6Enabled = getConfigValue('ipv6', '') === '' || getConfigValue('ipv6', 'yes') !== 'no'; const ispMobile = getConfigValue('ispMobile', '') === '' || getConfigValue('ispMobile', 'yes') !== 'no'; const ispUnicom = getConfigValue('ispUnicom', '') === '' || getConfigValue('ispUnicom', 'yes') !== 'no'; const ispTelecom = getConfigValue('ispTelecom', '') === '' || getConfigValue('ispTelecom', 'yes') !== 'no'; try { const fetchPromises = []; if (ipv4Enabled) { fetchPromises.push(fetchAndParseWetest(v4Url1)); } else { fetchPromises.push(Promise.resolve([])); } if (ipv6Enabled) { fetchPromises.push(fetchAndParseWetest(v6Url1)); } else { fetchPromises.push(Promise.resolve([])); } const [ipv4List, ipv6List] = await Promise.all(fetchPromises); results = [...ipv4List, ...ipv6List]; // 按运营商筛选 if (results.length > 0) { results = results.filter(item => { const isp = item.isp || ''; if (isp.includes('移动') && !ispMobile) return false; if (isp.includes('联通') && !ispUnicom) return false; if (isp.includes('电信') && !ispTelecom) return false; return true; }); } if (results.length > 0) { return results; } } catch (e) { } return []; } async function fetchAndParseWetest(url) { try { const response = await fetch(url, { headers: { 'User-Agent': 'Mozilla/5.0' } }); if (!response.ok) { return []; } const html = await response.text(); const results = []; const rowRegex = //g; const cellRegex = /(.+?)<\/td>[\s\S]*?([\d.:a-fA-F]+)<\/td>[\s\S]*?(.+?)<\/td>/; let match; while ((match = rowRegex.exec(html)) !== null) { const rowHtml = match[0]; const cellMatch = rowHtml.match(cellRegex); if (cellMatch && cellMatch[1] && cellMatch[2]) { const colo = cellMatch[3] ? cellMatch[3].trim().replace(/<.*?>/g, '') : ''; results.push({ isp: cellMatch[1].trim().replace(/<.*?>/g, ''), ip: cellMatch[2].trim(), colo: colo }); } } if (results.length === 0) { } return results; } catch (error) { return []; } } async function handleWsRequest(request) { // 从请求URL的path query中读取客户端自定义参数 // p=ProxyIP, wk=Worker地区, rm=地区匹配(no关闭), s=socks5代理 const reqUrl = new URL(request.url); const reqFallback = reqUrl.searchParams.get('p') || ''; const reqRegion = (reqUrl.searchParams.get('wk') || '').toUpperCase(); const reqRmStr = reqUrl.searchParams.get('rm') || ''; const reqRm = reqRmStr ? reqRmStr.toLowerCase() !== 'no' : null; const reqSocksStr = reqUrl.searchParams.get('s') || ''; let reqSocksConfig = null; if (reqSocksStr) { try { reqSocksConfig = parseSocksConfig(reqSocksStr); } catch (_) {} } // 检测并设置当前Worker地区,确保WebSocket请求能正确进行就近匹配 // 优先级:客户端path参数wk > 全局manualWorkerRegion > 自动检测 let effectiveRegion = currentWorkerRegion; if (!effectiveRegion || effectiveRegion === '') { if (reqRegion) { effectiveRegion = reqRegion; } else if (manualWorkerRegion && manualWorkerRegion.trim()) { effectiveRegion = manualWorkerRegion.trim().toUpperCase(); } else { effectiveRegion = await detectWorkerRegion(request); } } else if (reqRegion) { effectiveRegion = reqRegion; } const wsPair = new WebSocketPair(); const [clientSock, serverSock] = Object.values(wsPair); serverSock.accept(); let remoteConnWrapper = { socket: null }; let isDnsQuery = false; let protocolType = null; const earlyData = request.headers.get(atob('c2VjLXdlYnNvY2tldC1wcm90b2NvbA==')) || ''; const readable = makeReadableStream(serverSock, earlyData); readable.pipeTo(new WritableStream({ async write(chunk) { if (isDnsQuery) return await forwardUDP(chunk, serverSock, null); if (remoteConnWrapper.socket) { const writer = remoteConnWrapper.socket.writable.getWriter(); await writer.write(chunk); writer.releaseLock(); return; } if (!protocolType) { if (ev && chunk.byteLength >= 24) { const vlessResult = parseWsPacketHeader(chunk, at); if (!vlessResult.hasError) { protocolType = 'vless'; const { addressType, port, hostname, rawIndex, version, isUDP } = vlessResult; if (isUDP) { if (port === 53) isDnsQuery = true; else throw new Error(E_UDP_DNS_ONLY); } const respHeader = new Uint8Array([version[0], 0]); const rawData = chunk.slice(rawIndex); if (isDnsQuery) return forwardUDP(rawData, serverSock, respHeader); await forwardTCP(addressType, hostname, port, rawData, serverSock, respHeader, remoteConnWrapper, reqFallback, effectiveRegion, reqRm, reqSocksConfig); return; } } if (et && chunk.byteLength >= 56) { const tjResult = await parseTrojanHeader(chunk, at); if (!tjResult.hasError) { protocolType = atob('dHJvamFu'); const { addressType, port, hostname, rawClientData } = tjResult; await forwardTCP(addressType, hostname, port, rawClientData, serverSock, null, remoteConnWrapper, reqFallback, effectiveRegion, reqRm, reqSocksConfig); return; } } throw new Error('Invalid protocol or authentication failed'); } }, })).catch((err) => { }); return new Response(null, { status: 101, webSocket: clientSock }); } async function forwardTCP(addrType, host, portNum, rawData, ws, respHeader, remoteConnWrapper, reqFallback = '', reqRegion = '', reqRm = null, reqSocksConfig = null) { // 优先使用客户端path参数,其次回退到全局配置 const effectiveFallback = reqFallback || fallbackAddress; const effectiveRegion = reqRegion || currentWorkerRegion; const effectiveRegionMatching = reqRm !== null ? reqRm : enableRegionMatching; const effectiveSocksConfig = reqSocksConfig || parsedSocks5Config; const effectiveSocksEnabled = reqSocksConfig ? true : isSocksEnabled; async function connectAndSend(address, port, useSocks = false) { const remoteSock = useSocks ? await establishSocksConnection(addrType, address, port, effectiveSocksConfig) : connect({ hostname: address, port: port }); const writer = remoteSock.writable.getWriter(); await writer.write(rawData); writer.releaseLock(); return remoteSock; } async function retryConnection() { if (enableSocksDowngrade && effectiveSocksEnabled) { try { const socksSocket = await connectAndSend(host, portNum, true); remoteConnWrapper.socket = socksSocket; socksSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws)); connectStreams(socksSocket, ws, respHeader, null); return; } catch (socksErr) { let backupHost, backupPort; if (effectiveFallback && effectiveFallback.trim()) { const parsed = parseAddressAndPort(effectiveFallback); backupHost = parsed.address; backupPort = parsed.port || portNum; } else { const bestBackupIP = await getBestBackupIP(effectiveRegion, effectiveRegionMatching); backupHost = bestBackupIP ? bestBackupIP.domain : host; backupPort = bestBackupIP ? bestBackupIP.port : portNum; } try { const fallbackSocket = await connectAndSend(backupHost, backupPort, false); remoteConnWrapper.socket = fallbackSocket; fallbackSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws)); connectStreams(fallbackSocket, ws, respHeader, null); } catch (fallbackErr) { closeSocketQuietly(ws); } } } else { let backupHost, backupPort; if (effectiveFallback && effectiveFallback.trim()) { const parsed = parseAddressAndPort(effectiveFallback); backupHost = parsed.address; backupPort = parsed.port || portNum; } else { const bestBackupIP = await getBestBackupIP(effectiveRegion, effectiveRegionMatching); backupHost = bestBackupIP ? bestBackupIP.domain : host; backupPort = bestBackupIP ? bestBackupIP.port : portNum; } try { const fallbackSocket = await connectAndSend(backupHost, backupPort, effectiveSocksEnabled); remoteConnWrapper.socket = fallbackSocket; fallbackSocket.closed.catch(() => {}).finally(() => closeSocketQuietly(ws)); connectStreams(fallbackSocket, ws, respHeader, null); } catch (fallbackErr) { closeSocketQuietly(ws); } } } try { const initialSocket = await connectAndSend(host, portNum, enableSocksDowngrade ? false : effectiveSocksEnabled); remoteConnWrapper.socket = initialSocket; connectStreams(initialSocket, ws, respHeader, retryConnection); } catch (err) { retryConnection(); } } function parseWsPacketHeader(chunk, token) { if (chunk.byteLength < 24) return { hasError: true, message: E_INVALID_DATA }; const version = new Uint8Array(chunk.slice(0, 1)); if (formatIdentifier(new Uint8Array(chunk.slice(1, 17))) !== token) return { hasError: true, message: E_INVALID_USER }; const optLen = new Uint8Array(chunk.slice(17, 18))[0]; const cmd = new Uint8Array(chunk.slice(18 + optLen, 19 + optLen))[0]; let isUDP = false; if (cmd === 1) {} else if (cmd === 2) { isUDP = true; } else { return { hasError: true, message: E_UNSUPPORTED_CMD }; } const portIdx = 19 + optLen; const port = new DataView(chunk.slice(portIdx, portIdx + 2)).getUint16(0); let addrIdx = portIdx + 2, addrLen = 0, addrValIdx = addrIdx + 1, hostname = ''; const addressType = new Uint8Array(chunk.slice(addrIdx, addrValIdx))[0]; switch (addressType) { case ADDRESS_TYPE_IPV4: addrLen = 4; hostname = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + addrLen)).join('.'); break; case ADDRESS_TYPE_URL: addrLen = new Uint8Array(chunk.slice(addrValIdx, addrValIdx + 1))[0]; addrValIdx += 1; hostname = new TextDecoder().decode(chunk.slice(addrValIdx, addrValIdx + addrLen)); break; case ADDRESS_TYPE_IPV6: addrLen = 16; const ipv6 = []; const ipv6View = new DataView(chunk.slice(addrValIdx, addrValIdx + addrLen)); for (let i = 0; i < 8; i++) ipv6.push(ipv6View.getUint16(i * 2).toString(16)); hostname = ipv6.join(':'); break; default: return { hasError: true, message: `${E_INVALID_ADDR_TYPE}: ${addressType}` }; } if (!hostname) return { hasError: true, message: `${E_EMPTY_ADDR}: ${addressType}` }; return { hasError: false, addressType, port, hostname, isUDP, rawIndex: addrValIdx + addrLen, version }; } function makeReadableStream(socket, earlyDataHeader) { let cancelled = false; return new ReadableStream({ start(controller) { socket.addEventListener('message', (event) => { if (!cancelled) controller.enqueue(event.data); }); socket.addEventListener('close', () => { if (!cancelled) { closeSocketQuietly(socket); controller.close(); } }); socket.addEventListener('error', (err) => controller.error(err)); const { earlyData, error } = base64ToArray(earlyDataHeader); if (error) controller.error(error); else if (earlyData) controller.enqueue(earlyData); }, cancel() { cancelled = true; closeSocketQuietly(socket); } }); } async function connectStreams(remoteSocket, webSocket, headerData, retryFunc) { let header = headerData, hasData = false; await remoteSocket.readable.pipeTo( new WritableStream({ async write(chunk, controller) { hasData = true; if (webSocket.readyState !== 1) controller.error(E_WS_NOT_OPEN); if (header) { webSocket.send(await new Blob([header, chunk]).arrayBuffer()); header = null; } else { webSocket.send(chunk); } }, abort(reason) { }, }) ).catch((error) => { closeSocketQuietly(webSocket); }); if (!hasData && retryFunc) retryFunc(); } async function forwardUDP(udpChunk, webSocket, respHeader) { try { const tcpSocket = connect({ hostname: '8.8.4.4', port: 53 }); let header = respHeader; const writer = tcpSocket.writable.getWriter(); await writer.write(udpChunk); writer.releaseLock(); await tcpSocket.readable.pipeTo(new WritableStream({ async write(chunk) { if (webSocket.readyState === 1) { if (header) { webSocket.send(await new Blob([header, chunk]).arrayBuffer()); header = null; } else { webSocket.send(chunk); } } }, })); } catch (error) { } } async function establishSocksConnection(addrType, address, port, socksConfig = parsedSocks5Config) { const { username, password, hostname, socksPort } = socksConfig; const socket = connect({ hostname, port: socksPort }); const writer = socket.writable.getWriter(); await writer.write(new Uint8Array(username ? [5, 2, 0, 2] : [5, 1, 0])); const reader = socket.readable.getReader(); let res = (await reader.read()).value; if (res[0] !== 5 || res[1] === 255) throw new Error(E_SOCKS_NO_METHOD); if (res[1] === 2) { if (!username || !password) throw new Error(E_SOCKS_AUTH_NEEDED); const encoder = new TextEncoder(); const authRequest = new Uint8Array([1, username.length, ...encoder.encode(username), password.length, ...encoder.encode(password)]); await writer.write(authRequest); res = (await reader.read()).value; if (res[0] !== 1 || res[1] !== 0) throw new Error(E_SOCKS_AUTH_FAIL); } const encoder = new TextEncoder(); let DSTADDR; switch (addrType) { case ADDRESS_TYPE_IPV4: DSTADDR = new Uint8Array([1, ...address.split('.').map(Number)]); break; case ADDRESS_TYPE_URL: DSTADDR = new Uint8Array([3, address.length, ...encoder.encode(address)]); break; case ADDRESS_TYPE_IPV6: DSTADDR = new Uint8Array([4, ...address.split(':').flatMap(x => [parseInt(x.slice(0, 2), 16), parseInt(x.slice(2), 16)])]); break; default: throw new Error(E_INVALID_ADDR_TYPE); } await writer.write(new Uint8Array([5, 1, 0, ...DSTADDR, port >> 8, port & 255])); res = (await reader.read()).value; if (res[1] !== 0) throw new Error(E_SOCKS_CONN_FAIL); writer.releaseLock(); reader.releaseLock(); return socket; } function parseSocksConfig(address) { let [latter, former] = address.split("@").reverse(); let username, password, hostname, socksPort; if (former) { const formers = former.split(":"); if (formers.length !== 2) throw new Error(E_INVALID_SOCKS_ADDR); [username, password] = formers; } const latters = latter.split(":"); socksPort = Number(latters.pop()); if (isNaN(socksPort)) throw new Error(E_INVALID_SOCKS_ADDR); hostname = latters.join(":"); if (hostname.includes(":") && !/^\[.*\]$/.test(hostname)) throw new Error(E_INVALID_SOCKS_ADDR); return { username, password, hostname, socksPort }; } async function handleSubscriptionPage(request, user = null) { if (!user) user = at; const url = new URL(request.url); // 优先检查Cookie中的语言设置 const cookieHeader = request.headers.get('Cookie') || ''; let langFromCookie = null; if (cookieHeader) { const cookies = cookieHeader.split(';').map(c => c.trim()); for (const cookie of cookies) { if (cookie.startsWith('preferredLanguage=')) { langFromCookie = cookie.split('=')[1]; break; } } } let isFarsi = false; if (langFromCookie === 'fa' || langFromCookie === 'fa-IR') { isFarsi = true; } else if (langFromCookie === 'zh' || langFromCookie === 'zh-CN') { isFarsi = false; } else { // 如果没有Cookie,使用浏览器语言检测 const acceptLanguage = request.headers.get('Accept-Language') || ''; const browserLang = acceptLanguage.split(',')[0].split('-')[0].toLowerCase(); isFarsi = browserLang === 'fa' || acceptLanguage.includes('fa-IR') || acceptLanguage.includes('fa'); } const langAttr = isFarsi ? 'fa-IR' : 'zh-CN'; const translations = { zh: { title: '订阅中心', subtitle: '多客户端支持 • 智能优选 • 一键生成', selectClient: '[ 选择客户端 ]', systemStatus: '[ 系统状态 ]', configManagement: '[ 配置管理 ]', relatedLinks: '[ 相关链接 ]', checking: '检测中...', workerRegion: 'Worker地区: ', detectionMethod: '检测方式: ', proxyIPStatus: 'ProxyIP状态: ', currentIP: '当前使用IP: ', regionMatch: '地区匹配: ', selectionLogic: '选择逻辑: ', kvStatusChecking: '检测KV状态中...', kvEnabled: '✅ KV存储已启用,可以使用配置管理功能', kvDisabled: '⚠️ KV存储未启用或未配置', specifyRegion: '指定地区 (wk):', autoDetect: '自动检测', saveRegion: '保存地区配置', protocolSelection: '协议选择:', enableVLESS: '启用 VLESS 协议', enableTrojan: '启用 Trojan 协议', enableXhttp: '启用 xhttp 协议', trojanPassword: 'Trojan 密码 (可选):', customPath: '自定义路径 (d):', customIP: '自定义ProxyIP (p):', preferredIPs: '优选IP列表 (yx):', preferredIPsURL: '优选IP来源URL (yxURL):', latencyTest: '延迟测试', latencyTestIP: '测试IP/域名:', latencyTestIPPlaceholder: '输入IP或域名,多个用逗号分隔', latencyTestPort: '端口:', startTest: '开始测试', stopTest: '停止测试', testResult: '测试结果:', addToYx: '添加到优选列表', addSelectedToYx: '添加选中项到优选列表', selectAll: '全选', deselectAll: '取消全选', testingInProgress: '测试中...', testComplete: '测试完成', latencyMs: '延迟', timeout: '超时', ipSource: 'IP来源:', manualInput: '手动输入', cfRandomIP: 'CF随机IP', urlFetch: 'URL获取', randomCount: '生成数量:', fetchURL: '获取URL:', fetchURLPlaceholder: '输入优选IP的URL地址', generateIP: '生成IP', fetchIP: '获取IP', socks5Config: 'SOCKS5配置 (s):', customHomepage: '自定义首页URL (homepage):', customHomepagePlaceholder: '例如: https://example.com', customHomepageHint: '设置自定义URL作为首页伪装。访问根路径 / 时将显示该URL的内容。留空则显示默认终端页面。', saveConfig: '保存配置', advancedControl: '高级控制', subscriptionConverter: '订阅转换地址:', builtinPreferred: '内置优选类型:', enablePreferredDomain: '启用优选域名', enablePreferredIP: '启用优选 IP', enableGitHubPreferred: '启用 GitHub 默认优选', allowAPIManagement: '允许API管理 (ae):', regionMatching: '地区匹配 (rm):', downgradeControl: '降级控制 (qj):', tlsControl: 'TLS控制 (dkby):', preferredControl: '优选控制 (yxby):', saveAdvanced: '保存高级配置', loading: '加载中...', currentConfig: '📍 当前路径配置', refreshConfig: '刷新配置', resetConfig: '重置配置', subscriptionCopied: '订阅链接已复制', autoSubscriptionCopied: '自动识别订阅链接已复制,客户端访问时会根据User-Agent自动识别并返回对应格式', trojanPasswordPlaceholder: '留空则自动使用 UUID', trojanPasswordHint: '设置自定义 Trojan 密码。留空则使用 UUID。客户端会自动对密码进行 SHA224 哈希。', protocolHint: '可以同时启用多个协议。订阅将生成选中协议的节点。
• VLESS WS: 基于 WebSocket 的标准协议
• Trojan: 使用 SHA224 密码认证
• xhttp: 基于 HTTP POST 的伪装协议(需要绑定自定义域名并开启 gRPC)', enableECH: '启用 ECH (Encrypted Client Hello)', enableECHHint: '启用后,每次刷新订阅时会自动从 DoH 获取最新的 ECH 配置并添加到链接中', customDNS: '自定义 DNS 服务器', customDNSPlaceholder: '例如: https://dns.joeyblog.eu.org/joeyblog', customDNSHint: '用于ECH配置查询的DNS服务器地址(DoH格式)', customECHDomain: '自定义 ECH 域名', customECHDomainPlaceholder: '例如: cloudflare-ech.com', customECHDomainHint: 'ECH配置中使用的域名,留空则使用默认值', saveProtocol: '保存协议配置', subscriptionConverterPlaceholder: '默认: https://url.v1.mk/sub', subscriptionConverterHint: '自定义订阅转换API地址,留空则使用默认地址', builtinPreferredHint: '控制订阅中包含哪些内置优选节点。默认全部启用。', apiEnabledDefault: '默认(关闭API)', apiEnabledYes: '开启API管理', apiEnabledHint: '⚠️ 安全提醒:开启后允许通过API动态添加优选IP。建议仅在需要时开启。', regionMatchingDefault: '默认(启用地区匹配)', regionMatchingNo: '关闭地区匹配', regionMatchingHint: '设置为"关闭"时不进行地区智能匹配', downgradeControlDefault: '默认(不启用降级)', downgradeControlNo: '启用降级模式', downgradeControlHint: '设置为"启用"时:CF直连失败→SOCKS5连接→fallback地址', tlsControlDefault: '默认(保留所有节点)', tlsControlYes: '仅TLS节点', tlsControlHint: '设置为"仅TLS节点"时只生成带TLS的节点,不生成非TLS节点(如80端口)', preferredControlDefault: '默认(启用优选)', preferredControlYes: '关闭优选', preferredControlHint: '设置为"关闭优选"时只使用原生地址,不生成优选IP和域名节点', regionNames: { US: '🇺🇸 美国', SG: '🇸🇬 新加坡', JP: '🇯🇵 日本', KR: '🇰🇷 韩国', DE: '🇩🇪 德国', SE: '🇸🇪 瑞典', NL: '🇳🇱 荷兰', FI: '🇫🇮 芬兰', GB: '🇬🇧 英国' }, terminal: '终端 v2.9.4', githubProject: 'GitHub 项目', autoDetectClient: '自动识别', selectionLogicText: '同地区 → 邻近地区 → 其他地区', customIPDisabledHint: '使用自定义ProxyIP时,地区选择已禁用', customIPMode: '自定义ProxyIP模式 (p变量启用)', customIPModeDesc: '自定义IP模式 (已禁用地区匹配)', usingCustomProxyIP: '使用自定义ProxyIP: ', customIPConfig: ' (p变量配置)', customIPModeDisabled: '自定义IP模式,地区选择已禁用', manualRegion: '手动指定地区', manualRegionDesc: ' (手动指定)', proxyIPAvailable: '10/10 可用 (ProxyIP域名预设可用)', smartSelection: '智能就近选择中', sameRegionIP: '同地区IP可用 (1个)', cloudflareDetection: 'Cloudflare内置检测', detectionFailed: '检测失败', apiTestResult: 'API检测结果: ', apiTestTime: '检测时间: ', apiTestFailed: 'API检测失败: ', unknownError: '未知错误', apiTestError: 'API测试失败: ', kvNotConfigured: 'KV存储未配置,无法使用配置管理功能。\\n\\n请在Cloudflare Workers中:\\n1. 创建KV命名空间\\n2. 绑定环境变量 C\\n3. 重新部署代码', kvNotEnabled: 'KV存储未配置', kvCheckFailed: 'KV存储检测失败: 响应格式错误', kvCheckFailedStatus: 'KV存储检测失败 - 状态码: ', kvCheckFailedError: 'KV存储检测失败 - 错误: ' }, fa: { title: 'مرکز اشتراک', subtitle: 'پشتیبانی چند کلاینت • انتخاب هوشمند • تولید یک کلیکی', selectClient: '[ انتخاب کلاینت ]', systemStatus: '[ وضعیت سیستم ]', configManagement: '[ مدیریت تنظیمات ]', relatedLinks: '[ لینک‌های مرتبط ]', checking: 'در حال بررسی...', workerRegion: 'منطقه Worker: ', detectionMethod: 'روش تشخیص: ', proxyIPStatus: 'وضعیت ProxyIP: ', currentIP: 'IP فعلی: ', regionMatch: 'تطبیق منطقه: ', selectionLogic: 'منطق انتخاب: ', kvStatusChecking: 'در حال بررسی وضعیت KV...', kvEnabled: '✅ ذخیره‌سازی KV فعال است، می‌توانید از مدیریت تنظیمات استفاده کنید', kvDisabled: '⚠️ ذخیره‌سازی KV فعال نیست یا پیکربندی نشده است', specifyRegion: 'تعیین منطقه (wk):', autoDetect: 'تشخیص خودکار', saveRegion: 'ذخیره تنظیمات منطقه', protocolSelection: 'انتخاب پروتکل:', enableVLESS: 'فعال‌سازی پروتکل VLESS', enableTrojan: 'فعال‌سازی پروتکل Trojan', enableXhttp: 'فعال‌سازی پروتکل xhttp', enableECH: 'فعال‌سازی ECH (Encrypted Client Hello)', enableECHHint: 'پس از فعال‌سازی، در هر بار تازه‌سازی اشتراک، پیکربندی ECH به‌روز به‌طور خودکار از DoH دریافت شده و به لینک‌ها اضافه می‌شود', customDNS: 'سرور DNS سفارشی', customDNSPlaceholder: 'مثال: https://dns.joeyblog.eu.org/joeyblog', customDNSHint: 'آدرس سرور DNS برای جستجوی پیکربندی ECH (فرمت DoH)', customECHDomain: 'دامنه ECH سفارشی', customECHDomainPlaceholder: 'مثال: cloudflare-ech.com', customECHDomainHint: 'دامنه استفاده شده در پیکربندی ECH، خالی بگذارید تا از مقدار پیش‌فرض استفاده شود', trojanPassword: 'رمز عبور Trojan (اختیاری):', customPath: 'مسیر سفارشی (d):', customIP: 'ProxyIP سفارشی (p):', preferredIPs: 'لیست IP ترجیحی (yx):', preferredIPsURL: 'URL منبع IP ترجیحی (yxURL):', latencyTest: 'تست تاخیر', latencyTestIP: 'IP/دامنه تست:', latencyTestIPPlaceholder: 'IP یا دامنه وارد کنید، چند مورد با کاما جدا شوند', latencyTestPort: 'پورت:', startTest: 'شروع تست', stopTest: 'توقف تست', testResult: 'نتیجه تست:', addToYx: 'افزودن به لیست ترجیحی', addSelectedToYx: 'افزودن موارد انتخاب شده', selectAll: 'انتخاب همه', deselectAll: 'لغو انتخاب', testingInProgress: 'در حال تست...', testComplete: 'تست کامل شد', latencyMs: 'تاخیر', timeout: 'زمان تمام شد', ipSource: 'منبع IP:', manualInput: 'ورودی دستی', cfRandomIP: 'IP تصادفی CF', urlFetch: 'دریافت از URL', randomCount: 'تعداد تولید:', fetchURL: 'URL دریافت:', fetchURLPlaceholder: 'آدرس URL لیست IP را وارد کنید', generateIP: 'تولید IP', fetchIP: 'دریافت IP', socks5Config: 'تنظیمات SOCKS5 (s):', customHomepage: 'URL صفحه اصلی سفارشی (homepage):', customHomepagePlaceholder: 'مثال: https://example.com', customHomepageHint: 'تنظیم URL سفارشی به عنوان استتار صفحه اصلی. هنگام دسترسی به مسیر اصلی / محتوای این URL نمایش داده می‌شود. اگر خالی بگذارید صفحه ترمینال پیش‌فرض نمایش داده می‌شود.', saveConfig: 'ذخیره تنظیمات', advancedControl: 'کنترل پیشرفته', subscriptionConverter: 'آدرس تبدیل اشتراک:', builtinPreferred: 'نوع ترجیحی داخلی:', enablePreferredDomain: 'فعال‌سازی دامنه ترجیحی', enablePreferredIP: 'فعال‌سازی IP ترجیحی', enableGitHubPreferred: 'فعال‌سازی ترجیح پیش‌فرض GitHub', allowAPIManagement: 'اجازه مدیریت API (ae):', regionMatching: 'تطبیق منطقه (rm):', downgradeControl: 'کنترل کاهش سطح (qj):', tlsControl: 'کنترل TLS (dkby):', preferredControl: 'کنترل ترجیحی (yxby):', saveAdvanced: 'ذخیره تنظیمات پیشرفته', loading: 'در حال بارگذاری...', currentConfig: '📍 پیکربندی مسیر فعلی', refreshConfig: 'تازه‌سازی تنظیمات', resetConfig: 'بازنشانی تنظیمات', subscriptionCopied: 'لینک اشتراک کپی شد', autoSubscriptionCopied: 'لینک اشتراک تشخیص خودکار کپی شد، کلاینت هنگام دسترسی بر اساس User-Agent به طور خودکار تشخیص داده و قالب مربوطه را برمی‌گرداند', trojanPasswordPlaceholder: 'خالی بگذارید تا از UUID استفاده شود', trojanPasswordHint: 'رمز عبور Trojan سفارشی را تنظیم کنید. اگر خالی بگذارید از UUID استفاده می‌شود. کلاینت به طور خودکار رمز عبور را با SHA224 هش می‌کند.', protocolHint: 'می‌توانید چندین پروتکل را همزمان فعال کنید. اشتراک گره‌های پروتکل‌های انتخاب شده را تولید می‌کند.
• VLESS WS: پروتکل استاندارد مبتنی بر WebSocket
• Trojan: احراز هویت با رمز عبور SHA224
• xhttp: پروتکل استتار مبتنی بر HTTP POST (نیاز به اتصال دامنه سفارشی و فعال‌سازی gRPC دارد)', saveProtocol: 'ذخیره تنظیمات پروتکل', subscriptionConverterPlaceholder: 'پیش‌فرض: https://url.v1.mk/sub', subscriptionConverterHint: 'آدرس API تبدیل اشتراک سفارشی، اگر خالی بگذارید از آدرس پیش‌فرض استفاده می‌شود', builtinPreferredHint: 'کنترل اینکه کدام گره‌های ترجیحی داخلی در اشتراک گنجانده شوند. به طور پیش‌فرض همه فعال هستند.', apiEnabledDefault: 'پیش‌فرض (بستن API)', apiEnabledYes: 'فعال‌سازی مدیریت API', apiEnabledHint: '⚠️ هشدار امنیتی: فعال‌سازی این گزینه اجازه می‌دهد IP های ترجیحی از طریق API به طور پویا اضافه شوند. توصیه می‌شود فقط در صورت نیاز فعال کنید.', regionMatchingDefault: 'پیش‌فرض (فعال‌سازی تطبیق منطقه)', regionMatchingNo: 'بستن تطبیق منطقه', regionMatchingHint: 'وقتی "بستن" تنظیم شود، تطبیق هوشمند منطقه انجام نمی‌شود', downgradeControlDefault: 'پیش‌فرض (عدم فعال‌سازی کاهش سطح)', downgradeControlNo: 'فعال‌سازی حالت کاهش سطح', downgradeControlHint: 'وقتی "فعال" تنظیم شود: اتصال مستقیم CF ناموفق → اتصال SOCKS5 → آدرس fallback', tlsControlDefault: 'پیش‌فرض (حفظ همه گره‌ها)', tlsControlYes: 'فقط گره‌های TLS', tlsControlHint: 'وقتی "فقط گره‌های TLS" تنظیم شود، فقط گره‌های با TLS تولید می‌شوند، گره‌های غیر TLS (مانند پورت 80) تولید نمی‌شوند', preferredControlDefault: 'پیش‌فرض (فعال‌سازی ترجیح)', preferredControlYes: 'بستن ترجیح', preferredControlHint: 'وقتی "بستن ترجیح" تنظیم شود، فقط از آدرس اصلی استفاده می‌شود، گره‌های IP و دامنه ترجیحی تولید نمی‌شوند', regionNames: { US: '🇺🇸 آمریکا', SG: '🇸🇬 سنگاپور', JP: '🇯🇵 ژاپن', KR: '🇰🇷 کره جنوبی', DE: '🇩🇪 آلمان', SE: '🇸🇪 سوئد', NL: '🇳🇱 هلند', FI: '🇫🇮 فنلاند', GB: '🇬🇧 بریتانیا' }, terminal: 'ترمینال v2.9.4', githubProject: 'پروژه GitHub', autoDetectClient: 'تشخیص خودکار', selectionLogicText: 'هم‌منطقه → منطقه مجاور → سایر مناطق', customIPDisabledHint: 'هنگام استفاده از ProxyIP سفارشی، انتخاب منطقه غیرفعال است', customIPMode: 'حالت ProxyIP سفارشی (متغیر p فعال است)', customIPModeDesc: 'حالت IP سفارشی (تطبیق منطقه غیرفعال است)', usingCustomProxyIP: 'استفاده از ProxyIP سفارشی: ', customIPConfig: ' (پیکربندی متغیر p)', customIPModeDisabled: 'حالت IP سفارشی، انتخاب منطقه غیرفعال است', manualRegion: 'تعیین منطقه دستی', manualRegionDesc: ' (تعیین دستی)', proxyIPAvailable: '10/10 در دسترس (دامنه پیش‌فرض ProxyIP در دسترس است)', smartSelection: 'انتخاب هوشمند نزدیک در حال انجام است', sameRegionIP: 'IP هم‌منطقه در دسترس است (1)', cloudflareDetection: 'تشخیص داخلی Cloudflare', detectionFailed: 'تشخیص ناموفق', apiTestResult: 'نتیجه تشخیص API: ', apiTestTime: 'زمان تشخیص: ', apiTestFailed: 'تشخیص API ناموفق: ', unknownError: 'خطای ناشناخته', apiTestError: 'تست API ناموفق: ', kvNotConfigured: 'ذخیره‌سازی KV پیکربندی نشده است، نمی‌توانید از عملکرد مدیریت تنظیمات استفاده کنید.\\n\\nلطفا در Cloudflare Workers:\\n1. فضای نام KV ایجاد کنید\\n2. متغیر محیطی C را پیوند دهید\\n3. کد را دوباره مستقر کنید', kvNotEnabled: 'ذخیره‌سازی KV پیکربندی نشده است', kvCheckFailed: 'بررسی ذخیره‌سازی KV ناموفق: خطای فرمت پاسخ', kvCheckFailedStatus: 'بررسی ذخیره‌سازی KV ناموفق - کد وضعیت: ', kvCheckFailedError: 'بررسی ذخیره‌سازی KV ناموفق - خطا: ' } }; const t = translations[isFarsi ? 'fa' : 'zh']; const pageHtml = ` ${t.title}
${t.terminal}

${t.title}

${t.subtitle}

${t.selectClient}

${t.systemStatus}

[ ${t.checking} ]
${t.workerRegion}${t.checking}
${t.detectionMethod}${t.checking}
${t.proxyIPStatus}${t.checking}
${t.currentIP}${t.checking}
ECH状态: ${t.checking}
${t.regionMatch}${t.checking}
${t.selectionLogic}${t.selectionLogicText}
`; return new Response(pageHtml, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } }); } async function parseTrojanHeader(buffer, ut) { const passwordToHash = tp || ut; const sha224Password = await sha224Hash(passwordToHash); if (buffer.byteLength < 56) { return { hasError: true, message: "invalid " + atob('dHJvamFu') + " data - too short" }; } let crLfIndex = 56; if (new Uint8Array(buffer.slice(56, 57))[0] !== 0x0d || new Uint8Array(buffer.slice(57, 58))[0] !== 0x0a) { return { hasError: true, message: "invalid " + atob('dHJvamFu') + " header format (missing CR LF)" }; } const password = new TextDecoder().decode(buffer.slice(0, crLfIndex)); if (password !== sha224Password) { return { hasError: true, message: "invalid " + atob('dHJvamFu') + " password" }; } const socks5DataBuffer = buffer.slice(crLfIndex + 2); if (socks5DataBuffer.byteLength < 6) { return { hasError: true, message: atob('aW52YWxpZCBTT0NLUzUgcmVxdWVzdCBkYXRh') }; } const view = new DataView(socks5DataBuffer); const cmd = view.getUint8(0); if (cmd !== 1) { return { hasError: true, message: "unsupported command, only TCP (CONNECT) is allowed" }; } const atype = view.getUint8(1); let addressLength = 0; let addressIndex = 2; let address = ""; switch (atype) { case 1: addressLength = 4; address = new Uint8Array( socks5DataBuffer.slice(addressIndex, addressIndex + addressLength) ).join("."); break; case 3: addressLength = new Uint8Array( socks5DataBuffer.slice(addressIndex, addressIndex + 1) )[0]; addressIndex += 1; address = new TextDecoder().decode( socks5DataBuffer.slice(addressIndex, addressIndex + addressLength) ); break; case 4: addressLength = 16; const dataView = new DataView(socks5DataBuffer.slice(addressIndex, addressIndex + addressLength)); const ipv6 = []; for (let i = 0; i < 8; i++) { ipv6.push(dataView.getUint16(i * 2).toString(16)); } address = ipv6.join(":"); break; default: return { hasError: true, message: `invalid addressType is ${atype}` }; } if (!address) { return { hasError: true, message: `address is empty, addressType is ${atype}` }; } const portIndex = addressIndex + addressLength; const portBuffer = socks5DataBuffer.slice(portIndex, portIndex + 2); const portRemote = new DataView(portBuffer).getUint16(0); return { hasError: false, addressRemote: address, addressType: atype, port: portRemote, hostname: address, rawClientData: socks5DataBuffer.slice(portIndex + 4) }; } async function sha224Hash(text) { const encoder = new TextEncoder(); const data = encoder.encode(text); const K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 ]; let H = [ 0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 ]; const msgLen = data.length; const bitLen = msgLen * 8; const paddedLen = Math.ceil((msgLen + 9) / 64) * 64; const padded = new Uint8Array(paddedLen); padded.set(data); padded[msgLen] = 0x80; const view = new DataView(padded.buffer); view.setUint32(paddedLen - 4, bitLen, false); for (let chunk = 0; chunk < paddedLen; chunk += 64) { const W = new Uint32Array(64); for (let i = 0; i < 16; i++) { W[i] = view.getUint32(chunk + i * 4, false); } for (let i = 16; i < 64; i++) { const s0 = rightRotate(W[i - 15], 7) ^ rightRotate(W[i - 15], 18) ^ (W[i - 15] >>> 3); const s1 = rightRotate(W[i - 2], 17) ^ rightRotate(W[i - 2], 19) ^ (W[i - 2] >>> 10); W[i] = (W[i - 16] + s0 + W[i - 7] + s1) >>> 0; } let [a, b, c, d, e, f, g, h] = H; for (let i = 0; i < 64; i++) { const S1 = rightRotate(e, 6) ^ rightRotate(e, 11) ^ rightRotate(e, 25); const ch = (e & f) ^ (~e & g); const temp1 = (h + S1 + ch + K[i] + W[i]) >>> 0; const S0 = rightRotate(a, 2) ^ rightRotate(a, 13) ^ rightRotate(a, 22); const maj = (a & b) ^ (a & c) ^ (b & c); const temp2 = (S0 + maj) >>> 0; h = g; g = f; f = e; e = (d + temp1) >>> 0; d = c; c = b; b = a; a = (temp1 + temp2) >>> 0; } H[0] = (H[0] + a) >>> 0; H[1] = (H[1] + b) >>> 0; H[2] = (H[2] + c) >>> 0; H[3] = (H[3] + d) >>> 0; H[4] = (H[4] + e) >>> 0; H[5] = (H[5] + f) >>> 0; H[6] = (H[6] + g) >>> 0; H[7] = (H[7] + h) >>> 0; } const result = []; for (let i = 0; i < 7; i++) { result.push( ((H[i] >>> 24) & 0xff).toString(16).padStart(2, '0'), ((H[i] >>> 16) & 0xff).toString(16).padStart(2, '0'), ((H[i] >>> 8) & 0xff).toString(16).padStart(2, '0'), (H[i] & 0xff).toString(16).padStart(2, '0') ); } return result.join(''); } function rightRotate(value, amount) { return (value >>> amount) | (value << (32 - amount)); } let ACTIVE_CONNECTIONS = 0; const XHTTP_BUFFER_SIZE = 128 * 1024; const CONNECT_TIMEOUT_MS = 5000; const IDLE_TIMEOUT_MS = 45000; const MAX_RETRIES = 2; const MAX_CONCURRENT = 32; function xhttp_sleep(ms) { return new Promise((r) => setTimeout(r, ms)); } function validate_uuid_xhttp(id, uuid) { for (let index = 0; index < 16; index++) { if (id[index] !== uuid[index]) { return false; } } return true; } class XhttpCounter { #total constructor() { this.#total = 0; } get() { return this.#total; } add(size) { this.#total += size; } } function concat_typed_arrays(first, ...args) { let len = first.length; for (let a of args) { len += a.length; } const r = new first.constructor(len); r.set(first, 0); len = first.length; for (let a of args) { r.set(a, len); len += a.length; } return r; } function parse_uuid_xhttp(uuid) { uuid = uuid.replaceAll('-', ''); const r = []; for (let index = 0; index < 16; index++) { const v = parseInt(uuid.substr(index * 2, 2), 16); r.push(v); } return r; } function get_xhttp_buffer(size) { return new Uint8Array(new ArrayBuffer(size || XHTTP_BUFFER_SIZE)); } async function read_xhttp_header(readable, uuid_str) { const reader = readable.getReader({ mode: 'byob' }); try { let r = await reader.readAtLeast(1 + 16 + 1, get_xhttp_buffer()); let rlen = 0; let idx = 0; let cache = r.value; rlen += r.value.length; const version = cache[0]; const id = cache.slice(1, 1 + 16); const uuid = parse_uuid_xhttp(uuid_str); if (!validate_uuid_xhttp(id, uuid)) { return `invalid UUID`; } const pb_len = cache[1 + 16]; const addr_plus1 = 1 + 16 + 1 + pb_len + 1 + 2 + 1; if (addr_plus1 + 1 > rlen) { if (r.done) { return `header too short`; } idx = addr_plus1 + 1 - rlen; r = await reader.readAtLeast(idx, get_xhttp_buffer()); rlen += r.value.length; cache = concat_typed_arrays(cache, r.value); } const cmd = cache[1 + 16 + 1 + pb_len]; if (cmd !== 1) { return `unsupported command: ${cmd}`; } const port = (cache[addr_plus1 - 1 - 2] << 8) + cache[addr_plus1 - 1 - 1]; const atype = cache[addr_plus1 - 1]; let header_len = -1; if (atype === ADDRESS_TYPE_IPV4) { header_len = addr_plus1 + 4; } else if (atype === ADDRESS_TYPE_IPV6) { header_len = addr_plus1 + 16; } else if (atype === ADDRESS_TYPE_URL) { header_len = addr_plus1 + 1 + cache[addr_plus1]; } if (header_len < 0) { return 'read address type failed'; } idx = header_len - rlen; if (idx > 0) { if (r.done) { return `read address failed`; } r = await reader.readAtLeast(idx, get_xhttp_buffer()); rlen += r.value.length; cache = concat_typed_arrays(cache, r.value); } let hostname = ''; idx = addr_plus1; switch (atype) { case ADDRESS_TYPE_IPV4: hostname = cache.slice(idx, idx + 4).join('.'); break; case ADDRESS_TYPE_URL: hostname = new TextDecoder().decode( cache.slice(idx + 1, idx + 1 + cache[idx]), ); break; case ADDRESS_TYPE_IPV6: hostname = cache .slice(idx, idx + 16) .reduce( (s, b2, i2, a) => i2 % 2 ? s.concat(((a[i2 - 1] << 8) + b2).toString(16)) : s, [], ) .join(':'); break; } if (hostname.length < 1) { return 'failed to parse hostname'; } const data = cache.slice(header_len); return { hostname, port, data, resp: new Uint8Array([version, 0]), reader, done: r.done, }; } catch (error) { try { reader.releaseLock(); } catch (_) {} throw error; } } async function upload_to_remote_xhttp(counter, writer, httpx) { async function inner_upload(d) { if (!d || d.length === 0) { return; } counter.add(d.length); try { await writer.write(d); } catch (error) { throw error; } } try { await inner_upload(httpx.data); let chunkCount = 0; while (!httpx.done) { const r = await httpx.reader.read(get_xhttp_buffer()); if (r.done) break; await inner_upload(r.value); httpx.done = r.done; chunkCount++; if (chunkCount % 10 === 0) { await xhttp_sleep(0); } if (!r.value || r.value.length === 0) { await xhttp_sleep(2); } } } catch (error) { throw error; } } function create_xhttp_uploader(httpx, writable) { const counter = new XhttpCounter(); const writer = writable.getWriter(); const done = (async () => { try { await upload_to_remote_xhttp(counter, writer, httpx); } catch (error) { throw error; } finally { try { await writer.close(); } catch (error) { } } })(); return { counter, done, abort: () => { try { writer.abort(); } catch (_) {} } }; } function create_xhttp_downloader(resp, remote_readable) { const counter = new XhttpCounter(); let stream; const done = new Promise((resolve, reject) => { stream = new TransformStream( { start(controller) { counter.add(resp.length); controller.enqueue(resp); }, transform(chunk, controller) { counter.add(chunk.length); controller.enqueue(chunk); }, cancel(reason) { reject(`download cancelled: ${reason}`); }, }, null, new ByteLengthQueuingStrategy({ highWaterMark: XHTTP_BUFFER_SIZE }), ); let lastActivity = Date.now(); const idleTimer = setInterval(() => { if (Date.now() - lastActivity > IDLE_TIMEOUT_MS) { try { stream.writable.abort?.('idle timeout'); } catch (_) {} clearInterval(idleTimer); reject('idle timeout'); } }, 5000); const reader = remote_readable.getReader(); const writer = stream.writable.getWriter(); ;(async () => { try { let chunkCount = 0; while (true) { const r = await reader.read(); if (r.done) { break; } lastActivity = Date.now(); await writer.write(r.value); chunkCount++; if (chunkCount % 5 === 0) { await xhttp_sleep(0); } } await writer.close(); resolve(); } catch (err) { reject(err); } finally { try { reader.releaseLock(); } catch (_) {} try { writer.releaseLock(); } catch (_) {} clearInterval(idleTimer); } })(); }); return { readable: stream.readable, counter, done, abort: () => { try { stream.readable.cancel(); } catch (_) {} try { stream.writable.abort(); } catch (_) {} } }; } async function connect_to_remote_xhttp(httpx, ...remotes) { let attempt = 0; let lastErr; const connectionList = [httpx.hostname, ...remotes.filter(r => r && r !== httpx.hostname)]; for (const hostname of connectionList) { if (!hostname) continue; attempt = 0; while (attempt < MAX_RETRIES) { attempt++; try { const remote = connect({ hostname, port: httpx.port }); const timeoutPromise = xhttp_sleep(CONNECT_TIMEOUT_MS).then(() => { throw new Error(atob('Y29ubmVjdCB0aW1lb3V0')); }); await Promise.race([remote.opened, timeoutPromise]); const uploader = create_xhttp_uploader(httpx, remote.writable); const downloader = create_xhttp_downloader(httpx.resp, remote.readable); return { downloader, uploader, close: () => { try { remote.close(); } catch (_) {} } }; } catch (err) { lastErr = err; if (attempt < MAX_RETRIES) { await xhttp_sleep(500 * attempt); } } } } return null; } async function handle_xhttp_client(body, uuid) { if (ACTIVE_CONNECTIONS >= MAX_CONCURRENT) { return new Response('Too many connections', { status: 429 }); } ACTIVE_CONNECTIONS++; let cleaned = false; const cleanup = () => { if (!cleaned) { ACTIVE_CONNECTIONS = Math.max(0, ACTIVE_CONNECTIONS - 1); cleaned = true; } }; try { const httpx = await read_xhttp_header(body, uuid); if (typeof httpx !== 'object' || !httpx) { return null; } const remoteConnection = await connect_to_remote_xhttp(httpx, fallbackAddress, '13.230.34.30'); if (remoteConnection === null) { return null; } const connectionClosed = Promise.race([ (async () => { try { await remoteConnection.downloader.done; } catch (err) { } })(), (async () => { try { await remoteConnection.uploader.done; } catch (err) { } })(), xhttp_sleep(IDLE_TIMEOUT_MS).then(() => { }) ]).finally(() => { try { remoteConnection.close(); } catch (_) {} try { remoteConnection.downloader.abort(); } catch (_) {} try { remoteConnection.uploader.abort(); } catch (_) {} cleanup(); }); return { readable: remoteConnection.downloader.readable, closed: connectionClosed }; } catch (error) { cleanup(); return null; } } async function handleXhttpPost(request) { try { return await handle_xhttp_client(request.body, at); } catch (err) { return null; } } function base64ToArray(b64Str) { if (!b64Str) return { error: null }; try { b64Str = b64Str.replace(/-/g, '+').replace(/_/g, '/'); return { earlyData: Uint8Array.from(atob(b64Str), (c) => c.charCodeAt(0)).buffer, error: null }; } catch (error) { return { error }; } } function closeSocketQuietly(socket) { try { if (socket.readyState === 1 || socket.readyState === 2) socket.close(); } catch (error) {} } const hexTable = Array.from({ length: 256 }, (v, i) => (i + 256).toString(16).slice(1)); function formatIdentifier(arr, offset = 0) { const id = (hexTable[arr[offset]]+hexTable[arr[offset+1]]+hexTable[arr[offset+2]]+hexTable[arr[offset+3]]+"-"+hexTable[arr[offset+4]]+hexTable[arr[offset+5]]+"-"+hexTable[arr[offset+6]]+hexTable[arr[offset+7]]+"-"+hexTable[arr[offset+8]]+hexTable[arr[offset+9]]+"-"+hexTable[arr[offset+10]]+hexTable[arr[offset+11]]+hexTable[arr[offset+12]]+hexTable[arr[offset+13]]+hexTable[arr[offset+14]]+hexTable[arr[offset+15]]).toLowerCase(); if (!isValidFormat(id)) throw new TypeError(E_INVALID_ID_STR); return id; } async function fetchAndParseNewIPs() { const url = piu || "https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt"; try { const urls = url.includes(',') ? url.split(',').map(u => u.trim()).filter(u => u) : [url]; const apiResults = await fetchPreferredAPI(urls, '443', 5000); if (apiResults.length > 0) { const results = []; const regex = /^(\[[\da-fA-F:]+\]|[\d.]+|[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?)*)(?::(\d+))?(?:#(.+))?$/; for (const item of apiResults) { const match = item.match(regex); if (match) { results.push({ ip: match[1], port: parseInt(match[2] || '443', 10), name: match[3]?.trim() || match[1] }); } } return results; } const response = await fetch(url); if (!response.ok) return []; const text = await response.text(); const results = []; const lines = text.trim().replace(/\r/g, "").split('\n'); const simpleRegex = /^([^:]+):(\d+)#(.*)$/; for (const line of lines) { const trimmedLine = line.trim(); if (!trimmedLine) continue; const match = trimmedLine.match(simpleRegex); if (match) { results.push({ ip: match[1], port: parseInt(match[2], 10), name: match[3].trim() || match[1] }); } } return results; } catch (error) { return []; } } function generateLinksFromNewIPs(list, user, workerDomain, echConfig = null) { const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095]; const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443]; const links = []; const wsPath = '/?ed=2048'; const proto = atob('dmxlc3M='); list.forEach(item => { const nodeName = item.name.replace(/\s/g, '_'); const port = item.port; if (CF_HTTPS_PORTS.includes(port)) { const wsNodeName = `${nodeName}-${port}-WS-TLS`; let link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=tls&sni=${workerDomain}&fp=${enableECH ? 'chrome' : 'randomized'}&type=ws&host=${workerDomain}&path=${wsPath}`; // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`; } link += `#${encodeURIComponent(wsNodeName)}`; links.push(link); } else if (CF_HTTP_PORTS.includes(port)) { if (!disableNonTLS) { const wsNodeName = `${nodeName}-${port}-WS`; const link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=none&type=ws&host=${workerDomain}&path=${wsPath}#${encodeURIComponent(wsNodeName)}`; links.push(link); } } else { const wsNodeName = `${nodeName}-${port}-WS-TLS`; let link = `${proto}://${user}@${item.ip}:${port}?encryption=none&security=tls&sni=${workerDomain}&fp=${enableECH ? 'chrome' : 'randomized'}&type=ws&host=${workerDomain}&path=${wsPath}`; // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`; } link += `#${encodeURIComponent(wsNodeName)}`; links.push(link); } }); return links; } function generateXhttpLinksFromSource(list, user, workerDomain, echConfig = null) { const links = []; const nodePath = user.substring(0, 8); list.forEach(item => { let nodeNameBase = item.isp.replace(/\s/g, '_'); if (item.colo && item.colo.trim()) { nodeNameBase = `${nodeNameBase}-${item.colo.trim()}`; } const safeIP = item.ip.includes(':') ? `[${item.ip}]` : item.ip; const port = item.port || 443; const wsNodeName = `${nodeNameBase}-${port}-xhttp`; const params = new URLSearchParams({ encryption: 'none', security: 'tls', sni: workerDomain, fp: 'chrome', type: 'xhttp', host: workerDomain, path: `/${nodePath}`, mode: 'stream-one' }); // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; params.set('alpn', 'h3,h2,http/1.1'); params.set('ech', `${echDomain}+${dnsServer}`); } links.push(`vless://${user}@${safeIP}:${port}?${params.toString()}#${encodeURIComponent(wsNodeName)}`); }); return links; } async function generateTrojanLinksFromNewIPs(list, user, workerDomain, echConfig = null) { const CF_HTTP_PORTS = [80, 8080, 8880, 2052, 2082, 2086, 2095]; const CF_HTTPS_PORTS = [443, 2053, 2083, 2087, 2096, 8443]; const links = []; const wsPath = '/?ed=2048'; const password = tp || user; list.forEach(item => { const nodeName = item.name.replace(/\s/g, '_'); const port = item.port; if (CF_HTTPS_PORTS.includes(port)) { const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS-TLS`; let link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=tls&sni=${workerDomain}&fp=chrome&type=ws&host=${workerDomain}&path=${wsPath}`; // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`; } link += `#${encodeURIComponent(wsNodeName)}`; links.push(link); } else if (CF_HTTP_PORTS.includes(port)) { if (!disableNonTLS) { const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS`; const link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=none&type=ws&host=${workerDomain}&path=${wsPath}#${encodeURIComponent(wsNodeName)}`; links.push(link); } } else { const wsNodeName = `${nodeName}-${port}-${atob('VHJvamFu')}-WS-TLS`; let link = `${atob('dHJvamFuOi8v')}${password}@${item.ip}:${port}?security=tls&sni=${workerDomain}&fp=chrome&type=ws&host=${workerDomain}&path=${wsPath}`; // 如果启用了ECH,添加ech参数(ECH需要伪装成Chrome浏览器) if (enableECH) { const dnsServer = customDNS || 'https://dns.joeyblog.eu.org/joeyblog'; const echDomain = customECHDomain || 'cloudflare-ech.com'; link += `&alpn=h3%2Ch2%2Chttp%2F1.1&ech=${encodeURIComponent(`${echDomain}+${dnsServer}`)}`; } link += `#${encodeURIComponent(wsNodeName)}`; links.push(link); } }); return links; } async function handleConfigAPI(request) { if (request.method === 'GET') { if (!kvStore) { return new Response(JSON.stringify({ error: 'KV存储未配置', kvEnabled: false }), { status: 503, headers: { 'Content-Type': 'application/json' } }); } return new Response(JSON.stringify({ ...kvConfig, kvEnabled: true }), { headers: { 'Content-Type': 'application/json' } }); } else if (request.method === 'POST') { if (!kvStore) { return new Response(JSON.stringify({ success: false, message: 'KV存储未配置,无法保存配置' }), { status: 503, headers: { 'Content-Type': 'application/json' } }); } try { const newConfig = await request.json(); for (const [key, value] of Object.entries(newConfig)) { if (value === '' || value === null || value === undefined) { delete kvConfig[key]; } else { kvConfig[key] = value; } } await saveKVConfig(); updateConfigVariables(); if (newConfig.yx !== undefined) { updateCustomPreferredFromYx(); } const newPreferredIPsURL = getConfigValue('yxURL', '') || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; if (newPreferredIPsURL !== defaultURL) { directDomains.length = 0; customPreferredIPs = []; customPreferredDomains = []; } else { backupIPs = [ { domain: 'ProxyIP.US.CMLiussss.net', region: 'US', regionCode: 'US', port: 443 }, { domain: 'ProxyIP.SG.CMLiussss.net', region: 'SG', regionCode: 'SG', port: 443 }, { domain: 'ProxyIP.JP.CMLiussss.net', region: 'JP', regionCode: 'JP', port: 443 }, { domain: 'ProxyIP.KR.CMLiussss.net', region: 'KR', regionCode: 'KR', port: 443 }, { domain: 'ProxyIP.DE.CMLiussss.net', region: 'DE', regionCode: 'DE', port: 443 }, { domain: 'ProxyIP.SE.CMLiussss.net', region: 'SE', regionCode: 'SE', port: 443 }, { domain: 'ProxyIP.NL.CMLiussss.net', region: 'NL', regionCode: 'NL', port: 443 }, { domain: 'ProxyIP.FI.CMLiussss.net', region: 'FI', regionCode: 'FI', port: 443 }, { domain: 'ProxyIP.GB.CMLiussss.net', region: 'GB', regionCode: 'GB', port: 443 }, { domain: 'ProxyIP.Oracle.cmliussss.net', region: 'Oracle', regionCode: 'Oracle', port: 443 }, { domain: 'ProxyIP.DigitalOcean.CMLiussss.net', region: 'DigitalOcean', regionCode: 'DigitalOcean', port: 443 }, { domain: 'ProxyIP.Vultr.CMLiussss.net', region: 'Vultr', regionCode: 'Vultr', port: 443 }, { domain: 'ProxyIP.Multacom.CMLiussss.net', region: 'Multacom', regionCode: 'Multacom', port: 443 } ]; directDomains.length = 0; directDomains.push( { name: "cloudflare.182682.xyz", domain: "cloudflare.182682.xyz" }, { name: "speed.marisalnc.com", domain: "speed.marisalnc.com" }, { domain: "freeyx.cloudflare88.eu.org" }, { domain: "bestcf.top" }, { domain: "cdn.2020111.xyz" }, { domain: "cfip.cfcdn.vip" }, { domain: "cf.0sm.com" }, { domain: "cf.090227.xyz" }, { domain: "cf.zhetengsha.eu.org" }, { domain: "cloudflare.9jy.cc" }, { domain: "cf.zerone-cdn.pp.ua" }, { domain: "cfip.1323123.xyz" }, { domain: "cnamefuckxxs.yuchen.icu" }, { domain: "cloudflare-ip.mofashi.ltd" }, { domain: "115155.xyz" }, { domain: "cname.xirancdn.us" }, { domain: "f3058171cad.002404.xyz" }, { domain: "8.889288.xyz" }, { domain: "cdn.tzpro.xyz" }, { domain: "cf.877771.xyz" }, { domain: "xn--b6gac.eu.org" } ); } return new Response(JSON.stringify({ success: true, message: '配置已保存', config: kvConfig }), { headers: { 'Content-Type': 'application/json' } }); } catch (error) { return new Response(JSON.stringify({ success: false, message: '保存配置失败: ' + error.message }), { status: 500, headers: { 'Content-Type': 'application/json' } }); } } return new Response(JSON.stringify({ error: 'Method not allowed' }), { status: 405, headers: { 'Content-Type': 'application/json' } }); } async function handlePreferredIPsAPI(request) { if (!kvStore) { return new Response(JSON.stringify({ success: false, error: 'KV存储未配置', message: '需要配置KV存储才能使用此功能' }), { status: 503, headers: { 'Content-Type': 'application/json' } }); } const ae = getConfigValue('ae', '') === 'yes'; if (!ae) { return new Response(JSON.stringify({ success: false, error: 'API功能未启用', message: '出于安全考虑,优选IP API功能默认关闭。请在配置管理页面开启"允许API管理"选项后使用。' }), { status: 403, headers: { 'Content-Type': 'application/json' } }); } try { if (request.method === 'GET') { const yxValue = getConfigValue('yx', ''); const pi = parseYxToArray(yxValue); return new Response(JSON.stringify({ success: true, count: pi.length, data: pi }), { headers: { 'Content-Type': 'application/json' } }); } else if (request.method === 'POST') { const body = await request.json(); const ipsToAdd = Array.isArray(body) ? body : [body]; if (ipsToAdd.length === 0) { return new Response(JSON.stringify({ success: false, error: '请求数据为空', message: '请提供IP数据' }), { status: 400, headers: { 'Content-Type': 'application/json' } }); } const yxValue = getConfigValue('yx', ''); let pi = parseYxToArray(yxValue); const addedIPs = []; const skippedIPs = []; const errors = []; for (const item of ipsToAdd) { if (!item.ip) { errors.push({ ip: '未知', reason: 'IP地址是必需的' }); continue; } const port = item.port || 443; const name = item.name || `API优选-${item.ip}:${port}`; if (!isValidIP(item.ip) && !isValidDomain(item.ip)) { errors.push({ ip: item.ip, reason: '无效的IP或域名格式' }); continue; } const exists = pi.some(existItem => existItem.ip === item.ip && existItem.port === port ); if (exists) { skippedIPs.push({ ip: item.ip, port: port, reason: '已存在' }); continue; } const newIP = { ip: item.ip, port: port, name: name, addedAt: new Date().toISOString() }; pi.push(newIP); addedIPs.push(newIP); } if (addedIPs.length > 0) { const newYxValue = arrayToYx(pi); await setConfigValue('yx', newYxValue); updateCustomPreferredFromYx(); } return new Response(JSON.stringify({ success: addedIPs.length > 0, message: `成功添加 ${addedIPs.length} 个IP`, added: addedIPs.length, skipped: skippedIPs.length, errors: errors.length, data: { addedIPs: addedIPs, skippedIPs: skippedIPs.length > 0 ? skippedIPs : undefined, errors: errors.length > 0 ? errors : undefined } }), { headers: { 'Content-Type': 'application/json' } }); } else if (request.method === 'DELETE') { const body = await request.json(); if (body.all === true) { const yxValue = getConfigValue('yx', ''); const pi = parseYxToArray(yxValue); const deletedCount = pi.length; await setConfigValue('yx', ''); updateCustomPreferredFromYx(); return new Response(JSON.stringify({ success: true, message: `已清空所有优选IP,共删除 ${deletedCount} 个`, deletedCount: deletedCount }), { headers: { 'Content-Type': 'application/json' } }); } if (!body.ip) { return new Response(JSON.stringify({ success: false, error: 'IP地址是必需的', message: '请提供要删除的ip字段,或使用 {"all": true} 清空所有' }), { status: 400, headers: { 'Content-Type': 'application/json' } }); } const port = body.port || 443; const yxValue = getConfigValue('yx', ''); let pi = parseYxToArray(yxValue); const initialLength = pi.length; const filteredIPs = pi.filter(item => !(item.ip === body.ip && item.port === port) ); if (filteredIPs.length === initialLength) { return new Response(JSON.stringify({ success: false, error: '优选IP不存在', message: `${body.ip}:${port} 未找到` }), { status: 404, headers: { 'Content-Type': 'application/json' } }); } const newYxValue = arrayToYx(filteredIPs); await setConfigValue('yx', newYxValue); updateCustomPreferredFromYx(); return new Response(JSON.stringify({ success: true, message: '优选IP已删除', deleted: { ip: body.ip, port: port } }), { headers: { 'Content-Type': 'application/json' } }); } else { return new Response(JSON.stringify({ success: false, error: '不支持的请求方法', message: '支持的方法: GET, POST, DELETE' }), { status: 405, headers: { 'Content-Type': 'application/json' } }); } } catch (error) { return new Response(JSON.stringify({ success: false, error: '处理请求失败', message: error.message }), { status: 500, headers: { 'Content-Type': 'application/json' } }); } } function updateConfigVariables() { const manualRegion = getConfigValue('wk', ''); if (manualRegion && manualRegion.trim()) { manualWorkerRegion = manualRegion.trim().toUpperCase(); currentWorkerRegion = manualWorkerRegion; } else { const ci = getConfigValue('p', ''); if (ci && ci.trim()) { currentWorkerRegion = 'CUSTOM'; } else { manualWorkerRegion = ''; } } const regionMatchingControl = getConfigValue('rm', ''); if (regionMatchingControl && regionMatchingControl.toLowerCase() === 'no') { enableRegionMatching = false; } else { enableRegionMatching = true; } const vlessControl = getConfigValue('ev', ''); if (vlessControl !== undefined && vlessControl !== '') { ev = vlessControl === 'yes' || vlessControl === true || vlessControl === 'true'; } const tjControl = getConfigValue('et', ''); if (tjControl !== undefined && tjControl !== '') { et = tjControl === 'yes' || tjControl === true || tjControl === 'true'; } tp = getConfigValue('tp', '') || ''; const xhttpControl = getConfigValue('ex', ''); if (xhttpControl !== undefined && xhttpControl !== '') { ex = xhttpControl === 'yes' || xhttpControl === true || xhttpControl === 'true'; } if (!ev && !et && !ex) { ev = true; } scu = getConfigValue('scu', '') || 'https://url.v1.mk/sub'; const preferredDomainsControl = getConfigValue('epd', 'no'); if (preferredDomainsControl !== undefined && preferredDomainsControl !== '') { epd = preferredDomainsControl !== 'no' && preferredDomainsControl !== false && preferredDomainsControl !== 'false'; } const preferredIPsControl = getConfigValue('epi', ''); if (preferredIPsControl !== undefined && preferredIPsControl !== '') { epi = preferredIPsControl !== 'no' && preferredIPsControl !== false && preferredIPsControl !== 'false'; } const githubIPsControl = getConfigValue('egi', ''); if (githubIPsControl !== undefined && githubIPsControl !== '') { egi = githubIPsControl !== 'no' && githubIPsControl !== false && githubIPsControl !== 'false'; } const echControl = getConfigValue('ech', ''); if (echControl !== undefined && echControl !== '') { enableECH = echControl === 'yes' || echControl === true || echControl === 'true'; } // 更新自定义DNS和ECH域名 const customDNSValue = getConfigValue('customDNS', ''); if (customDNSValue && customDNSValue.trim()) { customDNS = customDNSValue.trim(); } else { customDNS = 'https://dns.joeyblog.eu.org/joeyblog'; } const customECHDomainValue = getConfigValue('customECHDomain', ''); if (customECHDomainValue && customECHDomainValue.trim()) { customECHDomain = customECHDomainValue.trim(); } else { customECHDomain = 'cloudflare-ech.com'; } // 如果启用了ECH,自动启用仅TLS模式(避免80端口干扰) // ECH需要TLS才能工作,所以必须禁用非TLS节点 if (enableECH) { disableNonTLS = true; } // 检查dkby配置(如果手动设置了dkby=yes,也会启用仅TLS) const dkbyControl = getConfigValue('dkby', ''); if (dkbyControl && dkbyControl.toLowerCase() === 'yes') { disableNonTLS = true; } cp = getConfigValue('d', '') || ''; piu = getConfigValue('yxURL', '') || 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; const envFallback = getConfigValue('p', ''); if (envFallback) { fallbackAddress = envFallback.trim(); } else { fallbackAddress = ''; } socks5Config = getConfigValue('s', '') || ''; if (socks5Config) { try { parsedSocks5Config = parseSocksConfig(socks5Config); isSocksEnabled = true; } catch (err) { isSocksEnabled = false; } } else { isSocksEnabled = false; } const yxbyControl = getConfigValue('yxby', ''); if (yxbyControl && yxbyControl.toLowerCase() === 'yes') { disablePreferred = true; } else { disablePreferred = false; } const defaultURL = 'https://raw.githubusercontent.com/qwer-search/bestip/refs/heads/main/kejilandbestip.txt'; if (piu !== defaultURL) { directDomains.length = 0; customPreferredIPs = []; customPreferredDomains = []; } } function updateCustomPreferredFromYx() { const yxValue = getConfigValue('yx', ''); if (yxValue) { try { const preferredList = yxValue.split(',').map(item => item.trim()).filter(item => item); customPreferredIPs = []; customPreferredDomains = []; preferredList.forEach(item => { let nodeName = ''; let addressPart = item; if (item.includes('#')) { const parts = item.split('#'); addressPart = parts[0].trim(); nodeName = parts[1].trim(); } const { address, port } = parseAddressAndPort(addressPart); if (!nodeName) { nodeName = '自定义优选-' + address + (port ? ':' + port : ''); } if (isValidIP(address)) { customPreferredIPs.push({ ip: address, port: port, isp: nodeName }); } else { customPreferredDomains.push({ domain: address, port: port, name: nodeName }); } }); } catch (err) { customPreferredIPs = []; customPreferredDomains = []; } } else { customPreferredIPs = []; customPreferredDomains = []; } } function parseYxToArray(yxValue) { if (!yxValue || !yxValue.trim()) return []; const items = yxValue.split(',').map(item => item.trim()).filter(item => item); const result = []; for (const item of items) { let nodeName = ''; let addressPart = item; if (item.includes('#')) { const parts = item.split('#'); addressPart = parts[0].trim(); nodeName = parts[1].trim(); } const { address, port } = parseAddressAndPort(addressPart); if (!nodeName) { nodeName = address + (port ? ':' + port : ''); } result.push({ ip: address, port: port || 443, name: nodeName, addedAt: new Date().toISOString() }); } return result; } function arrayToYx(array) { if (!array || array.length === 0) return ''; return array.map(item => { const port = item.port || 443; return `${item.ip}:${port}#${item.name}`; }).join(','); } function isValidDomain(domain) { const domainRegex = /^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}$/; return domainRegex.test(domain); } async function parseTextToArray(content) { var processed = content.replace(/[ "'\r\n]+/g, ',').replace(/,+/g, ','); if (processed.charAt(0) == ',') processed = processed.slice(1); if (processed.charAt(processed.length - 1) == ',') processed = processed.slice(0, processed.length - 1); return processed.split(','); } async function fetchPreferredAPI(urls, defaultPort = '443', timeout = 3000) { if (!urls?.length) return []; const results = new Set(); await Promise.allSettled(urls.map(async (url) => { try { const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), timeout); const response = await fetch(url, { signal: controller.signal }); clearTimeout(timeoutId); let text = ''; try { const buffer = await response.arrayBuffer(); const contentType = (response.headers.get('content-type') || '').toLowerCase(); const charset = contentType.match(/charset=([^\s;]+)/i)?.[1]?.toLowerCase() || ''; let decoders = ['utf-8', 'gb2312']; if (charset.includes('gb') || charset.includes('gbk') || charset.includes('gb2312')) { decoders = ['gb2312', 'utf-8']; } let decodeSuccess = false; for (const decoder of decoders) { try { const decoded = new TextDecoder(decoder).decode(buffer); if (decoded && decoded.length > 0 && !decoded.includes('\ufffd')) { text = decoded; decodeSuccess = true; break; } else if (decoded && decoded.length > 0) { continue; } } catch (e) { continue; } } if (!decodeSuccess) { text = await response.text(); } if (!text || text.trim().length === 0) { return; } } catch (e) { return; } const lines = text.trim().split('\n').map(l => l.trim()).filter(l => l); const isCSV = lines.length > 1 && lines[0].includes(','); const IPV6_PATTERN = /^[^\[\]]*:[^\[\]]*:[^\[\]]/; if (!isCSV) { lines.forEach(line => { const hashIndex = line.indexOf('#'); const [hostPart, remark] = hashIndex > -1 ? [line.substring(0, hashIndex), line.substring(hashIndex)] : [line, '']; let hasPort = false; if (hostPart.startsWith('[')) { hasPort = /\]:(\d+)$/.test(hostPart); } else { const colonIndex = hostPart.lastIndexOf(':'); hasPort = colonIndex > -1 && /^\d+$/.test(hostPart.substring(colonIndex + 1)); } const port = new URL(url).searchParams.get('port') || defaultPort; results.add(hasPort ? line : `${hostPart}:${port}${remark}`); }); } else { const headers = lines[0].split(',').map(h => h.trim()); const dataLines = lines.slice(1); if (headers.includes('IP地址') && headers.includes('端口') && headers.includes('数据中心')) { const ipIdx = headers.indexOf('IP地址'), portIdx = headers.indexOf('端口'); const remarkIdx = headers.indexOf('国家') > -1 ? headers.indexOf('国家') : headers.indexOf('城市') > -1 ? headers.indexOf('城市') : headers.indexOf('数据中心'); const tlsIdx = headers.indexOf('TLS'); dataLines.forEach(line => { const cols = line.split(',').map(c => c.trim()); if (tlsIdx !== -1 && cols[tlsIdx]?.toLowerCase() !== 'true') return; const wrappedIP = IPV6_PATTERN.test(cols[ipIdx]) ? `[${cols[ipIdx]}]` : cols[ipIdx]; results.add(`${wrappedIP}:${cols[portIdx]}#${cols[remarkIdx]}`); }); } else if (headers.some(h => h.includes('IP')) && headers.some(h => h.includes('延迟')) && headers.some(h => h.includes('下载速度'))) { const ipIdx = headers.findIndex(h => h.includes('IP')); const delayIdx = headers.findIndex(h => h.includes('延迟')); const speedIdx = headers.findIndex(h => h.includes('下载速度')); const port = new URL(url).searchParams.get('port') || defaultPort; dataLines.forEach(line => { const cols = line.split(',').map(c => c.trim()); const wrappedIP = IPV6_PATTERN.test(cols[ipIdx]) ? `[${cols[ipIdx]}]` : cols[ipIdx]; results.add(`${wrappedIP}:${port}#CF优选 ${cols[delayIdx]}ms ${cols[speedIdx]}MB/s`); }); } } } catch (e) { } })); return Array.from(results); }